/* ----- common ----- */
:root {
  --color-white: #ffffff;
  --color-light-gray: #f7f7f7;
  --color-black: #333333;
  --color-black-sub: #666666;
  --color-accent: #c9a88e;
  --color-accent-text: #a38874;
  --color-border: #dddddd;
  --color-form-bg: #f9f9f9;
}
html {
  font-size: 62.5%;
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/montserrat-v31-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/montserrat-v31-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/montserrat-v31-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/montserrat-v31-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/cormorant-garamond-v21-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/cormorant-garamond-v21-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/cormorant-garamond-v21-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/noto-serif-jp-v33-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/noto-serif-jp-v33-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  width: calc(100vw - calc(100vw - 100%));
  background-color: var(--color-white);
  color: var(--color-black-sub);
  font-size: 1.4rem;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.button__wrap {
  text-align: center;
}
.mybutton {
  display: inline-block;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 9999px;
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  &.button--line {
    background-color: #06c755;
    border: 1px solid #06c755;
    color: var(--color-black);
    @media (max-width: 374px) {
      padding: 1.2rem 1.2rem;
    }
  }
  &.button--white {
    background-color: transparent;
    border: 2px solid var(--color-white);
  }
  &.button--submit {
    max-width: 200px;
    width: 100%;
    letter-spacing: 0.15em;
  }
}
.section__inner {
  max-width: 1280px;
  width: 100%;
  padding: 15rem 2.4rem;
  margin: 0 auto;
  @media (min-width: 768px) {
    padding: 15rem 4.2rem;
  }
  &.section__inner--blog {
    padding-top: 0;
  }
  &.section__inner--footer {
    padding-bottom: 2.4rem;
  }
}
.section--bg {
  background-color: var(--color-light-gray);
}
.section__title {
  color: var(--color-black);
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8.7rem;
}
.sp-span {
  display: block;
  @media (min-width: 768px) {
    display: inline-block;
  }
}
.sp-span--sub {
  display: inline-block;
  @media (max-width: 374px) {
    display: block;
  }
}
/* ----- hover ----- */
.header__logo--wrap a,
.hbg-menu,
.header__nav a,
.button--line,
.button--cta,
.button--white,
.bread-crumb a,
.faq__link a,
.sitemap a,
.posts__link,
.category__link,
.my-category ul li a,
.wpp-list li a,
.pagination--detail a,
.pagination--sub a {
  transition: all 0.5s ease;
}
@media (any-hover: hover) {
  .header__logo--wrap a:hover,
  .hbg-menu:hover,
  .header__nav a:hover,
  .bread-crumb a:hover,
  .faq__link a:hover,
  .sitemap a:hover,
  .posts__link:hover,
  .wpp-list li a:hover,
  .pagination--detail a:hover,
  .category__link:hover {
    opacity: 0.5;
  }
  .button--line:hover {
    background-color: transparent;
    border: 1px solid #06c755;
    color: #06c755;
  }
  .button--cta:hover,
  .pagination--sub a:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
  }
  .my-category ul li a:hover {
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: var(--color-white);
  }
  .button--white:hover {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
  }
}
/* ----- header ----- */
.header {
  width: 100%;
  height: 85px;
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  .header__inner {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.4rem;
    margin: 0 auto;
  }
  .header__logo--wrap h2 {
    height: 6rem;
  }
  .header__logo--wrap img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  .header__nav--wrap {
    display: flex;
    gap: 2.4rem;
    @media (max-width: 374px) {
      gap: 2rem;
    }
    @media (min-width: 768px) {
      gap: 4.2rem;
    }
  }
  .header__nav {
    color: var(--color-black);
  }
  .header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    padding-top: 4rem;
    @media (min-width: 768px) {
      gap: 4rem;
    }
  }
}
/* ----- hamburger-menu ----- */
.hbg-menu {
  width: 30px;
  height: 50px;
  cursor: pointer;
  display: grid;
  place-items: center;
  place-content: center;
  position: relative;
  z-index: 1000;
}
.bar,
.bar::before,
.bar::after {
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.5s;
}
.bar {
  display: grid;
  &::before,
  &::after {
    content: "";
    grid-area: 1 / 1;
  }
  &::before {
    transform: translateY(-8px);
  }
  &::after {
    transform: translateY(8px);
  }
}
/* オープン時のバー */
.menu-open {
  .bar {
    background-color: transparent;
    &::before {
      transform: rotate(45deg);
    }
    &::after {
      transform: rotate(-45deg);
    }
  }
}
#menu {
  width: 100%;
  height: 100svh;
  background-color: var(--color-white);
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  transform: translateX(100vw);
  transition: transform 0.5s ease-out;
}
/* オープン時のメニュー */
.menu-open #menu {
  transform: translateX(0);
}
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
/* ----- banner ----- */
.banner-wrap {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  @media (min-width: 768px) {
    min-width: 450px;
    width: 30vw;
  }
}
/* ----- fv ----- */
.fv {
  width: 100%;
  height: calc(100svh);
  color: var(--color-white);
  letter-spacing: 0.05em;
  & img,
  & video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-fallback-imgage {
    display: none;
  }
  .fv__inner {
    width: 100%;
    position: absolute;
    top: calc(50% + 42.5px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .fv__inner h1 {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    padding: 2.4rem 0;
    overflow-wrap: break-word;
    text-align: center;
    &.post--title {
      font-size: 3rem;
      line-break: strict;
      overflow-wrap: break-word;
      @media (min-width: 1025px) {
        font-size: 5rem;
      }
    }
  }
  .fv__inner p {
    color: #f3eeea;
    text-align: center;
    white-space: pre-line;
    @media (min-width: 768px) {
      letter-spacing: 0.1em;
    }
  }
  .fv__text {
    font-size: 1.4rem;
    @media (min-width: 768px) {
      font-size: 1.7rem;
    }
  }
}
.fv--sub img {
  filter: brightness(70%);
}
/* ----- intro ----- */
.intro {
  & h2 {
    margin-bottom: 0;
    white-space: pre-line;
  }
  & p {
    padding-top: 4.2rem;
    text-align: center;
  }
}
/* ----- about ----- */
.about {
  & ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8.7rem;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }
  }
  & img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 1rem;
  }
  & h3 {
    color: var(--color-black);
    font-size: 2.4rem;
    padding: 4.2rem 0 2rem;
    text-align: center;
  }
}
/* ----- plan ----- */
.plan {
  .plan__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8.7rem;
    margin-bottom: 8.7rem;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }
  }
  .plan__item {
    width: 100%;
    border-radius: 1rem;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
    padding: 4.2rem 2.4rem;
    text-align: center;
  }
  .plan__item--bg {
    background-color: #f3eeea;
  }
  .plan__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 1rem;
    @media (min-width: 768px) {
      width: 80%;
    }
  }
  .plan__item h3 {
    color: var(--color-black);
    font-size: 2rem;
    padding-top: 2.4rem;
  }
  .plan__option {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(4.2rem, 6vw, 8.7rem);
    background-color: #fafafa;
    border: 1px solid rgba(34, 34, 34, 0.15);
    border-radius: 1rem;
    padding: 4.2rem 2rem;
    @media (max-width: 374px) {
      font-size: 1.2rem;
      padding: 4.2rem 1rem;
    }
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
      padding: 4.2rem;
    }
  }
  .plan__option h3,
  .plan__option p {
    text-align: center;
  }
  .option__item h3 {
    color: var(--color-black);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .option__item {
    display: flex;
    flex-direction: column;
  }
  .plan__price {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: var(--color-accent-text);
    font-size: 4.2rem;
  }
  .button__wrap {
    padding-top: 8.7rem;
  }
}
.option__item ul,
.planDetail__list--sub {
  width: fit-content;
  margin: 0 auto;
}
.option__item li,
.planDetail__list--sub li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.option__item li::before,
.planDetail__list--sub li::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
  @media (max-width: 374px) {
    margin-right: 0;
  }
}
.planDetail__list--sub {
  background: #f7f7f7;
  border: 1px solid rgba(201, 168, 142, 0.3);
  box-shadow:
    46px 81px 37px rgba(34, 34, 34, 0.01),
    26px 45px 31px rgba(34, 34, 34, 0.03),
    12px 20px 23px rgba(34, 34, 34, 0.04),
    3px 5px 13px rgba(34, 34, 34, 0.05);
  border-radius: 1rem;
  padding: 4.2rem 2.4rem;
  @media (min-width: 768px) {
    padding: 4.2rem 8.7rem;
  }
}
.planDetail__list--sub li:not(:last-child) {
  margin-bottom: 3rem;
}
/* ----- process ----- */
.process {
  & h3 {
    color: var(--color-black);
    font-size: 2.4rem;
    @media (max-width: 374px) {
      font-size: 2rem;
    }
  }
  .process__list {
    width: fit-content;
    margin: 0 auto;
  }
  .process__list li:not(:last-child) {
    padding-bottom: 8.7rem;
    position: relative;
  }
  .process__list li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: calc(100% - 80px);
    background-color: var(--color-accent);
    position: absolute;
    top: 80px;
    left: 40px;
    z-index: 1;
  }
  .process__list li {
    display: flex;
    gap: clamp(1rem, 4vw, 5rem);
  }
  .process__list li > span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 3.5rem;
    font-weight: 400;
  }
}
/* ----- gallery ----- */
.gallery {
  width: 100%;
  height: 100%;
  background-image: url(../../img/bgi-op.png);
  background-position: center;
  background-size: cover;
  text-align: center;
  & p {
    color: var(--color-black);
    font-size: 1.7rem;
    margin-bottom: 4.2rem;
  }
}
/* ----- testimonials ----- */
.testimonials {
  .testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    @media (min-width: 768px) {
      flex-direction: row;
    }
  }
  .testimonials__list li {
    border: 1px solid rgba(201, 168, 142, 0.3);
    border-radius: 1rem;
    padding: 4.2rem 2.4rem;
  }
  .author {
    color: var(--color-accent-text);
    padding-top: 2.4rem;
    text-align: center;
  }
}
/* ----- contact ----- */
.contact__blobal {
  width: 100%;
  height: 100%;
  background-image: url(../../img/contact-bg.jpg);
  background-size: cover;
  .section__title {
    color: var(--color-white);
  }
  .cta__area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(4.2rem, 6vw, 8.7rem);
    @media (min-width: 768px) {
      flex-direction: row;
    }
  }
}
/* ----- footer ----- */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  .footer__contents--main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8.7rem;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .footer__contents h2 {
    color: var(--color-accent);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 2.4rem;
  }
  .sitemap {
    width: fit-content;
    @media (min-width: 768px) {
      margin: 0 auto;
    }
  }
  .sitemap ul li:not(:last-child) {
    margin-bottom: 2.4rem;
  }
  .footer__address {
    width: fit-content;
    @media (min-width: 768px) {
      margin-left: auto;
    }
  }
  .footer__copy {
    padding-top: 15rem;
    text-align: center;
  }
  .copyright {
    font-size: 1.2rem;
  }
}
/* ----- sub page ----- */
.bread-crumb {
  max-width: 1280px;
  width: 100%;
  padding: 4.2rem 2.4rem;
  margin: 0 auto;
  & ul {
    display: flex;
    gap: 2.4rem;
  }
}
.story--sub {
  .story__contents--sub {
    text-align: left;
    @media (min-width: 768px) {
      text-align: center;
    }
  }
  .story__emphasis {
    color: var(--color-accent-text);
    font-size: 2rem;
    padding: 4.2rem 0;
  }
}
.promise--sub {
  .promise__list--sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8.7rem;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }
  }
  .promise__list--sub li {
    border-radius: 1rem;
    padding: 4.2rem 2.4rem;
    background: var(--color-white);
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
  }
  .promise__list--sub h3 {
    color: var(--color-accent-text);
    font-size: 2rem;
    margin-bottom: 2.4rem;
    text-align: center;
  }
}
.process--sub {
  .process__item h3 {
    font-size: 1.7rem;
    font-weight: 500;
    @media (min-width: 768px) {
      font-size: 2.4rem;
      font-weight: 400;
    }
  }
}
.area--sub {
  text-align: center;
  .area__list--sub {
    background: #fafafa;
    border: 1px solid rgba(201, 168, 142, 0.3);
    border-radius: 1rem;
    padding: 4.2rem 2.4rem;
  }
  .area__list--sub > li:first-child {
    margin-bottom: 8.7rem;
  }
  .area__list--sub h3 {
    color: var(--color-accent-text);
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .main__area--sub {
    color: var(--color-black);
    font-size: 1.7rem;
  }
  .location__list--sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.4rem, 4vw, 5rem);
    max-width: 1028px;
    width: 100%;
    margin: 0 auto 4.2rem;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .location__list--sub li {
    width: 100%;
    background: #f9f9f9;
    border-radius: 1rem;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
    padding: 2.4rem 0;
  }
  .area__text--sub {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
  }
}
.information--sub {
  .information__list--sub {
    width: 100%;
    margin: 0 auto;
    @media (min-width: 768px) {
      width: fit-content;
    }
  }
  .information__item--sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 2rem 0;
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
      gap: 8.7rem;
    }
  }
  .information__item--sub:not(:last-child) {
    border-bottom: 1px solid rgba(201, 168, 142, 0.3);
  }
  .information__item--sub dt {
    width: fit-content;
    color: var(--color-black);
    font-size: 1.7rem;
    font-weight: 400;
  }
}
.plan--sub {
  .title__deco--sub {
    color: var(--color-accent-text);
    font-size: 2.4rem;
    font-weight: 500;
  }
  .plan__inner--sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    @media (min-width: 768px) {
      flex-direction: row;
      gap: 0;
    }
    &.plan__inner--popPlan {
      @media (min-width: 768px) {
        flex-direction: row-reverse;
      }
    }
  }
  .plan__contetns {
    width: 100%;
    @media (min-width: 768px) {
      width: 45%;
    }
  }
  .section__title--sub {
    color: var(--color-black);
    font-size: 2.4rem;
    font-weight: 500;
    padding: 2.4rem 0;
  }
  .price--sub {
    color: var(--color-accent-text);
    font-size: 5rem;
    margin-bottom: 3rem;
  }
  .price--sub span {
    color: var(--color-black-sub);
    font-size: 1.7rem;
  }
  .plan__thumbnail--sub video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    object-fit: contain;
  }
  .plan__thumbnail--sub ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    padding-top: 4.2rem;
  }
  .plan__thumbnail--sub img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
  }
}
.options--sub {
  text-align: center;
  .options__list--sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(4.2rem, 6vw, 8.7rem);
    @media (min-width: 768px) {
      grid-template-columns: 1fr 1fr;
    }
  }
  .options__price--sub {
    color: var(--color-accent-text);
    font-size: 3rem;
    font-weight: 500;
  }
  .options__list--sub li {
    background: #fafafa;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
    border-radius: 1rem;
    padding: 4.2rem 2.4rem;
  }
  .options__list--sub h3 {
    color: var(--color-black);
    font-size: 2rem;
    font-weight: 500;
    padding: 1.2rem 0 2rem;
  }
  .options__price--sub.noto-serif-jp {
    font-size: 2rem;
    font-weight: 400;
    line-height: 6rem;
  }
}
.contactLine--sub {
  text-align: center;
  .title__lead {
    margin-bottom: 8.7rem;
    text-align: left;
    @media (min-width: 768px) {
      text-align: center;
    }
  }
  .contactLine__contents--sub {
    max-width: 700px;
    width: 100%;
    background: #fafafa;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
    border-radius: 1rem;
    padding: 8.7rem 2rem;
    margin: 0 auto;
  }
  .contactLine__contents--sub img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .line--id {
    color: var(--color-black);
    font-size: 2rem;
    font-weight: 500;
    padding: 2.4rem;
    margin-bottom: 4.2rem;
  }
  .button__wrap .button--line {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 4.2rem;
    @media (max-width: 374px) {
      gap: 0.3rem;
      font-size: 1.4rem;
    }
  }
  .button__wrap .button--line::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    background-image: url(../../img/maps_ugc.svg);
    background-repeat: no-repeat;
  }
  .faq__link {
    letter-spacing: 0.1em;
    @media (max-width: 374px) {
      letter-spacing: 0;
    }
  }
  .faq__link a {
    display: inline-block;
    border-bottom: 1px solid var(--color-black);
    color: var(--color-black);
    padding: 0 0.6rem 0;
    @media (max-width: 374px) {
      padding: 0 0.2rem 0;
    }
  }
}
.contactForm--sub {
  .title__lead {
    text-align: left;
    margin-bottom: 8.7rem;
    @media (min-width: 768px) {
      text-align: center;
    }
  }
  .sp-span {
    display: inline;
    @media (max-width: 374px) {
      display: block;
      margin-left: 2rem;
    }
  }
}
.form__wrap--sub {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.form__inner--sub {
  display: flex;
  flex-direction: column;
}
.form__inner--select {
  width: 100%;
  @media (min-width: 768px) {
    max-width: 300px;
  }
}
.form__inner--sub:not(:last-child) {
  margin-bottom: 4.2rem;
}
label {
  color: var(--color-black);
}
.my-label {
  margin-bottom: 0.8rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  display: block;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.2rem 2.4rem;
}
select {
  -webkit-appearance: auto;
  appearance: auto;
}
select::-ms-expand {
  display: block;
}
.form-chekbox-box {
  text-align: left;
  margin-bottom: 8.7rem;
  @media (min-width: 768px) {
    text-align: center;
  }
}
.privacypolicy__linik {
  border-bottom: 1px solid var(--color-black);
}
::placeholder {
  color: #999999;
}
.required {
  display: inline-block;
  color: #c24a4a;
  font-size: 2rem;
  font-weight: 600;
  padding-left: 0.3rem;
}
.faq--sub .faq__list--sub {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.faq--sub .faq__list--sub li:not(:last-child) {
  margin-bottom: 4.2rem;
}
.faq--sub h3,
.faq--sub p {
  padding: 2.41em 1.4rem;
  @media (min-width: 768px) {
    padding: 2.4rem 4.2rem;
  }
}
.faq--sub h3 {
  display: flex;
  gap: 0.6rem;
  background-color: var(--color-form-bg);
  border-radius: 1rem 1rem 0 0;
  border: 1px solid var(--color-border);
  color: var(--color-black);
  font-size: 1.7rem;
}
.faq--sub h3::before {
  content: "Q:";
  flex-shrink: 0;
}
.faq--sub p {
  display: flex;
  gap: 0.6rem;
  background-color: var(--color-white);
  border-radius: 0 0 1rem 1rem;
  border: 1px solid var(--color-border);
  border-top: none;
}
.faq--sub p::before {
  content: "A:";
  flex-shrink: 0;
}
.blog-single {
  & h2 {
    color: var(--color-black);
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.my-category {
  max-width: 1280px;
  width: 100%;
  padding: 8.7rem 2.4rem;
  margin: 0 auto;
  overflow-x: hidden;
  & ul {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 1.2rem;
    scrollbar-width: none;
    @media (min-width: 768px) {
      scrollbar-width: thin;
      gap: 2.4rem;
    }
  }
}
.my-category ul::-webkit-scrollbar {
  scrollbar-width: none;
  @media (min-width: 768px) {
    scrollbar-width: thin;
  }
}
.my-category ul li {
  flex-shrink: 0;
}
.my-category ul li a,
.my-category .current {
  max-width: 150px;
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--color-accent-text);
  border-radius: 9999px;
  color: var(--color-accent-text);
  font-weight: 400;
  padding: 0.8rem 1.2rem;
  text-align: center;
  flex-shrink: 0;
  @media (min-width: 768px) {
    padding: 0.8rem 1.2rem;
  }
}
.my-category .current {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
}
.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8.7rem;
  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  & article {
    background: #fafafa;
    border-radius: 1rem;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
  }
  .posts__link--thumbnail {
    display: inline-block;
    aspect-ratio: 2 / 1;
  }
  & img {
    width: 100%;
    height: 100%;
    border-radius: 1rem 1rem 0 0;
    object-fit: cover;
  }
  .posts__contents {
    padding: 4.2rem 2.4rem;
  }
  .category__link {
    background-color: var(--color-white);
    border-radius: 9999px;
    color: var(--color-black-sub);
    font-size: 1.2rem;
    padding: 1.2rem;
    &.locations {
      background-color: #e8f4f8;
      color: #4a90a4;
    }
    &.shooting-tips {
      background-color: #f0e8ff;
      color: #8b5a9f;
    }
    &.reviews {
      background-color: #e8f5e8;
      color: #388e3c;
    }
    &.plans {
      background-color: #fff3e0;
      color: #e65100;
    }
  }
  & h2 {
    color: var(--color-black);
    font-size: 2rem;
    padding: 2rem 0 0.6rem;
  }
  .date {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .posts__link--text {
    display: block;
    color: var(--color-accent-text);
    font-weight: 600;
    padding-top: 0.6rem;
  }
}
.pagination--sub {
  & .nav-links {
    width: fit-content;
    display: flex;
    gap: 2.4rem;
    padding-top: 8.7rem;
    margin: 0 auto;
    @media (max-width: 374px) {
      gap: 1rem;
    }
  }
  & a,
  & span {
    width: auto;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 0.8rem;
    font-size: 1.4rem;
    padding: 0 1.2rem;
    &.current {
      background-color: var(--color-accent);
      border: 1px solid var(--color-accent);
      color: var(--color-white);
      font-weight: 600;
    }
  }
}
.pagination--detail {
  padding-top: 8.7rem;
}
.pagination--detail ul {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.pagination--detail .back {
  grid-column: 1;
  justify-self: start;
}
.pagination--detail li:not(.back):not(.next) {
  grid-column: 2;
  justify-self: center;
}
.pagination--detail .next {
  grid-column: 3;
  justify-self: end;
}
.popularPosts--sub {
  .wpp-list {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    @media (min-width: 1025px) {
      flex-direction: row;
    }
  }
  & li {
    display: flex;
    gap: 2rem;
    background: #fafafa;
    box-shadow:
      46px 81px 37px rgba(34, 34, 34, 0.01),
      26px 45px 31px rgba(34, 34, 34, 0.03),
      12px 20px 23px rgba(34, 34, 34, 0.04),
      3px 5px 13px rgba(34, 34, 34, 0.05);
    border-radius: 1rem;
    padding: 2rem;
  }
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  & h3 {
    color: var(--color-black);
  }
}
.yen {
  display: inline-block;
  padding-right: 0.6rem;
}
.wpcf7-spinner {
  display: block;
}
.content___title--pp {
  color: var(--color-black);
  font-size: 2rem;
}