@charset "utf-8";

/* CSS Document */

:root {
  --color-base: #fff;
  --color-main: #222;
  --color-brand01: #EA502E;
  --color-brand02: rgba(234, 81, 46, 0.2);
  --color-primary01: #26B7BC;

  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
  --color-sub03: #ffe9e6;
  --color-sub04: #DDFEFF;

}

.stampRally{
  background-color: var(--color-sub03);
  padding-bottom: 15em;
}

.post-type-archive-stamprally .l-footer,
.page-template-stamprally2025 .l-footer,
.page-template-stamprally .l-footer,
.single-stamprally .l-footer ,
.single-stamprally2025 .l-footer {
  background-color: var(--color-sub03);
}

@media screen and (max-width:834px) {

  .stampRally{
    padding-bottom: 6em;
  }
}


/***********
fade
************/

[data-fade] {
  opacity: 0;
  transition: 1s;
  transition-delay: 0.1s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(20px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}


/***********
srMainVisual
************/

.srMainVisual {
  text-align: center;
}
.srMainVisual-title {
}
.srMainVisual-title picture ,
.srMainVisual-title img {
  width: 100%;
  max-width: 100%;
}



/***********
srNavi
************/

.srNavi {
  padding-top: 4em;
}

.srNavi-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 5em;
}
.srNavi-list.-noOffsetBottom {
  padding-bottom: 0;
}
.srNavi-list li {
  padding: 0 0.5em 1em;
}
.srNavi-list li a{
  display: inline-block;
  border: 2px solid var(--color-brand01);
  padding: 0.3em 2.5em 0.3em 2em;
  font-size: clamp(14px,1.4vw, 22px);
  font-weight: 400;
  color: var(--color-brand01);
  text-decoration: none;
  border-radius: 10em;
  position: relative;
}
.srNavi-list li a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/stamprally2025/heart_arrow_down.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9
}
.srNavi-list li a.is-active,
body.is-pc .srNavi-list li a:hover {
  background-color: var(--color-brand02);
}

@media screen and (max-width:834px) {

  .srNavi-list {
    padding-bottom: 3em;
    justify-content: flex-start;
  }
  .srNavi-list li {
    padding: 0 0.2em 0.4em;
  }
  .srNavi-list li a{
    padding: 0.5em 2.5em 0.5em 2em;
  }
  .srNavi-list li a::after {
    font-size: 1rem;
  }

}


@media screen and (max-width:520px) {

  .srNavi {
    padding-top: 2em;
    margin-left: -3vw;
    margin-right: -3vw;
  }


  .srNavi-list {
    padding-bottom: 4em;
    justify-content: start;
  }
  .srNavi-list li {
    width: 50%;
    padding: 2px;
  }
  .srNavi-list li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 3.6em;
    padding: 0.3em 1em 0.3em 1em;
    font-size: clamp(12px,4vw, 16px);
    font-weight: 500;
  }
  .srNavi-list li a::after {
    right: 0.5em;
    scale: 1.1;
  }

}


/***********
srIntro
************/

.srIntro {
  position: relative;
}

.srIntro-container {
  position: relative;
  z-index: 2;
  padding-bottom: 10em;
}
.srIntro-title{
  color: var(--color-brand01);
  font-size: clamp(22px,3vw, 44px);
  text-align: center;
  letter-spacing: 0.08em;
  padding-bottom: 1em;
  white-space: nowrap;
}
.srIntro-title-icon {
  width: 1em;
  vertical-align: baseline;
  margin-left: 0.2em;
  margin-bottom: -0.1em;
  animation: yurayuraRotate 3s infinite ease-in-out;
  transform-origin: left bottom;
}
@keyframes yurayuraRotate {
  0%   { transform: rotate(5deg); }
  50%  { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

.srIntro-text{
  font-size: 139%;
  line-height: 2;
  text-align: center;
}

.srIntro-schedule {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 5em;
}


.srIntro-link {
  text-align: center;
  padding-top: 6em;
}


.srIntro-visual {
  -webkit-mask: url(../../img/stamprally2025/mask01.png);
  mask: url(../../img/stamprally2025/mask01.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
}
.srIntro-visual img {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}


@media screen and (max-width:834px) {

  .srIntro {
  }

  .srIntro-container {
    padding-bottom: 4em;
  }
  .srIntro-text{
    font-size: 116%;
    line-height: 1.8;
    text-align: left;
  }

  .srIntro-schedule {
    padding-top: 3em;
  }

  .srIntro-link {
    padding-top: 4em;
  }
  .srIntro-link-btn {
    font-size: 170%;
    padding: 1em 0.6em;
  }
  .srIntro-link-btn::after {
    margin-left: 0.2em;
    margin-right: -1em;
  }


}

@media screen and (max-width:640px) {

  .srIntro-visual {
    background: url(../../img/stamprally2025/visual01.jpg) repeat-x 0 0 / 720px 215px;
    height: 215px;
    -webkit-mask-size: 640px 100%;
    mask-size: 640px 100%;
    animation: anim-srIntro-bg 50s linear infinite;
  }
  .srIntro-visual img {
    opacity: 0;
  }

  @keyframes anim-srIntro-bg {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -720px 0;
    }
  }


}
/***********
srBtn
************/

.srBtn {
  display: inline-block;
  font-size: clamp(15px,1.8vw, 24px);
  font-weight: 500;
  min-width: 20em;
  background-color: var(--color-base);
  color: var(--color-main);
  padding: 1em 5em 1em 3.5em;
  text-align: center;
  text-decoration: none;
  border-radius: 10em;
  border: 2px solid var(--color-brand01);
  box-shadow: 2px 3px 0 var(--color-brand01);
  position: relative;
}
.srBtn::before ,
.srBtn::after {
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-sub03);
  border: 2px solid var(--color-brand01);
  border-radius: 50%;
  position: absolute;
  right: -2px;
  top: 50%;
  translate: 0 -50%;
}
.srBtn::after {
  scale: 0;
  background-color: var(--color-brand01);
  transition: 0.3s;
}

.srBtn span{
  display: inline-block;
}
.srBtn span::after{
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: url(../../img/stamprally2025/heart_arrow_external_or.png) no-repeat center center / 26% auto;
  position: absolute;
  right: -2px;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
  transition: 0.3s;
}

body.is-pc .srBtn:hover::after {
  scale: 1;
}
body.is-pc .srBtn:hover span::after {
  background-image: url(../../img/stamprally2025/heart_arrow_external_wt.png) ;
}




.srBtn.-primary {
  border: 2px solid var(--color-primary01);
  box-shadow: 2px 3px 0 var(--color-primary01);
}
.srBtn.-primary::before ,
.srBtn.-primary::after {
  background-color: var(--color-sub04);
  border: 2px solid var(--color-primary01);
}
.srBtn.-primary::after {
  background-color: var(--color-primary01);
}
.srBtn.-primary span::after{
  background-image: url(../../img/stamprally2025/heart_arrow_external_aq.png) ;
}



@media screen and (max-width:640px) {

  .srBtn {
    font-size: clamp(14px,3.2vw, 18px);
    min-width: 16em;
    padding: 1em 4em 1em 2.5em;
  }
}


/***********
srBtn02
************/

.srBtn02 {
  display: inline-block;
  font-size: clamp(15px,1.4vw, 18px);
  font-weight: 500;
  min-width: 20em;
  background-color: var(--color-base);
  color: var(--color-main);
  padding: 1em 3.5em 1em 3.5em;
  text-align: center;
  text-decoration: none;
  border-radius: 10em;
  border: 2px solid var(--color-brand01);
  box-shadow: 2px 3px 0 var(--color-brand01);
  position: relative;
}
.srBtn02::after {
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: url(../../img/stamprally2025/heart_arrow_external_or.png) no-repeat center center / 26% auto;
  position: absolute;
  right: -2px;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
  transition: 0.3s;
}
body.is-pc .srBtn02:hover {
  background-color: var(--color-brand02);
}



@media screen and (max-width:640px) {

  .srBtn02 {
    font-size: clamp(15px,3.2vw, 18px);
    min-width: 16em;
    padding: 1em 3em 1em 2.5em;
  }
  .srBtn02::after {
    width: 1em;
    height: 1em;
    aspect-ratio: 1 / 1;
    background-size: 100% auto;
    right: 1em;
    top: 50%;
    translate: 0 -50%;
  }
}

/***********
srPrize
************/

.srPrize {
  background-color: var(--color-base);
  padding-bottom: 10em;
  position: relative;
}
.srPrize::after {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../../img/stamprally2025/line01.png) repeat-x 0 0 / auto 100%;
  pointer-events: none;
}

.srPrize-heading {
  text-align: center;
  position: relative;
  padding-bottom: 5em;
}
.srPrize-heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/stamprally2025/line01.png) repeat-x 0 0 / auto 100%;
}
.srPrize-heading::after {
  content: "";
  display: block;
  width: 440px;
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/stamprally2025/prize_title_bg.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 50%;
  top: -143px;
  translate: -50% 0 ;
}
.srPrize-heading-container {
  position: relative;
  z-index: 9;
}
.srPrize-heading-title {
  translate: 0 -0.8em;
  color: var(--color-brand01);
  font-size: clamp(20px,3vw, 44px);
  text-align: center;
  letter-spacing: 0.08em;
}
.srPrize-heading-text {
  font-size: clamp(15px,1.2vw, 16px);
  line-height: 1.8;
  text-align: center;
}

/*
container
*/

.srPrize-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -3em;
}
.srPrize-container::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../img/stamprally2025/heart_accent01.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: 0;
  top: -120px;
  transition: 1s;
  opacity: 0;
  rotate: 15deg;
  translate: 0 25px;
}
.srPrize-container::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../../img/stamprally2025/heart_accent02.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: 20px;
  top: -80px;
  opacity: 0;
  transition: 1s;
  rotate: -15deg;
  translate: 0 20px;
  transition-delay: 300ms;
}


.srPrize-container.is-show::before ,
.srPrize-container.is-show::after {
  opacity: 1;
  translate: 0 0;
  rotate: 0deg;
}


.srPrize-section {
  width: 30.3%;
  margin-left: 3%;
  margin-bottom: 3em;
  font-size: clamp(18px,2vw, 24px);
  background: url(../../img/stamprally2025/title_line_or.png) no-repeat left top / auto 45px;
  padding-top: 55px;
  text-align: center;
  position: relative;
}
.srPrize-title {
  text-align: center;
  font-weight: 700;
  color: var(--color-brand01);
  padding-bottom: 0.5em;
}
.srPrize-img {
  width: 80%;
  margin: 0 auto;
}
.srPrize-subTitle {
  font-weight: 700;
  color: var(--color-brand01);
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.2em;
  line-height: 1.35;
}
.srPrize-subTitle small {
  display: inline-block;
  line-height: 1.6;
}

.srPrize-type {
  text-align: center;
  padding-bottom: 0.5em;
}
.srPrize-type-item {
  display: inline-block;
  white-space: nowrap;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-size: clamp(15px,2vw, 16px);
  font-weight: 500;
  padding: 0.3em 1.5em;
  border-radius: 3em;
}


.srPrize-text {
  font-size: clamp(14px,1.2vw, 15px);
  line-height: 1.6;
}
.srPrize-text-accent {
  font-size: 130%;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-brand01);
}


.srPrize-character01 {
  width: 180px;
  position: absolute;
  right: -60px;
  bottom: -90px;
  pointer-events: none;
}


/*
half
*/

.srPrize-section.-half {
  width: 47%;
  background-size: auto 60px;
  padding-top: 70px;
}
.srPrize-section.-half .srPrize-title{
  font-size: 110%;
}
.srPrize-section.-half .srPrize-subTitle{
  font-size: 110%;
}


/*
color
*/

.srPrize-section.-primary {
  background-image: url(../../img/stamprally2025/title_line_aq.png) ;
}
.srPrize-section.-primary .srPrize-title ,
.srPrize-section.-primary .srPrize-subTitle {
  color: var(--color-primary01);
}
.srPrize-section.-primary .srPrize-type-item {
  background-color: var(--color-primary01);
}


@media screen and (max-width:1280px) {

  .srPrize-heading::after {
    width: 340px;
    height: 120px;
    top: -103px;
  }
}

@media screen and (max-width:834px) {

  .srPrize {
    padding-bottom: 5em;
  }
  .srPrize::after {
    height: 10px;
  }

  .srPrize-heading {
    padding-bottom: 3em;
  }
  .srPrize-heading::before {
    height: 10px;
  }
  .srPrize-heading::after {
      width: 200px;
      height: 70px;
      top: -59px;
  }
  .srPrize-heading-container {
    position: relative;
    z-index: 9;
  }
  .srPrize-heading-title {
    font-size: clamp(26px,3vw, 44px);
  }

  .srPrize-character01 {
    width: 100px;
    right: -30px;
    bottom: -60px;
  }

}

@media screen and (max-width:640px) {


  /*
  container
  */

  .srPrize-container {
    display: block;
    margin-left: 0;
    margin-bottom: -3em;
  }
  .srPrize-container::before {
    width: 30px;
    height: 30px;
    right: -10px;
    top: -80px;
  }
  .srPrize-container::after {
    width: 40px;
    height: 40px;
    right: 10px;
    top: -60px;
  }


  .srPrize-section,
  .srPrize-section.-half {
    width: auto;
    margin-left: 0;
    margin-bottom: 3em;
    font-size: clamp(18px,2vw, 24px);
    background-size:auto 35px;
    padding-top: 40px;
  }
  .srPrize-title {
    text-align: center;
    font-weight: 700;
    color: var(--color-brand01);
    padding-bottom: 0.5em;
  }
  .srPrize-subTitle {
    padding-bottom: 0.5em;
  }

  .srPrize-character01 {
    width: 110px;
    position: absolute;
    right: -20px;
    top: -40px;
  }


  /*
  half
  */

  .srPrize-section.-half .srPrize-title{
    font-size: 100%;
  }
  .srPrize-section.-half .srPrize-subTitle{
    font-size: 100%;
  }

  /*
  spSmall
  */

  .srPrize-section.-spSmall {
    position: relative;
    padding-left: min(45%,200px);
    text-align: left;
  }
  .srPrize-section.-spSmall .srPrize-img {
    width: 55%;
    max-width: 240px;
    position: absolute;
    left: -10%;
    top: 45px;
  }
  .srPrize-section.-spSmall .srPrize-title{
    text-align: left;
    padding-bottom: 0.2em;
    position: relative;
    z-index: 9;
  }
  .srPrize-section.-spSmall .srPrize-subTitle{
    text-align: left;
    font-size: 85%;
    padding-top: 0;
    position: relative;
    z-index: 9;
  }
  .srPrize-section.-spSmall .srPrize-text{
    position: relative;
    z-index: 9;
  }



  .srPrize-section.-spSmall .srPrize-type {
    text-align: left;
    padding-bottom: 0.5em;
    position: relative;
    z-index: 9;
  }
  .srPrize-section.-spSmall .srPrize-type-item {
    font-size: clamp(12px,3vw, 14px);
  }

}

/***********
srPhotos
************/

.srPhotos {
  margin-bottom: 5em;
}
.srPhotos-container {
  padding-top: 15em;
  padding-bottom: 10em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.srPhotos-character01 {
  width: 160px;
  position: absolute;
  left: -80px;
  top: -120px;
  z-index: 2;
  pointer-events: none;
}
.srPhotos-section {
  position: relative;
}
.srPhotos-section.-no01 {
  width: 55%;
}
.srPhotos-section.-no02 {
  width: 45%;
  margin-top: 15%;
}
.srPhotos-section.-no02 .srPhotos-img {
  margin-left: -8%;
}
.srPhotos-section.-no03 {
  width: 44%;
  margin-left: 5%;
  margin-top: -5%;
}

.srPhotos-cloud {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  translate: -50px 0 ;
  transition: 4s;
}
.srPhotos-cloud.is-show {
  opacity: 1;
  translate: 0 0 ;
}
.srPhotos-cloud.-no01 {
  width: 60%;
  position: absolute;
  left: -25%;
  top: -15%;
}
.srPhotos-cloud.-no02 {
  width: 65%;
  position: absolute;
  right: -20%;
  top: -10%;
}
.srPhotos-cloud.-no03 {
  width: 65%;
  position: absolute;
  left: -30%;
  bottom: -15%;
}

.srPhotos-character02 {
  width: 160px;
  position: absolute;
  right: -80px;
  bottom: -120px;
  z-index: 2;
  pointer-events: none;
}
.srPhotos-character03 {
  width: 200px;
  position: absolute;
  right: -330px;
  bottom: -100px;
  z-index: 2;
  pointer-events: none;
}

@media screen and (max-width:834px) {

  .srPhotos-container {
    padding-top: 8em;
    padding-bottom: 5em;
  }
  .srPhotos-character01 {
    width: 100px;
    left: -10px;
    top: -60px;
  }

  .srPhotos-character02 {
    width: 100px;
    right: -30px;
    bottom: -50px;
  }
  .srPhotos-character03 {
    width: 120px;
    right: -130px;
    bottom: -50px;
  }

}

@media screen and (max-width:520px) {

  .srPhotos {
  }
  .srPhotos-container {
    display: block;
  }
  .srPhotos-section.-no01 {
    width: auto;
    margin-right: -6vw;
    padding-left: 15%;
  }
  .srPhotos-section.-no02 {
    width: auto;
    margin-top: -5%;
    margin-left: -6vw;
    padding-right: 30%;
  }
  .srPhotos-section.-no02 .srPhotos-img {
    margin-left: 0;
  }
  .srPhotos-section.-no03 {
    width: auto;
    margin-top: 20%;
    margin-right: -6vw;
    padding-left: 20%;
  }

  .srPhotos-cloud.-no01 {
    width: 70%;
    left: -15%;
    top: -30%;
  }
  .srPhotos-cloud.-no02 {
    width: 65%;
    right: 0%;
    top: auto;
    bottom: -40%;
  }
  .srPhotos-cloud.-no03 {
    width: 65%;
    position: absolute;
    left: -15%;
    bottom: -15%;
  }

  .srPhotos-character02 {
    bottom: -20px;
  }
  .srPhotos-character03 {
    right: auto;
    left: 0;
    bottom: auto;
    top: -50px;
  }
}




/***********
srEntry
************/

.srEntry {
  position: relative;
  padding-bottom: 14em;
}

@media screen and (max-width:834px) {

}


/***********
howto
************/

.howto {
}
.howto-container {
  background-color: var(--color-base);
  border-radius: 40px;
  border: 3px solid var(--color-brand01);
  box-shadow: 8px 10px 0 var(--color-brand01);
  padding: min(5vw,4em) min(7vw,4em);
  position: relative;
}
.howto-container.-noOffsetTop {
  padding-top: 0;
}
.howto-container + .howto-container {
  margin-top: 20px;
}
.howto-container.-connect::before,
.howto-container.-connect::after {
  content: "";
  display: block;
  width: 12px;
  height: 80px;
  background: url(../../img/stamprally2025/connect_or.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  top: 0;
  translate: 0 calc(-50% - 10px);
}
.howto-container.-connect::before {
  left: 15%;
}
.howto-container.-connect::after {
  right: 15%;
}


.howto-heading {
  text-align: center;
  font-size: clamp(16px,2vw, 22px);
  padding: 2em 0 1.5em;
  color: var(--color-brand01);
}
.howto-heading-box {
  display: inline-block;
  position: relative;
}
.howto-heading-title {
  font-weight: 700;
  font-size: 200%;
  letter-spacing: 0.08em;
}
.howto-heading-subTitle {
  font-family: var(--font-family-en);
  font-weight: 900;
}

/*
separate
*/

.howto-separate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
}
.howto-separate-inner {
  padding-right: 5%;
}
.howto-separate-text {
  font-size: clamp(15px,1.6vw, 20px);
  line-height: 1.8;
}
.howto-separate-link {
}



/*
color
*/

.howto.-primary .howto-container {
  border: 3px solid var(--color-primary01);
  box-shadow: 8px 10px 0 var(--color-primary01);
}
.howto.-primary .howto-heading {
  color: var(--color-primary01);
}
.howto.-primary .howtoSlide-title {
  color: var(--color-primary01);
}


/*
character
*/

.howto-heading-character01 {
  width: 280px;
  position: absolute;
  right: calc(100% + 20px);
  bottom: -2em;
}
.howto-heading-character02 {
  width: 300px;
  position: absolute;
  left: calc(100% + 20px);
  bottom: -2em;
}
.howto-heading-character03 {
  width: 240px;
  position: absolute;
  left: calc(50% - 500px);
  top : -130px;
}


.howto-character01 {
  width: 240px;
  position: absolute;
  right: -120px;
  bottom: 0px;
  z-index: 2;
  pointer-events: none;
}
.howto-character02 {
  width: 70px;
  position: absolute;
  right: 60px;
  bottom: 20px;
  z-index: 2;
  pointer-events: none;
}


@media screen and (max-width:834px) {

  .howto {
  }
  .howto-container {
    border-radius: 20px;
    border-width: 2px;
    box-shadow: 4px 5px 0 var(--color-brand01);
    padding: min(5vw,2em) min(4vw,2em);
    margin-left: -2vw;
    margin-right: -2vw;
  }
  .howto-container.-noOffsetTop {
    padding-top: 0;
  }
  .howto-container + .howto-container {
    margin-top: 10px;
  }
  .howto-container.-connect::before,
  .howto-container.-connect::after {
    width: 8px;
    height: 56px;
    translate: 0 calc(-50% - 6px);
  }


  .howto-heading {
    padding-top: 1.5em;
    padding-bottom: 1em;
    font-size: clamp(13px,3.4vw, 18px);
  }
  .howto-heading-box {
    display: block;
  }
  .howto-heading-title {
    font-size: 170%;
  }
  .howto-heading-subTitle {
  }


  .howto-separate {
    display: block;
    text-align: center;
    padding: 2em 0;
  }
  .howto-separate-inner {
    padding-right: 0;
    padding-bottom: 1em;
  }
  .howto-separate-text {
    font-size: clamp(15px,3.2vw, 16px);
    line-height: 1.8;
  }


  /*
  color
  */

  .howto.-primary .howto-container {
    border: 3px solid var(--color-primary01);
    box-shadow: 8px 10px 0 var(--color-primary01);
  }
  .howto.-primary .howto-heading {
    color: var(--color-primary01);
  }

  .howto-heading-character01 {
    width: 120px;
    right: auto;
    right:calc(50% + 60px);
    bottom: 0;
  }
  .howto-heading-character02 {
    width: 150px;
    left: auto;
    right: -5px;
    bottom: 80%;
  }

  .howto-heading-character03 {
    width: 140px;
    left: calc(50% - 150px);
    top : auto;
    bottom: -140px;
  }


  .howto-character01 {
    width: 120px;
    right: -10px;
    bottom: 100%;
  }
  .howto-character02 {
    width: 34px;
    right: auto;
    left: 10px;
    bottom: auto;
    top: 5px;
  }


}


/***********
howtoSlide
************/

.howtoSlide {
  position: relative;
}
.howtoSlide-wrapper {
  display: flex;
  margin: 0 max(-7vw,-4em);
  padding-bottom: 50px;
  position: relative;
}
.howtoSlide-section {
  padding: 0 min(7vw,6em) 1em;
}

.howtoSlide-heading {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: clamp(24px,4vw, 40px);
  background: url(../../img/stamprally2025/title_line02_or.png) no-repeat left top /  auto 2.2em;
  padding: 0.33em 0 1em 1.6em;
  color: var(--color-brand01);
}

.howtoSlide-container {
  display: flex;
}
.howtoSlide-visual {
  width: 44%;
  padding: 0 5%;
}
.howtoSlide-img {
}
.howtoSlide-img figcaption{
  text-align: right;
  padding-top: 0.5em;
}
.howtoSlide-inner {
  flex: 1;
  padding: 1em 0;
}
.howtoSlide-title {
  font-size: clamp(22px,2.2vw, 28px);
  padding-bottom: 0.8em;
  color: var(--color-brand01);
}
.howtoSlide-text {
  font-size: clamp(15px,1.4vw, 18px);
  line-height: 1.8;
}
.howtoSlide-link {
  padding-top: 2em;
}


/*
control
*/

.howtoSlide .slick-dots{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.howtoSlide .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0 5px;
  padding: 0;
  border: 2px solid var(--color-brand01);
  cursor: pointer;
}
.howtoSlide .slick-dots .slick-active button{
  background-color: var(--color-brand01);
}


.howtoSlide-arrow {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.howtoSlide-arrow button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--color-brand01);
  background-color: var(--color-base);
  border-radius: 50%;
  z-index: 9;
  position: absolute;
  transition: 0.2s;
  cursor: pointer;
}
.howtoSlide-arrow button.is-disabled {
  opacity: 0;
  pointer-events: none;
}
body.is-pc .howtoSlide-arrow button:hover {
  background-color: var(--color-sub03);
}
.howtoSlide-arrow button img {
  width: 50%;
}
.howtoSlide-arrow button.howtoSlide-prev img {
  scale: -1 1;
}
.howtoSlide-prev {
  left: calc(max(-7vw,-4em) - 30px);
}
.howtoSlide-next {
  right: calc(max(-7vw,-4em) - 30px);
}

/*
color
*/

.howtoSlide.-primary .slick-dots button{
  border: 2px solid var(--color-primary01);
}
.howtoSlide.-primary .slick-dots .slick-active button{
  background-color: var(--color-primary01);
}
.howtoSlide.-primary .howtoSlide-arrow button {
  border: 2px solid var(--color-primary01);
}
body.is-pc .howtoSlide.-primary .howtoSlide-arrow button:hover {
  background-color: var(--color-sub04);
}
.howtoSlide.-primary .howtoSlide-heading {
  background-image: url(../../img/stamprally2025/title_line02_aq.png) ;
  color: var(--color-primary01);
}


@media screen and (max-width:834px) {

  .howtoSlide {
  }
  .howtoSlide-wrapper {
    display: flex;
    margin: 0 max(-4vw,-2em);
    padding-bottom: 30px;
    margin-bottom: 2em;
  }
  .howtoSlide-section {
    padding: 0 min(4vw,3em) 2em;
  }

  .howtoSlide-heading {
  }

  .howtoSlide-container {
    display: block;
  }
  .howtoSlide-visual {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 0;
  }
  .howtoSlide-img {
  }
  .howtoSlide-img figcaption{
    font-size: 11px;
  }
  .howtoSlide-inner {
    padding: 2em 0 0;
  }
  .howtoSlide-title {
    font-size: clamp(20px,4vw, 22px);
    font-feature-settings: "palt";
    letter-spacing: 0.04em;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0.2em;
  }
  .howtoSlide-text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .howtoSlide-link {
    text-align: center;
    padding-top: 2em;
  }


  /*
  control
  */


  .howtoSlide-arrow button {
    width: 32px;
    height: 32px;
  }
  .howtoSlide-arrow button.is-disabled {
    opacity: 0;
    pointer-events: none;
  }
  body.is-pc .howtoSlide-arrow button:hover {
    background-color: var(--color-sub03);
  }
  .howtoSlide-arrow button img {
    width: 60%;
  }
  .howtoSlide-arrow button.howtoSlide-prev img {
    scale: -1 1;
  }
  .howtoSlide-prev {
    left: calc(max(-4vw,-2em) - 14px);
    background-color: red;
  }
  .howtoSlide-next {
    right: calc(max(-4vw,-2em) - 14px);
  }


}


/***********
srEntry-cv
************/

.srEntry-cv {
  padding-top: 2em;
}
.srEntry-cv-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-base);
  color: var(--color-brand01);
  border: 2px solid var(--color-brand01);
  border-radius: 8px;
  text-decoration: none;
  padding: 0.8em 4em 0.8em 2em;
  position: relative;
}
body.is-pc a.srEntry-cv-btn:hover {
  background-color: var(--color-sub03);
}
.srEntry-cv-btn::after {
  content: "";
  display: block;
  width: auto;
  width: 18px;
  height: 18px;
  aspect-ratio: 1 / 1;
  background: url(../../img/stamprally2025/heart_accent01.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 18px;
  top: 50%;
  rotate: -90deg;
  translate: 0 -50%;
  z-index: 9;
  transition: 0.3s;
}

.srEntry-cv-qr {
  width: 100px;
}
.srEntry-cv-inner {
  padding-left: 1.5em;
}
.srEntry-cv-text {
  font-size: clamp(15px,1.4vw, 18px);
  font-weight: 500;
}
.srEntry-cv-tips {
  font-size: clamp(12px,1vw, 14px);
  padding-top: 0.5em;
}

.srEntry-help {
  display: flex;
  justify-content: center;
}
.srEntry-help-inner {
  padding-right: 2em;
}
.srEntry-help-link {
  width: 50%;
}


.srEntry-cv-btn.-close {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.srEntry-cv-btn.-close::before {
  content: "このラリーは終了いたしました";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-size: clamp(116%,1.2vw, 154%);
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}




/***********
srApplication
************/

.srApplication {
  position: relative;
  padding-bottom: 12em;
}

@media screen and (max-width:834px) {

  .srApplication {
    padding-bottom: 15em;
  }
}


/***********
srContact
************/

.srContact {
  padding-top: 15em;
  padding-bottom: 15em;
}

.srContact-container {
  background-color: var(--color-base);
  border-radius: 30px;
  border: 3px solid var(--color-brand01);
  padding: 4em 5%;
  text-align: center;
  position: relative;
}

.srContact-cloud {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  translate: -50px 0 ;
  transition: 4s;
}
.srContact-cloud.is-show {
  opacity: 1;
  translate: 0 0 ;
}
.srContact-cloud.-no01 {
  width: 300px;
  position: absolute;
  left: -15%;
  top: -8%;
}
.srContact-cloud.-no02 {
  width: 300px;
  position: absolute;
  right: -18%;
  bottom: -10%;
}



.srContact-heading {
  display: inline-block;
  border-bottom: 2px solid var(--color-brand01);
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.srContact-heading-title {
  font-size: clamp(20px,2.4vw, 26px);
  color: var(--color-brand01);
}
.srContact-heading-text {
  font-size: clamp(12px,1.2vw, 16px);
  font-weight: 500;
  padding-top: 0.8em;
  line-height: 1.8;
}
.srContact-title {
  font-size: clamp(16px,2vw, 20px);
  font-weight: 700;
  color: var(--color-brand01);
  padding-bottom: 1.5em;
}
.srContact-box {
  display: inline-block;
  text-align: left;
}
.srContact-data {
  display: flex;
  align-items: start;
}
.srContact-data dt {
  font-family: var(--font-family-en);
  font-size: clamp(16px,1.6vw, 20px);
  font-weight: 500;
  border-radius: 5px;
  min-width: 4em;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.srContact-data + .srContact-data {
  margin-top: 1.5em;
}
.srContact-data dd {
  padding-left: 1.5em;
}
.srContact-data-num {
  font-family: var(--font-family-en);
  font-size: clamp(16px,1.6vw, 36px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
  line-height: 1;
}
.srContact-data-text {
  font-size: clamp(11px,1.2vw, 16px);
  padding-top: 0.2em;
}

@media screen and (max-width:834px) {

  .srContact {
    padding-top: 10em;
    padding-bottom: 10em;
  }

  .srContact-container {
    border-radius: 15px;
    border-width: 2px;
    padding: 2em 5%;
  }

  .srContact-cloud {
  }
  .srContact-cloud.is-show {
  }
  .srContact-cloud.-no01 {
    width: 200px;
    left: -5%;
    top: -20%;
  }
  .srContact-cloud.-no02 {
    width: 200px;
    right: -5%;
    bottom: -20%;
  }


  .srContact-heading {
    display: inline-block;
    border-bottom: 2px solid var(--color-brand01);
    padding-bottom: 2em;
    margin-bottom: 1.5em;
  }
  .srContact-heading-title {
    font-size: clamp(20px,4.6vw, 26px);
    line-height: 1.4;
  }
  .srContact-heading-text {
  }
  .srContact-title {
    font-size: clamp(16px,3.8vw, 20px);
    padding-bottom: 1em;
    font-weight: 500;
    line-height: 1.4;
  }
  .srContact-data dt {
    font-size: clamp(14px,3vw, 16px);
    border-radius: 5px;
    min-width: 3.4em;
  }
  .srContact-data + .srContact-data {
    margin-top: 1.5em;
  }
  .srContact-data dd {
    padding-left: 0.8em;
  }
  .srContact-data-num {
    font-size: clamp(13px,4vw, 20px);
  }
  .srContact-data-text {
    padding-top: 0.2em;
  }

}

/***********
srVisual
************/

.srVisual {
  background: url(../../img/stamprally2025/visual02.jpg) repeat-x 0 0 / 2405px 600px;
  animation: anim-srVisual-bg 100s linear infinite;
  height: 600px;
}

@keyframes anim-srVisual-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 2405px 0;
  }
}

@media screen and (max-width:1440px) {

  .srVisual {
    background-size: 1600px 400px;
    animation: anim-srVisual-bg 100s linear infinite;
    height: 400px;
  }

  @keyframes anim-srVisual-bg {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 1600px 0;
    }
  }

}

@media screen and (max-width:834px) {

  .srVisual {
    background-size: 1200px 300px;
    animation: anim-srVisual-bg 60s linear infinite;
    height: 300px;
  }

  @keyframes anim-srVisual-bg {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 1200px 0;
    }
  }

}

/***********
srSpot
************/

.srSpot {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
.srSpot-slide {
  width: 100%;
  height: 93px;
  pointer-events: none;
  position: absolute;
  left: 0;
  background: url(../../img/stamprally2025/illust_slide.png) repeat-x 0 0 / 2882px 93px;
}
.srSpot-slide.-no01 {
  top: 0;
  animation: anim-srSpot-bg 120s linear infinite;
}
.srSpot-slide.-no02 {
  bottom: 0;
  animation: anim-srSpot-bg 120s linear infinite reverse;
}

@keyframes anim-srSpot-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 2882px 0;
  }
}


.srSpot-container {
  padding: 10em 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.srSpot-heading {
  color: var(--color-primary01);
  font-size: clamp(16px,1.8vw, 22px);
  padding-left: 160px;
  padding-right: 0.5em;
}
.srSpot-heading-character01 {
  width: 200px;
  position: absolute;
  left: -50px;
  bottom: 0em;
}
.srSpot-character02 {
  display: none;
}

.srSpot-heading-subTitle {
  white-space: nowrap;
  font-family: var(--font-family-en);
  font-weight: 900;
  font-size: 270%;
  line-height: 1;
}
.srSpot-heading-title {
  font-weight: 700;
}

@media screen and (max-width:834px) {

  .srSpot {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .srSpot-slide {
    height: 60px;
    background-size: 1440px 60px;
  }
  .srSpot-slide.-no01 {
    top: 0;
    animation: anim-srSpot-bg 80s linear infinite;
  }
  .srSpot-slide.-no02 {
    bottom: 0;
    animation: anim-srSpot-bg 80s linear infinite reverse;
  }

  @keyframes anim-srSpot-bg {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 1000px 0;
    }
  }


  .srSpot-container {
    padding: 3em 0 4em;
    display: block;
    text-align: center;
    position: relative;
  }
  .srSpot-heading {
    font-size: clamp(16px,1.8vw, 22px);
    padding-left: 0;
    padding-right: 0;
  }
  .srSpot-heading-character01 {
    width: 160px;
    position: absolute;
    left: auto;
    bottom: auto;
    top: -80px;
    right: -20px;
  }
  .srSpot-character02 {
    display: block;
    width: 110px;
    position: absolute;
    left: 0;
    bottom: -110px;
  }
  .srSpot-heading-subTitle {
    font-size: 240%;
  }
  .srSpot-heading-title {
    font-weight: 700;
  }

  .srSpot-link {
    padding-top: 2em;
  }
  .srBtn.srSpot-link-btn {
    font-feature-settings: "palt";
    font-size: clamp(12px,3.8vw, 16px);
    padding-right: 4.5em;
    padding-left: 1.5em;
  }

}



/***********
srFixedCv
************/

.srFixedCv {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 9990;
  width: clamp(120px,15vw, 150px);
  translate: 0 calc(100% + 50px);
  transition: 0.7s;
}
body.is-loaded .srFixedCv {
  translate: 0 0;
  transition-delay: 0.5s;
}

.srFixedCv a {
  display: block;
  transition: 0.2s;
}
body.is-pc .srFixedCv a:hover {
  scale: 1.03;
}
.srFixedCv-base {
}
.srFixedCv-text {
  position: absolute;
  left: 0;
  top: 0;
  animation: anim-srFixedCv 3s infinite ease-in-out;
  transform-origin: center center;
}

@keyframes anim-srFixedCv {
  0%   { transform: rotate(5deg); }
  50%  { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

@media screen and (max-width:834px) {

  .srFixedCv {
    right: 5px;
    bottom: 10px;
    width: clamp(80px,35vw, 110px);
  }

}

/***********
xxxxx
************/

/***********
xxxxx
************/
