@charset "UTF-8";

/* common
============================= */

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #621014;
  position: relative;
}

/* section */
section,
.offerBox {
  margin: 0 auto 140px;
}
@media screen and (max-width: 767px){
  section,
  .offerBox {
    margin: 0 auto 4rem;
  }
}

/* hidden */
.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* fonts */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.sp-br {
  display: none;
}
.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}


/* text color */
.txt_colr_pink {
  color: #F34B4B;
}

/* link set */
a, a:link {
  text-decoration: underline;
  text-underline-offset: .5px;
  text-underline-position: under;
}
a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a:hover {
    text-decoration: underline;
    text-underline-offset: 1px;
    text-underline-position: under;
  }
}

/* 見出し */
.headlineBox {
  display: inline-block;
  margin: 0 auto 24px;
  .headline_innerBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    .headline-flex {
      display: flex;
      flex-direction: column;
      gap: 8px;
      &::after {
        content: "";
        display: inline-block;
        width: auto;
        border: 1px dashed #621014;
      }
    }
    .headline-main {
      font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
    }
    .headline-sub {
      font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
    }
  }
}

/* text decoration */
.text-border {
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;
}


/* mark */
.mark {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;
  &.end {
    justify-content: flex-end;
  }
}
.mark_caution::before {
  content: "※";
  display: inline-block;
}
.mark_circle::before {
  content: "〇";
  display: inline-block;
}
/* .mark_img-externallink {
  display: inline-block;
  img {
    display: inline-block;
    max-width: 13px !important;
    min-width: 13px !important;
    margin: 0 !important;
  }
} */
.mark_img-externallink {
  position: relative;
}
.mark_img-externallink::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_open-in-new.svg) 0 0 / contain no-repeat;
  position: inherit;
  bottom: -2.5px;
}
.external .mark_img-externallink::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../images/icon_open-in-new.svg) 0 0 / contain no-repeat;
}

/* button */
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}
.btnBox {
  a,
  button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-decoration: none;
    .btn_innerBox {
      display: flex;
      flex-direction: row;
      gap: 4px;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 70px;
      border: 2px solid #621014;
      border-radius: 100px;
      color: #621014;
      font-weight: bold;
      font-family: "Noto Sans JP", sans-serif;
      .btn_icon {
        padding: 2px 10px;
        background: #fff;
        border-radius: 100px;
        font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
        color: #621014;
      }
      .btn_text {
        font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
      }
      &:hover {
        transform: translateY(4px);
        box-shadow: none;
      }
    }
  }
  &.green {
    a,
    button {
      .btn_innerBox {
        background: linear-gradient(90deg, #B8E427, #D2FF3E);
        box-shadow: 0px 3px 0px 0px #FFF7F350, inset 3px 4px 0px 0px #E0FF7B;
      }
    }
  }
  &.paleorange {
    a,
    button {
      .btn_innerBox {
        background: linear-gradient(90deg, #ffeebc, #fff4d2);
        box-shadow: 0px 3px 0px 0px #FFF7F350, inset 3px 4px 0px 0px #fff;
      }
    }
  }
  &.yellow {
    a,
    button {
      .btn_innerBox {
        background: #FFFF00;
        box-shadow: 0px 3px 0px 0px #FFF7F350, inset 3px 4px 0px 0px #FFFFB4;
      }
    }
  }
}
@media screen and (max-width: 320px) {
  .btnBox {
    a,
    button {
      width: 100%;
      max-width: 280px;
    }
  }
}

.btnBox.sizeS a {
  width: 260px;
  .btn_innerBox {
    width: 100%;
    gap: 2px;
    .btn_icon {
      font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
    }
    .btn_text {
      font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
    }
  }
}


/* header
============================= */
header {
  /* display: none; できなかったら消す方向で*/
  display: inline-block;
  width: auto;
  padding: 4px 12px;
  background: #fff;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  &.header-sub {
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
    inset: 0 0 0 0;
  }
  .headerLogo {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    align-items: center;
    .logo_manemacchi {
      max-width: 80px;
    }
    .mark_img-asterisk {
      max-width: 8px;
    }
    .logo_tabete {
      max-width: 50px;
    }
  }
}
@media screen and (min-width: 1440px) {
  header {
    .headerLogo {
      .logo_manemacchi {
        max-width: 120px;
      }
      .mark_img-asterisk {
        max-width: 20px;
      }
      .logo_tabete {
        max-width: 90px;
      }
    }
  }
  
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  header {
    .headerLogo {
      .logo_manemacchi {
        max-width: 90px;
      }
      .mark_img-asterisk {
        max-width: 9px;
      }
      .logo_tabete {
        max-width: 60px;
      }
    }
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header {
    .headerLogo {
      .logo_manemacchi {
        max-width: 80px;
      }
      .mark_img-asterisk {
        max-width: 9px;
      }
      .logo_tabete {
        max-width: 56px;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  header {
    display: block;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    .headerLogo {
      height: 42px;
    }
    .logo_manemacchi {
      max-width: 100px !important;
    }
    .logo_tabete {
      max-width: 70px !important;
    }
    .mark_img-asterisk {
      max-width: 10px !important;
    }
  }
}

/* step2以降のページ */
.step2-page header,
.step3-page header,
.step4-page header,
.step5-page header,
.result-page header,
.contact-page header,
.thanks-page header {
  display: block;
  background: #fff;
  .header_stepLogo {
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin: 0 auto;
    line-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .step2-page header,
  .step3-page header,
  .step4-page header,
  .step5-page header,
  .result-page header,
  .contact-page header,
  .thanks-page header {
    display: block;
    background: #fff;
    .header_stepLogo {
      height: 42px;
      img {
        max-width: 280px;
      }
    }
  }
}

/* main
============================= */
.fvBox {
  .headline-ctaBox {
    position: relative;
    .img_present {
      width: min(100%, 220px);
      position: absolute;
      right: 22%;
      bottom: 5%;
      transform: translate(-22%, -5%) rotate(15deg);
    }
  }
}
@media screen and (min-width: 1421px) and (max-width: 1600px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 180px);
        transform: translate(-22%, -5%) rotate(15deg);
      }
    }
  }  
}
@media screen and (min-width: 1281px) and (max-width: 1420px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 180px);
      }
    }
  }  
}
@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 160px);
      }
    }
  }  
}
@media screen and (min-width: 1171px) and (max-width: 1180px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 146px);
      }
    }
  }  
}
@media screen and (min-width: 1141px) and (max-width: 1170px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 146px);
      }
    }
  }  
}
@media screen and (min-width: 1101px) and (max-width: 1140px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 138px);
      }
    }
  }  
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 138px);
      }
    }
  }  
}
@media screen and (min-width: 921px) and (max-width: 1023px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 120px);
      }
    }
  }  
}
@media screen and (min-width: 857px) and (max-width: 920px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 120px);
      }
    }
  }  
}
@media screen and (min-width: 769px) and (max-width: 856px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 100px);
      }
    }
  }  
}
@media screen and (min-width: 669px) and (max-width: 768px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 220px);
        right: 3%;
        bottom: 5%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}
@media screen and (min-width: 575px) and (max-width: 668px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 200px);
        right: 3%;
        bottom: 5%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}
@media screen and (min-width: 431px) and (max-width: 574px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: min(100%, 160px);
        right: 3%;
        bottom: 5%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}
@media screen and (min-width: 391px) and (max-width: 430px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: 150px;
        right: 3%;
        bottom: 3%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}
@media screen and (min-width: 321px) and (max-width: 390px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: 130px;
        right: 3%;
        bottom: 3%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}
@media screen and (max-width: 320px) {
  .fvBox {
    .headline-ctaBox {
      .img_present {
        width: 120px;
        right: 3%;
        bottom: 3%;
        transform: translate(-3%, -5%) rotate(15deg);
      }
    }
  }
}

/*
.fv-bgBox {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
*/

/*
.fv-headlineTextBox {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  position: absolute;
  top: 70px;
  .catch {
    margin: 0 auto 10px;
  }
}
*/
/*
@media screen and (min-width: 1024px) and (max-width: 1080px) {
  .fv-headlineTextBox {
    top: 60px;
    .headline {
      width: 100%;
      max-width: 382px;
    }
    .catch {
      width: 100%;
      max-width: 366px;
    }
  }
}
*/
/*
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-headlineTextBox {
    top: 60px;
    .headline {
      width: 100%;
      max-width: 300px;
    }
    .catch {
      width: 100%;
      max-width: 284px;
    }
  }
}
*/
/*
@media screen and (min-width: 740px) and (max-width: 767px) {
  .fv-headlineTextBox {
    top: 200px;
    .headline {
      width: 100%;
      max-width: 452px;
    }
    .catch {
      width: 100%;
      max-width: 436px;
    }
  }
}
*/
/*
@media screen and (min-width: 667px) and (max-width: 739px) {
  .fv-headlineTextBox {
    top: 160px;
    .headline {
      width: 100%;
      max-width: 452px;
    }
    .catch {
      width: 100%;
      max-width: 436px;
    }
  }
}
*/
/*
@media screen and (min-width: 501px) and (max-width: 666px) {
  .fv-headlineTextBox {
    top: 140px;
    .headline {
      width: 100%;
      max-width: 352px;
    }
    .catch {
      width: 100%;
      max-width: 336px;
    }
  }
}
*/
/*
@media screen and (min-width: 435px) and (max-width: 500px) {
  .fv-headlineTextBox {
    top: 120px;
    .headline {
      width: 100%;
      max-width: 352px;
    }
    .catch {
      width: 100%;
      max-width: 336px;
    }
  }
}
*/
/*
@media screen and (min-width: 375px) and (max-width: 434px) {
  .fv-headlineTextBox {
    top: 100px;
    .headline {
      width: 100%;
      max-width: 262px;
    }
    .catch {
      width: 100%;
      max-width: 246px;
    }
  }
}
*/
/*
@media screen and (min-width: 345px) and (max-width: 374px) {
  .fv-headlineTextBox {
    top: 70px;
    .headline {
      width: 100%;
      max-width: 280px;
    }
    .catch {
      width: 100%;
      max-width: 254px;
    }
  }
}
*/
/*
@media screen and (min-width: 321px) and (max-width: 344px) {
  .fv-headlineTextBox {
    top: 80px;
    .headline {
      width: 100%;
      max-width: 252px;
    }
    .catch {
      width: 100%;
      max-width: 236px;
    }
  }
}
*/
/*
@media screen and (max-width: 320px) {
  .fv-headlineTextBox {
    top: 80px;
    .headline {
      width: 100%;
      max-width: 212px;
    }
    .catch {
      width: 100%;
      max-width: 196px;
    }
  }
}
*/

/*
.fv-headline-ctaTextBox {
  position: relative;
  .fv_decoration-imgBox {
    width: 100%;
    min-width: 320px;
    height: 254px;
    position: absolute;
    top: 0; 
    right: 0;
    .imgPosition {
      position: absolute;
      top: 0; 
      right: 0;
    }
    .img_milk {
      top: -50px;
      right: inherit;
      bottom: inherit;
      left: -30px;
    }
    .img_egg {
      top: -100px;
      right: -30px;
      bottom: inherit;
      left: inherit;
    }
    .img_bread {
      top: initial;
      right: inherit;
      bottom: -40px;
      left: 40px;
    }
    .img_tomato {
      top: initial;
      right: inherit;
      bottom: -120px;
      left: -20px;
    }
  }
  .img_present {
    position: absolute;
    top: initial;
    right: -120px;
    bottom: -100px;
    left: initial;      
    transform: rotate(15deg);
    filter: drop-shadow(3px 3px 0px #E9E9E950);
  }
}
*/
/*
@media screen and (min-width: 1024px) and (max-width: 1080px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 426px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 426px;
      height: 191px;
      .img_milk {
        max-width: 52px;
        top: -20px;
        left: -20px;
      }
      .img_egg {
        max-width: 80px;
        top: -60px;
        right: -20px;
      }
      .img_bread {
        max-width: 65px;
        bottom: -40px;
        left: 40px;
      }
      .img_tomato {
        max-width: 60px;
        bottom: -60px;
        left: -20px;
      }
    }
    .img_present {
      max-width: 160px;
      right: -100px;
      bottom: -100px;
    }
  }
}
*/
/*
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 376px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 376px;
      height: 168px;
      .img_milk {
        max-width: 52px;
        top: -20px;
        left: -20px;
      }
      .img_egg {
        max-width: 80px;
        top: -60px;
        right: -20px;
      }
      .img_bread {
        max-width: 65px;
        bottom: -40px;
        left: 40px;
      }
      .img_tomato {
        max-width: 60px;
        bottom: -60px;
        left: -20px;
      }
    }
    .img_present {
      max-width: 150px;
      right: -100px;
      bottom: -100px;
    }
  }
}
*/
/*
@media screen and (min-width: 740px) and (max-width: 767px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 528px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 428px;
      height: 192px;
      .img_milk {
        max-width: 68px;
        left: -120px;
      }
      .img_egg {
        max-width: 100px;
        top: -70px;
        right: -25px;
      }
      .img_bread {
        max-width: 75px;
        bottom: -90px;
        left: -40px;
      }
      .img_tomato {
        max-width: 80px;
        bottom: -120px;
        left: -120px;
      }
    }
    .img_present {
      max-width: 150px;
      right: -60px;
      bottom: -120px;
    }
  }
}
*/
/*
@media screen and (min-width: 667px) and (max-width: 739px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 528px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      min-width: 528px;
      height: 237px;
      .img_milk {
        max-width: 68px;
        left: -30px;
      }
      .img_egg {
        max-width: 100px;
        top: -70px;
        right: -25px;
      }
      .img_bread {
        max-width: 75px;
        bottom: -40px;
        left: 40px;
      }
      .img_tomato {
        max-width: 80px;
        bottom: -90px;
        left: -20px;
      }
    }
    .img_present {
      max-width: 150px;
      right: -40px;
      bottom: -120px;
    }
  }
}
*/
/*
@media screen and (min-width: 540px) and (max-width: 666px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 428px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      min-width: 428px;
      height: 192px;
      .img_milk {
        max-width: 68px;
        left: -20px;
      }
      .img_egg {
        max-width: 100px;
        top: -70px;
        right: -25px;
      }
      .img_bread {
        max-width: 75px;
        bottom: -50px;
        left: 40px;
      }
      .img_tomato {
        max-width: 80px;
        bottom: -100px;
        left: -20px;
      }
    }
    .img_present {
      max-width: 140px;
      right: -20px;
      bottom: -120px;
    }
  }
}
*/
/*
@media screen and (min-width: 501px) and (max-width: 539px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 328px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 328px;
      height: 147px;
      .img_milk {
        max-width: 48px;
        left: -10px;
      }
      .img_egg {
        max-width: 70px;
        top: -50px;
        right: -15px;
      }
      .img_bread {
        max-width: 55px;
      }
      .img_tomato {
        max-width: 60px;
        bottom: -75px;
        left: 0;
      }
    }
    .img_present {
      max-width: 140px;
      right: -20px;
      bottom: -120px;
    }
  }
}
*/
/*
@media screen and (min-width: 435px) and (max-width: 500px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 428px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 428px;
      height: 192px;
      .img_milk {
        max-width: 48px;
        left: -10px;
      }
      .img_egg {
        max-width: 70px;
        top: -50px;
        right: -15px;
      }
      .img_bread {
        max-width: 55px;
      }
      .img_tomato {
        max-width: 60px;
        bottom: -75px;
        left: 0;
      }
    }
    .img_present {
      max-width: 140px;
      right: 0px;
      bottom: -100px;
    }
  }
}
*/
/*
@media screen and (min-width: 345px) and (max-width: 434px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 328px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      max-width: 328px;
      height: 147px;
      .img_milk {
        max-width: 48px;
        left: -10px;
      }
      .img_egg {
        max-width: 70px;
        top: -50px;
        right: -15px;
      }
      .img_bread {
        max-width: 55px;
      }
      .img_tomato {
        max-width: 60px;
        bottom: -75px;
        left: 0;
      }
    }
    .img_present {
      max-width: 120px;
      right: 0px;
      bottom: -100px;
    }
  }
}
*/
/*
@media screen and (min-width: 321px) and (max-width: 344px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 300px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      min-width: 300px;
      height: 134px;
      .img_milk {
        max-width: 38px;
        top: -30px;
        left: -10px;
      }
      .img_egg {
        max-width: 60px;
        top: -50px;
        right: -15px;
      }
      .img_bread {
        max-width: 45px;
        bottom: -30px;
      }
      .img_tomato {
        max-width: 50px;
        bottom: -55px;
        left: 0;
      }
    }
    .img_present {
      max-width: 110px;
      right: -20px;
      bottom: -100px;
    }
  }
}
*/
/*
@media screen and (max-width: 320px) {
  .fv-headline-ctaTextBox {
    .headline-cta {
      width: 100%;
      max-width: 260px;
    }
    .fv_decoration-imgBox {
      width: 100%;
      min-width: 260px;
      height: 117px;
      .img_milk {
        max-width: 38px;
        top: -30px;
        left: -10px;
      }
      .img_egg {
        max-width: 60px;
        top: -50px;
        right: -15px;
      }
      .img_bread {
        max-width: 45px;
        bottom: -30px;
      }
      .img_tomato {
        max-width: 50px;
        bottom: -55px;
        left: 0;
      }
    }
    .img_present {
      max-width: 110px;
      right: -20px;
      bottom: -100px;
    }
  }
}
*/

/* offer Presents
============================= */
.offerBox {
  width: 100%;
  margin: 140px auto 0;
  padding: 0 1rem;
  .offer-innerBox {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.75rem 1.75rem;
    background: #fff;
    border: 2px solid #621014;
    border-radius: 15px;
    position: relative;
  }
  .offer-headlineBox {
    width: 100%;
    max-width: 563px;
    min-width: 310px;
    margin: 0 auto;
    font-weight: 700;
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    .offer-headline_band {
      width: 100%;
      max-width: 563px;
      min-width: 310px;
    }
    .offer-headline_main-textBox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 500px;
      padding: 0 1rem;
      position: absolute;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
    }
    .offer-headline_catch-text {
      display: flex;
      flex-direction: row;
      gap: 8px;
      justify-content: center;
      align-items: center;
      font-size: clamp(0.875rem, 0.716rem + 0.65vw, 1.5rem);
    }
    .offer-headline_catch-text::before,
    .offer-headline_catch-text::after {
      content: "";
      display: block;
      width: 4px;
      height: 22px;
      background: #621014;
      border-radius: 10px;
    }
    .offer-headline_catch-text::before {
      transform: rotate(-25deg);
    }
    .offer-headline_catch-text::after {
      transform: rotate(25deg);
    }
    .offer-headline_free {
      padding: 2px 12px;
      background: #621014;
      border-radius: 100px;
      font-size: clamp(0.813rem, 0.637rem + 0.72vw, 1.5rem);
      color: #fff;
    }
    .offer-headline_main-text {
      display: flex;
      flex-direction: row;
      gap: 4px;
      justify-content: center;
      align-items: center;
      font-size: clamp(1.125rem, 0.902rem + 0.92vw, 2rem);
      small {
        font-size: clamp(0.875rem, 0.652rem + 0.92vw, 1.75rem);
      }
    }
  }
  .offer-presentList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center !important;
    align-items: center;
    margin: 24px auto 0;
    .offer-presentContents img {
      max-width: 430px;
      min-width: 310px;
      margin-bottom: 8px;
    }
  }
  a,a:link {
    font-size: 0.875rem;
    text-align: right;
  }
}
@media screen and (min-width: 933px) and (max-width: 1024px) {
  .offerBox {
    margin: 100px auto 0;
    padding: 0 1rem;
    .offer-innerBox {
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 463px;
      min-width: 430px;
      .offer-headline_main-textBox {
        top: 1rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 463px;
        min-width: 430px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      display: grid;
      grid-template-columns: none;
      grid-template-rows: auto auto;
      gap: 24px;
      justify-content: center;
      align-items: center;
      justify-items: center;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 463px;
        min-width: 430px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 768px) and (max-width: 932px) {
  .offerBox {
    padding: 0 1rem;
    margin: 100px auto;
    .offer-headlineBox {
      width: 100%;
      max-width: 430px;
      min-width: 310px;
      .offer-headline_main-textBox {
        top: 1rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 430px;
        min-width: 310px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 25px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 430px;
        min-width: 430px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 668px) and (max-width: 767px) {
  .offerBox {
    margin: 5rem auto;
    .offer-innerBox {
      padding: 5rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 400px;
      min-width: 400px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .8rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 400px;
        min-width: 400px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 400px;
        min-width: 400px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 435px) and (max-width: 667px) {
  .offerBox {
    margin: 5rem auto;
    .offer-innerBox {
      padding: 5rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 380px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .8rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 380px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 380px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 391px) and (max-width: 434px) {
  .offerBox {
    margin: 4rem auto;
    .offer-innerBox {
      padding: 4rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 330px;
      min-width: 330px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .5rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 330px;
        min-width: 330px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 330px;
        min-width: 330px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 361px) and (max-width: 390px) {
  .offerBox {
    margin: 4rem auto;
    .offer-innerBox {
      padding: 4rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 306px;
      min-width: 306px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .5rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 306px;
        min-width: 306px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 306px;
        min-width: 306px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 345px) and (max-width: 360px) {
  .offerBox {
    margin: 4rem auto;
    .offer-innerBox {
      padding: 4rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 290px;
      min-width: 290px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .5rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 290px;
        min-width: 290px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 290px;
        min-width: 290px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (min-width: 321px) and (max-width: 344px) {
  .offerBox {
    margin: 4rem auto;
    .offer-innerBox {
      padding: 4rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 280px;
      min-width: 280px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .5rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 280px;
        min-width: 280px;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 3px;
        height: 18px;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 280px;
        min-width: 280px;
        margin-bottom: 8px;
      }
    }
  }
}
@media screen and (max-width: 320px) {
  .offerBox {
    margin: 4rem auto;
    .offer-innerBox {
      padding: 2rem 1rem 1rem;
    }
    .offer-headlineBox {
      width: 100%;
      max-width: 256px;
      min-width: 256px;
      top: -2rem;
      .offer-headline_main-textBox {
        top: .5rem;
      }
      .offer-headline_band {
        width: 100%;
        max-width: 256px;
        min-width: 256px;
      }
      .offer-headline_catch-text {
        font-size: 0.813rem;
      }
      .offer-headline_catch-text::before,
      .offer-headline_catch-text::after {
        width: 2px;
        height: 13px;
      }
      .offer-headline_free {
        padding: 0px 6px;
        font-size: 0.813rem;
      }
      .offer-headline_main-text {
        font-size: 0.938rem;
      }
    }
    .offer-presentList {
      flex-direction: column;
      gap: 16px;
      margin: 0 auto;
      .offer-presentContents img {
        max-width: 256px;
        min-width: 256px;
        margin-bottom: 12px;
      }
      .offer-presentPlus {
        width: 25px;
      }
    }
  }
}

/* entry
============================= */
.entryBox {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  .entry_innerBox {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 1.75rem 1.75rem;
    background: url(../images/section_bg_decoration-btm.svg) bottom right / 50% no-repeat,
    url(../images/section_bg_decoration-top.svg) top left / 50% no-repeat;
    border: 2px solid #621014;
    border-radius: 15px;
    text-align: center;
  }
  .entry_stepList {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    .entry_stepContents {
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: flex-start;
      align-items: center;
      width: 280px;
      max-width: 280px;
      padding: 24px 16px;
      background: #FFFBEF;
      border-radius: 15px;
      position: relative;
    }
    .entry_stepContents::after {
      content: "";
      display: block;
      width: 24px;
      height: 5px;
      background: #621014;
      position: absolute;
      top: 50%;
      right: -24px;
    }
    .entry_stepContents:nth-child(3)::after {
      display: none;
    }

    .entry_step_catch {
      display: flex;
      flex-direction: row;
      gap: 8px;
      justify-content: center;
      align-items: center;
      font-size: 1.125rem;
      font-weight: bold;
    }
    .entry_step_catch::before,
    .entry_step_catch::after {
      content: "";
      display: block;
      width: 3px;
      height: 16px;
      background: #621014;
      border-radius: 10px;
    }
    .entry_step_catch::before {
      transform: rotate(-25deg);
    }
    .entry_step_catch::after {
      transform: rotate(25deg);
    }
    .entry_step_text {
      .main_text {
        margin: 0 auto 16px;
        font-weight: bold;
      }
      .entry_caution {
        font-size: 0.875rem;
        text-align: left;
      }
    }
    .getpresentBox.sp_only {
      display: none;
    }
  }
  .getpresentBox.pc_only {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 16px auto 0;
    .getpresent_grid {
      display: flex;
      flex-direction: row;
      gap: 24px;
      justify-content: center;
      align-items: center;
      padding: 16px;
      background: #fff;
      border: 1.4px solid #AE8F52;
      border-radius: 15px;
      font-weight: bold;
    }
    .getpresent_innerBox {
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
      align-items: center;
      .main_text {
        font-size: clamp(0.875rem, 0.811rem + 0.26vw, 1.125rem);
        text-decoration: underline;
        text-underline-offset: 1px;
        text-underline-position: under;
      }
      .catch_text {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
      }
      .catch_text em {
        font-style: normal;
        color: #FF6937;
      }
      .catch_text .sub-catch_text {
        display: flex;
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        align-items: center;
        font-size: clamp(0.813rem, 0.765rem + 0.2vw, 1rem);
      }
      .catch_text .sub-catch_text::before,
      .catch_text .sub-catch_text::after {
        content: "";
        display: block;
        width: 2px;
        height: 14px;
        background: #621014;
        border-radius: 10px;
      }
      .catch_text .sub-catch_text::before {
        transform: rotate(-25deg);
      }
      .catch_text .sub-catch_text::after {
        transform: rotate(25deg);
      }
      .offer_text {
        width: 280px;
        height: 30px;
        background: #AE8F52;
        color: #fff;
        line-height: 30px;
        font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
      }
    }
  }
}

@media screen and (min-width: 768px) and (max-width: 972px) {
  .entryBox {
    .entry_stepList {
      display: grid;
      grid-template-rows: auto auto auto;
      .entry_stepContents {
        width: 100%;
        max-width: 410px;
      }
      .entry_stepContents::after {
        content: "";
        display: block;
        width: 5px;
        height: 24px;
        background: #621014;
        position: absolute;
        top: initial;
        right: initial;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      .getpresentBox.sp_only {
        display: block;
        margin: 16px auto 0;
        .getpresent_innerBox {
          padding: 16px;
          background: #fff;
          border: 1.4px solid #AE8F52;
          border-radius: 15px;
          font-weight: bold;
        }
        .getpresent_innerBox {
          display: flex;
          flex-direction: column;
          gap: 8px;
          justify-content: center;
          align-items: center;
          .main_text {
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            text-decoration: underline;
            text-underline-offset: 1px;
            text-underline-position: under;
          }
          .catch_text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
          }
          .catch_text em {
            font-style: normal;
            color: #FF6937;
          }
          .catch_text .sub-catch_text {
            display: flex;
            flex-direction: row;
            gap: 6px;
            justify-content: center;
            align-items: center;
            font-size: clamp(0.813rem, 0.797rem + 0.07vw, 0.875rem);
          }
          .catch_text .sub-catch_text::before,
          .catch_text .sub-catch_text::after {
            content: "";
            display: block;
            width: 2px;
            height: 14px;
            background: #621014;
            border-radius: 10px;
          }
          .catch_text .sub-catch_text::before {
            transform: rotate(-25deg);
          }
          .catch_text .sub-catch_text::after {
            transform: rotate(25deg);
          }
          .offer_text {
            width: 240px;
            height: 30px;
            background: #AE8F52;
            color: #fff;
            line-height: 30px;
            font-size: clamp(1.25rem, 1.218rem + 0.13vw, 1.375rem);
          }
        }
      }
    }
    .getpresentBox.pc_only {
      display: none;
    }
  }
}

@media screen and (min-width: 435px) and (max-width: 767px) {
  .entryBox {
    .entry_stepList {
      display: grid;
      grid-template-rows: auto auto auto;
      .entry_stepContents {
        width: 100%;
        max-width: 410px;
      }
      .entry_stepContents::after {
        content: "";
        display: block;
        width: 5px;
        height: 24px;
        background: #621014;
        position: absolute;
        top: initial;
        right: initial;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      .getpresentBox.sp_only {
        display: block;
        margin: 16px auto 0;
        .getpresent_innerBox {
          padding: 16px;
          background: #fff;
          border: 1.4px solid #AE8F52;
          border-radius: 15px;
          font-weight: bold;
        }
        .getpresent_innerBox {
          display: flex;
          flex-direction: column;
          gap: 8px;
          justify-content: center;
          align-items: center;
          .main_text {
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            text-decoration: underline;
            text-underline-offset: 1px;
            text-underline-position: under;
          }
          .catch_text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
          }
          .catch_text em {
            font-style: normal;
            color: #FF6937;
          }
          .catch_text .sub-catch_text {
            display: flex;
            flex-direction: row;
            gap: 6px;
            justify-content: center;
            align-items: center;
            font-size: clamp(0.813rem, 0.797rem + 0.07vw, 0.875rem);
          }
          .catch_text .sub-catch_text::before,
          .catch_text .sub-catch_text::after {
            content: "";
            display: block;
            width: 2px;
            height: 14px;
            background: #621014;
            border-radius: 10px;
          }
          .catch_text .sub-catch_text::before {
            transform: rotate(-25deg);
          }
          .catch_text .sub-catch_text::after {
            transform: rotate(25deg);
          }
          .offer_text {
            width: 240px;
            height: 30px;
            background: #AE8F52;
            color: #fff;
            line-height: 30px;
            font-size: clamp(1.25rem, 1.218rem + 0.13vw, 1.375rem);
          }
        }
      }
    }
    .getpresentBox.pc_only {
      display: none;
    }
  }
}

@media screen and (min-width: 345px) and (max-width: 434px) {
  .entryBox {
    .entry_stepList {
      display: grid;
      grid-template-rows: auto auto auto;
      .entry_stepContents {
        width: 100%;
        max-width: 310px;
      }
      .entry_stepContents::after {
        content: "";
        display: block;
        width: 5px;
        height: 24px;
        background: #621014;
        position: absolute;
        top: initial;
        right: initial;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      .getpresentBox.sp_only {
        display: block;
        margin: 16px auto 0;
        .getpresent_innerBox {
          padding: 16px;
          background: #fff;
          border: 1.4px solid #AE8F52;
          border-radius: 15px;
          font-weight: bold;
        }
        .getpresent_innerBox {
          display: flex;
          flex-direction: column;
          gap: 8px;
          justify-content: center;
          align-items: center;
          .main_text {
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            text-decoration: underline;
            text-underline-offset: 1px;
            text-underline-position: under;
          }
          .catch_text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
          }
          .catch_text em {
            font-style: normal;
            color: #FF6937;
          }
          .catch_text .sub-catch_text {
            display: flex;
            flex-direction: row;
            gap: 6px;
            justify-content: center;
            align-items: center;
            font-size: clamp(0.813rem, 0.797rem + 0.07vw, 0.875rem);
          }
          .catch_text .sub-catch_text::before,
          .catch_text .sub-catch_text::after {
            content: "";
            display: block;
            width: 2px;
            height: 14px;
            background: #621014;
            border-radius: 10px;
          }
          .catch_text .sub-catch_text::before {
            transform: rotate(-25deg);
          }
          .catch_text .sub-catch_text::after {
            transform: rotate(25deg);
          }
          .offer_text {
            width: 240px;
            height: 30px;
            background: #AE8F52;
            color: #fff;
            line-height: 30px;
            font-size: clamp(1.25rem, 1.218rem + 0.13vw, 1.375rem);
          }
        }
      }
    }
    .getpresentBox.pc_only {
      display: none;
    }
  }
}

@media screen and (min-width: 321px) and (max-width: 344px) {
  .entryBox {
    .entry_stepList {
      display: grid;
      grid-template-rows: auto auto auto;
      .entry_stepContents {
        width: 100%;
        max-width: 310px;
      }
      .entry_stepContents::after {
        content: "";
        display: block;
        width: 5px;
        height: 24px;
        background: #621014;
        position: absolute;
        top: initial;
        right: initial;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      .getpresentBox.sp_only {
        display: block;
        margin: 16px auto 0;
        .getpresent_innerBox {
          padding: 16px;
          background: #fff;
          border: 1.4px solid #AE8F52;
          border-radius: 15px;
          font-weight: bold;
        }
        .getpresent_innerBox {
          display: flex;
          flex-direction: column;
          gap: 8px;
          justify-content: center;
          align-items: center;
          .main_text {
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            text-decoration: underline;
            text-underline-offset: 1px;
            text-underline-position: under;
          }
          .catch_text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
          }
          .catch_text em {
            font-style: normal;
            color: #FF6937;
          }
          .catch_text .sub-catch_text {
            display: flex;
            flex-direction: row;
            gap: 6px;
            justify-content: center;
            align-items: center;
            font-size: clamp(0.813rem, 0.797rem + 0.07vw, 0.875rem);
          }
          .catch_text .sub-catch_text::before,
          .catch_text .sub-catch_text::after {
            content: "";
            display: block;
            width: 2px;
            height: 14px;
            background: #621014;
            border-radius: 10px;
          }
          .catch_text .sub-catch_text::before {
            transform: rotate(-25deg);
          }
          .catch_text .sub-catch_text::after {
            transform: rotate(25deg);
          }
          .offer_text {
            width: 240px;
            height: 30px;
            background: #AE8F52;
            color: #fff;
            line-height: 30px;
            font-size: clamp(1.25rem, 1.218rem + 0.13vw, 1.375rem);
          }
        }
      }
    }
    .getpresentBox.pc_only {
      display: none;
    }
  }
  
}

@media screen and (max-width: 320px) {
  .entryBox {
    .entry_stepList {
      display: grid;
      grid-template-rows: auto auto auto;
      .entry_stepContents {
        width: 100%;
        max-width: 260px;
      }
      .entry_stepContents::after {
        content: "";
        display: block;
        width: 5px;
        height: 24px;
        background: #621014;
        position: absolute;
        top: initial;
        right: initial;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      .getpresentBox.sp_only {
        display: block;
        margin: 16px auto 0;
        .getpresent_innerBox {
          padding: 16px;
          background: #fff;
          border: 1.4px solid #AE8F52;
          border-radius: 15px;
          font-weight: bold;
        }
        .getpresent_innerBox {
          display: flex;
          flex-direction: column;
          gap: 8px;
          justify-content: center;
          align-items: center;
          .main_text {
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            text-decoration: underline;
            text-underline-offset: 1px;
            text-underline-position: under;
          }
          .catch_text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
          }
          .catch_text em {
            font-style: normal;
            color: #FF6937;
          }
          .catch_text .sub-catch_text {
            display: flex;
            flex-direction: row;
            gap: 6px;
            justify-content: center;
            align-items: center;
            font-size: clamp(0.813rem, 0.797rem + 0.07vw, 0.875rem);
          }
          .catch_text .sub-catch_text::before,
          .catch_text .sub-catch_text::after {
            content: "";
            display: block;
            width: 2px;
            height: 14px;
            background: #621014;
            border-radius: 10px;
          }
          .catch_text .sub-catch_text::before {
            transform: rotate(-25deg);
          }
          .catch_text .sub-catch_text::after {
            transform: rotate(25deg);
          }
          .offer_text {
            max-width: 210px;
            background: #AE8F52;
            color: #fff;
            line-height: 30px;
            font-size: clamp(1.25rem, 1.218rem + 0.13vw, 1.375rem);
          }
        }
      }
    }
    .getpresentBox.pc_only {
      display: none;
    }
  }
  
}


/* aboutpass
============================= */
.aboutpassBox {
  width: 100%;
  margin: 0 auto 0;
  padding: 0 1rem;
  .aboutpass_innerBox {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 1.75rem 1.75rem;
    background: url(../images/section_bg_decoration-btm.svg) bottom right / 50% no-repeat,
    url(../images/section_bg_decoration-top.svg) top left / 50% no-repeat;
    border: 2px solid #621014;
    border-radius: 15px;
    text-align: center;
  }
  .aboutpass_leadContents {
    margin: 0 auto 40px;
    p {
      margin: 0 auto 16px;
      font-size: 1rem;
    }
  }
  .aboutpass_howtoBox {
    margin: 0 auto 60px;
    h3.headlineBox {
        font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
        font-weight: bold;
      .headline_main {
        font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
        font-weight: bold;
        text-decoration: dashed underline 1px;
        text-underline-offset: 1px;
        text-underline-position: under;
      }
    }
    .aboutpass_howtoList {
      display: flex;
      flex-direction: column;
      gap: 16px;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      max-width: 500px;
      margin: 0 auto 24px;
      li {
        .num {
          display: grid;
          grid-template-columns: auto 1fr;
          gap: 4px;
          justify-content: center;
          align-items: flex-start;
          font-size: 1rem;
          text-align: left;
          &::before {
            content: "";
            display: block;
            width: 30px;
            height: 30px;
          }
          &.no_first::before {
            background: url(../images/howto_icon-number1.svg) 0 0 /contain no-repeat;
          }
          &.no_second::before {
            background: url(../images/howto_icon-number2.svg) 0 0 /contain no-repeat;
          }
          &.no_third::before {
            background: url(../images/howto_icon-number3.svg) 0 0 /contain no-repeat;
          }
          &.no_fourth::before {
            background: url(../images/howto_icon-number4.svg) 0 0 /contain no-repeat;
          }
        }
      }
    }
    .aboutpass_cautionBox {
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      .aboutpass_caution {
        font-size: 0.875rem;
        font-weight: bold;
      }
      .aboutpass_cautionList {
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        font-size: 0.875rem;
      }
    }
  }
  .aboutpass_appdlBox {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: #FFFBEF;
    border-radius: 15px;
    .aboutpass_appdl_innerBox {
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
      grid-template-areas: 
      "areaA areaB"
      "areaC areaC";
      gap: 16px;
      justify-content: center;
      align-items: center;
      .aboutpass_appdl_logo {
        grid-area: areaA;
      }
      .aboutpass_appdlBadgeList{
        grid-area: areaB;
        li {
          margin: 0 auto 16px;
        }
        li:last-of-type {
          margin: 0 auto;
        }
      }
    }
    .aboutpass_appdl_caution {
      grid-area: areaC;
      font-size: 0.875rem;
    }
  }
}

@media screen and (max-width: 767px) {
  .aboutpassBox {
    .aboutpass_appdlBox {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      padding: 24px;
      background: #FFFBEF;
      border-radius: 15px;
      .aboutpass_appdl_innerBox {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
        "areaA"
        "areaB"
        "areaC";
        gap: 16px;
        justify-content: center;
        align-items: center;
        justify-items: center;
        .aboutpass_appdl_logo {
          grid-area: areaA;
        }
        .aboutpass_appdlBadgeList{
          grid-area: areaB;
          li {
            margin: 0 auto 16px;
          }
          li:last-of-type {
            margin: 0 auto;
          }
        }
      }
      .aboutpass_appdl_caution {
        grid-area: areaC;
        font-size: 0.875rem;
      }
    }
  }
  
}

/* question
============================= */
#question {
  margin: 0 auto;
}
.questionBox {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  background: #FFFBEF;
  .question_innerBox {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .question_headlineBox {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    font-weight: bold;
    .headline_main-catch {
      display: flex;
      flex-direction: row;
      gap: 8px;
      justify-content: center;
      align-items: center;
      font-size: clamp(1rem, 0.936rem + 0.26vw, 1.25rem);
    }
    .headline_main-catch::before,
    .headline_main-catch::after {
      content: "";
      display: block;
      width: 3px;
      height: 18px;
      background: #621014;
      border-radius: 10px;
    }
    .headline_main-catch::before {
      transform: rotate(-25deg);
    }
    .headline_main-catch::after {
      transform: rotate(25deg);
    }
    .headline_sub-catch {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 146px;
      height: 45px;
      background: url(../images/question_speechbubble.webp) 0 0 / contain no-repeat;
      font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
      position: relative;
      span {
        position: absolute;
        top: 0;
      }
      em {
        font-size: clamp(1.5rem, 1.468rem + 0.13vw, 1.625rem);
        font-style: normal;
        color: #F34B4B;
      }
      small {
        font-size: clamp(0.875rem, 0.811rem + 0.26vw, 1.125rem);
      }
    }
    .headlineBox {
      margin: 0 auto 8px !important;
      .headline_innerBox {
        font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
        .headline_lead em {
          font-style: normal;
          color: #F34B4B;
        }
        .headline-main {
          font-size: 2rem;
        }
      }
    }
    .question_barBox {
      min-width: 280px;
    }
  }

  .question_stepBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 667px;
    margin: 0 auto 24px;
    padding: 32px 40px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    .question_step_headlineBox {
      width: 100%;
      max-width: 300px;
      font-weight: bold;
      small {
        display: block;
        font-size: 0.875rem;
      }
    }
    form {
      input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }
      .option-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
      }
      .option-list .option-btn {
        width: 288px;
        height: 46px;
        background-color: #fff;
        border: 2px solid #621014;
        border-radius: 8px;
        box-shadow: 0 2px 0 0 #621014;
        line-height: 46px;
        font-size: 0.875rem;
        font-weight: 500;
        &:hover {
          background: #EBFFA9;
          cursor: pointer;
        }
      }
    }
  }

  .campaign_overviewBox {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 0;
    text-align: center;
    h3.headlineBox {
      margin: 0 auto 24px;
      .headline_main {
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        font-weight: bold;
      }
    }
    .dot-line:after {
      display: inline-block;
      background: radial-gradient(circle farthest-side, #B08789, #B08789 50%, transparent 50%, transparent);
      background-size: 8px;
      content: '';
      display: inline-block;
      height: 8px;
      width: 100%;
    }
    .campaign_overviewList {
      display: flex;
      flex-direction: column;
      gap: 32px;
      font-size: 1rem;
      text-align: left;
      dt {
        margin: 0 auto 10px;
        font-weight: bold;
      }
      dt::before {
        content: "◆";
        display: inline-block;
      }
      .campaign_overview_caution {
        font-size: 0.875rem;
      }
    }
    .campaign_overview_remarks {
      .campaign_overview_caution {
        margin: 0 0 0 1rem;
        font-size: 1rem;
      }
    }
  }
}

@media screen and (min-width: 435px) and (max-width: 767px) {
  .questionBox {
    .question_innerBox {
      padding: 4rem 0;
    }
    .campaign_overviewBox {
      padding: 32px;
    }
    .question_headlineBox {
      .question_barBox {
        max-width: 385px;
      }
    }
    .question_stepBox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      padding: 32px;
      .question_step_headlineBox {
        width: 100%;
        max-width: 300px;
        font-weight: bold;
      }
      form {
        .option-list .option-btn {
          max-width: 288px;
          height: 46px;
          line-height: 46px;
        }
      }
    }
  }
}

@media screen and (min-width: 345px) and (max-width: 434px) {
  .questionBox {
    .question_innerBox {
      padding: 4rem 0;
    }
    .campaign_overviewBox {
      padding: 32px;
    }
    .question_headlineBox {
      .question_barBox {
        max-width: 320px;
      }
    }
    .question_stepBox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      padding: 32px;
      .question_step_headlineBox {
        width: 100%;
        max-width: 300px;
        font-weight: bold;
      }
      form {
        .option-list .option-btn {
          max-width: 288px;
          height: 46px;
          line-height: 46px;
        }
      }
    }
  }
}

@media screen and (min-width: 321px) and (max-width: 344px) {
  .questionBox {
    .question_innerBox {
      padding: 4rem 0;
    }
    .campaign_overviewBox {
      padding: 32px;
    }
    .question_headlineBox {
      .question_barBox {
        max-width: 385px;
      }
    }
    .question_stepBox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      padding: 32px;
      .question_step_headlineBox {
        width: 100%;
        max-width: 300px;
        font-weight: bold;
      }
      form {
        .option-list .option-btn {
          max-width: 288px;
          height: 46px;
          line-height: 46px;
        }
      }
    }
  }
}

@media screen and (max-width: 320px) {
  .questionBox {
    .question_innerBox {
      padding: 4rem 0;
    }
    .campaign_overviewBox {
      padding: 32px;
    }
    .question_headlineBox {
      .question_barBox {
        max-width: 280px;
      }
    }
    .headlineBox {
      .headline_innerBox {
        font-size: 1rem !important;
        .headline-main {
          font-size: 1.75rem !important;
        }
      }
    }
    .question_stepBox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      padding: 32px;
      .question_step_headlineBox {
        width: 100%;
        max-width: 300px;
        font-weight: bold;
      }
      form {
        .option-list .option-btn {
          max-width: 248px;
          height: 46px;
          line-height: 46px;
          font-size: 0.813rem;
        }
      }
    }
  }
}

/* step2以降のページ */
.step2-page .questionBox,
.step3-page .questionBox,
.step4-page .questionBox,
.step5-page .questionBox {
  margin: 0 auto;
  .question_innerBox {
    padding: 1.5rem 0;
    .questionBoxImage {
      margin: 0 auto;
    }
  }
}


/* result
============================= */
#result {
  margin: 0 auto;
}
.resultBox {
  padding: 40px 16px;
  background: #FFFBEF;
  text-align: center;
  .result_typeBox {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 40px;
    background: #fff;
    border-radius: 20px;
  }
  h1.result_headline {
    margin: 0 auto 24px;
    font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
    font-weight: bold;
  }
  h2.result_type_headline {
    display: flex;
    flex-direction: row; /*SP flex-direction: column;*/
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.375rem, 1.343rem + 0.13vw, 1.5rem);
    font-weight: 900;
    line-height: 1.3;
  }
  .result_type_lead {
    .result_type_lead_grid {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      /* display: grid;
      grid-template-columns: auto auto auto; */
      column-gap: 4px;
      justify-content: center;
      align-items: center;
      font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
      font-weight: bold;
    }
    .result_type_lead_icon {
      padding: 2px 12px;
      background: #F34B4B;
      border-radius: 100px;
      color: #fff;
      font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
    }
    .result_type_lead_amount {
      color: #F34B4B;
    }
    .result_type_lead_text {
    }
    &.dot-line::after {
      content: "";
      display: block;
      width: 100%;
      height: 8px;
      margin: 20px auto;
      background: radial-gradient(circle farthest-side, #B08789, #B08789 50%, transparent 50%, transparent);
      background-size: 8px;
    }
  }
  .result_type_cmnt {
    max-width: 560px;
    margin: 0 auto 56px;
    &::after {
      content: "";
      display: block;
      width: 0px;
      height: 0px;
      border-style: solid;
      border-right: 25px solid transparent;
      border-left: 25px solid transparent;
      border-top: 16px solid #621014;
      border-bottom: 0;
      position: relative;
      top: 56px;
      left: 50%;
      transform: translateX(-50%);
    }
    p {
      margin-bottom: 8px;
      &:last-of-type {
        margin-bottom: 0;
      }
    }
    em {
      font-style: normal;
      font-weight: bold;
    }
  }
  .result_type_advice {
    width: 100%;
    max-width: 600px;
    margin: 32px auto 0;
    padding: 24px;
    background: #FFFBEF;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    position: relative;
    img {
      margin: 0 auto 16px;
    }
    .result_type_advice_cmnt {
        font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
        line-height: 1.8;
      p {
        font-weight: normal;
        &.result_type_lead_grid {
          display: flex;
          flex-direction: column;
          column-gap: 4px;
          justify-content: center;
          align-items: center;
        }
      }
      em {
        font-weight: bold;
        font-style: normal;
      }
      .result_type_lead_icon {
        display: inline-block;
        margin-right: 4px;
        padding: 0px 12px;
        background: #F34B4B;
        border-radius: 100px;
        color: #fff;
      }
      .result_type_lead_amount {
        color: #F34B4B;
      }
    }
    .result_type_advice_deco-image-r {
      position: absolute;
      top: -90px;
      right: 6%;
      transform: rotate(15deg);
      &.norotate {
        transform: none;
      }
    }
    .result_type_advice_deco-image-l {
      position: absolute;
      top: -10px;
      left: 6%;
      transform: rotate(-15deg);
    }
  }
  .result_campresentBox {
    padding: 32px 0 0 0;
    .result_campresent_arrow {
      display: block;
      margin: 0 auto 32px;
      position: relative;
      &::before {
        content: "";
        display: block;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        border-top: 16px solid #621014;
        border-bottom: 0;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
      }
      &::after {
        content: "";
        display: block;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        border-top: 16px solid #B8E427;
        border-bottom: 0;
        position: relative;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
      }
    }
    h2.result_campresent_headline {
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
      align-items: center;
      font-size: clamp(1rem, 0.936rem + 0.26vw, 1.25rem);
      font-weight: bold;
      em {
        font-size: clamp(1.25rem, 1.186rem + 0.26vw, 1.5rem);
        font-style: normal;
      }
      .result_campresent_headline_main {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        align-items: center;
        &::before,
        &::after {
          content: "";
          display: block;
          width: 3px;
          height: 16px;
          background: #621014;
          border-radius: 10px;
        }
        &::before {
          transform: rotate(-25deg);
        }
        &::after {
          transform: rotate(25deg);
        }
      }
    }
    .offerBox {
      margin: 80px auto 40px;
      .offer-headlineBox {
        max-width: 463px;
        top: -3.5rem;
        left: 50%;
        transform: translateX(-50%);
      }
      .offer-headline_main-textBox {
        top: .8rem;
        .offer-headline_catch-text {
          font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
        }
        .offer-headline_catch-text::before,
        .offer-headline_catch-text::after {
          display: none;
        }
      }
      .offer-presentList {
        gap: 32px;
        margin: 0 auto;
      }
    }
    .result_campresent-more_headline {
      display: flex;
      flex-direction: row;
      gap: 10px;
      justify-content: center;
      align-items: center;
      font-size: clamp(1.125rem, 1.061rem + 0.26vw, 1.375rem);
      font-weight: bold;
      margin: 0 auto 8px;
      &::before,
      &::after {
        content: "";
        display: block;
        width: 3px;
        height: 16px;
        background: #621014;
        border-radius: 10px;
      }      
      &::before {
        transform: rotate(-25deg);
      }
      &::after {
        transform: rotate(25deg);
      }
    }
  }
  .resultBoxImage {
    margin: 0 auto;
  }
}

@media screen and (min-width: 973px) and (max-width: 1024px) {
  .resultBox {
    .result_campresentBox {
      .offerBox {
        margin: 80px auto 40px;
        .offer-headlineBox {
          max-width: 463px;
          top: -3.5rem;
          left: 50%;
          transform: translateX(-50%);
        }
        .offer-headline_main-textBox {
          top: .8rem;
          .offer-headline_catch-text {
            font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            display: none;
          }
        }
        .offer-presentList {
          gap: 24px;
          margin: 0 auto;
        }
      }
    }
  }
}
@media screen and (min-width: 768px) and (max-width: 972px) {
  .resultBox {
    .result_campresentBox {
      .offerBox {
        margin: 80px auto 40px;
        padding: 0;
        .offer-headlineBox {
          max-width: 463px;
          top: -3.5rem;
          left: 50%;
          transform: translateX(-50%);
        }
        .offer-headline_main-textBox {
          top: .8rem;
          .offer-headline_catch-text {
            font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            display: none;
          }
        }
        .offer-presentList {
          gap: 16px;
          margin: 0 auto;
        }
      }
    }
  }
}
@media screen and (min-width: 668px) and (max-width: 767px) {
  .resultBox {    
    padding: 40px 16px 0;
    .result_campresentBox {
      .offerBox {
        margin: 80px auto 40px;
        padding: 0;
        .offer-headlineBox {
          max-width: 463px;
          top: -3.5rem;
          left: 50%;
          transform: translateX(-50%);
        }
        .offer-headline_main-textBox {
          top: .8rem;
          .offer-headline_catch-text {
            font-size: clamp(1rem, 0.841rem + 0.65vw, 1.625rem);
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            display: none;
          }
        }
        .offer-presentList {
          gap: 16px;
          margin: 0 auto;
        }
      }
    }
  }
}
@media screen and (min-width: 435px) and (max-width: 667px) {
  .resultBox {
    padding: 40px 16px 0;
    .result_campresentBox {
      .offerBox {
        margin: 5rem auto 40px;
        padding: 0;
        .offer-innerBox {
          padding: 5rem 1rem 1rem;
        }
        .offer-headlineBox {
          width: 100%;
          max-width: 380px;
          top: -2rem;
          .offer-headline_main-textBox {
            top: .8rem;
          }
          .offer-headline_band {
            width: 100%;
            max-width: 380px;
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            width: 3px;
            height: 18px;
          }
        }
        .offer-presentList {
          flex-direction: column;
          gap: 16px;
          margin: 0 auto;
          .offer-presentContents img {
            max-width: 380px;
            margin-bottom: 8px;
          }
        }
      }
    }
  }
}
@media screen and (min-width: 345px) and (max-width: 434px) {
  .resultBox {
    padding: 40px 16px 0;
    .result_campresentBox {
      .offerBox {
        margin: 4rem auto 40px;
        padding: 0;
        .offer-innerBox {
          padding: 4rem 1rem 1rem;
        }
        .offer-headlineBox {
          width: 100%;
          max-width: 310px;
          min-width: 310px;
          top: -2rem;
          .offer-headline_main-textBox {
            top: .5rem;
          }
          .offer-headline_band {
            width: 100%;
            max-width: 310px;
            min-width: 310px;
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            width: 3px;
            height: 18px;
          }
        }
        .offer-presentList {
          flex-direction: column;
          gap: 16px;
          margin: 0 auto;
          .offer-presentContents img {
            max-width: 310px;
            min-width: 310px;
            margin-bottom: 8px;
          }
          .offer-presentPlus {
            width: 25px;
          }
        }
      }
    }
    .result_type_cmnt {
      margin: 0 auto 40px;
      &::after {
        top: 40px;
      }
    }
    .result_type_advice {
      .result_type_advice_deco-image-r {
        width: 78px;
        position: absolute;
        top: -80px;
        right: 0;
        transform: rotate(15deg);
      }
      .result_type_advice_deco-image-l {
        width: 56px;
        position: absolute;
        top: -10px;
        left: 6%;
        transform: rotate(-15deg);
      }
    }
  }
}
@media screen and (min-width: 321px) and (max-width: 344px) {
  .resultBox {
    padding: 40px 16px 0;
    .result_campresentBox {
      .offerBox {
        margin: 4rem auto 40px;
        padding: 0;
        .offer-innerBox {
          padding: 4rem 1rem 1rem;
        }
        .offer-headlineBox {
          width: 100%;
          max-width: 280px;
          top: -2rem;
          .offer-headline_main-textBox {
            top: .5rem;
          }
          .offer-headline_band {
            width: 100%;
            max-width: 280px;
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            width: 3px;
            height: 18px;
          }
        }
        .offer-presentList {
          flex-direction: column;
          gap: 16px;
          margin: 0 auto;
          .offer-presentContents img {
            max-width: 280px;
            margin-bottom: 8px;
          }
          .offer-presentPlus {
            width: 25px;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 320px) {
  .resultBox {
    padding: 40px 16px 0;
    .result_campresentBox {
      .offerBox {
        margin: 4rem auto 40px;
        padding: 0;
        .offer-innerBox {
          padding: 2rem 1rem 1rem;
        }
        .offer-headlineBox {
          width: 100%;
          max-width: 260px;
          min-width: 260px;
          top: -2rem;
          .offer-headline_main-textBox {
            top: .5rem;
          }
          .offer-headline_band {
            width: 100%;
            max-width: 260px;
            min-width: 260px;
          }
          .offer-headline_catch-text {
            font-size: 0.813rem;
          }
          .offer-headline_catch-text::before,
          .offer-headline_catch-text::after {
            width: 2px;
            height: 13px;
          }
          .offer-headline_free {
            padding: 0px 6px;
            font-size: 0.813rem;
          }
          .offer-headline_main-text {
            font-size: 0.938rem;
          }
        }
        .offer-presentList {
          flex-direction: column;
          gap: 16px;
          margin: 0 auto;
          .offer-presentContents img {
            max-width: 260px;
            min-width: 260px;
            margin-bottom: 8px;
          }
          .offer-presentPlus {
            width: 25px;
          }
        }
      }
    }
  }
}



/* cta
============================= */
.ctaBox {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
  padding: 60px 0;
}
.ctaBox.is-fixed {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 930px) {
  .ctaBox.is-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .ctaBox.is-fixed.js-scroll-cta {
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    background: #ffffff80;
    transition: opacity 0.3s;
  }
}


/* 診断結果ページ */
.result-page .ctaBox.sp_only_fixed {
  position: static;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 930px) {
  .result-page .ctaBox.sp_only_fixed {
    animation: normal;
  }
  .result-page .ctaBox.sp_only_fixed.is-fixed {
    width: 100%;
    padding: 10px 0 24px;
    background: #FFFBEF;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: opacity 0.3s;
  }
}

/* footer
============================= */
footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  background: #621014;
  color: #fff;
  .footerNav {
    font-size: 1rem;
  }
  small {
    font-size: 0.875rem;
  }
  a,a:link {
    text-decoration: dashed underline 1px;
  }
  a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 932px) {
  footer {
    margin: 0 auto;
    a:hover {
      text-decoration: dashed underline 1px;
    }
  }
  /* step2以降のページ */
  .step2-page footer,
  .step3-page footer,
  .step4-page footer,
  .step5-page footer,
  .contact-page footer,
  .thanks-page footer {
    margin: 0 auto;
  }
  .result-page footer {
    margin: 0 auto;
  }
}


/* page top link
============================= */
#back_to_top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  padding: 10px 15px;
  background: #621014;
  border: 2px solid #fff;
  border-radius: 100px;
  animation: normal !important;
  translate: 0 15% !important;
  &.is-visible {
    opacity: 1;
    pointer-events: auto;
    transition-duration: 1.4s;
    transition-timing-function: linear;
  }
  .arrow::before,
  .arrow::after {
    content: "";
    position: absolute;
    top: 25%;
    left: calc(50% - 2px);
    width: 4px;
    height: 30px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 50% 2px;
  }
  .arrow::before {
    transform: rotate(45deg);
  }
  .arrow::after {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 932px) {
  #back_to_top {
    bottom: 100px;
    z-index: 110;
    .arrow::before,
    .arrow::after {
      top: 30%;
      left: calc(50% - 2px);
      width: 4px;
      height: 23px;
    }
  }
}
