html {
  scroll-behavior: smooth;
}


body{
    margin: 0 auto;
    max-width: 750px;
    background-color: #fef4fe;
    font-family:
      "Noto Sans JP",
      "Hiragino Sans",
      "Hiragino Kaku Gothic ProN",
      "Yu Gothic",
      "Meiryo",
      sans-serif;
    color: #434343;
}

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

.main {
  padding-top: 40px;  /* 80px だと多いなら 40〜60px くらいで調整 */
}


.parts_line{
    width: 10%;
    margin: auto;
    padding-top: 4%;
}

h2{
    font-size: 52px;
    font-weight: 500;
    text-align: center;
    padding-top: 3%;
    line-height: 1.4;
}

h2::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color: #434343;
    display: block;
    margin: 4% auto;
}

@media only screen and (max-width: 750px) {
h2{
    font-size: 27px;
}

.main {
  padding-top: 0px;  /* 80px だと多いなら 40〜60px くらいで調整 */
}
}

  /* ハンバーガメニュー */
/* ===================================================
   ハンバーガーメニュー＋グロナビ
   PC：横並びのメニュー
   SP：三本線＋スライドメニュー
=================================================== */

/* 共通：ナビの位置（750px の箱の上部に固定） */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  box-sizing: border-box;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(140, 109, 212, 0.15);
  z-index: 200;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* チェックボックスは常に非表示 */
.drawer_hidden {
  display: none;
}

/* =========================
   PC（751px 以上）
   → 横並びメニュー・ハンバーガー非表示
========================= */

.drawer_open {
  display: none;  /* PCではアイコンを出さない */
}

/* PC のメニューは普通の横並び */
.nav_content {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  padding-top: 0;
}

.nav_list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_item a {
  position: relative;
  color: #434343;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 3px;
}

/* 下線（通常は隠しておいて hover で伸びる） */
.nav_item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #434343;
  transition: width 0.3s ease;
}

.nav_item a:hover::after {
  width: 100%;
}

/* =========================
   スマホ（750px 以下）
   → ハンバーガー表示＋スライドメニュー
========================= */
@media screen and (max-width: 750px) {

  /* ===== 三本線ボタン（右上）===== */
  .drawer_open {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 210;

    /* 丸いベース（縦長にならないように width=height, line-height=0） */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20%;          /* 真円にする */
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
    border: none;
    padding: 0;
    line-height: 0;
    box-sizing: border-box;
  }

  .drawer_open span,
  .drawer_open span::before,
  .drawer_open span::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #8c6dd4;
    transition: 0.3s;
  }

  .drawer_open span::before {
    transform: translateY(-8px);
  }

  .drawer_open span::after {
    transform: translateY(8px);
  }

  /* 開いたとき 三本線 → バツ に変形 */
  #drawer_input:checked ~ .drawer_open span {
    background: transparent;
  }

  #drawer_input:checked ~ .drawer_open span::before {
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    transform: rotate(-45deg);
  }

  /* ===== メニュー本体（右からスライドイン）===== */
  .nav_content {
    position: fixed;
    top: 0;
    right: 0;

    /* ←高さを「画面の26%」じゃなくて、中身＋上限80vhにする */
    bottom: auto;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;

    transform: translateX(120%);        /* 最初は右に隠す */
    width: 80%;
    max-width: 330px;                   /* ここは好みで調整OK */

    background: rgba(255, 255, 255, 0.95);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    padding: 70px 24px 24px;
    transition: transform 0.3s ease;
    z-index: 150;
    text-align: left;
    border-radius: 10px 0 0 10px;       /* 左だけ角丸 */
  }

  /* チェック入ったらスライドイン */
  #drawer_input:checked ~ .nav_content {
    transform: translateX(0);
  }

  /* メニュー内のリンク */
  .nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .nav_item a {
    color: #434343;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #e9e9e9; /* ← 下線 */
  padding-bottom: 6px;           /* ← 下線との間に少し余白 */
}

  /* 下線アニメーションはスマホではオフ */
  .nav_item a::after {
    display: none;
  }

  /* PC用ナビの背景・影はスマホでは消してOK */
  .nav {
    background: none;
    box-shadow: none;
  }
}



/* ---------top--------- */

.top{
    background: url("img/01_top_img.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    padding-bottom: 4px;
}

.top-title{
    width: 98%;
    margin: auto;
    padding-top: 3%;
}

.top-point {
  display: flex;
  flex-direction: column; /* ←縦に積む */
  align-items: flex-start; /* ←左揃え */
  margin-left: 3%;        /* ←全体を少し右に寄せたい時 */
  width: 28%;
}

.top-point01 {
  transform: translateX(68%);
    margin-bottom: -18%;
}
.top-point02 {
  transform: translateX(0);
  margin-bottom: -18%;
}
.top-point03 {
  transform: translateX(68%);
}

.btn{
    background:linear-gradient(92deg,#8c6dd4,#dd7c7c);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px #fff solid;
    width: 80%;
    padding: 3%;
    font-size: 38px;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
        letter-spacing: 4px;
}

.btn a {
  display: inline-flex;           /* 横並び＋上下中央揃え */
  align-items: center;            /* 上下中央に */
  justify-content: center;        /* テキストも中央 */
  gap: 0.1em;                     /* テキストと矢印の間 */
  text-decoration: none;
  color: #fff;
  line-height: 1;                 /* 余計な上下余白を消す */
}

.btn a::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 0.4em;
    transform: translateY(2px);
}

@media only screen and (max-width: 750px) {
    .btn{
    font-size: 24px;
    border-radius: 15px;
    margin: 10px auto;
    letter-spacing: 2px;
}

.btn a::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
            margin-bottom: 1%;
}

}


/* ---------特徴--------- */

/* セクション背景：ここでは余白をゼロに戻す（予約は下でやる） */
.suitable{
  background: linear-gradient(92deg,#ffc1c2,#fff);
  padding-bottom: 0; /* ← いったん外す */
}

/* 白ベースの箱（背景画像を貼る所） */
.suitable-base{
  position: relative;                 /* 子absoluteの基準 */
  width: 100%;
  margin: 5% auto 0;
  aspect-ratio: 1100 / 950;
  background: url("img/02_zabu.png") center / contain no-repeat;
}

.suitable-list{
    display: flex;
  flex-direction: column; /* 縦に並べる */
  align-items: center;    /* 全体を中央に寄せる */
  gap: 2em;               /* 行間 */
  position: absolute;
      left: 0;
    right: 0;
    top: 11%;
}

.suitable-list-check{
    display: flex;
  align-items: flex-start; /* チェックと文字を上揃え */
  justify-content: flex-start; /* 左寄せに配置 */
  gap: 1.5em;              /* チェックと文字の間 */
  width: 100%;             /* 各行の横幅をそろえる */
  max-width: 303px;        /* PCでもバランスが崩れないよう制限 */
}

.suitable-list-check img {
  width: 11%;             /* チェックアイコンサイズ */
  flex-shrink: 0;          /* 縮まないよう固定 */
  margin-top: 40px;         /* 見た目の中央合わせ微調整 */
}

.suitable-list-text{
      font-size: 33px;
  line-height: 1.5;
  text-align: left;        /* 左揃え */
  color: #333;
}


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

    .suitable-list-check img {
    width: 11%;
    margin-top: 19px;
    }

    .suitable-list-text {
    font-size: 17px;
    }

    .suitable-list-check {
    max-width: 156px;
        gap: 1.2em;
    }

    .suitable-list {
    gap: 1em;
    }

}


/* ---------メリット--------- */
.merit{
background:linear-gradient(92deg,#fde6f8,#e6c7fd);
    padding-bottom: 6%;
}

.merit-box {
  position: relative;
  border-radius: 20px;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #8c6dd4, #ef9394) border-box;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(72, 72, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 3em;
  padding: 5%;
  margin: 2% 5%;
}

.merit-box img {
  width: auto;         /* ← 幅固定はやめる */
  max-width: 25%;      /* ← 横幅はこれ以上広がらない */
  max-height: 160px;   /* ← 高さを統一！ */
  height: auto;
  object-fit: contain; /* ← 画像を切らずにフィットさせる */
}

.merit-box img.marit-small{
  max-width: 20%;
}

.merit-box.reverse {
  flex-direction: row-reverse;
}

.merit-text {
      font-size: 30px;
    color: #4f0d87;
    line-height: 1.3;
    letter-spacing: 3px;
}

.marker{
  background: linear-gradient(transparent 60%, #fff600 0%);
}


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

  .merit-text {
  font-size: 18px;
  letter-spacing: 2px;
  }

  .merit-box {
    gap: 1.8em;
    border: 1.5px solid transparent;
  }

  }


  /* ---------報酬--------- */
  .reward{
    background-color: #ffeeff;
    padding-bottom: 3%;
  }

  .reward-icon{
width: 21%;
z-index: 1;
  }

.a-title{
    display: flex;
    gap: 1rem; 
    align-items: flex-end;
    margin-bottom: 3%;
  }


.reward-name{
  font-size: 45px;
  font-weight: 500;
  
}

.reward-subname-a{
  background-color: #9172ca;
  color: #fff;
  font-size: 35px;
  padding: 2%;
  padding-left: 20%;
  width: 101%;
  margin-left: -20%;
  margin-top: 4%;
  margin-bottom: 2%;
}

.reward-subname-b{
  background-color: #f5888a;
    color: #fff;
    font-size: 35px;
    padding: 2%;
    padding-left: 20%;
    width: 101%;
    margin-left: -20%;
    margin-top: 4%;
}

.reward-list{
  width: 90%;
  margin: auto;
}

.reward-amount-a{
  font-size: 40px;
  background-color: #e8ceff;
  padding-bottom: 4%;
  padding-top: 2%;
  margin-top: 4%;
  margin-bottom: 10%;
  text-align: center;
  letter-spacing: 2px;
}

.reward-amount-b{
  font-size: 40px;
  background-color: #ffbfc0;
  padding-bottom: 4%;
  padding-top: 2%;
  margin-top: 4%;
  margin-bottom: 10%;
  text-align: center;
  letter-spacing: 2px;
}

.reward-amount-strong{
  font-size: 60px;
  background: linear-gradient(transparent 60%, #fff774 0%);
}

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

  .reward-name{
  font-size: 25px;
}

.reward-amount-a{
  font-size: 18px;
}

.reward-amount-b{
  font-size: 18px;
}

.reward-amount-strong{
  font-size: 28px;
 }

 .reward-subname-a{
 font-size: 20px;
}

 .reward-subname-b{
 font-size: 20px;
}
}

  /* ---------STEP--------- */

  .step{
    background:linear-gradient(92deg,#fdd5d6,#f1cdfe);
    padding-bottom: 1%;
  }

.number-rilative{
  position: relative;
}

.step-title{
  position: absolute;
  font-size: 40px;
  z-index: 1;
}

.title-big{
  font-size: 70px;
}

.step-number{
  font-size: 400px;
  color: #f8c8d7;
  position: absolute;
  font-weight: 600;
  bottom: 21%;
}

.step-icon{
  width: 50%;
  z-index: 2;
}

.step-block{
  display: flex;
  justify-content: space-around;
  margin: 10% 0;
}

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

  .step-title{
  font-size: 20px;
}

.title-big{
  font-size: 50px;
}

.step-number{
  font-size: 200px;
}

}

  /* ---------良くある質問--------- */
  .faq{
    background-color: #ffeeff;
    padding-bottom: 3%;
  }

  .faq-list{
    margin: 5%;
  }

  .faq-list p{
    font-size: 20px;
    line-height: 1.8;
  }

.faq-list-title{
  display: flex;
    align-items: center;
}

.q{
  width: 7%;
}

.faq-title{
  font-size: 30px;
  color: #9d57b7;
  padding: 3%;
  font-weight: 500;
}

@media only screen and (max-width: 750px) {
  .faq-title{
  font-size: 21px;
  line-height: 1.3;
  }

  .faq-list p{
  font-size: 17px;
}
}

  /* ---------サンクスページ--------- */

.thankstop{
    background-position: center 15%;
}

.thankstop h1{
    padding-bottom: 10%;
}


  .thanks{
    background:linear-gradient(92deg,#fdd5d6,#f1cdfe);
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .thanks-txt{
    margin: 5%;
  }

  .thanks-txt p{
    font-size: 20px;
    line-height: 1.8;
  }

  .thanks-txt p + p{
      margin-top: 5%;
  }


@media only screen and (max-width: 750px) {
}

  /* ---------追従ボタン--------- */
/* --- 全体の枠 --- */
.fixed-entry {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 4px 15px rgba(140, 109, 212, 0.15);
  z-index: 3;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* --- 応募ボタン部分 --- */
.fixed-entry-btn {
  background: linear-gradient(92deg, #8c6dd4, #dd7c7c);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid #fff;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3%;
  font-size: 38px;
  letter-spacing: 4px;
  cursor: pointer;
}

/* --- 応募ボタンの中身（テキスト+▶） --- */
.fixed-entry-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  color: #fff;
  text-decoration: none;
}

.fixed-entry-btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 0.4em;
  transform: translateY(2px);
}

/* 表示するときだけONになるクラス */
.fixed-entry.is-visible {
  opacity: 1;
  pointer-events: auto;
}


@media only screen and (max-width: 750px) {
.fixed-entry-btn a::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
            margin-bottom: 1%;
}

.fixed-entry-btn{
    border-radius: 15px;
    font-size: 24px;
    letter-spacing: 2px;
     margin: 1px auto;
}

.fixed-entry-close {
    right: 2px;
}
}

  /* ---------フォーム--------- */
.entry{
  background:linear-gradient(92deg,#fde6f8,#e6c7fd);
  padding-bottom: 7%;
}

.entryform{
  background-color: #fef4fe;
      box-shadow: 0 4px 15px rgba(140, 109, 212, 0.2);
    width: 70%;
    border-radius: 20px;
  margin: auto;
  padding: 4%;
}

.entryform-item{
  font-size: 30px;
  margin: 6% auto;
}

.entryform-item p{
  font-size: 20px;
  line-height: 1.5;
  padding: 2% 0; 
}

label{
  display: block;
      padding: 2% 0;
}

.input-text{
  width: 100%;
  max-width: 520px;   /* 大きい画面では520pxまで */
  height: 60px;
}

.input-number{
  width: 40%;
  max-width: 120px;   /* でも上限は120pxくらいに */
  height: 60px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"]{
  border: 1px #bfbfbf solid;
  border-radius: 7px;
  font-size: 25px;
  padding: 0 3%;
  box-sizing: border-box; /* はみ出し防止！ */
}
textarea{
    border: 1px #bfbfbf solid;
    border-radius: 7px;
    font-size: 25px;
    padding: 3%;
    box-sizing: border-box; /* はみ出し防止！ */
    width: 100%;
    height: 200px;    
}

 .entryform span{
    margin-left: 0.3em; /* 「歳」「年」の余白 */  
    vertical-align: bottom;
    font-size: 28px;
  }

.entry-btn{
    text-align: center;
    margin: 20px auto;
}

.entryform-btn {
  background: linear-gradient(92deg, #8c6dd4, #dd7c7c);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: none;
  color: #fff;
  border: 1px #fff solid;
  font-size: 38px;
  padding: 3% 10%;
  width: 100%;
  cursor: pointer;
      letter-spacing: 4px;
}

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

.input-text{
  max-width: 520px;   /* 大きい画面では520pxまで */
  height: 40px;
}

.input-number{
  max-width: 90px;   /* でも上限は120pxくらいに */
  height: 40px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  font-size: 20px;
}

textarea{
  font-size: 20px;
} 

.entryform-item{
  font-size: 20px;
}

.entryform-item p{
  font-size: 15px;
 }

 .entryform-btn {
  font-size: 25px;
 }

.entryform {
    width: 80%;
}

.entryform-btn {
  border-radius: 15px;
}

 .entryform span{
    font-size: 18px;
  }
}

  /* ---------フッター--------- */

  footer{
    background-color: #bf92c7;
  }

  footer img{
    width: 23%;
    margin: auto;
    padding: 1%;
  }

  .copyright{
    font-size: 18px;
    text-align: center;
    color: #fff;
    padding-bottom: 2%;
        font-weight: 300;
  }

  @media only screen and (max-width: 750px) {
    .copyright{
    font-size: 13px;
  }
  }

.error {
    color: #e65f81;
    font-size: 14px;
    display: block;
    padding: 5px 0;
    line-height: 1.25em;
}

.footerlink{
font-size: 18px;
text-align: center;
color: #fff;
padding: 2% 0 4%;
font-weight: 300;
}
.footerlink a{
  color: #fff;
}
@media only screen and (max-width: 750px) {
    .footerlink{
    font-size: 13px;
  }
}
