/* CSS Document */
/*=======================================
	変数
=======================================*/
:root {
  --color-white: #fff;
  --color-black: #000;
  --color1: #d9d9d9;
  --color2: #3498db;
  --color3: #e3621d;
  --color4: #7c8a4f;
  --color5: #add168;
  --color6: #e74c3c;
  --color7: #f1c700;
  --color8: #5cb77e;
  --color9: #42a166;
  --color10: #71c695;
  --color11: #f1fbf1;
  --anchor: #fbfaf1;
  --back: #6cbc8e;
  --register: #7ab97a;
  --complete: #f19e72;
  --makura: 92, 183, 126; /* #5cb77e をRGBにした値 */
  --roboto: 'Roboto';
  --inter: 'Inter';
  --font-yeseva: 'Yeseva One', 'Times New Roman';
  --font-noto-sans-jp: 'Noto Sans JP';
}

/*=======================================
	全体
=======================================*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1rem;
  font-feature-settings: 'palt';
  position: relative;
  color: var(--color-white);
  transition: background-color 1s ease;
  font-family: var(--roboto), sans-serif;
  background-color: var(--back);
}
@media screen and (max-width: 390px) {
  body {
    font-size: 1.5rem;
  }
}

/* 認証が成功するまでコンテンツを非表示にするスタイル */
.hidden-content {
  display: none;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  position: relative;
  margin: 20px auto;
  font-weight: 700;
}

.inner {
  margin: 0 auto;
  position: relative;
  /* width: 95%; */
  max-width: 390px;
}
.innerWrapper {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 390px;
  background-color: var(--color7);
}

.df_row {
  display: flex;
  flex-flow: row wrap;
}

.mv_img {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

[class*='btn_'] {
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  padding: 7px 20px;
  border-radius: 50px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-flow: column;
}
[class*='btn_'] span {
  line-height: 1.2;
  font-size: 1.2rem;
  display: block;
}
[class*='btn_'].btn_arrow::before {
  content: '';
  background-image: url(../images/arrow_btn.svg);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
[class*='btn_']::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50px;
}

.btn_white {
  color: var(--color-black);
  background-color: var(--color-white);
}

.btn_pink {
  background-color: #de7f82;
}

.btn_blue {
  background-color: #007fb5;
}

.fix_btn {
  position: fixed;
  right: 0;
  bottom: 30px;
  border-radius: 8px 0 0 8px;
  width: 268px;
  padding: 8px 8px 8px 10px;
  z-index: 98;
  display: flex;
  flex-flow: column;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--color-white);
  background-color: var(--complete);
}

.mv .fix_btn::before {
  content: '';
  background-image: url(../images/arrow_btn.svg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
.fix_btn span {
  font-weight: normal;
}

.back_bottom_gray {
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: -60px;
  left: 0px;
}

.anchor_menu {
  background-color: var(--anchor);
  position: relative;
  padding: 20px 10px;
}
.anchor_menu .menu {
  display: flex;
  flex-flow: row wrap;
  gap: 5px;
}
.anchor_menu .menu .item {
  width: calc((100% - 5px) / 2);
  background-color: var(--color8);
  border: 1px solid var(--color-black);
  color: var(--color-white);
  border-radius: 10px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  padding: 7px 8px;
  position: relative;
  height: 60px;
  line-height: 1.3;
  font-weight: 700;
}
.anchor_menu .menu .item::before {
  content: '';
  background-image: url(../images/arrow_anchor.webp);
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

h2 {
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 3.4rem;
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.3;
  position: relative;
}
h2 span {
  display: block;
  font-size: 1.6rem;
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
}
h2 figure {
  position: absolute;
}

h2#book {
  padding-left: 130px;
  margin-bottom: 40px;
  margin-top: 70px;
}
h2#book .book {
  width: 75px;
  top: -6px;
  left: 44px;
}
.join {
  position: relative;
  margin: 0 auto;
  padding: 100px 0 40px;
  background-color: var(--complete);
  max-width: 390px;
}

.join::before {
  content: '';
  width: 100%;
  height: 41px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/anchor-menu-arc.svg);
  background-repeat: no-repeat;
  background-size: 390px 41px;
}
.join h2,
.join p {
  color: var(--color-white);
}
.join p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
}

.join p.join-p {
  margin: 0;
}
.join p.join-p-last {
  margin: -5px 0 0 0;
}
.join p.join-p-last span{
  display: inline-block; 
  line-height: 1.5; 
  font-size: 1.4rem; 
  margin-top: 2px;
}

.join .join-overview1 {
  margin: 10px 0 60px;
  display: flex;
  justify-content: center;
}
.join .join-overview1 img {
  width: 344px;
  margin: 0 auto;
}
@media screen and (max-width: 360px) {
  .join .join-overview1-p{
    font-size: 1.4rem; 
    padding: 0 10px;
  }
}

.join .join-overview1-qr {
  margin: -18px 0 20px;
  font-size: 1.2rem;
  text-align: center;
}

.join .join-overview2 {
  margin: 20px 0 60px;
  display: flex;
  justify-content: center;
}
.join .join-overview2 img {
  width: 198px;
  margin: 0 auto;
}

.join p .u-number {
  display: inline-block;
  font-size: 2.4rem;
  color: var(--color6);
}
.join .join-dl {
  display: grid;
  justify-items: center;
  font-weight: 700;
}
.join .join-dl + .join-dl {
  margin-top: 8px;
}
.join .join-dl dt {
  font-size: 1.6rem;
}
.join .join-dl a {
  text-decoration: underline;
}
.join .join-dl dd {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 2;
}
.join .join-dl dd a {
  color: var(--color-black);
  text-decoration: underline;
}
.join .join-dl dd a.home-url {
  margin: 0 auto;
  display: block;
  text-align: center;
  color: var(--color-white);
}
.spot-list-wrapper{
  padding: 20px 10px; 
  border: 2px solid var(--color-white);
  width: 340px; 
}
#spot-list .spot-list-wrapper:first-of-type{
  margin: 30px auto 0;
}
#spot-list .spot-list-wrapper:last-of-type{
  margin: 0 auto;
}
.spot-list-wrapperPlus{
  color: var(--color-white);
  display: grid;
  justify-items: center;
  font-size: 8.0rem;
  font-weight: 700;
  line-height: 1;
}
.spot-list-header{
  position: relative;
  width: 100%;
  height: 80px;
  background-color: var(--color-white);
  color: var(--color6);
  font-size: 1.6rem;
  line-height: 1.7; 
  display: grid;
  place-items: center;
}
.spot-list-header p{
  color: var(--color6);
  margin: 0 auto;
}
.spot-list-header p:first-child{
  font-size: 1.6rem;
  line-height: 1.7;
}
.spot-list-header p:last-child{
  margin-top: -16px;
  font-size: 1.3rem; 
  line-height: 1.3;
}
.spot-list-header p:last-child span{
  font-size: 1.6rem;
  display: inline-block; 
  color: var(--color-black);
}
.spot-list-header::before,
.spot-list-header::after {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 80px;
  background: var(--complete);
}

/* 左端の三角形 */
.spot-list-header::before {
  left: -1px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* 右端の三角形 */
.spot-list-header::after {
  right: -1px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.spot-list-body{
  padding: 15px 0 0;
}

#complete {
  margin-top: 50px;
}

/* スタンプ台帳 */
#stamp {
  max-width: 390px;
  margin: 0 auto;
  padding: 100px 0 40px;
  background-color: var(--register);
  position: relative;
}
#stamp::before {
  content: '';
  width: 100%;
  height: 41px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/anchor-menu-arc.svg);
  background-repeat: no-repeat;
  background-size: 390px 41px;
}
.stamp-title {
  display: grid;
  grid-template-columns: 1fr 120px;
  grid-column-gap: 20px;
  place-items: center;
  max-width: 365px;
  margin: 0 auto;
}
.stamp-title h2 {
  text-align: left;
  line-height: 1;
}
.stamp-title h2 span {
  display: inline-block;
  font-family: var(--font-yeseva);
  font-weight: 400;
  margin: -10px 0 0 4px;
}
.stamp-title img {
  width: 120px;
  height: auto;
}
.stamp-process {
  margin-top: 20px;
  width: 100%;
  height: 693px;
  background-image: url(../images/stamp-back.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 390px 693px;
  position: relative;
}
.stamp-process .stamp-img {
  position: absolute;
}
.stamp-process .stamp-img.is-none {
  display: none;
}
.stamp-process .notComplete1 {
  left: 15px;
  top: 6px;
}
.stamp-process .notComplete2 {
  right: 10px;
  top: 216px;
}
.stamp-process .notComplete3 {
  left: 15px;
  top: 406px;
}
.stamp-process .complete1 {
  left: 12px;
  top: 27px;
}
.stamp-process .complete2 {
  right: 10px;
  top: 238px;
}
.stamp-process .complete3 {
  left: 12px;
  top: 449px;
}
.complete1.stamp-img img,
.complete2.stamp-img img,
.complete3.stamp-img img {
  width: 223px;
}

.stamp-button-wrapper{
  display: grid;
  place-items: center;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 3.0rem;
  padding: 20px 0 0 0;
}
.stamp-button-wrapper > div{
  display: grid;
  place-items: center;
  border-radius: 30px;
  width: 300px; 
  height: 60px;
}
#notComplete-button{
  background-color: var(--color1);
}
#complete-button{
  background-color: var(--color6);
}
#notComplete-button.is-none,#complete-button.is-none{
  display: none;
}

/* コンプリート特典 */
#stampledger #complete {
  max-width: 390px;
  margin: 0 auto;
  padding: 40px 0 40px;
  background-color: var(--complete);
}

.benefits_info {
  margin-top: 20px 0 0;
  font-size: 1.8rem;
  text-align: center;
}
.benefits_info span{
  display: inline-block; 
  font-size: 1.4rem;
}

.benefits_wrap {
  max-width: 352px;
  margin: 0 auto;
}

.benefits_item {
  margin-bottom: 20px;
}
.benefits_item p {
  width: 100%;
}
.benefits_item .item_header {
  background-color: var(--color3);
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 700;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.benefits_item .item_content {
  background-color: var(--color-white);
  padding: 20px 10px;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.benefits_item .item_content p {
  color: var(--color3);
  text-align: center;
}
.benefits_item .item_content p.item_content-title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0 auto;
}
.benefits_item .item_content p.item_content-title span {
  font-size: 1.6rem;
  display: inline-block;
}
.benefits_item .item_content p.item_content-info {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 20px auto 0;
}
.benefits_item .item_content p.item_content-info span {
  font-size: 2.4rem;
  display: inline-block;
}
.benefits_item .item_content p.item_content-info a {
  text-decoration: underline;
}
.benefits_item .item_content p.item_content-info a.is-none {
  display: none;
}

.benefits_item .item_content .benefit_img {
  width: 100%;
  margin: 20px auto 0;
  position: relative;
  display: grid;
  justify-items: center;
  width: 300px;
}

.benefits_item .item_content p.benefit_img_info {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  background-color: var(--color3);
  color: var(--color-white);
  padding: 4px 8px;
  display: inline-block;
  width: auto;
  border-radius: 4px;
  margin-top: 10px;
}
.benefits_item .item_content p.benefit_img_info::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px; /* 要素の下に配置 */
  width: 13px;
  height: 11px;
  background: var(--color3);
  clip-path: polygon(50% 100%, 0 0, 100% 0); /* ▼下向き三角形 */
}
.benefit_img img {
  border-radius: 10px;
  margin-top: -16px;
}
.benefits_item .item_content .benefit_float_text {
  width: 100%;
  position: absolute;
  top: 73px;
  left: 0;
  background-color: rgba(var(--makura), 0.6);
  padding: 9px 10px;
}
.benefits_item .item_content .benefit_float_text p {
  color: var(--color-white);
  font-weight: 900;
  font-family: var(--inter);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: left;
  font-size: 2.3rem;
  margin: 0 auto;
  line-height: 1.2;
  letter-spacing: -0.004em;
}
.benefits_item .item_content .benefit_float_text span {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.benefits_item .item_content .benefit_float_text a {
  text-decoration: underline;
}
.benefits_item .item_content p.unwallet-poppup {
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 20px 0 0;
}

/* ステップと配布スポットのラッパー */
.section-wrapper {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  justify-items: center;
  background-color: var(--color10);
}
/* ステップ */
#howto,
#spot {
  max-width: 352px;
  width: 100%;
}
#howto h2,
#spot h2 {
  margin: 0;
}
.h2-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  height: 220px;
  background-color: var(--color9);
  border-radius: 10px 10px 0 0;
}
.howto-norurun {
  position: relative;
}
.howto-norurun img {
  position: absolute;
}
.howto-norurun1 {
  left: 0;
  bottom: -30px;
  width: 92px;
}
.howto-norurun2 {
  right: 0;
  bottom: -30px;
  width: 90px;
}
.howto-stepWrapper {
  padding: 10px 0 60px;
  background-color: var(--color-white);
}
#howto h3 {
  font-size: 1.8rem;
  margin-top: 12px;
}
#howto h3.howto-title {
  margin: 20px 0;
}
#howto h3 span{
  display: inline-block; 
  font-weight: 700;
  font-size: 2.2rem; 
  color: var(--color9);
}
.howto-step-list {
  color: var(--color-black);
  text-align: center;
}
.howto-step-list li {
  position: relative;
  padding-top: 60px;
  font-weight: 700;
}
.howto-step-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  font-family: var(--font-noto-sans-jp);
  font-weight: 700;
  text-align: center;
  color: var(--color9);
  letter-spacing: 0.1em;
}
.howto-step-img {
  position: relative;
  margin: 0 auto;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background-color: var(--color11);
}
.howto-step-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.howto-step-img .step1-img {
  width: 132px;
  top: 40px;
  left: 54px;
  transform: none;
}
.howto-step-img .step2-img {
  width: 244px;
}
.howto-step-img .step3-img {
  width: 187px;
}
.howto-step-img .step4-img {
  width: 186px;
  top: 65px;
  left: 40px;
  transform: none;
}
.howto-step-info {
  font-size: 1.5rem;
  margin-top: 18px;
  text-align: center;
}
.howto-step-info span {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color9);
}
.howto-step-info a {
  text-decoration: underline;
}
.howto-step-buttonWrapper {
  display: inline-block;
}
.howto-step-button {
  padding: 8px 26px 8px 12px;
  border-radius: 10px;
  background-color: var(--color9);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.4;
  display: grid;
  align-items: center;
  height: 60px;
  position: relative;
  min-width: 240px;
}
.howto-step-button::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.howto-area {
  margin-top: 20px;
}
.howto-area p {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0;
}
.howto-area p span {
  display: inline-block;
  font-size: 1.8rem;
}
.howto-area p + p {
  margin-top: 10px;
}
.howto-area a {
  text-decoration: underline;
}
.howto-step-info-link {
  margin-top: -12px;
  line-height: 2;
}
.howto-step-info-link a {
  text-decoration: underline;
}

/* 配布スポット */
#spot {
  margin-top: 40px;
}
.spot-norurun {
  position: relative;
}
.spot-norurun img {
  position: absolute;
}
.spot-norurun1 {
  left: 0;
  bottom: -30px;
  width: 64px;
}
.spot-norurun2 {
  right: 0;
  bottom: -30px;
  width: 134px;
}
.howto-dlWrapper {
  padding: 10px 0 60px;
  background-color: var(--color-white);
}

.spot-dlWrapper {
  padding: 60px 16px 0;
  background-color: var(--color-white);
}
.spot-dl {
  width: 316px;
  margin: 0 auto;
}
.spot-dl dt {
  padding: 8px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  background-color: var(--color9);
}
.spot-dl dd {
  padding: 20px 0 40px;
  color: var(--color-black);
}
.spot-dl h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.spot-dl h3 span {
  font-size: 2rem;
}
.spot-dl-figure {
  margin-top: 20px;
  display: grid;
  justify-items: center;
}
.spot-dl-figure img {
  width: 200px;
}
.spot-dl-area {
  margin-top: 20px;
}
.spot-dl-area p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0;
}
.spot-dl-area p span {
  display: inline-block;
  font-size: 1.8rem;
}
.spot-dl-area p + p {
  margin-top: 10px;
}
.spot-dl-area a {
  text-decoration: underline;
}
.spot-dl-qr {
  text-align: center;
  font-size: 1.5rem;
  margin: 10px auto 0;
}
.spot-dl-qr span {
  font-size: 2rem;
  display: inline-block;
  color: var(--color9);
}

/* slider */
.slider-wrapper {
  margin-top: 20px;
  border-top: 2px solid var(--color9);
}
.slider-wrap {
  position: relative;
  width: 200px; /* .swiper と同じ幅に */
  margin: 20px auto 50px;
}
.swiper {
  width: 200px;
  padding: 0 0 20px;
}
/* 矢印ボタンを左右に外出し配置 */
.slider-wrap .swiper-button-prev,
.slider-wrap .swiper-button-next {
  position: absolute;
  top: 72%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
/* Swiperのデフォルト矢印を上書きして画像にする */
.slider-wrap .swiper-button-prev::after,
.slider-wrap .swiper-button-next::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* 画像差し替え */
.slider-wrap .swiper-button-next::after {
  background-image: url('../images/slider-next.svg');
}
.slider-wrap .swiper-button-prev::after {
  background-image: url('../images/slider-prev.svg');
}
/* 外側へオフセット */
.slider-wrap .swiper-button-prev {
  left: -50px;
}
.slider-wrap .swiper-button-next {
  right: -50px;
}
/* ドット位置（任意） */
.slider-wrap .swiper-pagination {
  position: absolute;
  bottom: -30px !important;
}
/* sliderの中身 */
.swiper-slide-title {
  font-size: 2rem;
  text-align: center;
  margin: 0;
}
.swiper-slide-figure {
  position: relative;
  margin-top: 15px;
}
.swiper-slide-figure .swiper-zoom {
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 89px;
  cursor:pointer;
}
/* 施設 */
.slider-wrapper .mall-title {
  margin: 20px 0 -20px;
  font-size: 2rem;
  text-align: center;
}
.slider-wrapper .mall-title span {
  display: inline-block;
  font-size: 1.8rem;
}
.slider-wrapper .mall-qr-area {
  font-size: 1.8rem;
  text-align: center;
  margin: -30px auto 20px;
}
.slider-wrapper .mall-qr-area span {
  display: inline-block;
  letter-spacing: 0;
}
.slider-wrapper .mall-links {
  margin: 0 auto;
  width: max-content;
  display: flex;
  gap: 12px;
}
.slider-wrapper .mall-links img {
  height: 32px;
  width: auto;
}

/* よくある質問 */
.qa_section {
  margin: 0 auto;
  max-width: 390px;
  padding: 60px 32px;
  background-color: var(--color5);
}
.qa_section h2 {
  font-weight: 700;
  font-size: 3.2rem;
  font-family: var(--roboto);
}
.qa_wrap {
  margin: 30px 0 0;
}
.qa_wrap .qa_item:not(:first-child) {
  margin-top: 20px;
}
.qa_item {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 12px;
  color: var(--color-black);
}
.question {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 39px;
  padding-right: 20px;
  position: relative;
  text-align: justify;
  cursor: pointer;
}
.question::before {
  content: '';
  background-image: url(../images/question-icon.svg);
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.question::after {
  content: '';
  background-image: url(../images/question-arrow-down.svg);
  width: 10px;
  height: 7px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.5s ease;
}
.question.close::after {
  transform: rotate(180deg);
}
.qa_item .answer {
  font-size: 1.4rem;
  margin: 10px 0 0;
  width: 100%;
  display: none;
  font-weight: 400;
}
.qa_item .answer a {
  text-decoration: underline;
}

/* 「Q SKIP」クーポンコードの使用方法 */
#use {
  max-width: 390px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: var(--register);
  display: grid;
  justify-items: center;
}
#use h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0;
}
#use p {
  margin: 0;
}
.use-stepWrapper {
  margin: 36px 0 0 0;
  padding: 0;
}
.use-step {
  width: 360px;
  padding: 20px;
  background-color: var(--color-white);
}
.use-step-number {
  color: var(--color9);
  line-height: 1;
  font-size: 4rem;
  font-family: var(--font-noto-sans-jp);
  text-align: center;
}
#use .use-step-info {
  text-align: center;
  margin-top: 20px;
  font-size: 1.9rem;
  line-height: 1.7;
  color: var(--color-black);
}
.use-step-info a {
  text-decoration: underline;
}
.use-step-img {
  margin-top: 20px;
  display: grid;
  justify-items: center;
}
.use-step-img .step1 {
  width: 160px;
}
.use-arrow-bottom {
  padding: 36px 0;
  display: grid;
  justify-items: center;
}
.use-arrow-bottom img {
  width: 78px;
}

/* 東急線ワンデーパスクーポン */
#coupon {
  max-width: 390px;
  margin: 0 auto;
  padding: 40px 0 40px;
  background-color: var(--complete);
  display: grid;
  justify-items: center;
  color: var(--color-white);
}
#coupon h1 {
  font-family: 'Mochiy Pop One', sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.3; 
  margin-bottom: 20px;
}
#coupon h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}
.coupon-img {
  margin-top: 36px;
  display: grid;
  justify-items: center;
}
.coupon-img img {
  width: 300px;
}
.coupon-info {
  margin: 36px 0 0;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.7;
}
.coupon-info a{
  text-decoration: underline;
}
.coupon-cordWrapper {
  margin-top: 36px;
  display: grid;
  justify-items: center;
}
.coupon-cordWrapper .coupon-cord-name {
  font-size: 1.9rem;
  margin: 0;
}
.coupon-cordWrapper .coupon-cord {
  background-color: var(--color-white);
  color: var(--color-black);
  margin: 2px 0 0;
  padding: 2px 4px;
  border-radius: 10px;
}
.coupon-cord-button {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  display: grid;
  place-items: center;
  width: 310px;
  height: 50px;
  background-color: var(--color6);
  border-radius: 30px;
  font-weight: 700;
  margin-top: 10px;
}

/*=======================================
	footer
=======================================*/
footer {
  background-color: #3e3a3a;
  padding: 1px 0 40px;
}

.event_slide {
  max-width: 280px;
  margin: 30px auto;
  position: relative;
}

.swiper-button-next {
  right: 0;
  transform: translateX(36px);
}

.swiper-button-prev {
  left: 0;
  transform: translateX(-36px);
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  color: #fff !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.6rem !important;
}

.project_name {
  font-weight: bold;
  text-align: center;
}

.sub_menu,
.credit {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 13px;
  font-size: 1.4rem;
  margin: 40px 0;
}

.icon_x {
  width: 40px;
  margin: 0 auto;
}

/*=======================================
	メニュー
=======================================*/
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: var(--complete);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 100;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  width: 28px;
  border-radius: 3px;
  background-color: #fff;
  transition: all 0.5s ease;
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hide_menu {
  opacity: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--anchor);
  height: 100vh;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-top: 32px;
  transition: all 0.5s ease;
  transform: translateY(-100%);
  overflow: scroll;
  padding-bottom: 40px;
}

.hide_menu .item {
  width: 320px;
  border-bottom: 2px dashed var(--color3);
  color: var(--color3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  line-height: 1.7;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.hide_menu.open {
  opacity: 1;
  transform: translateY(0);
}
.hide_menu .norurun_nav {
  width: 168px;
}

.btn_yellow {
  background-color: #e9a734;
}

.btn_help {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
}

/* モーダル */
/* --- overlay --- */
.modal__wrapper {
  position: fixed;
  inset: 0; /* top/right/bottom/left: 0 */
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
/* 表示時 */
.modal__wrapper.is-open {
  display: grid;
}
/* --- content --- */
.modal__content {
  background: var(--color-white);
  width: min(90vw, 400px); /* 画面が狭い時は縮む */
  max-width: 440px;
  max-height: 85vh;
  overflow: auto;
  border-radius: 12px;
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.modal__wrapper.is-open .modal__content {
  animation: modalIn 0.18s ease-out;
}
@keyframes modalIn {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--color1);
  color: var(--color-white);
  font-size: 1.2em;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 4rem;
  line-height: 1;
}
.modal__content .benefits_item {
  margin-bottom: 0;
}

.modal__content .modal__content-item {
  position: relative;
}
.modal__content-item h3 {
  font-size: 2.2rem;
  margin-top: 20px;
}
.modal__content-item .modal__content-img {
  display: grid;
  justify-items: center;
  margin-top: 20px;
}
.modal__content-item .modal__content-img img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 15px;
}
.modal__content .modal__content-item .modal-close {
  top: -30px;
}

/* イベント終了コメント */
.end_of_event p{
  font-family: 'Mochiy Pop One', sans-serif;
  color: var(--color6);
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.9rem; 
  letter-spacing: -0.008em;
}
.end_of_event .period{
  border-top: 2px solid var(--color6);
  font-size: 2.0rem; 
  margin: 20px 0 0 0; 
  padding: 20px 0 0 0;
}
.end_of_event .period span{
  display: inline-block;
  font-size: 1.7rem; 
  margin: 6px 0 0 0; 
  text-align: left;
}
.end_of_event.is-none {
  display: none;
}

.complete_end_of_event{
  margin: 20px auto 0;
  width: 360px; 
  padding: 20px 10px;
  background-color: var(--color-white);
}
.complete_end_of_event p{
  margin: 0 auto 20px;
  font-family: 'Mochiy Pop One', sans-serif;
  color: var(--color6) !important;
  text-align: center;
  font-size: 1.8rem; 
}
.complete_end_of_event .period{
  border-top: 2px solid var(--color6);
  font-size: 1.7rem; 
  margin: 15px 0 0 0; 
  padding: 15px 0 0 0;
}
.complete_end_of_event .period span{
  display: inline-block;
  font-size: 1.5rem; 
  margin: 6px 0 0 0; 
  text-align: left;
}
.complete_end_of_event.is-none {
  display: none;
}

/* メンテナンスコメント */
.maintenance{
  width: 360px;
  margin: 40px auto 0; 
  padding: 12px 20px;
  border: 2px solid var(--color6);
}
.maintenance p{
  color: var(--color6);
  margin: 0;
  text-align: center;
  font-size: 1.7rem; 
  letter-spacing: -0.008em;
}
.complete_maintenance{
  margin: 20px auto 0;
  width: 360px; 
  padding: 20px 10px;
  background-color: var(--color-white);
}
.complete_maintenance p{
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 1.6rem;
  color: var(--color6);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.benefits--btn,
.benefits--link {
  color: var(--color-white);
  display: grid;
  place-items: center;
  border-radius: 50px;
  width: 300px;
  height: 60px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 20px auto 0;
  padding: 10px 0;
  text-align: center;
}

.benefits--btn.is-none,
.benefits--link.is-none {
  display: none;
}

.benefits--btn.notComplete,
.benefits--link.notComplete {
  background-color: var(--color1);
  cursor: none;
  pointer-events: none;
}

.benefits--btn.notComplete.is-maintenance,
.benefits--link.notCompleteis-maintenanc {
  font-size: 1.6rem;
}

.benefits--btn.complete,
.benefits--link.complete {
  background-color: var(--color3);
}

.benefits_complete--link,
.benefits_complete--btn {
  background-color: var(--color3);
  color: var(--color-white);
  display: grid;
  place-items: center;
  border-radius: 50px;
  width: 300px;
  height: 60px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 20px auto 0;
  padding: 10px 0;
  text-align: center;
}
.stamp-process-view {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
  background-color: var(--color6);
  position: absolute;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.4;
}
.stamp-process-view.process1 {
  top: 190px;
  left: -5px;
}
.stamp-process-view.process2 {
  top: 190px;
  right: 0;
}
.stamp-process-view.process3 {
  top: 190px;
  left: -5px;
  letter-spacing: -0.02em;
}
.stamp-process-view a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
}
.stamp-process-view div {
  text-align: center;
}
.stamp-process-view img {
  width: 18px;
  height: auto;
}
.stamp-process-view figure {
  margin: 6px 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits_item .item_content .benefit_attention {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-black);
  margin: 20px 0 0;
}

.benefits_item .item_content .benefit_attention a {
  color: var(--color3);
}

.benefits_item .item_content .benefit_after {
  font-weight: 700;
  font-size: 1.7rem;
  margin: 20px 0 0;
  color: var(--color-black);
  text-align: justify;
  padding-left: 1em;
  text-indent: -1em; 
  letter-spacing: -0.008em;
}

.benefits_wChance {
  margin: 20px 0 4px;
  display: grid;
  place-items: center;
}

.benefits_wChance img {
  width: 246px;
}

.benefits_item .item_content .benefit_popblock {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--color-black);
  margin: 20px 0 0;
}

.benefits_item .item_content .benefit_popblock a {
  text-decoration: underline;
  color: var(--color3);
}

/*=======================================
	loader
=======================================*/
.loaderWrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
}

.loader::before,
.loader::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0.8;
}

.loader::before {
  border-top: 2px solid #0c328c;
  animation: rotate-left 1s linear infinite;
}

.loader::after {
  border-right: 2px solid #579dd8;
  animation: rotate-right 1s linear infinite;
}

.loader .loaderInner {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
}

.loader .loaderInner::before,
.loader .loaderInner::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0.8;
}

.loader .loaderInner::before {
  border-bottom: 2px solid rgba(250, 190, 0, 0.8);
  animation: rotate-right 1s linear infinite;
}

.loader .loaderInner::after {
  border-left: 2px solid #0c328c;
  animation: rotate-right 1s linear infinite;
}

@keyframes rotate-left {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*=======================================
	utility 汎用
=======================================*/
.u-indent {
  display: inline-block;
  padding-left: 0.8em;
  text-indent: -0.7em;
}
