@charset "UTF-8";
body {
  font-feature-settings: "palt";
}
html {
  cursor: default;
  font-size: 5.33px;
  overflow-x: hidden;
}
img {
  display : block;
  max-width : 100%;
  height: auto;
}

/* common */
.sp-wrap {
  width: 400px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 4px 40px 0px rgba(171, 163, 147, 0.3);
}

.pc-bg {
  display: none;
}

.pc_bg_item .item {
  position: fixed;
}

/* circle */
.pc_bg_item .pc_bg_item01 {
  width: 39em;
  right: 0;
  margin: auto;
  top: 8%;
  left: -85rem;
  z-index: -1;
  animation-name: btn-rotate;
  animation-duration: 30s;
  animation-timing-function:linear;
  animation-iteration-count: infinite;
}

@keyframes btn-rotate {
  100%{
    transform: rotate(360deg);
  }
}

/* loop_item */
.pc_bg_item .pc_bg_item02 {
  left: 0;
}

.pc_bg_item .pc_bg_item03 {
  right: 0;
  transform: rotate( 180deg );
}

.pc_bg_item .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  height: 100vh;
}

.pc_bg_item .scroll-infinity__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  height: 200%;
  animation: infinity-scroll-up 65s infinite linear;
}

.pc_bg_item .scroll-infinity__item {
  height: 100vh;
}

.pc_bg_item .scroll-infinity__item>img {
  height: 100%;
  width: 100%;
  padding-bottom: 10rem;
}

@keyframes infinity-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* kazari_01 */
.pc_bg_item .pc_bg_item04 {
  width: 22%;
  top: 2%;
  right: 10%;
}

/* kazari_02 */
.pc_bg_item .pc_bg_item05 {
  width: 2%;
  bottom: 2%;
  right: 0;
  left: 90rem;
  margin: auto;
  z-index: -1;
}

@media screen and (max-width:750px) {
  .pc_bg_item .pc_bg_item01 {
    display: none;
  }
}

@media screen and (max-width:960px) {
  .pc_bg_item .pc_bg_item02,
  .pc_bg_item .pc_bg_item03,
  .pc_bg_item .pc_bg_item04 {
    display: none;
  }
}

@media (min-width: 400px) {
  .pc-bg {
    /*background-image: url("../img/pc_bg.webp");*/
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .pc-bg picture {
    width: 100%;
    height: 100%;
  }
  .pc-bg picture img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width:1920px) {
  html {
    /* font-size: 0.08vw; */
    /* font-size: 10px; */
  }
}

@media screen and (max-width:750px) {
  html {
    font-size: 1.33vw;
  }

  .sp-wrap {
    width: 100%;
  }

  .header {
    width: 100%!important;
  }
}

@media screen and (max-width:375px) {
  html {
    font-size: 31.25%;
  }
  .is-pc {
    display: none;
  }
}


/*  font style  */
.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
}

.letter_b {
  letter-spacing: -1rem;
}

.letter_s {
  letter-spacing: -.5rem;
}

/* margin padding */
.plr_7 {
  padding: 0 .7rem;
}

.pr_7 {
  padding-right: .7rem;
}


.mb_10 {
  margin-bottom: 10rem;
}

.mb_16 {
  margin-bottom: 16rem;
}

/* font-size */
.txt_size_20 {
  font-size: 2rem;
}

.txt_size_23 {
  font-size: 2.3rem;
}

.txt_size_30 {
  font-size: 3rem;
}

.txt_size_32 {
  font-size: 3.2rem;
}

.txt_size_33 {
  font-size: 3.3rem;
}

.txt_size_34 {
  font-size: 3.4rem;
}

.txt_size_35 {
  font-size: 3.5rem;
}

.txt_size_40 {
  font-size: 4rem;
}

.txt_size_45 {
  font-size: 4.5rem;
}

.txt_size_50 {
  font-size: 5rem;
}

.txt_size_60 {
  font-size: 6rem;
}

.txt_size_67 {
  font-size: 6.7rem;
}

.txt_size_70 {
  font-size: 7rem;
}

.txt_size_80 {
  font-size: 8rem;
}

.txt_size_100 {
  font-size: 10rem;
}

/* line-height */
.line_h {
  line-height: 5rem;
}


/* common */

.tag_wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
}

.tag {
  display: inline-block;
  color: #BC9E53;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border: solid .1rem #BC9E53;
  border-radius: .8rem;
}

/* period */
.campaign_period {
  background-color: #fff;
  width: 63rem;
  margin: 9rem auto 3rem;
  border-top: .1rem solid #BC9E53;
  border-bottom: .1rem solid #BC9E53;
  padding: 1rem 0;
}

.campaign_period .period_title {
  background-color: #BC9E53;
  padding: 1.5rem 2rem;
  color: #fff;
}

.campaign_period .period {
  color: #BC9E53;
  padding-right: 5rem;
  font-weight: 600;
}

.campaign_period .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 4rem;
}

.campaign_period .line {
  border-bottom: .1rem dashed #BC9E53;
  margin: 1.5rem 0;
}


/* 大タイトル */
.big_title p {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right bottom, #9B7B34, #BC9E53);
  padding: 0 2.5rem;
  margin-bottom: 1rem;
  height: 8.3rem;
  line-height: 7.6rem;
}




/* slide */
.swiper__wrap {
  position: relative;
}

.swiper__wrap img {
  margin: auto;
}

.swiper-button-prev,
.swiper-button-next {
  height: 8rem;
  width: 8rem;
  transition: .3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 10rem;
  width: 10rem;
  margin: auto;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: .8;
}

.swiper-button-next, .swiper-button-prev {
  top: 45%;
}

.point_reason04 .swiper-button-next, .point_reason04  .swiper-button-prev {
  top: 50%;
}

/* animation */
/* mv用 */
.showup_blur-long {
  filter: blur(4px) brightness(150%);
  -webkit-filter:blur(4px) brightness(150%);
  transition: 1.7s;
}

.active {
  opacity: 1;
  filter: blur(0) brightness(100%);
  -webkit-filter:blur(0) brightness(100%);
  transform: translate(0) rotate(0deg) scale(1);
  will-change: transform
}

/* ズームイン */
@keyframes ZoomIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* 大⇒元の大きさになりながら表示 */
@keyframes SmallIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* きらっと表示 */
@keyframes glowFadeIn {
  0% {
    filter: brightness(1.5) blur(8px);
  }
  100% {
    filter: brightness(1) blur(0);
  }
}

/* 左からスライドイン */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-20%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* 右からスライドイン */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* 下から上にからスライドイン */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* 下から上にからスライドイン 小 */
@keyframes fadeInUp_mini {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* フェードイン */
@keyframes FadeIn {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* かくかく動く */
@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

@keyframes decoSwing2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-15deg);
  }
}

/* 画像をくるっと回して色付ける */
@keyframes icon_color {
  0% {
    transform: rotateX(0deg);
  }
  50% {
  }
  100% {
    opacity: 1;
    transform: rotateY(360deg);
  }
}

/* 画像を上から下に表示 */
@keyframes revealImage {
  0% {
    clip-path: inset(0 0 100% 0); /* 非表示 */
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0); /* 画像が完全に表示される */
  }
}

/* ==================== cta ==================== */
/* fv_bottom_cta_wrap */
.fv_bottom_cta_wrap {
  margin-top: -5rem;
  margin-bottom: 6rem;
}

.point_reason_box .cta_wrap {
  margin: 5rem auto 10rem;
}

.point_reason_box.point_reason05 .cta_wrap {
  margin: 5rem auto 5rem;
}

.cta_wrap .cta_btn {
  position: relative;
  display: block;
  width: 65rem;
  margin: auto;
  transition: .3s;
  z-index: 10;
}

.cta_wrap .cta_btn img {
  width: 100%;
}

.cta_wrap .cta_btn:hover {
  opacity: .7;
}

/* ================== footer ================== */
.footer {
    margin-top: 4.8rem;
    padding: 2.8rem 0;
  }

  @media (min-width: 400px) {
    .footer {
      margin-top: px(48);
      padding: px(28) 0;
    }
  }

  .footer .copyright {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    line-height: normal;
  }
  @media (min-width: 400px) {
    .footer .copyright {
      font-size: px(12);
    }
  }
  .body .cv-wrap {
    position: fixed;
    bottom: 0;
    right: -2.6rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  @media (min-width: 400px) {
    .body .cv-wrap {
      top: 886.55px;
      right: -387.4px;
    }
  }
  .body .cv-wrap.js-block {
    opacity: 1;
    visibility: visible;
  }
  .body .cv-btn {
    display: inline-block;
    width: 15.2rem;
  }
  @media (min-width: 400px) {
    .body .cv-btn {
      width: 226.48px;
    }
  }
  .body .cv-btn img {
    width: 100%;
  }
  .body .main .nav {
    display: none;
    font-size: 10px;
  }
  .header {
    display: block;
  }

@media (min-width: 1440px) {
    .body .main .nav {
      display: block;
      position: fixed;
      left: 8.5vw;
      width: 370px;
      margin-top: 35px;
    }
    .body .main .nav__list__item {
      border-bottom: .1rem solid #BC9E53;
    }
    .body .main .nav__list .logo {
      width: 270px;
      margin: 0 auto;
    }
    .body .main .nav__list__item a {
      color: #BC9E53;
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 3.41rem;
      position: relative;
      display: block;
      padding-bottom: 1.3rem;
      transition: .3s;
    }
    .body .main .nav__list__item a:hover {
      opacity: .5;
    }
    .body .main .nav__list__item:first-child {
        margin-top: 8px;
    }
    .body .main .nav__list__item:not(:first-child) {
        margin-top: 6rem;
    }
    .body .main .nav__list__item:last-child {
        margin-bottom: 2px;
    }
    .body .main .nav__list .nav-category {
        position: relative;
    }
    .body .main .nav__list__item a::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        color: #BC9E53;
        line-height: 1;
        margin-right: 2rem;
        height: 2rem;
        width: 2rem;
        border: .15rem solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;

        position: absolute;
        right: 1rem;
        top: 30%;
        transform: translateY(-30%) rotate(135deg);
    }
    .header {
      display: none;
    }
}

@media (max-width: 1750px) {
  .body .main .nav {
    width: 260px;
  }

  .body .main .nav__list .logo {
    width: 200px;
  }
  .body .main .nav__list__item a {
    font-size: 2.7rem;
  }

  .body .main .copy .logo__img {
    width: 250px!important;
  }

  .body .main .copy .cv__btn__img {
    width: 200px!important;
}
}

.body .main .copy {
  display: none;
  text-align: center;
}

@media (min-width: 1150px) {
  .body .main .copy {
    display: block;
    position: fixed;
    bottom: 3vw;
    right: 8.5vw;
  }
}

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin-left: 15px;
}
.dli-arrow-right::before {
  content: '';
  width: 6px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  right: -1px;
  box-sizing: border-box;
  color: #fff;
}

.body .main .copy .logo__img {
  width: 336px;
  margin: 0 auto;
}

.body .main .copy .cv__btn__img {
  width: 260px;
  margin: 35px auto 0;
  transition: .3s;
}

.body .main .copy .cv__btn__img:hover {
  opacity: .8;
}
.body .main .copy .btn {
  width: 42rem;
  margin: 0 auto;
}

/* ================== cta ================== */
.cta {
  position: fixed;
  top: calc(100vh - 17rem);
  left: 0;
  right: 0;
  margin: auto;
  height: 15rem;
  z-index: 999;

  opacity: 0;
  filter: blur(4px);
  transition: .3s;
}
.cta.active {
  opacity: 1;
  filter: blur(0);
}

.cta_wrap .cv_btn {
  position: absolute;
  bottom: 3.5%;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-weight: 600;
  letter-spacing: -1.1rem;
  text-align: center;
  width: 69rem;
  background: linear-gradient(to right, #FF848C, #D64D74);
  padding: 4.5rem;
  border-radius: 10rem;
  transition: .3s;
  z-index: 999;
}

.cta_wrap .cv_btn:hover {
  opacity: 0.9;
}


/*　================== header================== */
.header {
  position: fixed;
  background-color: #fff;
  height: auto;
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  text-align: center;
  transition: .8s;
}

.header .logo {
  width: 31.6rem;
  height: 10rem;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  /* margin-top: 10rem; */
  clear: both;
  background-color: #fff;
  opacity: 0; /* 初期状態では非表示 */
  visibility: hidden; /* 初期状態では非表示 */
  transition: opacity .5s ease, visibility 0s linear .5s;
}

.menu .top_logo {
  background-color: #fff;
  padding: 0;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 3.8rem;
  text-transform: capitalize;
  color: #BC9E53;
  opacity: 0;
  transition: .5s;
}

.menu li {
  padding: 2.5rem 0;
  margin: 0 3rem;
  opacity: 0;
  transition: .5s;
}

.menu li.under_line {
  border-bottom: 1px solid #BC9E53;
}

.menu a,
.menu li {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease 0.1s, visibility 0s linear 0s; /* 項目が表示される際に遅延を加える */
}


.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 3.5rem 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 100;
}

@media (min-width: 1440px) {
  .navicon {
    display: none!important;
  }
}

.navicon {
  background: #BC9E53;
  display: block;
  height: .3rem;
  width: 5rem;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #BC9E53;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 1.3rem;
}

.navicon:after {
  bottom: 1.3rem;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-30deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(30deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ================== mv ================== */
.mv {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* mv_bg */
.mv_bg_wrap .bg_item {
  opacity: .7;
}

.mv_bg_wrap .main_bg_img {
  position: absolute;
  top: 0;
  opacity: 0;
}

.mv .main_bg_img01.active {
  animation: SmallIn 0.5s ease-out forwards;
  animation-delay: .3s;
}

.mv .main_bg_img02.active {
  animation: SmallIn 0.3s ease-out forwards;
  animation-delay: .45s;
}

.mv .main_bg_img03.active {
  animation: SmallIn 0.4s ease-out forwards;
  animation-delay: .55s;
}

/* mv_bg_item */
.mv_bg_wrap .main_bg_item {
  position: absolute;
  width: 7rem;
  z-index: 10;
  opacity: 0;
}

.mv_bg_wrap .main_bg_item.main_bg_item01 {
  top: 42%;
  left: 4%;
}

.mv_bg_wrap .main_bg_item.main_bg_item02 {
  top: 56%;
  right: 5%;
}

.mv_bg_wrap .main_bg_item.main_bg_item03 {
  top: 19%;
  left: 5%;
}

.mv_bg_wrap .main_bg_item.main_bg_item01.active {
  animation: fadeInRight 0.3s ease-out forwards;
  animation-delay: .5s;
}

.mv_bg_wrap .main_bg_item.main_bg_item02.active {
  animation: fadeInLeft 0.5s ease-out forwards;
  animation-delay: .2s;
}

.mv_bg_wrap .main_bg_item.main_bg_item03.active {
  animation: fadeInLeft 0.5s ease-out forwards;
  animation-delay: .2s;
}



/* ================== campaign_wrap ================== */
.campaign_wrap {
  text-align: center;
  background-color: #feffec;
  padding: 8rem 0 5rem;
}

.campaign_wrap .campaign_img {
  width: 65.6rem;
  margin: 7rem auto;
}

.campaign_wrap .fee {
  color: #BA0000;
  margin: 1rem auto 4rem;
}

.campaign_wrap .fee2 {
  color: #636363;
  position: relative;
}
.campaign_wrap .fee2::before {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(10deg);
  background-color: #BA0000;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.campaign_wrap .fee3 {
  color: #636363;
  margin: 2rem auto;
}

.campaign_wrap .campaign_point {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
}

.campaign_wrap .campaign_point p {
  height: 6rem;
  line-height: 3rem;
}

.campaign_wrap .campaign_point03 p {
  line-height: 6rem;
}

.campaign_wrap .campaign_point_img {
  width: 15rem;
  padding-bottom: 2rem;
}


/*  ======== try_wrap ======== */
.try_wrap {
  position: relative;
  text-align: center;
  margin: 14rem auto 11rem;
  padding: 9rem 3rem 6rem;
  width: 69rem;
  border-radius: 10rem;
  background: linear-gradient(to right bottom, #FCE0E0, #F6C0CB);
}

.try_wrap .title .try_mini_title {
  position: absolute;
  left: 0;
  right: 0;
  width: 42rem;
  margin: -13rem auto 0;
}

.try_wrap .title {
  color: #F77272;
  font-weight: 600;
}

.try_wrap .main_txt {
  text-align: left;
}

.try_wrap .title_2 {
  letter-spacing: -.5rem;
  margin: 6.5rem auto;
  font-weight: 600;
}

.try_wrap .title_2::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  height: 3rem;
  width: 61rem;
  background-image: url(../img/try_underline.png);
  margin-top: -1rem;
  margin-left: 1rem;
}
.campaign_period {
  margin-top: 4rem;
}

/* try_slide */
.try_slide {
  width: 45rem;
  margin: auto;
  padding-bottom: 7rem;
}

.try_wrap .swiper-button-prev:after {
  background-image: url(../img/slider_btn.png);
  transform: scale(-1, 1);
}

.try_wrap .swiper-button-next:after {
  background-image: url(../img/slider_btn.png);
}

.try_wrap .swiper-pagination-bullet {
  opacity: 1;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
}

.try_wrap .swiper-pagination-bullet-active {
  background-color: #BC9E53;
}



/*  ======== select_reason_wrap ======== */
.select_reason_wrap {
  text-align: center;
}

.select_reason_wrap .select_reason_menu ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  width: 69rem;
  margin: 6rem auto 0;
  border-top: .1rem solid #000;
  border-bottom: .1rem solid #000;
}

.select_reason_wrap .select_reason_menu li {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
  padding: 2.5rem 0;
  border-bottom: solid .1rem #8C8C8C;
  transition: .3s;
}

.select_reason_wrap .select_reason_menu li:hover {
  opacity: .6;
}

.select_reason_wrap .select_reason_menu li.last {
  border-bottom: none;
}

.select_reason_wrap .select_reason_menu .menu_left {
  width: 40rem;
}

.select_reason_wrap .select_reason_menu .menu_right {
  width: 29rem;
  padding-left: 2rem;
}

.select_reason_wrap .select_reason_menu li .num {
  color: #BC9E53;
}

.select_reason_wrap .select_reason_menu li::after {
  content: "";
  position: absolute;
  right: -2rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 2rem solid #C4BFB7;
  border-bottom: 0;
  margin: 1rem 2rem 0;
}



/*  ======== point_reason_wrap ======== */
.point_reason_box {
  position: relative;
  margin: 16rem auto 0;
  text-align: center;
  padding: 14rem 0 0;
  opacity: 0;
}

.ancl {
  padding-top: 1rem;
  margin-top: -1rem;
}

.ancl2 {
  padding-top: 15rem;
  margin-top: -15rem;
}

.ancl3 {
  padding-top: 1.5rem;
  margin-top: -1.5rem;
}

.ancl4 {
  padding-top: 5rem;
  margin-top: -5rem;
}

.point_reason_box.active {
  animation: fadeInUp 0.5s ease-out forwards;
}

.point_reason_box .bg_item {
  width: 51.4rem;
  margin: 7.5rem auto;
}

/* point_reason01 */
.point_reason_box.point_reason01 {
  background-color: #FCE0E0;
  padding-bottom: 17rem;
}

.point_reason_box .point_reason_num {
  position: absolute;
  left: 0;
  right: 0;
  width: 31rem;
  margin: auto;
  top: -10rem;
}

.point_reason_box.point_reason01 .point_reason_title {
  position: relative;
  font-weight: 700;
  color: #4D4D4D;
  z-index: 1;
  margin-bottom: 5rem;
}

.point_reason_box .main_img {
  position: relative;
  width: 65.5rem;
  z-index: 10;
}

.point_reason_box .main_img.animation {
  opacity: 0;
}

.point_reason_box .main_img.active {
  animation: fadeInRight 0.5s ease-out forwards;
}

.point_reason_box .box02 .main_img.active {
  animation: fadeInLeft 0.5s ease-out forwards;
}

.point_reason_box .box02 .main_img {
  margin-left: auto;
}

.point_reason_box .num_wrap {
  margin: 6rem auto 3rem;
}

.point_reason_box .num_wrap .num {
  color: #F77272;
  font-weight: 600;
}

.point_reason_box .point_reason_point {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 3rem;
  z-index: 12;
}

.point_reason_box .box02 .point_reason_point {
  gap: 1rem;
}

.point_reason_box .point_reason_point img {
  width: 12.7rem;
}

.point_reason_box .box01 .item_wrap .item,
.point_reason_box .box02 .item_wrap .item {
  position: absolute;
  z-index: 11;
}

/* item_wrap */
.point_reason_box .item_wrap .item01 {
  width: 4.5rem;
}

.point_reason_box .item_wrap .item02 {
  width: 10.3rem;
}

.point_reason_box .item_wrap .item03 {
  width: 18rem;
}

.point_reason_box .box01 .item_wrap .item01 {
  top: 77.5rem;
  left: 3rem;
}

.point_reason_box .box02 .item_wrap .item01 {
  bottom: 36rem;
  right: 3rem;
}

.point_reason_box .box02 .item_wrap .item02 {
  bottom: 18rem;
  left: 0;
  z-index: 1;
}

.point_reason_box .box01 .item_wrap .item02 {
  top: 71rem;
  right: 0;
}

.point_reason_box .box02 .item_wrap .item03 {

  bottom: 93rem;
  left: 5rem;
}

.point_reason_box .box01 .item_wrap .item03 {
  top: 33rem;
  right: 6rem;
}


/* point_reason02 */
.point_reason_box.point_reason02 {
  position: relative;
  background-color: #D8B76C;
  margin-top: 0rem;
  padding-bottom: 20rem;
}

.point_reason_box.point_reason02 .point_reason_title {
  position: relative;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  margin-bottom: 5rem;
}

.point_reason_box.point_reason02 .point_reason_title .main_title {
  width: 65.5rem;
  margin: 2rem auto 4.5rem;
  text-align: justify;
  margin-right: 3.2rem;
}

.point_reason_box.point_reason02 .main_txt {
  text-align: justify;
  width: 69rem;
  margin: auto;
}

.point_reason_box.point_reason02 .main_img {
  margin-left: auto;
  margin-top: 4rem;
  right: -.8rem;
  width: 69rem;
}

.point_reason_box.point_reason02 .txt_item_wrap .item {
  position: absolute;
  width: 7.5rem;
  z-index: 13;
  opacity: 0;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item01 {
  bottom: 77rem;
  right: 9rem;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item01.active {
  animation: revealImage 1.2s ease-in-out forwards;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item02 {
  bottom: 27.5rem;
  left: 12rem;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item02.active {
  animation: revealImage 1.2s .5s ease-in-out forwards;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item03 {
  bottom: 19rem;
  left: 3rem;
}

.point_reason_box.point_reason02 .txt_item_wrap .item.item03.active {
  animation: revealImage 1.2s .8s ease-in-out forwards;
}

/* point_reason03 */
.point_reason_box.point_reason03 {
  position: relative;
  background-color: #fff;
  margin-top: 0;
  padding-bottom: 20rem;
}


.point_reason_box.point_reason03 .point_reason_title {
  position: relative;
  font-weight: 700;
  color: #BC9E53;
  z-index: 1;
  margin-bottom: 5rem;
}

.point_reason_box.point_reason03 .main_txt {
  text-align: justify;
  width: 69rem;
  margin: 0 auto 3rem;
}

.point_reason03 .slide_title img {
  width: 65.5rem;
  margin: auto;
}

.point_reason03 .slide_title p {
  font-weight: 600;
  margin: 1rem auto 5rem;
}

.point_reason03 .slide_title01 p {
  background: linear-gradient(180deg, #E95C91 0%, #EF93BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point_reason03 .slide_title02 p {
  background: linear-gradient(180deg, #EB612A 0%, #F1945B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point_reason03 .slide_title03 p {
  background: linear-gradient(180deg, #46BAAC 0%, #71C6CA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point_reason03 .slide_title04 p {
  background: linear-gradient(180deg, #386DB5 0%, #76CBED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* try_slide */
.point_reason03_slide {
  width: 45rem;
  margin: auto;
}

/* point_reason04 */
.point_reason_box.point_reason04 {
  position: relative;
  background-color: #FCE0E0;
  margin-top: 0;
  padding-bottom: 20rem;
}

.point_reason_box.point_reason04 .point_reason_title {
  position: relative;
  font-weight: 700;
  color: #4D4D4D;
  z-index: 1;
  margin-bottom: 5rem;
}

.point_reason_box.point_reason04 .main_txt {
  text-align: justify;
  width: 69rem;
  margin: 0 auto 6rem;
}

.point_reason_box.point_reason04 .main_txt .marker_txt {
  color: #F77272;
  background: linear-gradient(transparent 10%, #fff 10%);
  padding: 0 .5rem;
  font-weight: 600;
}

.point_reason_box.point_reason04 .message {
  font-weight: 600;
}

/* try_slide */
.point_reason04_slide {
  width: 45rem;
  margin: 0 auto 8rem;
}

.point_reason_box .swiper-button-prev:after {
  position: absolute;
  left: 6rem;
  background-image: url(../img/slider_btn.png);
  transform: scale(-1, 1);
}

.point_reason_box .swiper-button-next:after {
  position: absolute;
  right: 6rem;
  background-image: url(../img/slider_btn.png);
}

/* point_reason05 */
.point_reason_box.point_reason05 {
  position: relative;
  background-color: #D8B76C;
  margin-top: 0;
  padding-bottom: 1rem;
}

.point_reason_box.point_reason05 .point_reason_title {
  position: relative;
  font-weight: 700;
  z-index: 1;
  margin-bottom: 5rem;
}

.point_reason_box.point_reason05 .point_reason_title .main_title {
  width: 47rem;
  margin: 2rem auto 4.5rem;
  text-align: justify;
}

.point_reason_box.point_reason05 .main_txt {
  position: relative;
  text-align: justify;
  width: 69rem;
  margin: 0 auto;
  z-index: 10;
}

.point_reason_box.point_reason05 .main_txt .marker_txt {
  color: #BC9E53;
  background: linear-gradient(transparent 10%, #fff 10%);
  padding: 0 .5rem;
  font-weight: 600;
}

.point_reason_box.point_reason05 .main_img {
  width: 65.7rem;
  margin: auto;
}

.point_reason_box.point_reason05 .bg_img {
  position: absolute;
  width: 13rem;
  bottom: 0;
  left: -3rem;
  z-index: 1;
}



/*  ======== soudan_wrap ======== */
.soudan_wrap {
  position: relative;
}

.soudan_wrap .bg_img {
  margin: 10rem auto;
  width: 69rem;
}

.soudan_wrap .box {
  position: absolute;
  top: 16rem;
  left: 0;
  right: 0;
  margin: auto;
}

.soudan_wrap .title {
  text-align: center;
  color: #F77272;
  font-weight: 600;
}

.soudan_wrap .soudan_point {
  width: 62rem;
  margin: 6rem auto 0;
  padding-left: 2rem;
}

.soudan_wrap .soudan_point p {
  display: flex;
  align-items: start;
  padding-bottom: 2rem;
}

.soudan_wrap .soudan_point p::before {
  content: "";
  display: block;
  background-image: url(../img/soudan_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.4rem;
  height: 3rem;
  margin-right: 2rem;
}



/* ================== qa_wrap ================== */
.qa_wrap {
  text-align: center;
  padding: 7rem 2rem 10rem;
  background-color: #FCE0E0;
  margin-top: 10rem;
}

.qa_title  {
  font-weight: 600;
}

/* accordion */
.qa_ac {
  margin-top: 6rem;
}

.ac {
  line-height: 4rem;
}

.ac dt {
  margin: 0 auto;
}
.ac-parent {
  position: relative;
}
.ac-parent .title__img {
  position: absolute;
  width: 24.6rem;
  top: -40%;
  left: 0;
}

.ac_title {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1rem;
  cursor: pointer;
}

.ac_title .txt_box {
  width: 55rem;
  text-align: left;
}

.ac_title.question,
.ac_child.answer {
  display: flex;
  gap: 2.5rem;
}

.ac_title.question {
  align-items: center;
  border-top: solid .2rem #929292;
}

.ac_child.answer {
  align-items: start;
  border-top: solid .2rem #929292;
}

.q5 .ac_child.answer {
  border-top: none;
}

.q5 .ac_title.question {
  border-bottom: solid .2rem #929292;
}

.ac_title.question::before {
  content: "";
  display: block;
  background-image: url(../img/q_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
}

.ac_child.answer::before {
  content: "";
  display: block;
  background-image: url(../img/a_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
}

.ac_child {
  display: flex;
  gap: 2rem;
  padding: 3rem 1rem;
  letter-spacing: .1rem;
}

.ac_child.line {
  align-items: center;
}

.ac_child a {
  color: #EE848C;
  text-decoration: underline;
}

.ac_child span {
  display: block;
  line-height: 3rem;
}

.ac_child .q_icon {
  color: #EE848C;
  border: solid .2rem #EE848C;
  line-height: 1.5;
  text-align: center;
  height: 6rem;
  width: 6rem;
  background-color: #fff;
  border-radius: 5rem;
}

.ac_child .txt_box {
  width: 51rem;
  text-align: left;
  text-align: justify;
}

.ac_iconwrap {
  position: absolute;
  width: 7.7rem;
  height: 7.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  cursor: pointer;
}
.ac-parent .ac_icon {
  position: relative;
  height: 1.8rem;
  width: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.ac-parent .ac_icon {
  transform: rotate(180deg);
}
.ac-parent .ac_icon.open {
  transform: rotate(0deg);
}
.plus::before,.plus::after  {
  content: '';
  display: inline-block;
  width: 5rem;
  height: .25rem;
  background-color: #AAAAAA;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}
.plus.open::before {
  opacity: 0;
}
.plus.open::after {
  transform: translateY(-50%) rotate(180deg);
}



/* ================== shop_list_wrap ================== */
.shop_list_wrap {
  text-align: center;
  padding: 11rem 0 6.5rem;
}

.shop_list_wrap .shop_list_title {
  font-weight: 600;
}

.shop_list_wrap .main_txt {
  margin: 6rem auto 4.5rem;
}

/* shop_list_menu */
.shop_list_wrap .ac {
  margin-bottom: .3rem;
}

.shop_list_wrap .ac_child {
  flex-wrap: wrap;
  justify-content: space-between;
}


.shop_list_wrap .shop_list_menu {
  width: 69rem;
  margin: auto;
}

.shop_list_wrap .ac_title,
.shop_list_wrap .ac_child {
  padding: 0;
}

.shop_list_wrap .ac_title .shop_area {
  width: 100%;
  display: flex;
  height: 12rem;
  line-height: 12rem;
  margin: auto;
  background-color: #EAE4D6;
  padding: 0 3rem;
}

.shop_list_wrap .ac_iconwrap {
  right: 3rem;
}

.shop_list_wrap .plus::before,
.shop_list_wrap .plus::after  {
  content: '';
  display: block;
  background-image: url(../img/shop_list_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  background-color: initial;
}

.shop_list_wrap .plus::after {
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.shop_list_wrap .plus.open::before {
  opacity: 0;
}

.shop_list_wrap .plus.open::after {
  transform: translateY(-50%) scaleY(-1);
}

.shop_list_wrap .plus.open::after {
  transform: translateY(-50%) scaleY(-1);
}

.shop_list_wrap .shop_box {
  padding: 4.5rem 0;
}

.shop_list_wrap .shop_box a {
  color: #000;
  text-decoration: none;
}

.shop_list_wrap .shop_box img {
  width: 33rem;
}

.shop_list_wrap .shop_box .shop_name {
  margin: 2.5rem 0 0;
}

.shop_list_wrap .shop_box .shop_name.one_lines {
  margin-bottom: 5.5rem;
}

.shop_list_wrap .shop_box .shop_name.two_lines {
  margin-bottom: 1.5rem;
}

.shop_list_wrap .shop_box .shop_tel {
  margin-bottom: 2.5rem;
}

.shop_list_wrap .shop_box .shop_btn {
  margin-bottom: 2rem;
  transition: .3s;
}

.shop_list_wrap .shop_box .shop_btn:hover {
  opacity: .6;
}


/* ================== cm_wrap ================== */
.cm_wrap {
  margin-top: 10rem;
}

.cm_wrap .tel_bunner {
  display: block;
  width: 69rem;
  margin: auto;
  transition: .3s;
}

.cm_wrap .tel_bunner:hover {
  opacity: .7;
}



/* ================== footer ================== */
.footer {
  position: relative;
  padding: 12rem 0 10rem;
}

.footer__menu {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.footer__menu li {
  margin-bottom: 6rem;
}
.footer .copyright {
  font-size: 2rem;
}