@charset "UTF-8";
@font-face {
  font-family: AvenirNextCondensed-DemiBold;
  src: url(../font/avenir-next-condensed-demi-bold.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
main {
  width: 600px;
  margin: auto;
  position: relative;
}
main .sp-menu {
  width: 24px;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 6;
  cursor: pointer;
}
main .sp-menu.open svg rect {
  fill: #f43246;
}
main .sp-menu svg {
  width: 100%;
  height: 100%;
}

@keyframes bounce {
  from {
    transform: translateY(-8px);
  }
  to {
    transform: translateY(0);
  }
}
.hambeg__menu {
  width: 600px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background: white;
  z-index: 4;
  display: none;
}
.hambeg__menu ul {
  padding-top: 100px;
}
.hambeg__menu ul li {
  margin: 20px 0;
  text-align: center;
}
.hambeg__menu ul li a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: inline-flex;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 36.3px;
  text-align: center;
  color: #f43246;
}

.frontview {
  padding: 40px 0;
  background: #f43246;
  text-align: center;
  position: relative;
}
@keyframes pop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.frontview.visible .c__map .gap01 {
  animation: pop 0.5s ease-in-out forwards;
}
.frontview.visible .c__map .gap02 {
  animation: pop 0.5s ease-in-out forwards;
}
.frontview.visible .c__map .gap03 {
  animation: pop 0.5s ease-in-out forwards;
}
.frontview.visible .c__map .gap04 {
  animation: pop 0.5s ease-in-out forwards;
}
.frontview .logo {
  width: 150px;
  margin: auto;
  margin-bottom: 100px;
  display: flex;
}
.frontview .c__map {
  width: 207.28px;
  display: flex;
  margin: auto;
  margin-top: 90px;
  position: relative;
}
.frontview .c__map .gap01 {
  width: 133px;
  display: flex;
  position: absolute;
  left: -120px;
  top: -40px;
  transform: scale(0);
}
.frontview .c__map .gap02 {
  width: 94px;
  display: flex;
  position: absolute;
  right: -90px;
  top: -40px;
  transform: scale(0);
  animation-delay: 0.3s !important;
}
.frontview .c__map .gap03 {
  width: 66px;
  display: flex;
  position: absolute;
  right: -68px;
  bottom: -25px;
  transform: scale(0);
  animation-delay: 0.6s !important;
}
.frontview .c__map .gap04 {
  width: 194px;
  display: flex;
  position: absolute;
  left: -140px;
  bottom: -85px;
  transform: scale(0);
  animation-delay: 0.9s !important;
}
.frontview .catch__text {
  width: 460px;
  display: flex;
  margin: auto;
  margin-top: 120px;
}

.move__left {
  width: calc(50% - 300px);
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row-reverse;
  z-index: 1;
}
.move__left .ps__container.small .slider {
  transform: translateY(-50%);
}
.move__left .ps__container.small .slider-list {
  animation: slideShow 40s infinite linear;
}
.move__left.right {
  left: auto;
  right: 0;
  flex-direction: row;
}
.move__left.right .ps__container.small .slider {
  transform: translateY(0);
}
.move__left.right .ps__container.small .slider-list {
  animation: slideShow_reserve 40s infinite linear;
}
.move__left.right .ps__container .slider {
  transform: translateY(-50%);
}
.move__left.right .ps__container .slider-list {
  animation: slideShow 40s infinite linear;
}

.ps__container {
  width: 70%;
  height: 100%; /* 设置高度 */
}
.ps__container.small {
  width: 30%;
}
.ps__container.small .slider-list {
  animation: slideShow_reserve 40s infinite linear;
}
.ps__container.small .slider {
  transform: translateY(0);
}
.ps__container.right {
  left: auto;
  right: 0;
}
.ps__container .slider {
  display: flex;
  flex-direction: column-reverse;
  transform: translateY(0);
  background-color: #efefef;
}
.ps__container .slider-list {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
  padding: 0;
  align-items: center;
  animation: slideShow_reserve 40s infinite linear;
  list-style: none;
}
.ps__container .slider-item {
  width: 100%;
  height: auto;
  display: flex;
}
.ps__container .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0.5rem;
}
@keyframes slideShow {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideShow_reserve {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.p__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: inline-flex;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 36.3px;
  text-align: center;
  color: #fff;
}
.p__title.yellow {
  color: #ffe600;
}
.p__title.yellow span:after {
  background: #ffe600;
}
.p__title.red {
  color: #fa3246;
}
.p__title.red span:after {
  background: #fa3246;
}
.p__title span:nth-child(1)::after {
  animation-delay: 0.1s;
}
.p__title span:nth-child(2)::after {
  animation-delay: 0.2s;
}
.p__title span:nth-child(3)::after {
  animation-delay: 0.3s;
}
.p__title span:nth-child(4)::after {
  animation-delay: 0.4s;
}
.p__title span:nth-child(5)::after {
  animation-delay: 0.5s;
}
.p__title span:nth-child(6)::after {
  animation-delay: 0.6s;
}
.p__title span:nth-child(7)::after {
  animation-delay: 0.7s;
}
.p__title span:nth-child(8)::after {
  animation-delay: 0.8s;
}
.p__title span:nth-child(9)::after {
  animation-delay: 0.9s;
}
.p__title span:nth-child(10)::after {
  animation-delay: 1s;
}
.p__title span:nth-child(11)::after {
  animation-delay: 1.1s;
}
.p__title span:nth-child(12)::after {
  animation-delay: 1.2s;
}
.p__title span:nth-child(13)::after {
  animation-delay: 1.3s;
}
.p__title span:nth-child(14)::after {
  animation-delay: 1.4s;
}
.p__title span:nth-child(15)::after {
  animation-delay: 1.5s;
}
.p__title span:nth-child(16)::after {
  animation-delay: 1.6s;
}
.p__title span:nth-child(17)::after {
  animation-delay: 1.7s;
}
.p__title span:nth-child(18)::after {
  animation-delay: 1.8s;
}
.p__title span:nth-child(19)::after {
  animation-delay: 1.9s;
}
.p__title span:nth-child(20)::after {
  animation-delay: 2s;
}
.p__title span:nth-child(21)::after {
  animation-delay: 2.1s;
}
.p__title span:nth-child(22)::after {
  animation-delay: 2.2s;
}
.p__title span:nth-child(23)::after {
  animation-delay: 2.3s;
}
.p__title span:nth-child(24)::after {
  animation-delay: 2.4s;
}
.p__title span:nth-child(25)::after {
  animation-delay: 2.5s;
}
.p__title span:nth-child(26)::after {
  animation-delay: 2.6s;
}
.p__title span:nth-child(27)::after {
  animation-delay: 2.7s;
}
.p__title span:nth-child(28)::after {
  animation-delay: 2.8s;
}
.p__title span:nth-child(29)::after {
  animation-delay: 2.9s;
}
.p__title span:nth-child(30)::after {
  animation-delay: 3s;
}
.p__title span:nth-child(31)::after {
  animation-delay: 3.1s;
}
.p__title span:nth-child(32)::after {
  animation-delay: 3.2s;
}
.p__title span:nth-child(33)::after {
  animation-delay: 3.3s;
}
.p__title span {
  position: relative;
}
.p__title span.y {
  color: #ffe600;
}
.p__title span.y:after {
  background: #ffe600;
}
.p__title span:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translate(-50%);
  animation: bounce 0.8s alternate infinite;
}

.detail__content01 {
  position: relative;
  padding-bottom: 70px;
}
.detail__content01 .bg {
  width: 100%;
  height: 100%;
  background: #f43246;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 1;
  transition: 0.3s;
}
.detail__content01 .bg.disible {
  opacity: 0;
}
.detail__content01 .promise__btn {
  width: 480px;
  display: flex;
  margin: auto;
  transition: 0.3s;
}
.detail__content01 .promise__btn:hover {
  transform: scale(1.1);
}
.detail__content01 .content__item {
  width: 480px;
  margin: auto;
  margin-top: 40px;
}
.detail__content01 .content__item .c__image {
  width: 100%;
  display: flex;
}
.detail__content01 .content__item .content__text {
  width: 100%;
  margin-top: 35px;
  position: relative;
}
.detail__content01 .content__item .content__text .gap {
  width: 140px;
  display: flex;
  position: absolute;
  right: 0;
  top: -65px;
}
.detail__content01 .content__item .content__text .title__part {
  width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.detail__content01 .content__item .content__text .title__part .t__txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 46px;
  margin-top: 10px;
  text-align: center;
  color: #ffe600;
}
.detail__content01 .content__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  margin-top: 20px;
  text-align: justify;
  color: #fff;
}

.detail__content02 {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.detail__content02 .gap01 {
  width: 170px;
  display: flex;
  position: absolute;
  left: 40px;
  top: -55px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content02 .gap01.anim {
  opacity: 1;
}
.detail__content02 .gap01.anim.is-animated {
  transform: scale(1);
}
.detail__content02 .gap02 {
  width: 103px;
  display: flex;
  position: absolute;
  right: 40px;
  top: -35px;
  transition: 0.3s;
  transform: scale(0);
}
.detail__content02 .gap02.anim {
  opacity: 1;
}
.detail__content02 .gap02.anim.is-animated {
  transform: scale(1);
}
.detail__content02 .title__part {
  width: 295px;
  margin: 0 auto 0 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.detail__content02 .title__part .t__txt {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 36px;
  margin-bottom: 5px;
  text-align: center;
  color: #fa3246;
}
.detail__content02 .dt__slider {
  margin-top: 60px;
  display: flex;
  padding-bottom: 40px;
}
.detail__content02 .dt__slider .c__item {
  width: 300px;
  padding: 6px;
  background: #fa4658;
}
.detail__content02 .dt__slider .c__item .content__text {
  padding: 25px;
}
.detail__content02 .dt__slider .c__item .content__text .point {
  font-family: AvenirNextCondensed-DemiBold;
  font-weight: normal;
  font-size: 16px;
  margin-top: 6px;
  line-height: 1;
  text-align: center;
  color: #ffe600;
}
.detail__content02 .dt__slider .c__item .content__text .t__txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
  color: #ffe600;
}
.detail__content02 .dt__slider .c__item .content__text .b__line {
  width: 100%;
  margin-top: 15px;
  display: flex;
}
.detail__content02 .dt__slider .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  margin-top: 22px;
  text-align: justify;
  color: #fff;
}
.detail__content02 .dt__slider .c__item .c__image {
  width: 100%;
  height: 254px;
  display: flex;
  margin-top: 0;
}
.detail__content02 .dt__slider .swiper-pagination-bullet {
  background: #fa3246;
}
.detail__content02 .dt__slider .swiper-pagination-bullet-active {
  background: #fa3246;
}
.detail__content02 .dt__slider .swiper-button-prev {
  width: 40px;
  height: 80px;
  background: url(../img/arrow_left.webp);
  background-size: cover;
  left: 0;
  color: transparent;
}
.detail__content02 .dt__slider .swiper-button-next {
  width: 40px;
  height: 80px;
  background: url(../img/arrow_right.webp);
  background-size: cover;
  right: 0;
  color: transparent;
}
.detail__content02 .ps__content {
  margin-top: 40px;
  padding-bottom: 100px;
  position: relative;
}
@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
.detail__content02 .ps__content .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -35px;
  z-index: -1;
}
.detail__content02 .ps__content .bg .wave {
  height: 60px;
  display: block;
}
.detail__content02 .ps__content .bg .wave svg {
  width: 100%;
  height: 100%;
}
.detail__content02 .ps__content .bg .wave__space {
  display: block;
  height: calc(100% - 60px);
  margin-top: -2px;
  background: #1e3250;
}
.detail__content02 .ps__content .bg .waves > use {
  animation: move-forever 6s -2s linear infinite;
}
.detail__content02 .ps__content .gap03 {
  width: 140px;
  display: flex;
  position: absolute;
  right: 40px;
  bottom: 235px;
  transition: 0.3s;
  transform: scale(0);
}
.detail__content02 .ps__content .gap03.anim {
  opacity: 1;
}
.detail__content02 .ps__content .gap03.anim.is-animated {
  transform: scale(1);
}
.detail__content02 .ps__content .content__inner {
  width: 480px;
  margin: auto;
}
.detail__content02 .ps__content .content__inner .c__image {
  width: 100%;
  display: flex;
}
.detail__content02 .ps__content .content__inner .d__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: -0.08em;
  margin-top: 34px;
  text-align: left;
  color: #fff;
}
.detail__content02 .ps__content .promise__btn {
  width: 480px;
  margin: auto;
  display: flex;
  margin-top: 15px;
  transition: 0.3s;
}
.detail__content02 .ps__content .promise__btn:hover {
  transform: scale(1.1);
}

.detail__content03 {
  width: 100%;
  position: relative;
  text-align: center;
  padding-bottom: 60px;
  background: #1e3250;
}
.detail__content03 .bg {
  width: 100%;
  height: 100%;
  background: #ffe600;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: 0.3s;
}
.detail__content03 .bg.disible {
  opacity: 0 !important;
}
.detail__content03 .gap01 {
  width: 72px;
  display: flex;
  margin: auto;
  margin-top: -60px;
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .gap01.anim {
  opacity: 1;
}
.detail__content03 .gap01.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .item__list {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.detail__content03 .item__list li {
  width: 156px;
  height: 80px;
  margin: 0 3px;
  background: #fdc1c7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.detail__content03 .item__list li:hover {
  background: #f43246;
}
.detail__content03 .item__list li.active {
  background: #fa3246;
}
.detail__content03 .item__list li span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #fff;
}
.detail__content03 .content__item {
  margin-top: 100px;
  display: none;
}
.detail__content03 .content__item.active {
  display: block;
  animation: fadeIn 0.3s forwards;
}
.detail__content03 .content__item .gap__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.detail__content03 .content__item .gap__item .ga01 {
  width: 175px;
  display: flex;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  transform: translate(-50%) scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .gap__item .ga01.anim {
  opacity: 1;
}
.detail__content03 .content__item .gap__item .ga01.anim.is-animated {
  transform: translate(-50%) scale(1);
}
.detail__content03 .content__item .gap__item .ga02 {
  width: 109px;
  display: flex;
  position: absolute;
  top: -60px;
  right: 60px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .gap__item .ga02.anim {
  opacity: 1;
}
.detail__content03 .content__item .gap__item .ga02.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .gap__item .content__text {
  width: 220px;
}
.detail__content03 .content__item .gap__item .content__text .t__txt {
  font-weight: bold;
  font-size: 18px;
  line-height: 29.7px;
  text-align: left;
  color: #fa3246;
}
.detail__content03 .content__item .gap__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  margin-top: 12px;
  text-align: justify;
  color: #232323;
}
.detail__content03 .content__item .gap__item .c__image {
  width: 220px;
  margin-left: 40px;
  margin-top: 25px;
  display: flex;
}
.detail__content03 .content__item .tp__item {
  width: 100%;
  padding: 134px 0 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.detail__content03 .content__item .tp__item .bg {
  width: 113%;
  height: 100%;
  background: url(../img/ga_bg01.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 0;
}
.detail__content03 .content__item .tp__item .t__gap01 {
  width: 185px;
  display: flex;
  position: absolute;
  left: 80px;
  top: 55px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .tp__item .t__gap01.anim {
  opacity: 1;
}
.detail__content03 .content__item .tp__item .t__gap01.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .tp__item .t__gap02 {
  width: 32px;
  display: flex;
  position: absolute;
  right: 130px;
  top: 25px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .tp__item .t__gap02.anim {
  opacity: 1;
}
.detail__content03 .content__item .tp__item .t__gap02.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .tp__item .t__gap03 {
  width: 132px;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .tp__item .t__gap03.anim {
  opacity: 1;
}
.detail__content03 .content__item .tp__item .t__gap03.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .tp__item .c__items {
  width: 480px;
  margin: auto;
}
.detail__content03 .content__item .tp__item .c__items .c__item {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.detail__content03 .content__item .tp__item .c__items .c__item:last-child {
  flex-direction: row-reverse;
}
.detail__content03 .content__item .tp__item .c__items .c__item:last-child .c__image {
  margin-right: 0;
  margin-left: 25px;
}
.detail__content03 .content__item .tp__item .c__items .c__item .c__image {
  width: 220px;
  display: flex;
  margin-right: 25px;
}
.detail__content03 .content__item .tp__item .c__items .c__item .c__text {
  width: 220px;
  padding-top: 5px;
  position: relative;
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  text-align: justify;
  color: #232323;
}
.detail__content03 .content__item .tp__item .c__items .c__item .c__text .g__txt {
  font-weight: bold;
  font-size: 18px;
  line-height: 29.7px;
  text-align: left;
  color: #fa3246;
  position: absolute;
  left: 0;
  top: -60px;
}
.detail__content03 .content__item .bp__item {
  margin-top: 85px;
}
.detail__content03 .content__item .bp__item .b__item {
  width: 480px;
  margin: auto;
  position: relative;
}
.detail__content03 .content__item .bp__item .b__item:last-child {
  margin-top: 130px;
}
.detail__content03 .content__item .bp__item .b__item:last-child .b__inner {
  flex-direction: row-reverse;
}
.detail__content03 .content__item .bp__item .b__item:last-child .b__inner .c__image {
  margin: 0;
  margin-right: 25px;
}
.detail__content03 .content__item .bp__item .b__item .b__gap01 {
  width: 22px;
  display: flex;
  position: absolute;
  left: 35px;
  top: -55px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap01.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap01.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap02 {
  width: 20px;
  display: flex;
  position: absolute;
  left: 95px;
  top: -110px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap02.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap02.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap03 {
  width: 220px;
  display: flex;
  position: absolute;
  left: 150px;
  top: -55px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap03.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap03.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap04 {
  width: 96px;
  display: flex;
  position: absolute;
  right: -16px;
  top: -40px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap04.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap04.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap05 {
  width: 182px;
  display: flex;
  position: absolute;
  left: 1px;
  top: -80px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap05.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap05.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap06 {
  width: 56px;
  display: flex;
  position: absolute;
  left: 218px;
  top: -110px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap06.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap06.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__gap07 {
  width: 160px;
  display: flex;
  position: absolute;
  right: 0;
  top: -190px;
  transform: scale(0);
  transition: 0.3s;
}
.detail__content03 .content__item .bp__item .b__item .b__gap07.anim {
  opacity: 1;
}
.detail__content03 .content__item .bp__item .b__item .b__gap07.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .bp__item .b__item .b__lbl {
  font-weight: bold;
  font-size: 18px;
  line-height: 29.7px;
  text-align: left;
  color: #fa3246;
}
.detail__content03 .content__item .bp__item .b__item .b__inner {
  margin-top: 13px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.detail__content03 .content__item .bp__item .b__item .b__inner .b__txt {
  width: 220px;
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  text-align: justify;
  color: #232323;
}
.detail__content03 .content__item .bp__item .b__item .b__inner .c__image {
  width: 220px;
  margin-left: 25px;
  display: flex;
}
.detail__content03 .content__item .cp__item {
  margin-top: 60px;
  position: relative;
  padding: 90px 0 60px;
}
.detail__content03 .content__item .cp__item .c__gap01 {
  width: 87px;
  display: flex;
  position: absolute;
  left: 38px;
  top: -2px;
  transform: scale(0);
  transition: 0.3s;
  z-index: 1;
}
.detail__content03 .content__item .cp__item .c__gap01.anim {
  opacity: 1;
}
.detail__content03 .content__item .cp__item .c__gap01.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .cp__item .c__gap02 {
  width: 33px;
  display: flex;
  position: absolute;
  left: 190px;
  top: -11px;
  transform: scale(0);
  transition: 0.3s;
  z-index: 1;
}
.detail__content03 .content__item .cp__item .c__gap02.anim {
  opacity: 1;
}
.detail__content03 .content__item .cp__item .c__gap02.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .cp__item .c__gap03 {
  width: 120px;
  display: flex;
  position: absolute;
  left: 220px;
  top: -4px;
  transform: scale(0);
  transition: 0.3s;
  z-index: 1;
}
.detail__content03 .content__item .cp__item .c__gap03.anim {
  opacity: 1;
}
.detail__content03 .content__item .cp__item .c__gap03.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .cp__item .c__gap04 {
  width: 200px;
  display: flex;
  position: absolute;
  right: 50px;
  top: 2px;
  transform: scale(0);
  transition: 0.3s;
  z-index: 1;
}
.detail__content03 .content__item .cp__item .c__gap04.anim {
  opacity: 1;
}
.detail__content03 .content__item .cp__item .c__gap04.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .cp__item .c__gap05 {
  width: 35px;
  display: flex;
  position: absolute;
  right: 50px;
  top: 25px;
  transform: scale(0);
  transition: 0.3s;
  z-index: 1;
}
.detail__content03 .content__item .cp__item .c__gap05.anim {
  opacity: 1;
}
.detail__content03 .content__item .cp__item .c__gap05.anim.is-animated {
  transform: scale(1);
}
.detail__content03 .content__item .cp__item .bg {
  width: 100%;
  height: 100%;
  background: url(../img/ga_bg02.webp);
  background-size: 100% 100%;
  position: absolute;
  left: -30px;
  top: 0;
}
.detail__content03 .content__item .cp__item .content__inner {
  width: 480px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.detail__content03 .content__item .cp__item .content__inner .content__text {
  width: 220px;
}
.detail__content03 .content__item .cp__item .content__inner .content__text .t__txt {
  font-weight: bold;
  font-size: 18px;
  line-height: 29.7px;
  text-align: left;
  color: #fa3246;
}
.detail__content03 .content__item .cp__item .content__inner .content__text .c__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  margin-top: 10px;
  text-align: justify;
  color: #232323;
}
.detail__content03 .content__item .cp__item .content__inner .c__image {
  width: 220px;
  display: flex;
  margin-left: 25px;
  margin-top: 7px;
}

.voice__content {
  padding-top: 55px;
  position: relative;
}
.voice__content .v__gap01 {
  width: 151px;
  display: flex;
  position: absolute;
  left: 30px;
  top: -40px;
  transform: scale(0);
  transition: 0.3s;
}
.voice__content .v__gap01.anim {
  opacity: 1;
}
.voice__content .v__gap01.anim.is-animated {
  transform: scale(1);
}
.voice__content .v__gap02 {
  width: 120px;
  display: flex;
  position: absolute;
  right: 80px;
  top: -30px;
  transform: scale(0);
  transition: 0.3s;
}
.voice__content .v__gap02.anim {
  opacity: 1;
  transition-delay: 0.3s;
}
.voice__content .v__gap02.anim.is-animated {
  transform: scale(1);
}
.voice__content .title__part {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.voice__content .title__part .t__txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
  color: #fa3246;
}
.voice__content .voice__items {
  width: 480px;
  margin: auto;
  margin-top: 35px;
}
.voice__content .voice__items .swiper-wrapper {
  display: block;
}
.voice__content .voice__items .v__item {
  width: 100%;
  height: auto;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #f4f4f4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.voice__content .voice__items .v__item .c__image {
  width: 80px;
  margin-right: 20px;
  display: flex;
}
.voice__content .voice__items .v__item .content__text {
  width: 330px;
}
.voice__content .voice__items .v__item .content__text .t__lbl {
  font-weight: bold;
  font-size: 16px;
  line-height: 28.8px;
  text-align: left;
  color: #232323;
}
.voice__content .voice__items .v__item .content__text .review__bar {
  width: 103.09px;
  margin-top: 10px;
  display: flex;
}
.voice__content .voice__items .v__item .content__text .review__bar.c04 {
  clip-path: inset(0 20% 0 0);
}
.voice__content .voice__items .v__item .content__text .review__bar.c03 {
  clip-path: inset(0 40% 0 0);
}
.voice__content .voice__items .v__item .content__text .c__txt {
  font-weight: normal;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 10px;
  text-align: justify;
  color: #232323;
}
.voice__content .more__content {
  width: 500px;
  height: auto;
  margin: -130px auto 0;
  padding: 120px 0 35px;
  background: linear-gradient(to top, #fff 50%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}
.voice__content .more__content.visible {
  background: transparent;
}
.voice__content .more__content .more__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.voice__content .more__content .more__btn .c__lbl {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  text-align: left;
  color: #232323;
}
.voice__content .more__content .more__btn .icon {
  width: 40px;
  margin-left: 10px;
  display: flex;
}

.price__content {
  width: 560px;
  height: auto;
  margin: auto;
  margin-top: 50px;
  padding-top: 80px;
  padding-bottom: 50px;
  border-radius: 6px;
  background: #f43246;
  text-align: center;
  position: relative;
}
.price__content .p__gap01 {
  width: 90px;
  display: flex;
  position: absolute;
  left: 50px;
  top: 40px;
  transform: scale(0);
  transition: 0.3s;
}
.price__content .p__gap01.anim {
  opacity: 1;
}
.price__content .p__gap01.anim.is-animated {
  transform: scale(1);
}
.price__content .p__gap02 {
  width: 122px;
  display: flex;
  position: absolute;
  right: 3px;
  top: 20px;
  transform: scale(0);
  transition: 0.3s;
}
.price__content .p__gap02.anim {
  opacity: 1;
}
.price__content .p__gap02.anim.is-animated {
  transform: scale(1);
}
.price__content .p__txt {
  font-weight: normal;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 36px;
  text-align: center;
  color: #fff;
}
.price__content .price__frame {
  width: 480px;
  height: auto;
  margin: auto;
  margin-top: 30px;
  padding: 40px 30px;
  background: #fff;
  position: relative;
}
.price__content .price__frame .mark {
  width: 100px;
  display: flex;
  position: absolute;
  left: 30px;
  top: -25px;
}
.price__content .price__frame table {
  width: 100%;
  border-collapse: collapse;
}
.price__content .price__frame table tr {
  border-bottom: 1px dotted #fc98a2;
}
.price__content .price__frame table tr:first-child td .txt {
  font-weight: 500;
}
.price__content .price__frame table tr td {
  padding: 10px 0;
  text-align: center;
  color: #232323;
  position: relative;
}
.price__content .price__frame table tr td:nth-child(3) .c01 {
  background: #feeaec;
}
.price__content .price__frame table tr td .c01 {
  width: 95%;
  height: 100%;
  border-radius: 6px 6px 0 0;
  background: #fed6da;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
}
.price__content .price__frame table tr td .c01.c02 {
  border-radius: 0;
}
.price__content .price__frame table tr td .c01.c03 {
  height: 90%;
  border-radius: 0 0 6px 6px;
}
.price__content .price__frame table tr td .c04 {
  width: 100%;
  height: 78%;
  border-radius: 6px;
  background: #fc98a2;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.price__content .price__frame table tr td .c04.c05 {
  background: #ffe600;
}
.price__content .price__frame table tr td .txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.05em;
  text-align: left;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.price__content .price__frame table tr td:first-child {
  width: 120px;
  padding-left: 10px;
  text-align: left;
}
.price__content .price__frame table tr td:first-child .txt {
  color: #fa3246;
  font-weight: 500;
}
.price__content .price__frame .promise__btn {
  width: 100%;
  margin-top: 10px;
  display: flex;
  transition: 0.3s;
}
.price__content .price__frame .promise__btn:hover {
  transform: scale(1.1);
}

.access__content {
  width: 480px;
  margin: auto;
  margin-top: 55px;
  text-align: center;
  position: relative;
}
.access__content .gap01 {
  width: 70px;
  display: flex;
  position: absolute;
  left: 34px;
  top: -30px;
  transform: scale(0);
  transition: 0.3s;
}
.access__content .gap01.anim {
  opacity: 1;
}
.access__content .gap01.anim.is-animated {
  transform: scale(1);
}
.access__content .gap02 {
  width: 130px;
  display: flex;
  position: absolute;
  right: 0;
  top: -80px;
  transform: scale(0);
  transition: 0.3s;
}
.access__content .gap02.anim {
  opacity: 1;
}
.access__content .gap02.anim.is-animated {
  transform: scale(1);
}
.access__content .address {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  padding-bottom: 25px;
  border-bottom: 1px dotted #fc98a2;
  margin-top: 30px;
  text-align: center;
  color: #232323;
}
.access__content .map__txt {
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  line-height: 25.2px;
  margin-top: 25px;
  text-align: left;
  color: #232323;
}
.access__content .map__txt span {
  font-size: 14px;
  font-weight: 500;
  color: #FA3246;
}
.access__content .map {
  width: 100%;
  height: 300px;
  margin-top: 40px;
}
.access__content .map iframe {
  width: 100%;
  height: 100%;
}

.faq__content {
  margin-top: 75px;
  text-align: center;
}
.faq__content .faq__items {
  width: 480px;
  margin: auto;
  margin-top: 40px;
}
.faq__content .faq__items .f__item {
  padding: 30px 0;
  border-bottom: 1px dotted #fc98a2;
}
.faq__content .faq__items .f__item .q__part {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}
.faq__content .faq__items .f__item .q__part.open .sign:before {
  opacity: 0;
}
.faq__content .faq__items .f__item .q__part .sign {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fa3246;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq__content .faq__items .f__item .q__part .sign:after {
  content: "";
  width: 14px;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__content .faq__items .f__item .q__part .sign:before {
  content: "";
  height: 14px;
  width: 0;
  border-left: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__content .faq__items .f__item .q__part .q__lbl {
  font-family: AvenirNextCondensed-DemiBold;
  font-weight: normal;
  font-size: 22px;
  margin-right: 13px;
  line-height: 36.3px;
  margin-top: -3px;
  text-align: left;
  color: #fa3246;
}
.faq__content .faq__items .f__item .q__part .t__txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 29.7px;
  text-align: left;
  color: #232323;
}
.faq__content .faq__items .f__item .a__part {
  width: 450px;
  height: auto;
  margin: 28px 0 0 auto;
  padding: 35px 40px;
  border-radius: 6px;
  background: #feeaec;
  display: none;
}
.faq__content .faq__items .f__item .a__part p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28.8px;
  text-align: left;
  color: #fa3246;
}
.faq__content .promise__btn {
  width: 480px;
  margin: auto;
  margin-top: 40px;
  display: block;
  transition: 0.3s;
}
.faq__content .promise__btn:hover {
  transform: scale(1.1);
}

.note__content {
  width: 480px;
  margin: auto;
  margin-top: 70px;
  text-align: center;
}
.note__content dl {
  width: 100%;
  margin-top: 35px;
}
.note__content dl dt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 5px;
  text-align: left;
  color: #FA3246;
}
.note__content dl dd {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 50px;
  text-align: left;
  color: #232323;
}
.note__content dl dd .list__txt {
  margin-top: 20px;
  padding-left: 20px;
  text-indent: -18px;
}
.note__content dl dd .list__txt span {
  color: #FA3246;
}
.note__content .promise__btn {
  width: 100%;
  margin: auto;
  margin-top: 40px;
  display: block;
  transition: 0.3s;
}
.note__content .promise__btn:hover {
  transform: scale(1.1);
}

footer {
  margin-top: 50px;
  padding: 60px 0 30px;
  background: #f4f4f4;
}
footer .f__logo {
  width: 340px;
  margin: auto;
  display: flex;
}
footer .copyright {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 60px;
  text-align: center;
  color: #232323;
}

@media screen and (max-width: 1390px) {
  .ps__container.small {
    display: none;
  }
  .ps__container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.27vw;
  }
  main {
    width: 100%;
  }
  .frontview {
    padding: 90rem 0;
  }
  .frontview .logo {
    width: 106rem;
    margin: auto;
    margin-bottom: 22rem;
  }
  .p__title {
    font-size: 22rem;
    letter-spacing: 0.1em;
    line-height: 46rem;
    display: inline-table;
  }
  .p__title span:after {
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -5rem;
  }
  @keyframes bounce {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(8rem);
    }
  }
  .frontview .c__map {
    width: 160rem;
    display: flex;
    margin: auto;
    margin-top: 40rem;
  }
  .frontview .c__map .gap01 {
    width: 90rem;
    display: flex;
    position: absolute;
    left: -85rem;
    top: 3rem;
  }
  .frontview .c__map .gap02 {
    width: 70rem;
    right: -75rem;
    top: -4rem;
  }
  .frontview .c__map .gap04 {
    width: 110rem;
    left: -90rem;
    bottom: -26rem;
  }
  .frontview .c__map .gap03 {
    width: 70rem;
    right: -75rem;
    bottom: 15rem;
  }
  .frontview .catch__text {
    width: 240rem;
    margin-top: 54rem;
  }
  .detail__content01 .promise__btn {
    width: 100%;
  }
  .detail__content01 .content__item {
    width: 300rem;
    margin: auto;
    margin-top: 30rem;
  }
  .detail__content01 .content__item .content__text .title__part {
    width: 240rem;
  }
  .detail__content01 .content__item .content__text .title__part .t__txt {
    font-size: 18rem;
    letter-spacing: 0.02em;
    line-height: 30rem;
    margin-top: 15rem;
  }
  .detail__content01 .content__item .content__text .gap {
    width: 93rem;
    right: -15rem;
    top: 0rem;
  }
  .detail__content01 .content__item .content__text .c__txt {
    font-size: 16rem;
    line-height: 28rem;
    margin-top: 20rem;
  }
  .detail__content02 .title__part {
    width: 100%;
    margin: 0;
  }
  .detail__content02 .title__part .t__txt {
    font-size: 18rem;
    letter-spacing: 0.1em;
    line-height: 46rem;
    margin-bottom: 0;
  }
  .detail__content02 .gap01 {
    width: 62rem;
    display: flex;
    position: absolute;
    left: 10rem;
    top: -10rem;
  }
  .detail__content02 .gap02 {
    width: 75rem;
    right: 20rem;
    top: -23rem;
  }
  .detail__content02 .dt__slider .c__item .content__text .point {
    font-size: 16rem;
    margin-top: 6rem;
  }
  .detail__content02 .dt__slider .c__item .content__text .t__txt {
    font-size: 17rem;
    letter-spacing: 0;
    line-height: 1.5;
    margin-top: 5rem;
  }
  .detail__content02 .dt__slider .c__item .content__text .c__txt {
    font-size: 16rem;
    line-height: 28rem;
    margin-top: 20rem;
  }
  .detail__content02 .dt__slider .c__item .content__text {
    padding: 30rem;
  }
  .detail__content02 .dt__slider .swiper-button-prev {
    width: 40rem;
    height: 80rem;
  }
  .detail__content02 .dt__slider .swiper-button-next {
    width: 40rem;
    height: 80rem;
  }
  .detail__content02 .dt__slider {
    margin-top: 50rem;
    display: flex;
    padding-bottom: 30rem;
  }
  .detail__content02 .ps__content .content__inner {
    width: 300rem;
    padding-bottom: 144rem;
  }
  .detail__content02 .ps__content .content__inner .d__txt {
    width: 100%;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28rem;
    letter-spacing: 0;
    margin-top: 25rem;
    text-align: justify;
  }
  .detail__content02 .ps__content .gap03 {
    width: 113rem;
    display: flex;
    position: absolute;
    right: 10rem;
    bottom: 125rem;
  }
  .detail__content02 .ps__content {
    margin-top: 40rem;
    padding-bottom: 0;
  }
  .detail__content03 {
    padding-bottom: 50rem;
    padding-top: 30rem;
  }
  .detail__content03 .gap01 {
    width: 72rem;
    margin-top: 0;
    margin-bottom: 17rem;
  }
  .detail__content02 .ps__content .bg {
    top: -30rem;
  }
  .detail__content02 .ps__content .promise__btn {
    width: 100%;
    margin: auto;
    display: flex;
    margin-top: 15rem;
  }
  .detail__content03 .item__list {
    margin-top: 40rem;
  }
  .detail__content03 .item__list li {
    width: 100rem;
    height: 70rem;
    margin: 0 5rem;
  }
  .detail__content03 .item__list li span {
    font-size: 16rem;
    line-height: 22rem;
  }
  .detail__content03 .content__item {
    margin-top: 100rem;
  }
  .detail__content03 .content__item .gap__item .ga01 {
    width: 175rem;
    top: -62rem;
    left: 28%;
  }
  .detail__content03 .content__item .gap__item {
    display: block;
  }
  .detail__content03 .content__item .gap__item .content__text {
    width: 300rem;
    margin: auto;
  }
  .detail__content03 .content__item .gap__item .content__text .t__txt {
    font-size: 18rem;
    line-height: 29rem;
  }
  .detail__content03 .content__item .gap__item .content__text .c__txt {
    font-size: 16rem;
    line-height: 28rem;
    margin-top: 12rem;
  }
  .detail__content03 .content__item .gap__item .c__image {
    width: 120rem;
    margin-left: 0;
    position: absolute;
    right: 35rem;
    top: -68rem;
    margin-top: 0;
  }
  .detail__content03 .content__item .gap__item .ga02 {
    width: 53rem;
    display: flex;
    position: absolute;
    top: -94rem;
    right: 6rem;
    z-index: 1;
  }
  .detail__content03 .content__item .tp__item {
    width: 100%;
    padding: 100rem 0 60rem;
    margin-top: 50rem;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item {
    width: 300rem;
    margin: auto;
    margin-bottom: 27rem;
    display: flex;
    flex-direction: column-reverse;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item .c__text {
    width: 100%;
    padding-top: 0;
    position: relative;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28rem;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item .c__text .g__txt {
    font-weight: bold;
    font-size: 18rem;
    line-height: 29rem;
    position: relative;
    display: block;
    margin-bottom: 10rem;
    left: 0;
    top: 0;
  }
  .detail__content03 .content__item .tp__item .t__gap01 {
    width: 185rem;
    left: 55rem;
    top: 23rem;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item .c__image {
    width: 100%;
    display: flex;
    margin-right: 0;
    margin-top: 20rem;
  }
  .detail__content03 .content__item .tp__item .t__gap02 {
    width: 32rem;
    display: flex;
    position: absolute;
    right: 130rem;
    top: 87rem;
  }
  .detail__content03 .content__item .tp__item .t__gap03 {
    width: 134rem;
    display: flex;
    position: absolute;
    right: 0;
    top: 24rem;
  }
  .detail__content03 .content__item .tp__item .bg {
    width: 100%;
    height: 100%;
    background: url(../img/ga_bg01_sp.webp);
    background-size: 100% 100%;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item:last-child {
    flex-direction: column-reverse;
  }
  .detail__content03 .content__item .tp__item .c__items .c__item:last-child .c__image {
    margin-left: 0;
  }
  .detail__content03 .content__item .bp__item {
    margin-top: 70rem;
  }
  .detail__content03 .content__item .bp__item .b__item {
    width: 300rem;
  }
  .detail__content03 .content__item .tp__item .c__items {
    width: 100%;
  }
  .detail__content03 .content__item .bp__item .b__item .b__lbl {
    font-size: 18rem;
    line-height: 29rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__inner {
    margin-top: 13rem;
    display: block;
  }
  .detail__content03 .content__item .bp__item .b__item .b__inner .b__txt {
    width: 100%;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__inner .c__image {
    width: 100%;
    margin-left: 0;
    margin-top: 20rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap01 {
    width: 22rem;
    left: 20rem;
    top: -50rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap02 {
    width: 20rem;
    left: 58rem;
    top: -111rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap03 {
    width: 220rem;
    left: 86rem;
    top: -47rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap04 {
    width: 96rem;
    right: -15rem;
    top: -104rem;
  }
  .detail__content03 .content__item .bp__item .b__item:last-child {
    margin-top: 120rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap05 {
    width: 182rem;
    display: flex;
    position: absolute;
    left: 1rem;
    top: -76rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap06 {
    width: 56rem;
    left: 200rem;
    top: -124rem;
  }
  .detail__content03 .content__item .bp__item .b__item .b__gap07 {
    width: 120rem;
    right: -21rem;
    top: -72rem;
  }
  .detail__content03 .content__item .bp__item .b__item:last-child .b__inner .c__image {
    margin: 0;
    margin-right: 0;
    margin-top: 20rem;
  }
  .detail__content03 .content__item .cp__item .content__inner {
    width: 300rem;
    margin: auto;
    display: block;
  }
  .detail__content03 .content__item .cp__item .content__inner .content__text {
    width: 100%;
  }
  .detail__content03 .content__item .cp__item .content__inner .content__text .t__txt {
    font-size: 18rem;
    line-height: 29rem;
  }
  .detail__content03 .content__item .cp__item .content__inner .content__text .c__txt {
    width: 220rem;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28rem;
    margin: 10rem 0 0 auto;
  }
  .detail__content03 .content__item .cp__item .c__gap03 {
    width: 136rem;
    left: -33rem;
    top: 203rem;
  }
  .detail__content03 .content__item .cp__item .content__inner .c__image {
    width: 120rem;
    display: flex;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -60rem;
  }
  .detail__content03 .content__item .cp__item .bg {
    background: url(../img/ga_bg02_sp.webp);
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .detail__content03 .content__item .cp__item {
    margin-top: 30rem;
    padding: 120rem 0 60rem;
  }
  .detail__content03 .content__item .cp__item .c__gap04 {
    width: 200rem;
    right: 135rem;
    top: 30rem;
  }
  .detail__content03 .content__item .cp__item .c__gap02 {
    width: 40rem;
    display: flex;
    position: absolute;
    left: 260rem;
    top: -10rem;
  }
  .detail__content03 .content__item .cp__item .c__gap01 {
    display: none;
  }
  .detail__content03 .content__item .cp__item .c__gap05 {
    display: none;
  }
  .voice__content {
    padding-top: 55rem;
  }
  .voice__content .title__part .t__txt {
    font-size: 18rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-top: 17rem;
  }
  .voice__content .v__gap01 {
    width: 107rem;
    display: flex;
    position: absolute;
    left: -20rem;
    top: -27rem;
  }
  .voice__content .v__gap02 {
    width: 70rem;
    right: 10rem;
    top: 26rem;
  }
  .voice__content .voice__items {
    width: 100%;
    margin: auto;
    padding-bottom: 30rem;
    margin-top: 30rem;
  }
  .voice__content .voice__items .swiper-pagination-bullet {
    background: #fa3246;
  }
  .voice__content .voice__items .swiper-pagination-bullet-active {
    background: #fa3246;
  }
  .voice__content .voice__items .swiper-button-prev {
    width: 40rem;
    height: 80rem;
    background: url(../img/arrow_left_v.webp);
    background-size: cover;
    left: 0;
    color: transparent;
  }
  .voice__content .voice__items .swiper-button-next {
    width: 40rem;
    height: 80rem;
    background: url(../img/arrow_right_v.webp);
    background-size: cover;
    right: 0;
    color: transparent;
  }
  .voice__content .voice__items .v__item {
    width: 100%;
    height: auto;
    padding: 20rem;
    margin-bottom: 0;
    border-radius: 6rem;
  }
  .voice__content .voice__items .v__item .c__image {
    width: 80rem;
    margin-right: 0;
  }
  .voice__content .voice__items .v__item .content__text {
    width: 170rem;
  }
  .voice__content .voice__items .v__item .content__text .t__lbl {
    font-size: 16rem;
    line-height: 28rem;
  }
  .voice__content .voice__items .v__item .content__text .review__bar {
    width: 100rem;
    margin-top: 10rem;
  }
  .voice__content .voice__items .v__item .content__text .c__txt {
    font-size: 14rem;
    line-height: 25rem;
    margin-top: 10rem;
  }
  .voice__content .more__content {
    display: none;
  }
  .price__content {
    width: 330rem;
    height: auto;
    margin: auto;
    margin-top: 50rem;
    margin-bottom: 10rem;
    padding-top: 70rem;
    padding-bottom: 20rem;
    border-radius: 6rem;
  }
  .price__content .p__txt {
    font-size: 14rem;
    line-height: 25rem;
    margin-top: 25rem;
  }
  .price__content .price__frame {
    width: 290rem;
    height: auto;
    margin: auto;
    margin-top: 25rem;
    padding: 30rem 20rem;
  }
  .price__content .p__gap01 {
    width: 69rem;
    display: flex;
    position: absolute;
    left: -5rem;
    top: 146rem;
  }
  .price__content .p__gap02 {
    width: 68rem;
    display: flex;
    position: absolute;
    right: -10rem;
    top: 129rem;
  }
  .price__content .price__frame .mark {
    width: 100rem;
    display: flex;
    position: absolute;
    left: -28rem;
    top: -15rem;
  }
  .price__content .price__frame table tr td .txt {
    font-size: 16rem;
    line-height: 16rem;
    letter-spacing: 0;
  }
  .price__content .price__frame table tr td .txt span {
    font-size: 10rem;
  }
  .price__content .price__frame table tr td .c01 {
    border-radius: 6rem 6rem 0 0;
  }
  .price__content .price__frame table tr td .c01.c03 {
    height: 95%;
    border-radius: 0 0 6rem 6rem;
  }
  .price__content .price__frame table tr td .c04 {
    width: 100%;
    height: 80%;
    border-radius: 6rem;
  }
  .access__content {
    width: 300rem;
    margin: auto;
    margin-top: 45rem;
    text-align: left;
  }
  .access__content .gap01 {
    display: none;
  }
  .access__content .gap02 {
    width: 100rem;
    right: 0;
    top: -20rem;
  }
  .access__content .address {
    font-size: 15rem;
    line-height: 28rem;
    padding-bottom: 20rem;
    margin-top: 20rem;
  }
  .access__content .map__txt {
    font-size: 16rem;
    line-height: 25rem;
    margin-top: 25rem;
    letter-spacing: -0.08em;
  }
  .access__content .map__txt span {
    font-size: 14rem;
  }
  .access__content .map {
    width: 100%;
    height: 300rem;
    margin-top: 25rem;
  }
  .faq__content .faq__items {
    width: 300rem;
    margin: auto;
    margin-top: 32rem;
  }
  .faq__content .faq__items .f__item .q__part .t__txt {
    width: 81%;
    font-size: 18rem;
    line-height: 28rem;
  }
  .faq__content .faq__items .f__item .q__part .q__lbl {
    font-size: 22rem;
    margin-right: 10rem;
    line-height: 1.5;
    margin-top: 0rem;
  }
  .faq__content .faq__items .f__item .q__part .sign {
    width: 40rem;
    height: 40rem;
  }
  .faq__content .faq__items .f__item .q__part .sign:before {
    height: 14rem;
  }
  .faq__content .faq__items .f__item .q__part .sign:after {
    width: 14rem;
  }
  .faq__content .faq__items .f__item .a__part {
    width: 270rem;
    height: auto;
    margin: 20rem 0 0 auto;
    padding: 20rem;
    border-radius: 6rem;
  }
  .faq__content .faq__items .f__item .a__part p {
    font-size: 16rem;
    line-height: 28rem;
    text-align: justify;
  }
  .faq__content .faq__items .f__item {
    padding: 25rem 0;
  }
  .faq__content .promise__btn {
    width: 100%;
    margin: auto;
    margin-top: 20rem;
  }
  .note__content {
    width: 300rem;
    margin: auto;
    margin-top: 50rem;
  }
  .note__content dl dt {
    font-size: 18rem;
    line-height: 40rem;
    margin-bottom: 5rem;
  }
  .note__content dl dd {
    font-size: 16rem;
    line-height: 1.8;
    margin-bottom: 25rem;
    text-align: justify;
  }
  footer .f__logo {
    width: 300rem;
  }
  footer {
    margin-top: 0;
    padding: 84rem 0 40rem;
  }
  footer .copyright {
    font-size: 14rem;
    line-height: 25rem;
    margin-top: 60rem;
  }
  .price__content .price__frame table tr td:first-child {
    width: 70rem;
    padding-left: 6rem;
  }
  .move__left {
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }
  .frontview {
    overflow: hidden;
  }
  .ps__container .slider {
    display: flex;
    flex-direction: row;
    transform: translate(-240vw);
    background: transparent;
  }
  .ps__container .slider-list {
    width: auto;
    display: flex;
    flex-direction: row;
    animation: slideShow 30s infinite linear both;
  }
  .ps__container .slider-item {
    width: 30vw;
    display: flex;
  }
  @keyframes slideShow {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  @keyframes slideShow_reserve {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .move__left.right {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
  }
  .move__left.right .ps__container .slider {
    transform: translate(240vw);
  }
  .move__left.right .ps__container .slider-list {
    animation: slideShow_reserve 30s infinite linear both;
  }
  main .sp-menu {
    width: 24rem;
    top: 85rem;
    right: 20rem;
  }
  .voice__content .voice__items .swiper-wrapper {
    display: flex;
  }
  .hambeg__menu ul li a {
    font-size: 16rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .hambeg__menu ul {
    padding-top: 115rem;
  }
  main .sp-menu.open {
    top: 20rem;
  }
  .detail__content02 .dt__slider .c__item .c__image {
    width: 100%;
    height: 206rem;
  }
}/*# sourceMappingURL=style.css.map */