<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* fixed
------------------------------*/
.p-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 18px;
  padding: 0 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
  transition: all 0.3s ease-out;
}

.p-fixed.is-show {
  opacity: 1;
  pointer-events: auto;
  animation: boundAnime 0.6s ease-out;
}

@keyframes boundAnime {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.975);
  }
  75% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}

@media all and (max-width: 576px) {
  .p-fixed {
    bottom: 12px;
    padding: 0 20px;
  }
}

.p-fixed__inner {
}

ul.p-fixed__list {
  display: flex;
  width: 100%;
  max-width: 940px;
  height: 60px;
  margin: 0 auto;
  border-radius: 60px;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list {
    height: 46px;
    border-radius: 0;
    justify-content: space-between;
  }
}

ul.p-fixed__list li {
  width: 50%;
  height: 100%;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li {
    width: 33%;
  }
}

ul.p-fixed__list li:nth-of-type(3) {
  display: none;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(3) {
    display: block;
  }
}

ul.p-fixed__list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.p-fixed__list li:nth-of-type(1) a {
  background-color: #fa4b4b;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(1) a {
    border-radius: 15px;
  }
}

ul.p-fixed__list li:nth-of-type(2) a {
  background-color: #deb426;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(2) a {
    border-radius: 15px;
  }
}

ul.p-fixed__list li:nth-of-type(3) a {
  background-color: #5e9bed;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(3) a {
    border-radius: 15px;
  }
}

ul.p-fixed__list li:nth-of-type(1) a div {
  width: 100%;
  max-width: 162px;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(1) a div {
    width: 76%;
    max-width: 96px;
  }
}

ul.p-fixed__list li:nth-of-type(2) a div {
  width: 100%;
  max-width: 148px;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(2) a div {
    width: 63.5%;
    max-width: 80px;
  }
}

ul.p-fixed__list li:nth-of-type(3) a div {
  width: 100%;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(3) a div {
    width: 60%;
    max-width: 76px;
  }
}

ul.p-fixed__list li:nth-of-type(1) a:hover div,
ul.p-fixed__list li:nth-of-type(2) a:hover div,
ul.p-fixed__list li:nth-of-type(3) a:hover div {
  transform: scale(1.15) translateZ(0);
}

ul.p-fixed__list li:nth-of-type(1) a div::after,
ul.p-fixed__list li:nth-of-type(2) a div::after {
  content: '';
  width: 20px;
  height: 15px;
  background: url(../img/top/fixed_btn_arrow.svg) no-repeat center center / contain;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  ul.p-fixed__list li:nth-of-type(1) a div::after,
  ul.p-fixed__list li:nth-of-type(2) a div::after {
    display: none;
  }
}

ul.p-fixed__list li:nth-of-type(1) a:hover div::after,
ul.p-fixed__list li:nth-of-type(2) a:hover div::after {
  transform: translate3d(10px, 0, 0);
}

/* mv
------------------------------*/
.l-header-mv-msg {
  overflow: hidden;
}

.p-mv {
  width: 100%;
  height: calc(100svh - 118px);
  padding: 0 30px 90px;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s ease-in-out;
}

@media all and (max-width: 800px) {
  .p-mv {
    height: calc(100svh - 62px);
    padding: 30px 20px 35px;
  }
}

@media all and (max-height: 600px) {
  .is-pc .p-mv {
    height: calc(600px - 118px);
  }
}

.p-mv.is-show {
  transform: translate3d(0, 0, 0);
}

.p-mv__inner {
  width: 100%;
  height: 100%;
  background-color: #ffd738;
  border-radius: 40px;
  position: relative;
  transition: background-color 0.8s ease-out;
}

.p-mv__heading {
  width: 86px;
  position: absolute;
  top: -14px;
  right: 21.86%;
  margin: 0;
  z-index: 3;

  transform: translate3d(0, 40px, 0);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.p-mv__heading.is-show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media all and (max-width: 800px) {
  .p-mv__heading {
    right: 8.57%;
  }
}

@media all and (max-width: 576px) {
  .p-mv__heading {
    width: 47px;
    top: -10px;
    right: 8.57%;
  }
}

@media all and (max-width: 390px) {
  .p-mv__heading {
    width: calc(47 / 390 * 100vw);
  }
}

.p-mv__copy {
  width: 92.45%;
  position: absolute;
  bottom: -3px;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, 40px, 0);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.p-mv__copy.is-show {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
}

@media all and (max-width: 576px) {
  .p-mv__copy {
    width: 93.14%;
    bottom: 18px;
  }
}

.p-mv__img {
  width: auto;
  position: absolute;
  z-index: 2;
  transition: left 0.8s ease-out;
}

.p-mv__img.p-mv__img01 {
  height: calc(100% + 62px + 83px);
  top: -62px;
  left: 50%;
  transform: translate3d(-25%, 0, 0);
}

@media all and (max-width: 576px) {
  .p-mv__img.p-mv__img01 {
    height: calc(100% + 46px + 33px);
    top: -46px;
    transform: translate3d(-23%, 0, 0);
  }
}

.p-mv__img.p-mv__img02 {
  height: calc(100% + 34px + 85px);
  top: -34px;
  left: 50%;
  transform: translate3d(-33%, 0, 0);
}

@media all and (max-width: 576px) {
  .p-mv__img.p-mv__img02 {
    height: calc(100% - 11px + 40px);
    top: 11px;
    transform: translate3d(-33%, 0, 0);
  }
}

.p-mv__img.p-mv__img03 {
  height: calc(100% + 51px + 93px);
  top: -51px;
  left: 50%;
  transform: translate3d(-44%, 0, 0);
}

@media all and (max-width: 576px) {
  .p-mv__img.p-mv__img03 {
    height: calc(100% + 11px + 43px);
    top: -11px;
    transform: translate3d(-33%, 0, 0);
  }
}

.p-mv__img.p-mv__img04 {
  height: calc(100% + 26px + 93px);
  top: -26px;
  left: 50%;
  transform: translate3d(-47%, 0, 0);
}

@media all and (max-width: 576px) {
  .p-mv__img.p-mv__img04 {
    height: calc(100% - 52px - 5px);
    top: 52px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}

.p-mv__img.is-left {
  left: -100%;
}

.p-mv__img.is-right {
  left: 200%;
}

.p-mv__img.is-center {
  left: 50%;
}

.p-mv__img img {
  width: auto;
  height: 100%;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translate3d(80%, 0, 0);
  opacity: 0;
}

.p-mv__img img.is-show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.p-mv__scroll {
  width: 8px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate3d(0, -50%, 0);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.p-mv__scroll.is-show {
  opacity: 1;
}

@media all and (max-width: 576px) {
  .p-mv__scroll {
    left: 14px;
  }
}

.p-mv__scroll img {
  animation: scroll_move 4s ease-out infinite;
}

@keyframes scroll_move {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  10% {
    transform: translate3d(0, 0, 0);
  }

  90% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, 100%, 0);
  }
}

/* msg
------------------------------*/
.p-msg {
  width: 100%;
  padding: 65px 20px 140px;
}

@media all and (max-width: 576px) {
  .p-msg {
    padding: 50px 20px 75px;
  }
}

.p-msg__inner {
  width: 100%;
}

.p-msg__heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
  margin: 0 0 30px;
}

@media all and (max-width: 576px) {
  .p-msg__heading {
    font-size: min(23px, calc(23 / 375 * 100vw));
    margin-bottom: 15px;
  }
}

.p-msg__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 25px;
}

@media all and (max-width: 576px) {
  .p-msg__txt {
    font-size: min(15px, calc(15 / 375 * 100vw));
    letter-spacing: 0;
    margin: 0 0 15px;
  }
}

/* feature
------------------------------*/
.p-feature {
  width: 100%;
  background-color: #ede6dd;
  padding: 70px 20px 0;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  overflow: hidden;
  position: relative;
  height: 100vh;
  z-index: 0;
}

@media all and (max-width: 576px) {
  .p-feature {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top: 50px;
    padding-bottom: 210px;
    height: auto;
  }
}

@media all and (max-height: 800px) {
  .is-pc .p-feature {
    height: 800px;
  }
}

.p-feature-pc {
  display: block;
}

@media all and (max-width: 576px) {
  .p-feature-pc {
    display: none;
  }
}

.p-feature-sp {
  display: none;
}

@media all and (max-width: 576px) {
  .p-feature-sp {
    display: block;
  }
}

.p-feature::after {
  content: '';
  width: 1px;
  height: 120px;
  background-color: #1a1a1a;
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  animation: line_move 4s ease-out infinite;
  z-index: -1;
}

@media all and (max-width: 576px) {
  .p-feature::after {
    bottom: 40px;
  }
}

@media all and (max-height: 800px) {
  .is-pc .p-feature::after {
    display: none;
  }
}

@keyframes line_move {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  15% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  30% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.p-feature__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.p-feature__header {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

@media all and (max-width: 576px) {
  .p-feature__header {
    margin-bottom: 35px;
  }
}

.p-feature__header-txt {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
}

@media all and (max-width: 576px) {
  .p-feature__header-txt {
    font-size: 15px;
    margin: 0;
  }
}

.p-feature__header-txt span {
  color: #fff;
  background-color: #1a1a1a;
  padding: 0 0.5em;
}

.p-feature__header-heading {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #1a1a1a;
}

@media all and (max-width: 576px) {
  .p-feature__header-heading {
    font-size: 23px;
  }
}

.p-feature__loop {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 146px;
  background: url(../img/top/feature_loop.svg) repeat-x center center / auto 100%;
  animation: feature_loop_pc 30s linear infinite;
}

@media all and (max-width: 576px) {
  .p-feature__loop {
    top: 55px;
    height: 105px;
    animation: feature_loop_sp 30s linear infinite;
  }
}

@keyframes feature_loop_pc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1680px 0;
  }
}

@keyframes feature_loop_sp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1208.21px 0;
  }
}

.p-feature__list-wrap {
  width: 940px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
}

@media all and (max-width: 940px) {
  .p-feature__list-wrap {
    width: 100vw;
  }
}

@media all and (max-width: 576px) {
  .p-feature__list-wrap {
    width: calc(100% + 20px * 2);
    margin-left: -20px;
    margin-right: -20px;
    position: static;
    transform: translate3d(0, 0, 0);
  }
}

.p-feature__list {
  width: 2820px;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 940px) {
  .p-feature__list {
    width: calc(100vw * 3);
  }
}

@media all and (max-width: 576px) {
  .p-feature__list {
    width: 100%;
  }
}

.p-feature__item {
  width: 940px;
  padding: 0 20px;
}

@media all and (max-width: 940px) {
  .p-feature__item {
    width: 100vw;
  }
}

@media all and (max-width: 576px) {
  .p-feature__item {
    width: 100vw;
    margin-bottom: 30px;
  }
}

.p-feature__item-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.p-feature__item-left {
  padding: 50px 70px;
  flex: 1;
}

@media all and (max-width: 940px) {
  .p-feature__item-left {
    padding: calc(50 / 940 * 100vw) calc(70 / 940 * 100vw);
  }
}

@media all and (max-width: 576px) {
  .p-feature__item-left {
    width: 100%;
    height: calc(100% - 180px);
    padding: 25px;
  }
}

.p-feature__item-right {
  width: 36.66%;
  height: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

@media all and (max-width: 576px) {
  .p-feature__item-right {
    width: 100%;
    height: 180px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

.p-feature__item-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-feature__item-num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #fa4b4b;
}

@media all and (max-width: 576px) {
  .p-feature__item-num {
    font-size: 14px;
  }
}

.p-feature__item-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media all and (max-width: 940px) {
  .p-feature__item-heading {
    font-size: calc(38 / 940 * 100vw);
  }
}

@media all and (max-width: 576px) {
  .p-feature__item-heading {
    font-size: 23px;
    margin-bottom: 10px;
  }
}

.p-feature__item:nth-of-type(1) .p-feature__item-heading {
  width: 100%;
  max-width: 298px;
  margin-top: 25px;
}

@media all and (max-width: 576px) {
  .p-feature__item:nth-of-type(1) .p-feature__item-heading {
    max-width: 190px;
    margin-top: 0;
  }
}

.p-feature__item-txt {
  font-size: 16px;
}

@media all and (max-width: 576px) {
  .p-feature__item-txt {
    font-size: 14px;
  }
}

.p-feature__item-link a {
  color: #fa4b4b;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.p-feature__item-link a::after {
  content: '';
  width: 12px;
  height: 16px;
  background: url(../img/common/ico_arrow_btm_red.svg) no-repeat center center / contain;
  display: inline-block;
  margin-left: 0.4em;
  position: relative;
  top: 0.1em;
}

.p-feature__item-link a:hover {
  opacity: 0.8;
}

/* retouch
------------------------------*/
.p-retouch {
  width: 100%;
  background-color: #ede6dd;
  padding: 0 20px 200px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
}

@media all and (max-width: 576px) {
  .p-retouch {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 80px;
  }
}

.p-retouch::before {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #ede6dd;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
}

.p-retouch-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.p-retouch-heading {
  font-family: 'Be Vietnam Pro', sans-serif;
  text-align: center;
  line-height: 1;
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

@media all and (max-width: 576px) {
  .p-retouch-heading {
    font-size: 34px;
  }
}

.p-retouch-txt {
  text-align: center;
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media all and (max-width: 576px) {
  .p-retouch-txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.p-retouch-twentytwenty {
  width: 100%;
  border-radius: 30px;
}

@media all and (max-width: 576px) {
  .p-retouch-twentytwenty {
    border-radius: 15px;
  }
}

.twentytwenty-handle {
  background-color: #fa4b4b;
  border-color: #fa4b4b;
  height: 32px;
  width: 32px;
  margin-left: 0;
  margin-top: 0;
  transform: translate(-50%, -50%);
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  margin-bottom: 22px;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-top: 22px;
}

@media all and (max-width: 576px) {
  .twentytwenty-handle {
    height: 24px;
    width: 24px;
  }

  .twentytwenty-horizontal .twentytwenty-handle:before {
    margin-bottom: 18px;
    width: 2px;
    margin-left: -1px;
  }

  .twentytwenty-horizontal .twentytwenty-handle:after {
    margin-top: 18px;
    width: 2px;
    margin-left: -1px;
  }
}

/* gallery
------------------------------*/
.p-gallery {
  width: 100%;
  height: 880px;
  overflow: hidden;
}

@media all and (max-width: 576px) {
  .p-gallery {
    height: 545px;
  }
}

.p-gallery__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-gallery__loop {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  height: 146px;
  background: url(../img/top/gallery_loop.svg) repeat-x center center / auto 100%;
  animation: gallery_loop_pc 30s linear infinite;
}

@media all and (max-width: 576px) {
  .p-gallery__loop {
    height: 105px;
    animation: gallery_loop_sp 30s linear infinite;
  }
}

@keyframes gallery_loop_pc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1860px 0;
  }
}

@keyframes gallery_loop_sp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1337.67px 0;
  }
}
/* 
.loop {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  height: 545px;
  background: repeat-x center center / auto 100%;
  animation: loop_pc 30s linear infinite;
}

.loop01 {
  background-image: url(../img/top/loop01@2x.png?01);
}

.loop02 {
  background-image: url(../img/top/loop02@2x.png?01);
}

@media all and (max-width: 576px) {
  .loop {
    height: 385px;
    animation: loop_sp 30s linear infinite;
  }
}

@keyframes loop_pc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3200px 0;
  }
}

@keyframes loop_sp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: calc(-3200 / 545 * 385px) 0;
  }
} */

.swiper.swiper-gallery {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
  width: 100%;
}

.swiper.swiper-gallery .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper.swiper-gallery .swiper-slide {
  width: 500px;
  height: 545px;
  position: relative;
}

/* .swiper.swiper-gallery .swiper-slide.swiper-slide01 {
  width: 375px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide02 {
  width: 532px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide03 {
  width: 378px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide04 {
  width: 396px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide05 {
  width: 238px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide06 {
  width: 485px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide07 {
  width: 435px;
}

.swiper.swiper-gallery .swiper-slide.swiper-slide08 {
  width: 361px;
} */

@media all and (max-width: 576px) {
  .swiper.swiper-gallery .swiper-slide {
    width: calc(500 / 545 * 385px);
    height: 385px;
  }

  /* .swiper.swiper-gallery .swiper-slide.swiper-slide01 {
    width: calc(375 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide02 {
    width: calc(532 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide03 {
    width: calc(378 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide04 {
    width: calc(396 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide05 {
    width: calc(238 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide06 {
    width: calc(485 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide07 {
    width: calc(435 / 545 * 385px);
  }

  .swiper.swiper-gallery .swiper-slide.swiper-slide08 {
    width: calc(361 / 545 * 385px);
  } */
}

.swiper.swiper-gallery .swiper-slide img {
  position: absolute;
  border-radius: 30px;
  pointer-events: none;
}

html.is-sp .swiper.swiper-gallery .swiper-slide img {
  pointer-events: auto;
}

.g01 {
  top: calc(152 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(210 / 500 * 100%);
}

.g08 {
  top: calc(80 / 545 * 100%);
  left: calc(250 / 500 * 100%);
  width: calc(173 / 500 * 100%);
}

.g02 {
  top: calc(229 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(192 / 500 * 100%);
}

.g03 {
  top: calc(12 / 545 * 100%);
  left: calc(147 / 500 * 100%);
  width: calc(249 / 500 * 100%);
}

.g04 {
  top: calc(258 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(156 / 500 * 100%);
}

.g05 {
  top: calc(40 / 545 * 100%);
  left: calc(143 / 500 * 100%);
  width: calc(126 / 500 * 100%);
}

.g06 {
  top: calc(80 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(220 / 500 * 100%);
}

.g07 {
  top: calc(301 / 545 * 100%);
  left: calc(175 / 500 * 100%);
  width: calc(146 / 500 * 100%);
}

.g09 {
  top: calc(258 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(192 / 500 * 100%);
  z-index: 1;
}

.g10 {
  top: calc(12 / 545 * 100%);
  left: calc(144 / 500 * 100%);
  width: calc(249 / 500 * 100%);
}

.g11 {
  top: calc(258 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(156 / 500 * 100%);
}

.g12 {
  top: calc(47 / 545 * 100%);
  left: calc(178 / 500 * 100%);
  width: calc(126 / 500 * 100%);
}

.g13 {
  top: calc(186 / 545 * 100%);
  left: calc(0 / 500 * 100%);
  width: calc(220 / 500 * 100%);
  z-index: 1;
}

.g14 {
  top: calc(0 / 545 * 100%);
  left: calc(167 / 500 * 100%);
  width: calc(167 / 500 * 100%);
}

/* usage
------------------------------*/

.l-usage__wrap {
  position: relative;
  z-index: 1;
  margin-bottom: -80px;
}

@media all and (max-width: 800px) {
  .l-usage__wrap {
    margin-bottom: -50px;
  }
}

.p-usage {
  width: 100%;
  height: 100vh;
  background-color: #ede6dd;
  padding: 160px 20px 200px 60px;
  border-radius: 80px;
  overflow: hidden;
}

@media all and (max-width: 800px) {
  .p-usage {
    display: none;
  }
}

.p-usage__inner {
  width: 100%;
  height: 100%;
  max-width: 1090px;
  margin: 0 auto;
  position: relative;
}

.p-usage__flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, calc(-50% + 40px), 0);
  opacity: 0;
  transition: all 0.5s ease-out;
}

.p-usage__flex.is-show {
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
}

.p-usage__num {
  position: absolute;
  top: -30px;
  left: -55px;
  width: 92px;
  height: 94px;
  background: url(../img/top/usage_num.svg) no-repeat center center / contain;
  z-index: 1;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 22px;
  vertical-align: 1;
  letter-spacing: 0;
  color: #fff;
}

.p-usage__num::before {
  content: '';
  width: 42px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform-origin: center center;
}

.p-usage__num-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-140%, -80%, 0);
}

.p-usage__num-btm {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate3d(140%, 80%, 0);
}

.p-usage__left {
  width: 48%;
  padding: 95px 0 0 60px;
  position: relative;
  z-index: 0;
}

.p-usage__left::before {
  content: 'For';
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -26px;
  left: -14px;
  z-index: -1;
}

.p-usage__right {
  width: 43.5%;
  position: relative;
  z-index: 0;
}

.p-usage__right img.after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.p-usage__right.is-show img.after {
  opacity: 1;
}

.p-usage__sub-heading {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: 0;
  margin: 0 0 10px;
}

@media all and (max-width: 1170px) {
  .p-usage__sub-heading {
    font-size: calc(72 / 1170 * 100vw * 0.9);
  }
}

.p-usage__heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.p-usage__txt {
  margin: 15px 0 0;
}

/* usage-sp
------------------------------*/
.p-usage-sp {
  display: none;
}

@media all and (max-width: 800px) {
  .p-usage-sp {
    display: block;
    position: relative;
    width: 100%;
  }
}

.p-usage-sp__num {
  position: absolute;
  top: 35px;
  right: 24px;
  width: 72px;
  height: 73.56px;
  background: url(../img/top/usage_num.svg) no-repeat center center / contain;
  z-index: 1;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  vertical-align: 1;
  letter-spacing: 0;
  color: #fff;
}

.p-usage-sp__num::before {
  content: '';
  width: 34px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform-origin: center center;
}

.p-usage-sp__num-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-140%, -80%, 0);
}

.p-usage-sp__num-btm {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate3d(140%, 80%, 0);
}

.p-usage-sp__block {
  width: 100%;
  background-color: #ede6dd;
  /* border-radius: 50px; */
  padding: 130px 40px 60px;
  position: relative;
  z-index: 0;
}

.p-usage-sp__block01 {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.p-usage-sp__block04 {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.p-usage-sp__block::before {
  content: 'For';
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: 56px;
  left: 20px;
  z-index: -1;
}

.p-usage-sp__block-inner {
  width: 100%;
}

.p-usage-sp__block-sub-heading {
  font-family: 'Be Vietnam Pro', sans-serif;
  /* font-size: 47px; */
  font-size: min(47px, calc(47 / 390 * 100vw));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

.p-usage-sp__block-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.p-usage-sp__block-txt {
  margin: 15px 0 20px;
}

.p-usage-sp__block-img {
  position: relative;
  z-index: 0;
}

.p-usage-sp__block-img img.after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.p-usage-sp__block-img.is-show img.after {
  opacity: 1;
}

/* plan
------------------------------*/
.p-plan {
  width: 100%;
  background: url(../img/top/plan_bg@2x.jpg) no-repeat center top / cover;
  padding: 200px 20px 230px;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 800px) {
  .p-plan {
    padding-top: 110px;
    padding-bottom: 160px;
  }
}

.p-plan::before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background-color: rgba(0, 0, 0, 0.7);
}

.p-plan__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.p-plan__header {
  margin-bottom: 60px;
}

@media all and (max-width: 800px) {
  .p-plan__header {
    margin-bottom: 30px;
  }
}

.p-plan__header-txt {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
}

@media all and (max-width: 800px) {
  .p-plan__header-txt {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 5px;
  }
}

.p-plan__header-txt span {
  background-color: #fff;
  padding: 0 0.5em;
}

.p-plan__header-heading {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #fff;
}

@media all and (max-width: 800px) {
  .p-plan__header-heading {
    font-size: 23px;
  }
}

/* plan table pc
------------------------------*/
.p-plan__table-pc {
  display: block;
  line-height: 1.2;
  letter-spacing: 0;
}

@media all and (max-width: 800px) {
  .p-plan__table-pc {
    display: none;
  }
}

.p-plan__table-pc .row {
  display: flex;
  margin-bottom: 4px;
}

.p-plan__table-pc .col {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.p-plan__table-pc .col.title {
  width: 13.57%;
  margin-right: 1.33%;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  color: #5a5856;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.p-plan__table-pc .row.head .col.title {
  background-color: transparent;
}

.p-plan__table-pc .col.title::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate3d(-3px, -50%, 0);
}

.p-plan__table-pc .row.head .col.title::before {
  display: none;
}

.p-plan__table-pc .col.title small {
  font-size: 11px;
  display: block;
}

.p-plan__table-pc .col.red,
.p-plan__table-pc .col.yellow,
.p-plan__table-pc .col.blue {
  /* width: 27.85%; */
  width: 42%;
  margin-right: 0.71%;
}

.p-plan__table-pc .col.blue {
  margin-right: 0;
}

.p-plan__table-pc .row.head {
  height: 100%;
  min-height: 110px;
}

.p-plan__table-pc .row.head .col:not(.title) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.p-plan__table-pc .row.head .col:not(.title) small {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
}

.p-plan__table-pc .row.head .col.red {
  background-color: #fa4b4b;
}

.p-plan__table-pc .row.head .col.yellow {
  background-color: #deb400;
}

.p-plan__table-pc .row.head .col.blue {
  background-color: #5e9bed;
}

.p-plan__table-pc .row.body {
  height: 100%;
  min-height: 66px;
}

.p-plan__table-pc .row.body .col.red {
  background-color: #ffefef;
}

.p-plan__table-pc .row.body .col.yellow {
  background-color: #fffbed;
}

.p-plan__table-pc .row.body .col.blue {
  background-color: #f0f4ff;
}

.p-plan__table-pc .row.body.price .col:not(.title) {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.p-plan__table-pc .row.body.price .col:not(.title) div {
  vertical-align: baseline;
}

.p-plan__table-pc .row.body.price .col:not(.title) div .yen {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

.p-plan__table-pc .row.body.price .col:not(.title) div small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-left: -0.4em;
  position: relative;
  top: -2px;
}

.p-plan__table-pc .row.body.print .col:not(.title) {
  font-size: 20px;
}

.p-plan__table-pc .row.body.image .col:not(.title) {
  font-size: 20px;
}

.p-plan__table-pc .row.body.image .col:not(.title) small {
  font-size: 11px;
}

.p-plan__table-pc .row.body.transfer .col:not(.title) {
  font-size: 20px;
}
.p-plan__table-pc .row.body.transfer .col:not(.title) small {
  font-size: 11px;
}

.p-plan__table-pc .row.body.retouch .col.red,
.p-plan__table-pc .row.body.retouch .col.yellow {
  padding: 5px;
  display: block;
}

.p-plan__table-pc .row.body.retouch .col.red div,
.p-plan__table-pc .row.body.retouch .col.yellow div {
  border-radius: 15px;
  padding: 15px 0;
  width: 100%;
  /* height: 100%; */
  height: auto;
}

.p-plan__table-pc .row.body.retouch .col.red div {
  background-color: #ffbfbf;
}

.p-plan__table-pc .row.body.retouch .col.yellow div {
  background-color: #ffe799;
}

.p-plan__table-pc .row.body.retouch .col.red div span,
.p-plan__table-pc .row.body.retouch .col.yellow div span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fa4b4b;
  border-bottom: solid 2px #fa4b4b;
  margin-bottom: 10px;
}

.p-plan__table-pc .row.body.retouch .col.red div ul,
.p-plan__table-pc .row.body.retouch .col.yellow div ul {
  text-align: left;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -6px;
}

.p-plan__table-pc .row.body.retouch .col.red div ul li,
.p-plan__table-pc .row.body.retouch .col.yellow div ul li {
  position: relative;
  font-size: 14px;
  padding-left: 14px;
  margin-top: 6px;
  margin-right: 16px;
}

/* .p-plan__table-pc .row.body.retouch .col.red div ul li:nth-of-type(2n-1),
.p-plan__table-pc .row.body.retouch .col.yellow div ul li:nth-of-type(2n-1) {
  width: 55%;
}

.p-plan__table-pc .row.body.retouch .col.red div ul li:nth-of-type(2n),
.p-plan__table-pc .row.body.retouch .col.yellow div ul li:nth-of-type(2n) {
  width: 45%;
} */

/* @media all and (max-width: 1160px) {
  .p-plan__table-pc .row.body.retouch .col.red div ul li:nth-of-type(2n-1),
  .p-plan__table-pc .row.body.retouch .col.red div ul li:nth-of-type(2n) {
    width: 100%;
  }

  .p-plan__table-pc .row.body.retouch .col.yellow div ul li:nth-of-type(2n-1),
  .p-plan__table-pc .row.body.retouch .col.yellow div ul li:nth-of-type(2n) {
    width: 100%;
  }
} */

.p-plan__table-pc .row.body.retouch .col.red div ul li::before,
.p-plan__table-pc .row.body.retouch .col.yellow div ul li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #fa4b4b;
  position: absolute;
  top: 0.3em;
  left: 0;
}

.p-plan__table-pc .row.body.retouch .col.yellow p {
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0 10px;
}

.p-plan__table-pc .row.body.retouch .col.yellow p .num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0.1em;
}

.p-plan__table-pc .row.body.retouch .col.yellow p .yen {
  font-weight: 700;
  position: relative;
  top: -2px;
}

.p-plan__table-pc .row.body.retouch .col.yellow p small {
  font-size: 12px;
  margin-left: -0.4em;
  font-weight: 500;
  position: relative;
  top: -2px;
}

/* .p-plan__table-pc .row.body.retouch .col.yellow &gt; div:nth-of-type(1) {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
} */

.p-plan__table-pc .row.body.retouch .col.yellow .option {
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 15px;
  padding: 12px;
  background-color: #efe06e;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

@media all and (max-width: 1160px) {
  .p-plan__table-pc .row.body.retouch .col.yellow .option {
    display: block;
  }
}

/* .p-plan__table-pc .row.body.retouch .col.yellow .option::before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 10px solid #efe06e;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate3d(-50%, 3px, 0);
} */

.p-plan__table-pc .option .left {
  width: 80px;
  margin-right: 10px;
}

@media all and (max-width: 1160px) {
  .p-plan__table-pc .option .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.p-plan__table-pc .option .left span.txt01 {
  display: block;
  width: 100%;
  padding: 8px 10px;
  background-color: #fff;
  border-radius: 15px;
  color: #fa4b4b;
  font-size: 12px;
  font-weight: 700;
}

@media all and (max-width: 1160px) {
  .p-plan__table-pc .option .left span.txt01 br {
    display: none;
  }
}

.p-plan__table-pc .option .right {
  flex: 1;
  text-align: left;
}

@media all and (max-width: 1160px) {
  .p-plan__table-pc .option .right {
    flex: auto;
  }
}

.p-plan__table-pc .option .right span.txt02 {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
}

.p-plan__table-pc .option .right span.txt03 {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.p-plan__table-pc .option .right span.txt04 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
}

.p-plan__table-pc .option .right span.txt04 span {
  font-size: 12px;
  font-weight: 500;
  margin-left: -0.4em;
}

.p-plan__table-pc .option span.txt05 {
  margin-top: 5px;
  display: block;
  width: 100%;
  font-size: 11px;
  text-align: left;
}

.p-plan__table-pc .row.body.retouch .col.blue {
  padding: 5px;
  display: block;
}

.p-plan__table-pc .row.body.retouch .col.blue div:nth-of-type(1) {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.p-plan__table-pc .row.body.complete .col:not(.title) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 20px;
  line-height: 1;
}

.p-plan__table-pc .row.body.complete .col:not(.title) small {
  font-size: 12px;
}

/* plan table sp
------------------------------*/
.p-plan__table-sp {
  display: none;
}

@media all and (max-width: 800px) {
  .p-plan__table-sp {
    display: block;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}

.p-plan__table-sp .row {
  display: flex;
}

.p-plan__table-sp .col {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
}

.p-plan__table-sp .col.title {
  width: 19.85%;
  min-width: 68px;
  margin-right: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  border-top: dotted 1px #fff;
  padding: 10px 5px;
}

.p-plan__table-sp .row.head .col.title {
  border-top: none;
}

.p-plan__table-sp .row.body.complete .col.title {
  border-bottom: dotted 1px #fff;
}

.p-plan__table-sp .row.body .col.title small {
  font-size: 9px;
}

.p-plan__table-sp .col.red,
.p-plan__table-sp .col.yellow,
.p-plan__table-sp .col.blue {
  width: 77.71%;
}

.p-plan__table-sp .col-2.red,
.p-plan__table-sp .col-2.yellow,
.p-plan__table-sp .col-2.blue {
  width: 38%;
  margin-right: 8px;
}

.p-plan__table-sp .col-2.red:last-child,
.p-plan__table-sp .col-2.yellow:last-child,
.p-plan__table-sp .col-2.blue:last-child {
  margin-right: 0;
}

.p-plan__table-sp .row.bubble {
  height: 100%;
  min-height: 30px;
  margin-bottom: 13px;
}

.p-plan__table-sp .row.bubble .col {
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  background-color: #fff;
  width: 77.71%;
  position: relative;
}

.p-plan__table-sp .row.bubble .col::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate3d(-50%, -2px, 0);
}

.p-plan__table-sp .row.bubble .col.empty {
  width: 19.85%;
  min-width: 68px;
  margin-right: 8px;
  background-color: transparent;
}

.p-plan__table-sp .row.bubble .col.empty::before {
  display: none;
}

.p-plan__table-sp .row.head {
  height: 100%;
  min-height: 50px;
}

.p-plan__table-sp .row.head .col:not(.title) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.p-plan__table-sp .row.head .col.red {
  background-color: #fa4b4b;
}

.p-plan__table-sp .row.head .col.yellow {
  background-color: #deb400;
}

.p-plan__table-sp .row.head .col.blue {
  background-color: #5e9bed;
}

.p-plan__table-sp .row.body {
  height: 100%;
  min-height: 34px;
}

.p-plan__table-sp .row.body .col {
  position: relative;
}

.p-plan__table-sp .row.body .col:not(.title)::after {
  content: '';
  width: calc(100% - 16px);
  height: 1px;
  border-bottom: dotted 1px #999;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translate3d(-50%, 0, 0);
  z-index: 1;
}

.p-plan__table-sp .row.body .col.red {
  background-color: #ffefef;
}

.p-plan__table-sp .row.body .col.yellow {
  background-color: #fffbed;
}

.p-plan__table-sp .row.body .col.blue {
  background-color: #f0f4ff;
}

.p-plan__table-sp .row.body.price .col:not(.title) {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.p-plan__table-sp .row.body.price .col:not(.title) .yen {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
  position: relative;
  top: -1px;
}

.p-plan__table-sp .row.body.price .col:not(.title) small {
  font-size: 11px;
  font-weight: 500;
  margin-left: -0.4em;
  position: relative;
  top: -1px;
}

.p-plan__table-sp .row.body.print .col:not(.title) {
  font-size: 12px;
}

.p-plan__table-sp .row.body.image .col:not(.title) {
  font-size: 12px;
}

.p-plan__table-sp .row.body.transfer .col:not(.title) {
  font-size: 12px;
}

.p-plan__table-sp .row.body.retouch .col:not(.title) {
  font-size: 11px;
}

.p-plan__table-sp .row.body.retouch .col.red {
  background-color: #fdbfbf;
  display: block;
}

.p-plan__table-sp .row.body.retouch .col.red span {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fa4b4b;
}

.p-plan__table-sp .row.body.retouch .col.red ul {
  text-align: left;
  width: 88%;
  margin: 0 auto;
}

.p-plan__table-sp .row.body.retouch .col.red ul li {
  display: inline-block;
  font-weight: 500;
  position: relative;
  padding-left: 8px;
  margin-right: 5px;
}

.p-plan__table-sp .row.body.retouch .col.red ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #fa4b4b;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.p-plan__table-sp .row.body.retouch .col.yellow {
  padding: 5px;
  display: block;
}

.p-plan__table-sp .row.body.retouch .col.yellow div {
  border-radius: 10px;
  padding: 8px 0;
  width: 100%;
  height: auto;
  background-color: #ffe799;
}

.p-plan__table-sp .row.body.retouch .col.yellow div span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fa4b4b;
  border-bottom: solid 1px #fa4b4b;
  padding-bottom: 2px;
  margin-bottom: 6px;
}

.p-plan__table-sp .row.body.retouch .col.yellow div ul {
  text-align: left;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -6px;
}

.p-plan__table-sp .row.body.retouch .col.yellow div ul li {
  position: relative;
  font-size: 11px;
  padding-left: 9px;
  margin-top: 6px;
  margin-right: 5px;
}

@media all and (max-width: 375px) {
  .p-plan__table-sp .row.body.retouch .col.yellow div ul li {
    font-size: 10px;
  }
}

.p-plan__table-sp .row.body.retouch .col.yellow div ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #fa4b4b;
  position: absolute;
  top: 0.35em;
  left: 0;
}

.p-plan__table-sp .row.body.retouch .col.yellow p {
  font-size: 11px;
  font-weight: 500;
  margin: 4px 0;
}

.p-plan__table-sp .row.body.retouch .col.yellow p .num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0.1em;
}

.p-plan__table-sp .row.body.retouch .col.yellow p .yen {
  font-weight: 700;
}

.p-plan__table-sp .row.body.retouch .col.yellow p small {
  font-size: 11px;
  margin-left: -0.4em;
  font-weight: 500;
}

/* .p-plan__table-sp .row.body.retouch .col.yellow span.txt01 {
  display: inline-block;
  color: #fa4b4b;
  font-size: 10px;
  font-weight: 700;
  background-color: #fff;
  border-radius: 9999px;
  padding: 0.2em 1em;
  margin-bottom: 3px;
}

.p-plan__table-sp .row.body.retouch .col.yellow span.txt02 {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
}

.p-plan__table-sp .row.body.retouch .col.yellow span.txt03 {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
}

.p-plan__table-sp .row.body.retouch .col.yellow span.txt04 {
  font-family: 'Be Vietnam Pro', sans-serif;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.p-plan__table-sp .row.body.retouch .col.yellow span.txt04 &gt; span {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  margin-left: -0.4em;
}

.p-plan__table-sp .row.body.retouch .col.yellow span.txt05 {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  width: 100%;
  max-width: 90%;
} */

.p-plan__table-sp .row.body.complete .col:not(.title) {
  font-size: 16px;
}

.p-plan__table-sp .row.body.complete .col:not(.title) small {
  font-size: 10px;
}

.p-plan__table-sp .row.body.complete .col:not(.title) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.p-plan__table-sp .row.body.complete .col:not(.title)::after {
  display: none;
}

/* flow
------------------------------*/
.p-flow {
  width: 100%;
  background-color: #ede6dd;
  padding: 160px 20px 200px;
  border-radius: 80px;
  position: relative;
  z-index: 1;
  margin-top: -80px;
  margin-bottom: -80px;
}

@media all and (max-width: 800px) {
  .p-flow {
    border-radius: 50px;
    padding-top: 60px;
    padding-bottom: 100px;
    margin-top: -50px;
    margin-bottom: -50px;
  }
}

.p-flow__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.p-flow__flex {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 800px) {
  .p-flow__flex {
    margin-bottom: 25px;
  }
}

.p-flow__left {
  width: 37%;
}

.p-flow__right {
  width: 63%;
}

@media all and (max-width: 800px) {
  .p-flow__left {
    width: 100%;
    margin-bottom: 25px;
  }

  .p-flow__right {
    width: 100%;
  }
}

.p-flow__header {
  padding-right: 37px;
  position: sticky;
  top: 30px;
}

@media all and (max-width: 800px) {
  .p-flow__header {
    padding-right: 0;
    position: static;
    padding-left: 18px;
  }
}

.p-flow__header-heading {
  font-size: 32px;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  font-weight: 700;
}

@media all and (max-width: 800px) {
  .p-flow__header-heading {
    font-size: 23px;
    margin: 0 0 10px;
  }
}

.p-flow__header-txt {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.p-flow__block {
  padding-left: 37px;
  padding-bottom: 60px;
  position: relative;
}

@media all and (max-width: 800px) {
  .p-flow__block {
    padding-left: 18px;
  }
}

.p-flow__block:last-child {
  padding-bottom: 0;
}

.p-flow__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translate3d(-50%, 0, 0);
  background-color: #ff3e3e;
  border-radius: 50%;
}

@media all and (max-width: 800px) {
  .p-flow__block::before {
    width: 12px;
    height: 12px;
  }
}

.p-flow__block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
  border: solid 1px #ff3e3e;
  animation: circle_move 4s ease-out infinite;
}

@media all and (max-width: 800px) {
  .p-flow__block::after {
    width: 12px;
    height: 12px;
  }
}

@keyframes circle_move {
  0% {
    transform: translate3d(-50%, 0, 0) scale(1);
    opacity: 1;
  }
  25% {
    transform: translate3d(-50%, 0, 0) scale(2.5);
    opacity: 0;
  }

  100% {
    transform: translate3d(-50%, 0, 0) scale(2.5);
    opacity: 0;
  }
}

.p-flow__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: #ff3e3e;
}

.p-flow__block-num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  line-height: 1;
  font-weight: 700;
  color: #ff3e3e;
}

@media all and (max-width: 800px) {
  .p-flow__block-num {
    font-size: 16px;
  }
}

.p-flow__block-heading {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  font-weight: 700;
}

@media all and (max-width: 800px) {
  .p-flow__block-heading {
    font-size: 24px;
  }
}

.p-flow__block-txt {
  margin: 0 0 30px;
}

@media all and (max-width: 800px) {
  .p-flow__block-txt {
    margin: 0 0 20px;
  }
}

.p-flow__block-txt p {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 500;
}

.p-flow__block-txt h4 {
  font-weight: 700;
  background-color: #fff2aa;
  display: inline;
  padding: 0 5px;
  margin: 0;
}

.p-flow__block-txt p small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 5px;
}

.p-flow__block-img01 {
  width: 100%;
}
.p-flow__block-img01 img {
  border-radius: 30px;
}

.p-flow__block-img02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.p-flow__block-img02 img {
  width: 49.5%;
  border-radius: 30px;
}

dl.p-flow__block-list {
}

dl.p-flow__block-list dt {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
}

dl.p-flow__block-list dt::before {
  content: '';
  display: block;
  width: 22px;
  height: 28px;
  background: url(../img/common/ico_pdf.svg) no-repeat center center / contain;
  margin-right: 8px;
}

dl.p-flow__block-list dd {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}

dl.p-flow__block-list dd ul {
}

dl.p-flow__block-list dd ul li {
  margin-bottom: 8px;
}

dl.p-flow__block-list dd ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #fa4b4b;
  border-radius: 9999px;
  transition: all 0.3s ease-out;
  position: relative;
}

dl.p-flow__block-list dd ul li a::after {
  content: '';
  display: block;
  width: 13px;
  height: 12px;
  background: url(../img/common/ico_dl.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -50%, 0);
}

dl.p-flow__block-list dd ul li a:hover {
  opacity: 0.8;
}

ul.p-flow__notes {
  line-height: 1.65;
}

ul.p-flow__notes li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  color: #333;
}

ul.p-flow__notes.small li {
  font-size: 12px;
}

ul.p-flow__notes.small {
  line-height: 1.4;
  text-align: left;
  margin-top: 5px;
}

ul.p-flow__notes li::before {
  content: '※';
}

/* faq
------------------------------*/
.p-faq {
  width: 100%;
  padding: 200px 20px 70px;
  background-color: #fff;
  overflow: hidden;
}

@media all and (max-width: 576px) {
  .p-faq {
    padding: 150px 20px 50px;
  }
}

.p-faq__inner {
  width: 100%;
  height: 100%;
}

.p-faq__header {
  margin-bottom: 50px;
}

@media all and (max-width: 576px) {
  .p-faq__header {
    margin-bottom: 30px;
  }
}

.p-faq__header-heading {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 87px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: center;
}

@media all and (max-width: 576px) {
  .p-faq__header-heading {
    font-size: 60px;
  }
}

.p-faq__header-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

@media all and (max-width: 576px) {
  .p-faq__header-txt {
    font-size: 14px;
  }
}

.p-faq__list {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.p-faq__list dl {
  border-radius: 30px;
  background-color: #ede6dd;
  margin-bottom: 15px;
  padding: 20px 30px;
}

@media all and (max-width: 576px) {
  .p-faq__list dl {
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 15px 20px;
  }
}

.p-faq__list dl dt {
  font-size: 24px;
  line-height: 1.5;
  display: flex;
  padding-top: 15px;
  padding-right: 80px;
  cursor: pointer;
  position: relative;
}

@media all and (max-width: 576px) {
  .p-faq__list dl dt {
    font-size: 16px;
    padding-top: 7px;
    padding-right: 30px;
  }
}

.p-faq__list dl dt::before {
  content: '';
  display: block;
  width: 70px;
  height: 70px;
  background: #fa4b4b url(../img/top/faq_q.svg) no-repeat center center / 17px auto;
  border-radius: 100%;
  margin-right: 18px;
  margin-top: -15px;
}

@media all and (max-width: 576px) {
  .p-faq__list dl dt::before {
    width: 40px;
    height: 40px;
    background-size: 13px auto;
    margin-right: 8px;
    margin-top: -7px;
  }
}

.p-faq__list dl dt div {
  flex: 1;
}

.p-faq__list dl dt .toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 28px;
  height: 28px;
  cursor: pointer;
}

@media all and (max-width: 576px) {
  .p-faq__list dl dt .toggle {
    right: 0;
    width: 16px;
    height: 16px;
  }
}

.p-faq__list dl dt .toggle span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.p-faq__list dl dt .toggle span::before,
.p-faq__list dl dt .toggle span::after {
  position: absolute;
  content: '';
  display: block;
  background: #fa4b4b;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 7px;
  border-radius: 7px;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .p-faq__list dl dt .toggle span::before,
  .p-faq__list dl dt .toggle span::after {
    height: 4px;
    border-radius: 4px;
  }
}

.p-faq__list dl dt .toggle span::before {
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.p-faq__list dl dt.is-show .toggle span::before {
  transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

.p-faq__list dl dd {
  background-color: #fff;
  border-radius: 30px;
  padding: 25px 30px;
  margin-top: 15px;
  display: none;
}

.p-faq__list-link a {
  color: #fa4b4b;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.p-faq__list-link a::after {
  content: '';
  width: 12px;
  height: 16px;
  background: url(../img/common/ico_arrow_btm_red.svg) no-repeat center center / contain;
  display: inline-block;
  margin-left: 0.4em;
  position: relative;
  top: 0.1em;
}

.p-faq__list-link.p-faq__list-link--right a::after {
  transform: rotate(-90deg);
}

.p-faq__list-link.p-faq__list-link--top a::after {
  transform: rotate(180deg);
}

.p-faq__list-link a:hover {
  opacity: 0.8;
}

/* reserv
------------------------------*/
.p-reserv {
  width: 100%;
  height: 525px;
  overflow: hidden;
  position: relative;
}

@media all and (max-width: 576px) {
  .p-reserv {
    height: 315px;
  }
}

.p-reserv::before {
  content: '';
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  z-index: 1;
}

@media all and (max-width: 576px) {
  .p-reserv::before {
    height: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}

.p-reserv__inner {
  width: 100%;
  height: 100%;
}

.p-reserv a {
  background-color: #ff6b6b;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease-out;
}

.p-reserv a:hover {
  background-color: #fa4b4b;
}

.p-reserv__loop {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, calc(-50% + 80px / 2), 0);
  opacity: 0.6;
  width: 100%;
  height: 146px;
  background: url(../img/top/reserv_loop.svg) repeat-x center center / auto 100%;
  animation: reserv_loop_pc 30s linear infinite;
}

@media all and (max-width: 576px) {
  .p-reserv__loop {
    height: 105px;
    animation: reserv_loop_sp 30s linear infinite;
    transform: translate3d(0, calc(-50% + 50px / 2), 0);
  }
}

@keyframes reserv_loop_pc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1550px 0;
  }
}

@keyframes reserv_loop_sp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1114.72px 0;
  }
}

.p-reserv__btn {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-right: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate3d(-50%, calc(-50% + 80px / 2), 0);
  white-space: nowrap;
}

@media all and (max-width: 576px) {
  .p-reserv__btn {
    font-size: 28px;
    padding-right: 35px;
    transform: translate3d(-50%, calc(-50% + 50px / 2), 0);
  }
}

.p-reserv__btn::after {
  content: '';
  width: 26px;
  height: 20px;
  background: url(../img/common/ico_arrow_right_black.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -35%, 0);
  transition: all 0.3s ease-out;
}

a:hover .p-reserv__btn::after {
  transform: translate3d(15px, -35%, 0);
}

/* .modal
------------------------------*/
.c-modal {
  display: none;
  position: fixed;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  z-index: 9999;
  /* opacity:0;
  pointer-events: none;
  transition: all 0.8s ease-out; */
}

/* .c-modal.is-show{
  opacity:1;
  pointer-events: auto;
} */

.c-modal__inner {
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.9); */
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

@media all and (max-width: 576px) {
  .c-modal__inner {
    /* padding: 120px 20px 20px; */
    padding: 0 35px 35px;
  }
}

.c-modal__content {
  position: relative;
  /* background-color: #fff; */
  /* width: 100%; */
  width: min(100%, calc(305 / 625 * 100vh));
  max-width: 750px;
  max-height: 100%;
  /* padding: 20px; */
  /* 親要素の高さを子要素に合わせる */
  display: flex;
  /* overflow: auto; */
  /* スクロール非表示（Firefox） */
  /* scrollbar-width: none; */
}

/* .c-modal__content::-webkit-scrollbar { */
/* スクロール非表示（Chrome, Edge, Safari） */
/* display: none; */
/* } */

.c-modal__content__inner {
  width: 100%;
  /* overflow: auto; */
  /* スクロール非表示（Firefox） */
  scrollbar-width: none;
}

.c-modal__content__inner::-webkit-scrollbar {
  /* スクロール非表示（Chrome, Edge, Safari） */
  display: none;
}

.c-modal__close {
  width: 32px;
  height: 50px;
  background: url(../img/common/ico_close.svg) no-repeat center center / contain;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.c-modal__close:hover {
  opacity: 0.4;
}

/* .swiper-modal
------------------------------*/
.swiper.swiper-modal {
}

.swiper.swiper-modal .swiper-wrapper {
}

.swiper.swiper-modal .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}
</pre></body></html>