@charset "UTF-8";
/* ===========================================
 * fonts
 * ===========================================
*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Script&display=swap");
/* ===========================================
 * Variable
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* -------------------------------------------
 * max-width
*/
/* -------------------------------------------
 * color
*/
/* -------------------------------------------
 * svg
*/
/* ===========================================
 * Utility
 * ===========================================
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* -------------------------------------------
 * font-size
*/
/* $base-font-sizeを基準に$sizeを%で指定 */
/* $base-font-sizeを基準に$sizeをremで指定 */
/* $base-font-sizeを基準に$sizeをpxで指定 */
/* $base-font-sizeを基準に$sizeをemで指定 */
/* $base-font-sizeを基準に$sizeをvwで指定 */
/* $base-font-sizeを基準に$sizeをvhで指定 */
/* ===========================================
 * debug
 * ===========================================
*/
.show-for-logged-in, .hide-for-logged-in {
  display: none; /* 最初はどちらも非表示 */
}

/* ===========================================
 * common
 * ===========================================
*/
/* selecter */
html body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  position: initial !important;
  background-image: url(../img/background-img.webp);
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
  /* common heading */
}
html body .content__wrap {
  background-color: rgba(255, 255, 255, 0.6);
}
html body .content__wrap .content__main {
  background: transparent;
  margin-bottom: 0;
  max-width: unset;
}
html body .entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
html body h1, html body h2, html body h3, html body h4, html body h5, html body h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.25rem !important;
  margin: 0;
}

/* default font size */
p {
  font-size: clamp(14px, 1.4035087719vw, 16px);
  line-height: 2;
}

.__p_vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.6;
  letter-spacing: 0.25rem;
}

/* display */
@media screen and (max-width: 1279px) {
  .__pc {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .__sp {
    display: none;
  }
}

.header__top_h2 {
  font-size: clamp(22px, 2.4561403509vw, 28px);
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem !important;
}
.header__top_h2::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #444444;
  margin-top: 1.5rem;
}
.header__top_h2 .__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.header__top_h2 .__text .__en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2280701754vw, 14px);
}
.header__top_h2 .__text .__ja {
  font-weight: 500;
  font-size: clamp(22px, 2.4561403509vw, 28px);
}
.header__top_h2.__center {
  justify-content: center;
  flex-direction: column-reverse;
}
.header__top_h2.__center::before {
  transform: rotate(90deg);
  margin: 0;
}
.header__top_h2.__center .__text {
  align-items: center;
  margin-bottom: 1rem;
}

.is-square {
  display: none;
  width: 44.15px !important;
  height: 44.15px !important;
}
@media screen and (max-width: 1280px) {
  .is-square {
    right: 3vh !important;
  }
}

/* font */
.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ローディング */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .loader-1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #364A86 #FFF #FFF;
  position: relative;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* パンクズリスト */
.breadcrumbs {
  padding: 0 4% !important;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

/* -------------------------------------------
 * animation
*/
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===========================================
 * Button
 * ===========================================
*/
.btn__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn__container .btn-view-more {
  position: relative;
  border: none;
  border-bottom: 1px solid #444444;
  display: inline-block;
}
.btn__container .btn-view-more::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #444444;
  rotate: 25deg;
  position: absolute;
  right: 0;
  bottom: 1px;
}
.btn__container .btn-view-more a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  padding-right: 2rem;
}

.btn__line,
.btn__insta {
  display: block;
  width: 100%;
}
.btn__line a,
.btn__insta a {
  display: block;
  width: 100%;
  background-color: #707070;
  border-radius: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.btn__insta a {
  background-color: #FFF;
  border: 1px solid #444444;
  color: #444444;
  font-size: 24px;
  line-height: 1.2;
}
.btn__insta a:hover {
  color: #444444;
}

/* ===========================================
 * block
 * ===========================================
*/
html body > .site-content {
  margin: 0;
  padding: 0;
  overflow: visible !important;
}
html body > .site-content > .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/**
 * -------------------------------------------
 * faq
 */
.sec-faq {
  margin: 24% 0;
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .sec-faq {
    margin: 12% 0 !important;
  }
}
@media screen and (min-width: 1280px) {
  .sec-faq .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
}

/**
 * -------------------------------------------
 * contact
 */
.sec-contact {
  margin: 0;
  padding: 16% 20px;
  background-color: #CCCABB;
}
@media screen and (min-width: 1280px) {
  .sec-contact {
    padding: 8% 20px;
  }
}
.sec-contact .header__top_h2 {
  margin: 0;
}
.sec-contact .inner__container {
  margin-top: 3rem;
}
@media screen and (min-width: 1280px) {
  .sec-contact .inner__container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
 * Home
 * ===========================================
*/
.top {
  /**
   * -------------------------------------------
   * first view
   */
  /**
   * -------------------------------------------
   * concept
   */
  /**
   * -------------------------------------------
   * plan
   */
  /**
   * -------------------------------------------
   * flow
   */
  /**
   * -------------------------------------------
   * profile
   */
  /**
   * -------------------------------------------
   * instagram
   */
  /**
   * -------------------------------------------
   * access
   */
}
@media screen and (min-width: 1280px) {
  .top .sec-fv {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.top .sec-fv .__pc_menu {
  display: block;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .sec-fv .__pc_menu__list {
  display: block;
  width: 80%;
  list-style: none;
}
.top .sec-fv .__pc_menu__item {
  margin-bottom: 1rem;
}
.top .sec-fv .__pc_menu__link {
  text-decoration: none;
  color: #444444;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.top .sec-fv .__pc_menu__link:last-of-type {
  margin-bottom: 0;
}
.top .sec-fv .__pc_menu__link::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #444444;
  transition: width 0.3s ease-in-out;
  visibility: visible; /* Firefox の互換性を確保 */
}
.top .sec-fv .__pc_menu__link:hover::before {
  width: 100%;
}
.top .sec-fv .__swiper-fv {
  width: 100%;
}
.top .sec-fv .__swiper-fv .swiper-slide figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.top .sec-fv .__swiper-fv .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .top .sec-fv .__swiper-fv {
    max-width: 70%;
    margin-left: auto;
    margin-right: 0;
  }
  .top .sec-fv .__swiper-fv .swiper-slide figure {
    aspect-ratio: 16/9;
  }
}
.top .sec-fv .swiper-slide-active figure,
.top .sec-fv .swiper-slide-duplicate-active figure,
.top .sec-fv .swiper-slide-prev figure {
  animation: zoomOut 7s linear 0s normal both;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.top .sec-under-slider {
  width: 100%;
  margin-top: 16%;
}
.top .sec-under-slider__img {
  width: 92%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top .sec-under-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .top .sec-under-slider {
    margin-top: 8%;
  }
  .top .sec-under-slider__img {
    aspect-ratio: 3/1;
  }
}
.top .sec-title {
  margin-top: 10%;
}
.top .sec-title__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.top .sec-title__flex .sec-title__text {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.top .sec-title__flex .sec-title__text p {
  margin: 0;
  font-size: 16px;
}
.top .sec-title__flex .sec-title__text p:first-of-type {
  margin-top: -4rem;
}
.top .sec-title__flex .sec-title__text p:first-of-type::before {
  content: "";
  display: block;
  width: 1px;
  height: 52%;
  background-color: #444444;
  margin-left: 0.25rem;
}
.top .sec-title__flex .sec-title__text p:nth-of-type(2) {
  margin-top: 8rem;
}
.top .sec-title__flex .sec-title__img {
  width: 55%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.top .sec-title__flex .sec-title__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-title__flex .sec-title__img.__pc {
  aspect-ratio: unset;
  overflow: visible;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.top .sec-title__flex .sec-title__img.__pc .__left_container {
  width: 50%;
}
.top .sec-title__flex .sec-title__img.__pc .__left_container .__img_01 {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top .sec-title__flex .sec-title__img.__pc .__left_container .__img_01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-title__flex .sec-title__img.__pc .__left_container .__img_02 {
  margin-left: -24%;
  margin-top: -12%;
  width: 64%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top .sec-title__flex .sec-title__img.__pc .__left_container .__img_02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-title__flex .sec-title__img.__pc .__right_container {
  width: 50%;
}
.top .sec-title__flex .sec-title__img.__pc .__right_container .__img_01 {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.top .sec-title__flex .sec-title__img.__pc .__right_container .__img_01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-concept {
  margin: 24% 0;
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .top .sec-concept {
    margin: 12% 0;
  }
}
@media screen and (min-width: 1280px) {
  .top .sec-concept .header__top_h2 {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-concept .inner__container .sec-concept__img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1280px) {
  .top .sec-concept .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-plan {
  margin: 24% 0;
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .top .sec-plan {
    margin: 12% 0;
  }
}
.top .sec-plan .inner__container .sec-plan__img_01 {
  margin-right: -20px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.top .sec-plan .inner__container .sec-plan__img_01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-plan .inner__container .sec-plan__img_02 {
  width: 60%;
  margin-top: -20%;
  margin-bottom: 12%;
  margin-left: -20px;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.top .sec-plan .inner__container .sec-plan__img_02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .top .sec-plan .inner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  .top .sec-plan .inner__container .__left_container {
    width: 50%;
  }
  .top .sec-plan .inner__container .__right_container {
    width: 50%;
  }
  .top .sec-plan .btn__container {
    justify-content: flex-start;
  }
}
.top .sec-flow {
  margin: 24% 0;
}
@media screen and (min-width: 1280px) {
  .top .sec-flow {
    margin: 12% 0;
  }
}
.top .sec-flow .header__top_h2 {
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .top .sec-flow .header__top_h2 {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-flow .__swiper-flow {
  width: 100%;
  max-width: 800px;
}
.top .sec-flow .__swiper-flow .swiper-slide figure {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top .sec-flow .__swiper-flow .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .top .sec-flow .__swiper-flow {
    margin: 3rem 0;
    max-width: 100%;
  }
}
.top .sec-flow .inner__container {
  padding: 1rem 20px;
}
@media screen and (min-width: 1280px) {
  .top .sec-flow .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-profile {
  margin: 12% 0;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .top .sec-profile {
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  .top .sec-profile {
    margin: 12% 0;
  }
}
.top .sec-profile .inner__container .__left_container {
  width: 30%;
  min-width: 240px;
  margin-left: 3rem;
  margin-bottom: -6rem;
}
.top .sec-profile .inner__container .__left_container .sec-profile__img {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.top .sec-profile .inner__container .__left_container .sec-profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top .sec-profile .inner__container .__right_container {
  padding: 3rem;
  padding-top: 7rem;
  background-color: #DFDFDF;
  width: 100%;
}
.top .sec-profile .inner__container .__right_container .header__top_h2 {
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.top .sec-profile .inner__container .__right_container .sec-profile__text p {
  font-size: 12px;
  margin: 0;
  padding: 0;
}
.top .sec-profile .inner__container .__right_container .sec-profile__text .__name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", serif;
}
.top .sec-profile .inner__container .__right_container .sec-profile__text .__name span {
  font-size: 0.6em;
}
@media screen and (max-width: 480px) {
  .top .sec-profile .inner__container .__left_container {
    margin-left: 1.5rem;
  }
  .top .sec-profile .inner__container .__right_container {
    padding: 1.5rem;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .top .sec-profile .inner__container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }
  .top .sec-profile .inner__container .__left_container {
    width: 30%;
    max-width: 400px;
  }
  .top .sec-profile .inner__container .__right_container {
    padding: 3rem;
    padding-left: 7rem;
    padding-right: 2rem;
    margin-top: 3rem;
    margin-left: -3rem;
    position: relative;
    z-index: -1;
    width: 64%;
    max-width: 800px;
  }
  .top .sec-profile .inner__container .__right_container .header__top_h2 {
    justify-content: flex-start;
  }
  .top .sec-profile .inner__container .__right_container .sec-profile__text p {
    font-size: 14px;
  }
  .top .sec-profile .inner__container .__right_container .sec-profile__text .__name {
    font-size: 24px;
  }
  .top .sec-profile .btn__container {
    justify-content: flex-start;
  }
}
.top .sec-insta {
  margin: 24% 0;
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .top .sec-insta {
    margin: 12% 0;
  }
}
@media screen and (min-width: 1280px) {
  .top .sec-insta .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-access {
  padding: 12% 20px 24%;
}
@media screen and (min-width: 1280px) {
  .top .sec-access {
    padding: 12% 20px;
  }
}
@media screen and (min-width: 1280px) {
  .top .sec-access .header__top_h2 {
    max-width: 800px;
    margin: 0 auto;
  }
}
.top .sec-access .inner__container .__logo {
  max-width: 240px;
}
.top .sec-access .inner__container .ystdtb-dl dd {
  margin-top: 0;
}
.top .sec-access .inner__container iframe {
  margin: 2rem 0 2rem -20px;
  width: 100vw;
  max-width: none;
  height: 40vh;
}
.top .sec-access .inner__container .btn__container {
  justify-content: center;
}
.top .sec-access .inner__container .btn__container .btn-view-more a {
  padding-left: 2rem;
}
@media screen and (min-width: 1280px) {
  .top .sec-access .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
  .top .sec-access .inner__container .is-layout-flex {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
  }
  .top .sec-access .inner__container .is-layout-flex .wp-block-group {
    width: 50%;
  }
  .top .sec-access .inner__container .is-layout-flex iframe {
    width: 50%;
    width: 50%;
    height: 40vh;
  }
}

/* ===========================================
 * common
 * ===========================================
*/
.page .entry-header {
  background-color: #F5F5F5;
}
.page .entry-header .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
}
.page .entry-header .page-title .__en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(14px, 1.4035087719vw, 16px);
}
.page .entry-header .page-title .__ja {
  font-weight: 500;
  font-size: clamp(24px, 2.4561403509vw, 28px);
}
.page .entry-header .page-title .__path {
  width: 2px;
  height: 1.5rem;
  background-color: #444444;
  margin: 0.5rem 0;
}
.page .scd-breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.page .scd-breadcrumbs ul {
  list-style: none;
  padding: 0.5rem 0;
  display: flex;
}
.page .scd-breadcrumbs ul li {
  margin-right: 10px;
  color: #444444;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.page .scd-breadcrumbs ul li a {
  text-decoration: none;
  color: #707070;
}
.page .scd-breadcrumbs ul li a:hover {
  text-decoration: underline;
}
.page .scd-breadcrumbs ul li::after {
  content: "/";
  margin-left: 10px;
}
.page .scd-breadcrumbs ul li:last-of-type {
  margin: 0;
}
.page .scd-breadcrumbs ul li:last-of-type::after {
  content: "";
  margin: 0;
}

/* ===========================================
 * plan
 * ===========================================
*/
.page-plan {
  /**
   * -------------------------------------------
   * プランコンテナ
   */
  /**
   * -------------------------------------------
   * スライド
   */
  /**
   * -------------------------------------------
   * inner
   */
  /**
   * -------------------------------------------
   * プラン名
   */
  /**
   * -------------------------------------------
   * 料金
   */
  /**
   * -------------------------------------------
   * リード文
   */
  /**
   * -------------------------------------------
   * セット内容
   */
  /**
   * -------------------------------------------
   * サンプル写真
   */
  /**
   * -------------------------------------------
   * CV
   */
  /**
  * -------------------------------------------
  * 納品データについて
  */
}
.page-plan .plan__container {
  margin-top: 40%;
}
.page-plan .plan__container .btn__container {
  justify-content: flex-start;
  margin: 1rem 0;
}
.page-plan .plan__container .btn__container .btn__more {
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
}
.page-plan .plan__container:first-child {
  margin-top: 24%;
}
@media screen and (min-width: 1280px) {
  .page-plan .plan__container {
    margin-top: 16%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 4%;
  }
  .page-plan .plan__container .__slider_container,
  .page-plan .plan__container .__inner {
    width: 50%;
  }
  .page-plan .plan__container:first-child {
    margin-top: 16%;
  }
}
.page-plan .__swiper-plan,
.page-plan .__swiper-plan-thumbs {
  width: 100%;
  max-width: 800px;
}
.page-plan .__swiper-plan .swiper-slide figure,
.page-plan .__swiper-plan-thumbs .swiper-slide figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-plan .__swiper-plan .swiper-slide figure img,
.page-plan .__swiper-plan-thumbs .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-plan .__swiper-plan-thumbs {
  margin-top: 1.5rem;
  padding: 0 20px;
}
.page-plan .__inner {
  padding: 0 20px;
}
@media screen and (min-width: 1280px) {
  .page-plan .__inner {
    padding: 0;
  }
}
.page-plan .__plan-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-left: 2px solid #444444;
  margin-top: 3rem;
  padding-left: 0.5rem;
  letter-spacing: 0.125rem !important;
}
.page-plan .__plan-title .__ja {
  font-size: clamp(14px, 1.4035087719vw, 16px);
}
.page-plan .__plan-title .__en {
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-title.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-plan .__plan-title.__pc {
    display: none;
  }
}
.page-plan .__plan-price {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #DFDFDF;
  padding: 1.5rem 0;
}
.page-plan .__plan-price .__price_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
}
.page-plan .__plan-price .__price_title .__sub_title_ja {
  font-size: clamp(14px, 1.4035087719vw, 16px);
  letter-spacing: 0.125rem;
}
.page-plan .__plan-price .__price_title .__sub_title_en {
  font-size: clamp(22px, 2.4561403509vw, 28px);
  font-weight: 500;
  line-height: 1;
}
.page-plan .__plan-price .__sub_title_line {
  width: 64%;
  height: 1px;
  background-color: #444444;
  margin: 1rem auto;
}
.page-plan .__plan-price .__price_container {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 0.25rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  margin: 0;
}
.page-plan .__plan-price .__price_container .__price {
  font-size: clamp(28px, 3.5087719298vw, 40px);
  font-weight: 500;
  letter-spacing: 0.125rem;
}
.page-plan .__plan-price .__price_container .__tax {
  font-size: clamp(14px, 1.4035087719vw, 16px);
}
.page-plan .__plan-price .__price_add_chr {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
.page-plan .__plan-price .__price_add_chr .__additional-charges {
  font-size: clamp(16px, 1.7543859649vw, 20px);
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-price.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-plan .__plan-price.__pc {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-lead.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-plan .__plan-lead.__pc {
    display: none;
  }
}
.page-plan .__plan-set-content {
  margin: 1.5rem 0 0;
}
.page-plan .__plan-set-content .__plan-sub-title {
  display: block;
  border-bottom: 1px solid #444444;
  font-size: clamp(18px, 2.1052631579vw, 24px);
  letter-spacing: 0.125rem !important;
  padding-bottom: 0.5rem;
}
.page-plan .__plan-set-content .__list {
  margin: 1rem 0;
  line-height: 2.4;
}
.page-plan .__plan-set-content .__notice {
  font-size: clamp(12px, 1.2280701754vw, 14px);
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-set-content {
    margin-top: 0;
  }
  .page-plan .__plan-set-content .__plan-sub-title {
    margin-top: 0;
  }
}
.page-plan .__plan-sample {
  margin: 1.5rem 0;
}
.page-plan .__plan-sample .__sample_01 {
  width: 80%;
}
.page-plan .__plan-sample .__sample_01 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-plan .__plan-sample .__sample_01 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-plan .__plan-sample .__sample_02 {
  width: 80%;
  margin-top: -8%;
  margin-left: auto;
  margin-right: 0;
}
.page-plan .__plan-sample .__sample_02 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-plan .__plan-sample .__sample_02 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-plan .__plan-sample .__sample_03 {
  margin-top: 1.5rem;
}
.page-plan .__plan-sample .__sample_03 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-plan .__plan-sample .__sample_03 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-sample.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-plan .__plan-sample.__pc {
    display: none;
  }
}
.page-plan .__plan-cv {
  margin-top: 3rem;
}
.page-plan .__plan-cv a {
  font-size: 18px;
  padding: 1.5rem 0;
}
@media screen and (min-width: 1280px) {
  .page-plan .__plan-cv.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-plan .__plan-cv.__pc {
    display: none;
  }
}
.page-plan .sec-dd {
  padding: 16% 20px;
  position: relative;
  z-index: 1;
}
.page-plan .sec-dd .header__top_h2 {
  margin-top: 0;
}
.page-plan .sec-dd::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 88%;
  height: 100%;
  background-color: #FFF;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .page-plan .sec-dd {
    padding: 8% 0 !important;
  }
}
@media screen and (min-width: 1280px) {
  .page-plan .sec-dd .inner__container {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* ===========================================
 * flow
 * ===========================================
*/
.page-flow {
  /**
   * -------------------------------------------
   * セクションコンテナ
   */
  /**
   * -------------------------------------------
   * inner
   */
  /**
   * -------------------------------------------
   * ステップ
   */
  /**
   * -------------------------------------------
   * 料金
   */
  /**
   * -------------------------------------------
   * リード文
   */
  /**
   * -------------------------------------------
   * セット内容
   */
  /**
   * -------------------------------------------
   * サンプル写真
   */
  /**
   * -------------------------------------------
   * CV
   */
}
.page-flow .sec-step-container {
  position: relative;
  margin-top: 8% !important;
  overflow-x: hidden;
}
.page-flow .sec-step-container::before {
  position: absolute;
  content: "";
  margin-left: calc((100vw - 880px) / 2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .page-flow .sec-step-container::before {
    margin-left: 0;
  }
}
.page-flow .__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 5rem;
  position: relative;
}
.page-flow .__inner::after {
  content: "";
  display: block;
  width: 1px;
  background-color: #444444;
  position: absolute;
  top: 5rem;
  left: 7rem;
  bottom: 10rem;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .page-flow .__inner {
    padding: 3rem 20px;
  }
  .page-flow .__inner::after {
    top: 3rem;
    left: 3rem;
  }
}
.page-flow .sec-step {
  margin-bottom: 24%;
  position: relative;
  z-index: 1;
}
.page-flow .sec-step__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.page-flow .sec-step__inner .__title_container {
  width: 25%;
  flex-shrink: 1;
}
.page-flow .sec-step__inner .__title_container p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.9298245614vw, 22px);
  font-weight: 500;
  margin: 0;
  padding: 0;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .page-flow .sec-step__inner .__title_container p {
    font-size: 1rem;
  }
}
.page-flow .sec-step__inner .__content_container {
  width: 75%;
  flex-shrink: 1;
}
.page-flow .sec-step__inner .__content_container h2, .page-flow .sec-step__inner .__content_container p {
  margin: 0;
  padding: 0;
}
.page-flow .sec-step__inner .__content_container h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: clamp(20px, 1.9298245614vw, 22px);
}
.page-flow .sec-step__inner .__content_container .__contact {
  margin-top: 3rem;
}
.page-flow .sec-step__inner .__content_container .__contact > *:first-child {
  display: none;
}
.page-flow .sec-step:last-child {
  margin-bottom: 0;
}
.page-flow .__plan-price {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #DFDFDF;
  padding: 1.5rem 0;
}
.page-flow .__plan-price .__price_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
}
.page-flow .__plan-price .__price_title .__sub_title_ja {
  font-size: clamp(14px, 1.4035087719vw, 16px);
  letter-spacing: 0.125rem;
}
.page-flow .__plan-price .__price_title .__sub_title_en {
  font-size: clamp(22px, 2.4561403509vw, 28px);
  font-weight: 500;
  line-height: 1;
}
.page-flow .__plan-price .__sub_title_line {
  width: 64%;
  height: 1px;
  background-color: #444444;
  margin: 1rem auto;
}
.page-flow .__plan-price .__price_container {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  gap: 0.25rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  margin: 0;
}
.page-flow .__plan-price .__price_container .__price {
  font-size: clamp(28px, 3.5087719298vw, 40px);
  font-weight: 500;
  letter-spacing: 0.125rem;
}
.page-flow .__plan-price .__price_container .__tax {
  font-size: clamp(14px, 1.4035087719vw, 16px);
}
.page-flow .__plan-price .__price_add_chr {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
.page-flow .__plan-price .__price_add_chr .__additional-charges {
  font-size: clamp(16px, 1.7543859649vw, 20px);
}
@media screen and (min-width: 1280px) {
  .page-flow .__plan-price.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-flow .__plan-price.__pc {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .page-flow .__plan-lead.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-flow .__plan-lead.__pc {
    display: none;
  }
}
.page-flow .__plan-set-content {
  margin: 1.5rem 0 0;
}
.page-flow .__plan-set-content .__plan-sub-title {
  display: block;
  border-bottom: 1px solid #444444;
  font-size: clamp(18px, 2.1052631579vw, 24px);
  letter-spacing: 0.125rem !important;
  padding-bottom: 0.5rem;
}
.page-flow .__plan-set-content .__list {
  margin: 1rem 0;
  line-height: 2.4;
}
.page-flow .__plan-set-content .__notice {
  font-size: clamp(12px, 1.2280701754vw, 14px);
}
@media screen and (min-width: 1280px) {
  .page-flow .__plan-set-content {
    margin-top: 0;
  }
  .page-flow .__plan-set-content .__plan-sub-title {
    margin-top: 0;
  }
}
.page-flow .__plan-sample {
  margin: 1.5rem 0;
}
.page-flow .__plan-sample .__sample_01 {
  width: 80%;
}
.page-flow .__plan-sample .__sample_01 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-flow .__plan-sample .__sample_01 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-flow .__plan-sample .__sample_02 {
  width: 80%;
  margin-top: -8%;
  margin-left: auto;
  margin-right: 0;
}
.page-flow .__plan-sample .__sample_02 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-flow .__plan-sample .__sample_02 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-flow .__plan-sample .__sample_03 {
  margin-top: 1.5rem;
}
.page-flow .__plan-sample .__sample_03 figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-flow .__plan-sample .__sample_03 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .page-flow .__plan-sample.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-flow .__plan-sample.__pc {
    display: none;
  }
}
.page-flow .__plan-cv {
  margin-top: 3rem;
}
.page-flow .__plan-cv a {
  font-size: 18px;
  padding: 1.5rem 0;
}
@media screen and (min-width: 1280px) {
  .page-flow .__plan-cv.__sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-flow .__plan-cv.__pc {
    display: none;
  }
}

/* ===========================================
 * common
 * ===========================================
*/
/* ===========================================
 * Campain 2025
 * ===========================================
*/
.page-template-lp-origin {
  background: unset;
  /* -------------------------------------------
  * modal
  */
  /**
   * -------------------------------------------
   * first view
   */
  /**
   * -------------------------------------------
   * About
   */
  /**
   * -------------------------------------------
   * Points
   */
  /**
   * -------------------------------------------
   * Plan
   */
  /**
   * -------------------------------------------
   * Campaign
   */
  /**
   * -------------------------------------------
   * Contact
   */
  /**
   * -------------------------------------------
   * Footer
   */
}
.page-template-lp-origin .site-header {
  height: 72px;
}
.page-template-lp-origin .site-header .container .site-header__inner .navbar .container-fluid {
  justify-content: space-between;
}
.page-template-lp-origin .site-header .container .site-header__inner .navbar .container-fluid .custom-logo-link {
  margin-left: 0;
  margin-right: auto;
}
.page-template-lp-origin section {
  margin: 0;
  padding: 8% 0;
}
.page-template-lp-origin .league-script-regular {
  font-family: "League Script", cursive;
  font-weight: 400;
  font-style: normal;
}
.page-template-lp-origin .__h2_header {
  font-size: clamp(28px, 2.8070175439vw, 32px);
  font-weight: bold;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.page-template-lp-origin .__h2_header::after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #707070;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-header,
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-footer {
  background-color: #BDA086;
  color: #FFF;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-header.__tel,
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-footer.__tel {
  background-color: #b1b1b1;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .copy-text {
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .btn-copy {
  width: 90%;
  padding: 0.5rem 0;
  font-size: 13px;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .copy-notice {
  font-size: 12px;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .text-notice {
  font-size: 12px;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #EDDDCD 0%, #906643 100%);
  text-decoration: none;
  font-size: clamp(14px, 1.7543859649vw, 20px);
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .__btn .__more {
  font-weight: bold;
  color: #FFF;
}
.page-template-lp-origin .modal .modal-dialog .modal-content .modal-body .__btn .__sm {
  font-size: 0.75em;
  color: #FFF;
}
.page-template-lp-origin .footer-nav__container {
  position: fixed;
  width: 100%;
  bottom: 0;
  max-height: 80px;
  z-index: 10;
  cursor: pointer;
}
.page-template-lp-origin .footer-nav__container .__flex_container {
  padding-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-template-lp-origin .footer-nav__container .__flex_container .nav-item {
  text-decoration: none;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #cab199;
  color: #FFF;
  padding: 1rem 0;
}
.page-template-lp-origin .footer-nav__container .__flex_container .nav-item:first-child {
  border-right: 1px solid #FFF;
}
.page-template-lp-origin #back-to-top {
  bottom: 12vh;
}
.page-template-lp-origin .sec-fv {
  overflow: hidden;
  padding: 0;
}
.page-template-lp-origin .sec-fv > .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left {
  width: 50%;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__header_container .__title_en {
  font-family: "League Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 4.2105263158vw, 48px);
  transform: rotate(-10deg);
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__header_container .__title {
  font-size: clamp(22px, 2.8070175439vw, 32px);
  font-weight: bold;
  margin: 0;
  margin-top: 1em;
  margin-bottom: 1.5em;
  padding: 0;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__header_container .__title .f-gold {
  color: #BDA086;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__text_container .__text {
  font-size: clamp(14px, 1.4035087719vw, 16px);
  font-weight: bold;
  color: #535353;
  line-height: 1.4;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__text_container .__notice {
  font-size: clamp(12px, 1.2280701754vw, 14px);
  font-weight: bold;
  color: #BDA086;
  margin-bottom: 12%;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #EDDDCD 0%, #906643 100%);
  text-decoration: none;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__btn_container .__btn .__more {
  font-weight: bold;
  color: #FFF;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__btn_container .__btn .ys-icon {
  color: #FFF;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__right {
  width: 50%;
  position: relative;
  z-index: 1;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__right .__img {
  aspect-ratio: 9/16;
  overflow: hidden;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__right .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-template-lp-origin .sec-fv > .__inner .__flex_container .__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 100vw;
  height: 150%;
  background-color: #FBF9F8;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-fv > .__inner {
    padding: 0;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container {
    flex-direction: column-reverse;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container .__left {
    width: 100%;
    padding: 0 4%;
    margin-top: -4rem;
    position: relative;
    z-index: 2;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container .__left .__header_container .__title_en {
    color: #FFF;
    font-weight: bold;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container .__right {
    width: 100%;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container .__right .__img {
    aspect-ratio: 1/1;
  }
  .page-template-lp-origin .sec-fv > .__inner .__flex_container .__right::before {
    display: none;
  }
}
.page-template-lp-origin .sec-about {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-about {
    margin-top: 6rem;
  }
}
.page-template-lp-origin .sec-about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #FBF9F8;
  z-index: -1;
}
.page-template-lp-origin .sec-about > .__inner .__header_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  margin-top: 8%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_container .__left {
  width: 50%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_container .__left .__h3_header {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 2;
}
.page-template-lp-origin .sec-about > .__inner .__flex_container .__left .__text_container .__text {
  font-size: clamp(14px, 1.4035087719vw, 16px);
  font-weight: bold;
  color: #535353;
  line-height: 1.4;
}
.page-template-lp-origin .sec-about > .__inner .__flex_container .__right {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-about > .__inner .__flex_container {
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-about > .__inner .__flex_container .__left, .page-template-lp-origin .sec-about > .__inner .__flex_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4%;
  margin-top: 8%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__left {
  width: 30%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__left .__img {
  aspect-ratio: 2/3;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__left .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__right {
  width: 70%;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__right .__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-template-lp-origin .sec-about > .__inner .__flex_img_container .__right .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-about > .__inner .__flex_img_container {
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-about > .__inner .__flex_img_container .__left, .page-template-lp-origin .sec-about > .__inner .__flex_img_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .sec-about > .__inner .__content_container {
  margin: 4% 0;
  width: 100%;
  padding: 8% 0;
  background-image: url("../img/lp-2025/img-about-03.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner {
  max-width: 40%;
  min-width: 400px;
  margin-left: auto;
  margin-right: max((100% - 1280px) / 2, 4%);
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner .__h3_header {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner .__text {
  font-size: clamp(12px, 1.2280701754vw, 14px);
  margin-bottom: 8%;
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #EDDDCD 0%, #906643 100%);
  text-decoration: none;
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner .__btn_container .__btn .__more {
  font-weight: bold;
  font-size: clamp(14px, 1.4035087719vw, 16px);
  color: #FFF;
}
.page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner .__btn_container .__btn .ys-icon {
  color: #FFF;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-about > .__inner .__content_container {
    margin: 6rem 0 3rem;
  }
  .page-template-lp-origin .sec-about > .__inner .__content_container .__content_inner {
    max-width: 100%;
    min-width: unset;
    margin: 0;
  }
}
.page-template-lp-origin .sec-about > .__inner .__img_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4%;
  margin-top: 8%;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__left {
  width: 70%;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__left .__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__left .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__right {
  width: 30%;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__right .__img {
  aspect-ratio: 2/3;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.page-template-lp-origin .sec-about > .__inner .__img_container .__right .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-about > .__inner .__img_container {
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-about > .__inner .__img_container .__left, .page-template-lp-origin .sec-about > .__inner .__img_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .sec-points {
  margin-top: 8%;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-points {
    margin-top: 6rem;
  }
}
.page-template-lp-origin .sec-points > .__inner .__header_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-template-lp-origin .sec-points > .__inner .__point_item {
  margin-top: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__left {
  width: 60%;
  padding: 4% 0;
  padding-left: max((100% - 1280px) / 2, 4%);
  padding-right: 20%;
  background-image: url("../img/lp-2025/bg-point-text.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0;
  margin-right: auto;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__left .__no {
  font-weight: bold;
  margin: 0;
  line-height: 1;
  margin-bottom: 1em;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__left .__h3_header {
  font-weight: bold;
  margin: 0;
  margin-bottom: 1em;
  font-size: clamp(20px, 2.4561403509vw, 28px);
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__left .__text {
  margin-bottom: 0;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__right {
  width: 55%;
  margin-left: auto;
  margin-right: 0;
  margin-top: -20rem;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__right figure {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-template-lp-origin .sec-points > .__inner .__point_item .__right figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-template-lp-origin .sec-points > .__inner .__point_item:nth-child(odd) .__left {
  padding-left: 20%;
  padding-right: max((100% - 1280px) / 2, 4%);
  margin-left: auto;
  margin-right: 0;
}
.page-template-lp-origin .sec-points > .__inner .__point_item:nth-child(odd) .__right {
  margin-left: 0;
  margin-right: auto;
}
.page-template-lp-origin .sec-points > .__inner .__swiper-points {
  width: 100%;
  margin: 16% 0 0;
}
.page-template-lp-origin .sec-points > .__inner .__swiper-points .swiper-slide figure {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.page-template-lp-origin .sec-points > .__inner .__swiper-points .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-points > .__inner .__point_item {
    margin-top: 4rem;
  }
  .page-template-lp-origin .sec-points > .__inner .__point_item .__left, .page-template-lp-origin .sec-points > .__inner .__point_item .__right {
    width: 100%;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .page-template-lp-origin .sec-points > .__inner .__point_item .__left {
    padding: 3rem 4%;
  }
  .page-template-lp-origin .sec-points > .__inner .__point_item:nth-child(odd) .__left {
    margin: 0;
    padding: 3rem 4%;
  }
  .page-template-lp-origin .sec-points > .__inner .__point_item:nth-child(odd) .__right {
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
  }
}
.page-template-lp-origin .sec-plan > .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-template-lp-origin .sec-plan > .__inner .__flex_container {
  margin-top: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
.page-template-lp-origin .sec-plan > .__inner .__flex_container .__left {
  width: 50%;
}
.page-template-lp-origin .sec-plan > .__inner .__flex_container .__right {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-plan {
    margin: 4rem 0;
  }
  .page-template-lp-origin .sec-plan > .__inner .__flex_container {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-plan > .__inner .__flex_container .__left, .page-template-lp-origin .sec-plan > .__inner .__flex_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .sec-campaign > .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-template-lp-origin .sec-campaign > .__inner .__h2_header {
  justify-content: center;
}
.page-template-lp-origin .sec-campaign > .__inner .__h2_header::before {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #707070;
}
.page-template-lp-origin .sec-campaign > .__inner .__h2_header::after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #707070;
}
.page-template-lp-origin .sec-campaign > .__inner .__text_container {
  margin-top: 4%;
  text-align: center;
}
.page-template-lp-origin .sec-campaign > .__inner .__text_container .__campaign {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  margin: 2% 0;
  padding: 0;
  color: #BDA086;
}
.page-template-lp-origin .sec-campaign > .__inner .__text_container .__campaign .__sm {
  font-size: 0.6em;
}
.page-template-lp-origin .sec-campaign > .__inner .__flex_container {
  margin-top: 8%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4%;
}
.page-template-lp-origin .sec-campaign > .__inner .__flex_container .__left {
  width: 50%;
}
.page-template-lp-origin .sec-campaign > .__inner .__flex_container .__right {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-campaign {
    margin: 4rem 0;
  }
  .page-template-lp-origin .sec-campaign > .__inner .__h2_header::before {
    width: 15%;
  }
  .page-template-lp-origin .sec-campaign > .__inner .__h2_header::after {
    width: 15%;
  }
  .page-template-lp-origin .sec-campaign > .__inner .__flex_container {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-campaign > .__inner .__flex_container .__left, .page-template-lp-origin .sec-campaign > .__inner .__flex_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .sec-contact {
  margin: 4% 0;
  width: 100%;
  padding: 8% 4%;
  background: unset;
  background-image: url("../img/lp-2025/bg-contact.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-template-lp-origin .sec-contact > .__inner {
  max-width: 40%;
  min-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.page-template-lp-origin .sec-contact > .__inner .__header_container {
  margin-bottom: 4%;
}
.page-template-lp-origin .sec-contact > .__inner .__header_container .__en {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.4035087719vw, 16px);
  font-weight: bold;
  margin: 0;
}
.page-template-lp-origin .sec-contact > .__inner .__header_container .__h2_header {
  justify-content: center;
}
.page-template-lp-origin .sec-contact > .__inner .__header_container .__h2_header::after {
  display: none;
}
.page-template-lp-origin .sec-contact > .__inner .__lead {
  font-size: clamp(12px, 1.2280701754vw, 14px);
  margin-bottom: 8%;
}
.page-template-lp-origin .sec-contact > .__inner .__btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
.page-template-lp-origin .sec-contact > .__inner .__btn_container .__btn {
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #EDDDCD 0%, #906643 100%);
  text-decoration: none;
  font-size: clamp(14px, 1.7543859649vw, 20px);
}
.page-template-lp-origin .sec-contact > .__inner .__btn_container .__btn .__more {
  font-weight: bold;
  color: #FFF;
}
.page-template-lp-origin .sec-contact > .__inner .__btn_container .__btn .__sm {
  font-size: 0.75em;
  color: #FFF;
}
.page-template-lp-origin .sec-contact > .__inner .__btn_container .__btn.__line {
  background: linear-gradient(135deg, #0BA360 0%, #3CBA92 100%);
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .sec-contact {
    margin: 4rem 0;
  }
  .page-template-lp-origin .sec-contact > .__inner {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .page-template-lp-origin .sec-contact > .__inner .__flex_container {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-lp-origin .sec-contact > .__inner .__flex_container .__left, .page-template-lp-origin .sec-contact > .__inner .__flex_container .__right {
    width: 100%;
  }
}
.page-template-lp-origin .site-footer {
  margin-top: 12%;
}
.page-template-lp-origin .site-footer > .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4% 4% 0;
  border-top: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-lp-origin .site-footer > .__inner .__icon_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
}
.page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_insta,
.page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_line {
  color: #000;
}
.page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_insta .ys-icon svg,
.page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_line .ys-icon svg {
  width: 2rem;
  height: 2rem;
}
.page-template-lp-origin .site-footer > .__inner .__footer_nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.page-template-lp-origin .site-footer > .__inner .__footer_nav ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Noto Serif JP", serif;
}
.page-template-lp-origin .site-footer .__copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  font-size: 12px;
  margin-top: 1em;
  margin-bottom: 8%;
}
@media screen and (max-width: 1280px) {
  .page-template-lp-origin .site-footer {
    margin-top: 4rem;
  }
  .page-template-lp-origin .site-footer > .__inner {
    padding-top: 2rem;
    flex-direction: column;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__logo {
    width: 100%;
    text-align: center;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__logo figure {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__logo figure img {
    width: 100%;
    height: auto;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_insta,
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_line {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_insta .ys-icon svg,
  .page-template-lp-origin .site-footer > .__inner .__icon_container .__icon_line .ys-icon svg {
    width: 3rem;
    height: 3rem;
  }
  .page-template-lp-origin .site-footer > .__inner .__footer_nav {
    margin: 4rem 0 2rem;
  }
  .page-template-lp-origin .site-footer > .__inner .__footer_nav ul {
    flex-direction: column;
    width: 100%;
  }
  .page-template-lp-origin .site-footer > .__inner .__footer_nav ul li a {
    width: 100%;
  }
  .page-template-lp-origin .site-footer .__copyright {
    text-align: center;
  }
}

/* ===========================================
 * Site Header
 * ===========================================
*/
.site-header .container {
  height: 100%;
}
.site-header .container .site-header__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .container .site-header__content .site-branding {
  display: flex;
  align-items: center;
}
.site-header .container .site-header__content .site-branding .custom-logo-link {
  font-family: "Noto Serif JP", serif;
}
.site-header .container .site-header__content .header-sns {
  margin-left: auto;
  margin-right: 0.5rem;
}
.site-header .container .site-header__content .header-sns .container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.site-header .container .site-header__content .header-sns .container .__icon_insta,
.site-header .container .site-header__content .header-sns .container .__icon_line {
  background-image: url(../img/icon-insta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
.site-header .container .site-header__content .header-sns .container .__icon_line {
  background-image: url(../img/icon-line.svg);
  margin-left: 1rem;
}
.site-header .container .site-header__content .global-nav__toggle {
  position: relative;
  padding-right: 0;
}
.site-header .container .site-header__content .global-nav__toggle::after {
  display: none;
}
.site-header .container .site-header__content .global-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.site-header .container .site-header__content .global-nav .global-nav__container {
  width: 100%;
}
.site-header .container .site-header__content .global-nav .global-nav__container .global-nav__menu .menu-item a {
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  padding: 1rem 0;
  border-bottom: 1px solid #F5F5F5;
}
.site-header .container .site-header__content .global-nav__contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-top: auto;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
 * footer
 * ===========================================
*/
.footer {
  background: transparent;
}
.footer .footer-main {
  background-color: rgba(255, 255, 255, 0.5);
}
.footer .footer-main .footer-widget__container {
  margin-left: -20px;
}
.footer .footer-main .footer-widget__container figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.footer .footer-main .footer-widget__container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 1280px) {
  .footer .footer-main .footer-widget__container figure {
    aspect-ratio: 3/1;
  }
}
.footer .footer-main .footer-nav {
  margin-top: 24%;
}
.footer .footer-main .footer-nav .container {
  display: block;
  position: relative;
}
.footer .footer-main .footer-nav .container .footer-nav__menu {
  flex-direction: column;
}
.footer .footer-main .footer-nav .container .footer-nav__menu .menu-item {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.footer .footer-main .footer-nav .container .btn-view-more {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
}
.footer .footer-main .footer-nav .container .btn-view-more a {
  padding-left: 2rem;
}
@media screen and (min-width: 1280px) {
  .footer .footer-main .footer-nav {
    margin-top: 12%;
  }
}
.footer .footer-main .footer-sns {
  margin-top: 2rem;
}
.footer .footer-main .footer-sns .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}
.footer .footer-main .footer-sns .container .__icon_insta,
.footer .footer-main .footer-sns .container .__icon_line {
  background-image: url(../img/icon-insta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
.footer .footer-main .footer-sns .container .__icon_line {
  background-image: url(../img/icon-line.svg);
}

/* ===========================================
 * nav
 * ===========================================
*//*# sourceMappingURL=theme-style.css.map */