@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Serif+JP:wght@200;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@400;500&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #f9f5ed;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 2.5;
  color: #000;
  font-weight: 200;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 2.2;
  }
}
@media screen and (max-width: 799px) {
  .is-drawerActive body {
    overflow: hidden;
  }
}

a {
  color: #000;
}

dt {
  font-weight: 200;
}

img {
  width: 100%;
  height: auto;
  display: block;
}
img:not(.--no-b-rad) {
  border-radius: 5px;
}

.l-main {
  width: 100%;
}
.--always + .l-main {
  padding-top: 130px;
}

.section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
}

.l-footer {
  position: relative;
  background-color: #7aa744;
  color: #ffffff;
  padding: clamp(75px, 9.0277777778vw, 130px) 0;
}
.l-footer a {
  color: #ffffff;
}
.l-footer__title {
  margin-bottom: 50px;
  width: 22%;
  min-width: 120px;
}
.l-footer-inner {
  display: flex;
  gap: 30%;
}
@media screen and (max-width: 499px) {
  .l-footer-inner {
    flex-direction: column;
  }
}
.l-footer-info {
  font-size: clamp(1.2rem, 1.1111111111vw, 1.6rem);
}
.l-footer-info__dsc {
  line-height: 1.7;
  margin-bottom: 40px;
}
.l-footer-info__list {
  line-height: 1.8;
}
@media screen and (max-width: 499px) {
  .l-footer-info__list {
    margin-bottom: 45px;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.l-header__wrap {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (max-width: 499px) {
  .l-header__wrap {
    padding: 8rem 0;
  }
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 499px) {
  .l-header__inner {
    justify-content: center;
  }
}
.l-header__site-title__logo {
  width: 32%;
  min-width: 160px;
}

.l-header-fixed {
  width: 100%;
  background-color: #f9f5ed;
}
.l-header-fixed__wrap {
  width: 95%;
  margin-left: auto;
}
@media screen and (max-width: 799px) {
  .l-header-fixed__wrap {
    width: 95%;
    padding: 1rem 0;
    margin: 0 0 0 auto;
  }
}
.l-header-fixed__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header-fixed__site-title {
  min-width: 170px;
}
@media screen and (max-width: 799px) {
  .l-header-fixed__site-title {
    width: 25%;
    min-width: 120px;
  }
}
.l-header-fixed__site-title img {
  width: 20%;
  min-width: 160px;
}
@media screen and (max-width: 799px) {
  .l-header-fixed__site-title img {
    min-width: 110px;
  }
}
.l-header-fixed__reserve {
  position: absolute;
  right: calc(5vw + 7.5rem);
  background-color: #7aa744;
  padding: 1rem;
}
.l-header-fixed__reserve a {
  color: #ffffff;
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(-101%);
  transition: transform 0.4s;
}
#fixed-header.--always {
  transform: translateY(-1%) !important;
}
#fixed-header.is-show {
  transform: translateY(-1%);
}

@media screen and (min-width: 800px) {
  .l-header-right {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .l-header-right {
    display: flex;
    align-items: center;
  }
  .l-header-right__reserve button {
    font-size: 1.3rem;
    line-height: 1;
    color: #ffffff;
    background-color: #7aa744;
    padding: 0.4em 1em;
    letter-spacing: 0.08em;
  }
}

.l-inner {
  max-width: 1040px;
  margin: auto;
  padding: 0 50px;
  box-sizing: content-box;
}
@media screen and (max-width: 799px) {
  .l-inner {
    padding: 0 30px;
  }
}
.l-inner.--product-inner {
  max-width: 800px;
}
@media screen and (max-width: 799px) {
  .l-inner.--product-inner {
    padding: 0 30px;
  }
}

.l-reserve__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, visibility 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
}
.l-reserve__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.l-reserve__modal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(43, 58, 59, 0.9);
}
.l-reserve__modal__wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.l-reserve__modal__out {
  width: 100vw;
  height: 100vh;
  position: absolute;
}
.l-reserve__modal__inner {
  width: 90%;
  padding: 12.5rem 5vw;
  position: relative;
  background-color: #f9f5ed;
  border-radius: 5px;
}
.l-reserve__modal__close {
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 10px;
  top: 10px;
  overflow: hidden;
  background-color: #f6efe1;
  border-radius: 5px;
}
.l-reserve__modal__close::before, .l-reserve__modal__close::after {
  content: "";
  width: 80%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #7aa744;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-reserve__modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-reserve__modal__text {
  text-align: center;
  padding-top: 20px;
}
.l-reserve__modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding-top: 20px;
}
@media screen and (max-width: 799px) {
  .l-reserve__modal__body {
    flex-direction: column;
  }
}
.l-reserve__modal__detail {
  background-color: #f6efe1;
  border-radius: 5px;
  padding: 1rem 6rem;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .l-reserve__modal__detail {
    width: 100%;
  }
}

.l-loading {
  background-color: #f9f5ed;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
.l-loading__img {
  width: 20%;
  min-width: 200px;
}

.section__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.section__txt {
  font-size: 4.4444444444vw;
}
.section__txt p {
  color: #fff;
}
.section__txt p, .section__txt::before, .section__txt::after {
  position: absolute;
  mix-blend-mode: overlay;
  text-align: center;
}
.section:last-child .section__txt p, .section:last-child .section__txt::before, .section:last-child .section__txt::after {
  mix-blend-mode: normal;
  opacity: 0.7;
}
#gatepark .section__txt p, #gatepark .section__txt::before, #gatepark .section__txt::after {
  bottom: 65%;
  left: 3%;
  width: 97%;
}
#river .section__txt p, #river .section__txt::before, #river .section__txt::after {
  bottom: 70%;
  left: 0%;
  width: 50%;
}
#castle .section__txt p, #castle .section__txt::before, #castle .section__txt::after {
  top: 58%;
  left: 70%;
  width: 30%;
}
#tram .section__txt p, #tram .section__txt::before, #tram .section__txt::after {
  bottom: 7%;
  left: 6%;
  text-align: left;
}
#road .section__txt p, #road .section__txt::before, #road .section__txt::after {
  top: calc(50% - 0.5em);
  left: 0;
  width: 100%;
}
.section__txt::before, .section__txt::after {
  opacity: 0.6;
}
.section__txt[data-repeat="1"]::before, .section__txt[data-repeat="2"]::before {
  content: attr(data-txt);
}
.section__txt[data-repeat="2"]::after {
  content: attr(data-txt);
}
.animated .section#gatepark {
  height: 200vh;
  height: 200dvh;
}
.animated .section__inner {
  position: fixed;
}
.animated .section:not(:first-child) .section__inner {
  opacity: 0;
}
.animated .section__inner p span {
  opacity: 0;
}

.o-access {
  padding-top: clamp(80px, 13.8888888889vw, 200px);
}
.o-access-inner {
  display: grid;
  grid-template-columns: 400fr 500fr;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 799px) {
  .o-access-inner {
    max-width: 700px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 500fr 500fr;
  }
}
@media screen and (max-width: 499px) {
  .o-access-inner {
    grid-template-rows: auto 300fr 500fr;
  }
}
.o-access__map {
  grid-area: 1/2/3/3;
}
.o-access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 799px) {
  .o-access__map {
    grid-area: initial;
  }
}
.o-access__dsc {
  font-size: 90%;
  padding-top: 40px;
}
@media screen and (max-width: 799px) {
  .o-access__dsc {
    padding-top: 30px;
  }
}
@media screen and (max-width: 374px) {
  .o-access__dsc {
    line-height: 1.75;
  }
}
.o-access-table__row {
  display: flex;
  padding-bottom: 15px;
}
@media screen and (max-width: 799px) {
  .o-access-table__row {
    gap: 3%;
  }
}
@media screen and (max-width: 374px) {
  .o-access-table__row {
    flex-direction: column;
    padding-bottom: 25px;
  }
}
.o-access-table__term {
  width: 25%;
}
@media screen and (max-width: 374px) {
  .o-access-table__term {
    width: 100%;
  }
}
.o-access-table__def {
  width: 75%;
}
@media screen and (max-width: 374px) {
  .o-access-table__def {
    width: 100%;
  }
}
.o-access-table__def.--adress {
  line-height: 2;
}
.o-access__text {
  line-height: 1.8;
  padding-top: 25px;
}
@media screen and (max-width: 499px) {
  .o-access__text {
    padding-top: 0px;
  }
}

.o-bg {
  height: 400px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 799px) {
  .o-bg {
    height: 300px;
  }
}
.o-bg__img {
  height: 140%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.o-bg__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.o-bg.--home-mid {
  margin-top: clamp(90px, 17.3611111111vw, 250px);
  z-index: 3;
}
.o-bg.--home-bottom {
  height: 30vw;
  margin-top: 90px;
  -o-object-position: top center;
     object-position: top center;
}

.o-main-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.o-main-visual__img img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
body.about .o-main-visual__img img {
  height: 90vh;
}
@media screen and (max-width: 799px) {
  .o-main-visual__img img {
    height: 90vh;
    -o-object-position: 45% center;
       object-position: 45% center;
  }
}
.o-main-visual-scroll {
  position: absolute;
  bottom: 50px;
  right: 50%;
  transform: translateX(50%);
  text-align: center;
  width: 50px;
  height: 90px;
  margin: 0 auto;
  color: #ffffff;
}
.o-main-visual span {
  font-size: 2rem;
}

.o-nav__items {
  display: flex;
  font-size: clamp(1.5rem, 2.0833333333vw, 2.7rem);
}
@media screen and (max-width: 499px) {
  .o-nav__items {
    display: none;
  }
}
.o-nav__item {
  margin-left: clamp(15px, 3.4722222222vw, 50px);
}
.o-nav__item a {
  color: #ffffff;
  position: relative;
}
.o-nav__item a::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  top: -15px;
  left: calc(50% - 5px);
  /*不透明度0で非表示*/
  opacity: 0;
  /*下方向へ50%移動*/
  transform: translateY(50%);
  /*アニメーションの速度設定*/
  transition: all 0.6s ease;
}
.o-nav__item a:hover::after {
  /*不透明度1で表示*/
  opacity: 1;
  /*0位置に移動*/
  transform: translateY(0);
}

@media screen and (max-width: 799px) {
  .o-nav-fixed {
    display: flex;
    align-items: center;
    transition: -webkit-clip-path 0.6s ease-in-out;
    transition: clip-path 0.6s ease-in-out;
    transition: clip-path 0.6s ease-in-out, -webkit-clip-path 0.6s ease-in-out;
    position: absolute;
    top: 67px;
    right: 0;
    width: 100%;
    height: calc(100vh - 65px);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    background-color: #7aa744;
  }
  .is-drawerActive .o-nav-fixed {
    -webkit-clip-path: inset(0 0 0 0%);
            clip-path: inset(0 0 0 0%);
    background-color: #7aa744;
  }
}
.o-nav-fixed__items {
  display: flex;
  align-items: center;
  font-size: 2.1rem;
}
@media screen and (max-width: 799px) {
  .o-nav-fixed__items {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}
.o-nav-fixed__item {
  padding-left: 30px;
  font-size: clamp(1.6rem, 1.4583333333vw, 2.1rem);
}
@media screen and (max-width: 799px) {
  .o-nav-fixed__item {
    line-height: 1.5;
    font-size: 22px;
    padding-bottom: 40px;
    padding-left: unset;
  }
}
@media screen and (max-width: 799px) {
  .o-nav-fixed__item a {
    color: #ffffff;
  }
}
.o-nav-fixed__item a:hover {
  color: #93b965;
  transition: 0.3s;
}
@media screen and (max-width: 799px) {
  .o-nav-fixed__item.--rsv {
    margin-left: 0;
    padding: 0;
    background-color: unset;
  }
}
.o-nav-fixed__item.--rsv button {
  padding: 15px 50px;
  background-color: #f6efe1;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.5s;
}
@media screen and (max-width: 799px) {
  .o-nav-fixed__item.--rsv button {
    background-color: unset;
    padding: unset;
    color: #ffffff;
  }
}
.o-nav-fixed__item.--rsv button:hover {
  background-color: #7aa744;
  color: #ffffff;
  border-bottom: unset;
}
.o-nav-fixed__dsc {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 799px) {
  .o-nav-fixed__dsc {
    display: none;
  }
}
.o-nav-fixed__reserve {
  font-size: clamp(1rem, 0.8333333333vw, 1.2rem);
}

.o-nav-footer {
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  margin-bottom: 15px;
}

.o-product {
  border-top: 1px solid #e7e4dd;
  margin-top: 9vw;
  padding-top: clamp(60px, 10.4166666667vw, 150px);
}
.o-product-inner {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 799px) {
  .o-product-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.o-product__more {
  align-self: flex-end;
  text-align: center;
  width: 50%;
  margin-bottom: clamp(50px, 6.9444444444vw, 100px);
}
@media screen and (max-width: 799px) {
  .o-product__more {
    margin-bottom: 0;
    align-self: center;
  }
}
.o-product__more a {
  font-size: clamp(1.6rem, 1.6666666667vw, 2.4rem);
  position: relative;
  width: 20%;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}
.o-product__more a:hover {
  color: #93b965;
}
.o-product__img {
  display: flex;
  align-items: center;
  width: 40%;
}
@media screen and (max-width: 799px) {
  .o-product__img {
    width: 60%;
    min-width: 250px;
  }
}

.o-style {
  padding-top: clamp(90px, 11.8055555556vw, 170px);
}
.o-style-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 3.4722222222vw, 50px);
  padding-top: clamp(40px, 4.1666666667vw, 60px);
}
@media screen and (max-width: 699px) {
  .o-style-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.o-style-list img {
  aspect-ratio: 594/728;
}

.o-ttl-section {
  font-size: clamp(3.2rem, 2.7777777778vw, 4rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #93b965;
}
@media screen and (max-width: 1139px) {
  .o-ttl-section {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 799px) {
  .o-ttl-section {
    text-align: center;
    margin-bottom: 1em;
  }
}
.o-ttl-section.--c-white {
  color: #fff;
}
.o-ttl-section.--home-menu {
  transform: translateX(-0.7em);
  font-size: clamp(4rem, 4.4444444444vw, 6.4rem);
  font-size: 6.4rem;
  position: absolute;
  top: calc((100% - 1.25em) / 2 - 2em);
  left: 0;
}
@media screen and (max-width: 799px) {
  .o-ttl-section.--home-menu {
    transform: translateY(min(-2.9vw, -85px));
    font-size: min(11vw, 5.5rem);
    top: 0;
    left: max(-3.1vw, -0.6em);
  }
}
.o-ttl-section.--ta-center {
  text-align: center;
  margin-bottom: 0;
}
.o-ttl-section.--side-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(60px, 6.25vw, 90px);
  gap: 0.5em;
}
.o-ttl-section__txt {
  flex-shrink: 0;
  white-space: no-wrap;
}

.o-line {
  width: 1px;
  height: 100px;
  background-color: #93b965;
  position: absolute;
}
.o-line.--animation {
  -webkit-clip-path: inset(0 -4px 100% -4px);
          clip-path: inset(0 -4px 100% -4px);
  transition: -webkit-clip-path 4s;
  transition: clip-path 4s;
  transition: clip-path 4s, -webkit-clip-path 4s;
}
.o-line.--shown {
  -webkit-clip-path: inset(0 -4px 0% -4px);
          clip-path: inset(0 -4px 0% -4px);
}
.o-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -3.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #93b965;
  transition: bottom 4s;
}
.o-line.--h {
  -webkit-clip-path: inset(-4px 100% -4px 0);
          clip-path: inset(-4px 100% -4px 0);
}
.o-line.--h.--shown {
  -webkit-clip-path: inset(-4px 0% -4px 0);
          clip-path: inset(-4px 0% -4px 0);
}
.o-line.--h::after {
  bottom: -3.5px;
  transition: right 4s;
  right: 0;
}
.o-line.--mv-scroll {
  background-color: #fff;
  height: 50px;
  animation: 3s arrow-animation infinite ease-in-out;
}
@keyframes arrow-animation {
  0% {
    opacity: 0;
    height: 1em;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 3em;
  }
}
.o-line.--mv-scroll::after {
  background-color: #ffffff;
  bottom: 0;
}
.o-line.--home-about-top {
  height: clamp(400px, 52vw, 600px);
  bottom: 0;
  left: clamp(-32em, -44vw, -1em);
}
@media screen and (max-width: 799px) {
  .o-line.--home-about-top {
    display: none;
  }
}
.o-line.--home-about-middle {
  height: clamp(18em, 33vw, 29em);
  top: 100%;
  right: 0;
}
@media screen and (max-width: 799px) {
  .o-line.--home-about-middle {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .o-line.--home-about-bottom {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .o-line.--home-about-bottom {
    bottom: 1em;
    right: 7em;
    height: 1px;
    width: 30em;
  }
}
.o-line.--home-product {
  bottom: 0;
  right: 0;
  height: 1px;
  width: 100%;
}
.o-line.--side-right, .o-line.--side-left {
  content: "";
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #93b965;
}
.o-line.--side-right::after, .o-line.--side-left::after {
  bottom: -3.5px;
}
.o-line.--side-left::after {
  left: -3.5px;
}

@media screen and (max-width: 799px) {
  .o-hamburger {
    position: relative;
    width: 48px;
    height: 48px;
    box-shadow: 0 0 2rem transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
  }
  .o-hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 1px;
    background-color: #333333;
    transition: inherit;
  }
  .o-hamburger__line::before, .o-hamburger__line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    transition: inherit;
  }
  [aria-expanded=true] .o-hamburger__line::before, [aria-expanded=true] .o-hamburger__line::after {
    top: 0;
    background-color: #333333;
  }
  .o-hamburger__line::before {
    top: -5px;
  }
  [aria-expanded=true] .o-hamburger__line::before {
    transform: rotate(45deg);
  }
  .o-hamburger__line::after {
    top: 5px;
  }
  [aria-expanded=true] .o-hamburger__line::after {
    transform: rotate(-45deg);
  }
  [aria-expanded=true] .o-hamburger__line {
    background-color: transparent;
  }
}

.o-button {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.p-home-about__items {
  padding-top: clamp(90px, 11.8055555556vw, 170px);
}
.p-home-about__item {
  display: grid;
}
.p-home-about__item.--top {
  grid-template-columns: 100fr 400fr 500fr;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 799px) {
  .p-home-about__item.--top {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }
}
.p-home-about__item.--middle {
  grid-template-columns: 310fr 300fr;
  align-items: center;
  padding-top: clamp(65px, 11.8055555556vw, 170px);
}
@media screen and (max-width: 799px) {
  .p-home-about__item.--middle {
    grid-template-columns: 1fr;
    padding-left: 26%;
  }
}
.p-home-about__item.--bottom {
  grid-template-columns: 130fr 250fr 260fr;
  align-items: center;
  padding-top: clamp(80px, 11.8055555556vw, 170px);
}
@media screen and (max-width: 799px) {
  .p-home-about__item.--bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.--top .p-home-about__ttl {
  align-self: flex-end;
  z-index: 2;
  grid-area: 1/2/2/3;
  padding-bottom: 1em;
  line-height: 1.3;
  font-size: clamp(2rem, 3vw, 3rem);
}
@media screen and (max-width: 799px) {
  .--top .p-home-about__ttl {
    grid-area: initial;
  }
}
.--top .p-home-about__img {
  position: relative;
  grid-area: 1/3/3/4;
}
@media screen and (max-width: 799px) {
  .--top .p-home-about__img {
    grid-area: initial;
    width: 70%;
    min-width: 290px;
  }
}
@media screen and (max-width: 369px) {
  .--top .p-home-about__img {
    width: 100%;
  }
}
.--top .p-home-about__img img {
  width: calc(100% + 50px);
  box-shadow: clamp(-140px, -9.7222222222vw, -50px) 50px 0px 0px rgb(246, 239, 225);
}
@media screen and (max-width: 799px) {
  .--top .p-home-about__img img {
    width: 100%;
    box-shadow: 30px 30px 0px 0px rgb(246, 239, 225);
  }
}
.--middle .p-home-about__img img {
  position: relative;
  z-index: 2;
  border-radius: 0 5px 5px 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: clamp(100% + 50px, 100% + (100vw - 1040px) / 2, 100% + 200px);
  margin-left: clamp(-200px, -1 * (100vw - 1040px) / 2, -1 * 50px);
  -o-object-position: left;
     object-position: left;
  box-shadow: clamp(50px, 9.7222222222vw, 140px) 50px 0px 0px rgb(246, 239, 225);
}
@media screen and (max-width: 799px) {
  .--middle .p-home-about__img img {
    border-radius: 5px 0 0 5px;
    box-shadow: -30px 30px 0px 0px rgb(246, 239, 225);
    margin-left: 0;
    width: clamp(100% + 30px, 100% + (100vw - 770px) / 2, 100% + 60px);
    min-height: 120px;
  }
}
@media screen and (max-width: 799px) {
  .--bottom .p-home-about__img {
    width: 60%;
    min-width: 220px;
  }
}
.--bottom .p-home-about__img img {
  width: calc(100% + 50px);
  box-shadow: clamp(-140px, -9.7222222222vw, -50px) 50px 0px 0px rgb(246, 239, 225);
}
@media screen and (max-width: 799px) {
  .--bottom .p-home-about__img img {
    width: 100%;
    box-shadow: -30px 30px 0px 0px rgb(246, 239, 225);
  }
}
@media screen and (max-width: 799px) {
  .p-home-about__dsc {
    margin-top: 1.3em;
    line-height: 2;
    letter-spacing: 0.25em;
  }
}
.--top .p-home-about__dsc {
  position: relative;
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 799px) {
  .--top .p-home-about__dsc {
    grid-area: initial;
  }
}
.--middle .p-home-about__dsc {
  position: relative;
  z-index: 3;
  padding-left: clamp(30px, 4.8611111111vw, 70px);
}
@media screen and (max-width: 799px) {
  .--middle .p-home-about__dsc {
    padding-left: 0;
  }
}
.--bottom .p-home-about__dsc {
  grid-column: 2;
  align-self: flex-end;
  margin-bottom: 40%;
}
@media screen and (max-width: 799px) {
  .--bottom .p-home-about__dsc {
    width: 60%;
    min-width: 220px;
    position: relative;
    align-self: normal;
    margin-bottom: 0;
  }
  .--bottom .p-home-about__dsc .--bbb {
    display: block;
    margin-right: -1em;
  }
}
.--bottom .p-home-about__dsc.--area {
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-home-about__dsc .aaa {
    display: none;
  }
}
.--bottom .p-home-about__more {
  position: absolute;
  right: 1em;
  bottom: -9em;
}
@-moz-document url-prefix() {
  .--bottom .p-home-about__more {
    bottom: -13em;
    right: -2.5em;
  }
}
@media screen and (max-width: 799px) {
  .--bottom .p-home-about__more {
    display: block;
    position: relative;
    right: unset;
    bottom: unset;
    text-align: right;
    margin-top: clamp(3rem, 6.25vw, 5.5rem);
  }
}
.p-home-about__more a {
  font-size: clamp(1.6rem, 1.6666666667vw, 2.4rem);
  transition: 0.3s;
}
.p-home-about__more a:hover {
  color: #93b965;
}
@media screen and (max-width: 799px) {
  .p-home-about__more a {
    display: inline-block;
    transform: translateX(130%);
  }
}
@media screen and (max-width: 374px) {
  .p-home-about__more a {
    transform: unset;
  }
}
.p-home-about__curved-line::after {
  content: "";
  position: absolute;
  bottom: -3.5px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #93b965;
}
.--bottom .p-home-about__curved-line.--left {
  width: 13em;
  height: clamp(25em, 70vw, 40em);
  display: block;
  border-bottom-left-radius: 20px;
  position: absolute;
  bottom: 1.1em;
  left: 0;
  transform: translateX(calc(-100% - 20px));
  border-bottom: 1px solid #93b965;
  border-left: 1px solid #93b965;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
  animation: moveHomeAboutBottomLineReverse 4s ease 0s 1 forwards;
  transition: -webkit-clip-path 4s;
  transition: clip-path 4s;
  transition: clip-path 4s, -webkit-clip-path 4s;
}
.--bottom .p-home-about__curved-line.--left.--shown {
  animation: moveHomeAboutBottomLine 4s ease 0s 1 forwards;
}
@keyframes moveHomeAboutBottomLine {
  0% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
            clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 0 calc(100% + 4px));
            clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 0 calc(100% + 4px));
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 100% calc(100% + 4px));
            clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 100% calc(100% + 4px));
  }
}
@keyframes moveHomeAboutBottomLineReverse {
  0% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 100% calc(100% + 4px));
            clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 100% calc(100% + 4px));
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 0 calc(100% + 4px));
            clip-path: polygon(100% 0, 0 0, 0 calc(100% + 4px), 0 calc(100% + 4px));
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
            clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
  }
}
@media screen and (max-width: 799px) {
  .--bottom .p-home-about__curved-line.--left {
    display: none;
  }
}

.p-home-menu {
  background-color: #7aa744;
  padding-top: clamp(70px, 9.375vw, 135px);
  padding-bottom: 140px;
  color: #ffffff;
}
@media screen and (max-width: 799px) {
  .p-home-menu {
    overflow: hidden;
  }
}
.p-home-menu__inner {
  display: flex;
}
@media screen and (max-width: 799px) {
  .p-home-menu__inner {
    flex-direction: column;
    align-items: center;
    gap: 9vh;
  }
}
.p-home-menu__img {
  max-width: 470px;
  width: 50%;
  min-width: 280px;
  box-shadow: -30px 30px 0px 0px rgba(83, 127, 28, 0.4);
}
@media screen and (max-width: 799px) {
  .p-home-menu__img {
    max-width: 360px;
    width: 90%;
  }
}
.p-home-menu__info {
  display: grid;
  place-items: center;
  flex-grow: 1;
  position: relative;
}
@media screen and (max-width: 799px) {
  .p-home-menu__info {
    justify-content: flex-end;
    padding-right: 40px;
  }
}
.p-home-menu__info-inner {
  position: relative;
}
.p-home-menu__more {
  position: absolute;
  bottom: -8em;
  left: 0;
  background: 255;
}
@media screen and (max-width: 799px) {
  .p-home-menu__more {
    bottom: -4em;
  }
}
.p-home-menu__more a {
  color: #ffffff;
  font-size: clamp(1.6rem, 1.875vw, 2.7rem);
}
.p-home-menu__curved-line {
  width: min(18vw, 10em);
  height: clamp(500px, 55vw, 650px);
  display: block;
  border-bottom-right-radius: 20px;
  position: absolute;
  bottom: 1.1em;
  right: 0;
  transform: translateX(calc(100% + 20px));
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
  animation: moveHomeMenuLineReverse 4s ease 0s 1 forwards;
  transition: -webkit-clip-path 4s;
  transition: clip-path 4s;
  transition: clip-path 4s, -webkit-clip-path 4s;
}
.p-home-menu__curved-line.--shown {
  animation: moveHomeMenuLine 4s ease 0s 1 forwards;
}
@keyframes moveHomeMenuLine {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% + 4px) calc(100% + 4px), calc(100% + 4px) calc(100% + 4px));
            clip-path: polygon(0 0, 100% 0, calc(100% + 4px) calc(100% + 4px), calc(100% + 4px) calc(100% + 4px));
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% + 4px) calc(100% + 4px), 0 calc(100% + 4px));
            clip-path: polygon(0 0, 100% 0, calc(100% + 4px) calc(100% + 4px), 0 calc(100% + 4px));
  }
}
@keyframes moveHomeMenuLineReverse {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0);
  }
}
@media screen and (max-width: 799px) {
  .p-home-menu__curved-line {
    width: 20em;
    height: 48em;
  }
}
.p-home-menu__curved-line::after {
  content: "";
  position: absolute;
  bottom: -3.5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}

.p-about-concept {
  padding-top: clamp(55px, 6.25vw, 90px);
  max-width: 410px;
  margin: 0 auto;
}
@media screen and (max-width: 499px) {
  .p-about-concept {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.p-about-concept__heading {
  color: #93b965;
  font-size: clamp(3rem, 3.3333333333vw, 4.8rem);
  line-height: 1;
  padding-bottom: 1em;
}
.p-about-concept__title {
  font-size: clamp(2rem, 1.9444444444vw, 2.8rem);
  line-height: 1;
  padding-bottom: clamp(30px, 3.4722222222vw, 45px);
}
.p-about-concept__dsc {
  padding-bottom: clamp(40px, 3.4722222222vw, 50px);
}
.p-about-concept__dsc:last-child {
  padding-bottom: unset;
}

.p-about-intro {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  margin-top: clamp(60px, 7.6388888889vw, 110px);
  display: flex;
}
@media screen and (max-width: 799px) {
  .p-about-intro {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
.p-about-intro__img {
  width: 50%;
}
@media screen and (max-width: 799px) {
  .p-about-intro__img {
    width: 100%;
    min-width: 375px;
  }
}
.p-about-intro__img img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-intro__info {
  width: 50%;
  background-color: #f6efe1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 799px) {
  .p-about-intro__info {
    width: 100%;
    min-width: 375px;
  }
}
.p-about-intro__info-inner {
  padding: 0 16%;
}
@media screen and (max-width: 799px) {
  .p-about-intro__info-inner {
    padding: 8% 16%;
  }
}
@media screen and (max-width: 499px) {
  .p-about-intro__info-inner {
    padding: 4rem 30px;
  }
}
.p-about-intro-name {
  font-size: clamp(1.4rem, 1.3888888889vw, 2rem);
  color: #93b965;
  line-height: 1;
  margin-bottom: 10px;
}
.p-about-intro-name__ja {
  font-size: clamp(1.8rem, 1.8055555556vw, 2.6rem);
  line-height: 1;
}
.p-about-intro-name__en {
  font-size: clamp(1.4rem, 1.3888888889vw, 2rem);
  padding-left: 40px;
}
.p-about-intro__dsc {
  padding-top: clamp(20px, 2.7777777778vw, 40px);
}

.p-menu {
  padding-top: clamp(55px, 6.25vw, 90px);
}
.p-menu-list {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
@media screen and (max-width: 799px) {
  .p-menu-list {
    max-width: 520px;
    margin: 0 auto;
    flex-direction: column;
    gap: 20px;
  }
}
.p-menu-list.--first {
  padding-top: 0;
}
.p-menu-name {
  display: flex;
  width: 45%;
  gap: 10%;
}
@media screen and (max-width: 799px) {
  .p-menu-name {
    width: 100%;
    gap: 5%;
  }
}
.p-menu-name__en {
  color: #93b965;
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  line-height: 1;
}
.p-menu-name__detail {
  color: #555555;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
}
.p-menu-name__detail.--size {
  display: flex;
  flex-direction: column;
}
.p-menu-name__detail.--mark {
  line-height: 1;
}
.p-menu-info {
  width: 45%;
}
@media screen and (max-width: 799px) {
  .p-menu-info {
    width: 100%;
  }
}
.p-menu-info__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dotted #a8a8a8;
}
.p-menu-info__items.--column {
  flex-direction: column;
  align-items: flex-start;
}
.p-menu-info__name {
  font-size: clamp(1.4rem, 1.3888888889vw, 2rem);
}
.p-menu-info__price {
  font-size: clamp(1.6rem, 1.6666666667vw, 2.4rem);
}
.p-menu-info__price.--mark {
  font-size: clamp(0.9rem, 1.1111111111vw, 1.6rem);
}
.p-menu-info__text {
  line-height: 1.75;
}
.p-menu-dsc {
  padding-top: 50px;
  font-size: clamp(1.2rem, 1.1111111111vw, 1.6rem);
  word-wrap: break-word;
}
@media screen and (max-width: 799px) {
  .p-menu-dsc {
    max-width: 520px;
    margin: 0 auto;
  }
}
.p-menu-dsc__text {
  line-height: 1.5;
  padding-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.p-menu-dsc__mark {
  padding-right: 5px;
}
.p-menu-dsc__slash {
  padding: 0 5px;
}

.p-product.--middle, .p-product.--bottom {
  margin-top: clamp(100px, 17.3611111111vw, 250px);
}
.p-product-logo__img {
  width: 25%;
  min-width: 200px;
  margin-bottom: clamp(15px, 4.1666666667vw, 60px);
}
@media screen and (max-width: 799px) {
  .p-product-logo__img {
    margin: 0 auto;
  }
}

.p-product-list {
  display: flex;
  align-items: center;
  gap: 6%;
  padding-top: clamp(60px, 6.9444444444vw, 100px);
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .p-product-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-product-list.--first {
  padding-top: clamp(10px, 1.3888888889vw, 20px);
}
.p-product-list.--bottom {
  align-items: flex-start;
}
.p-product-list__img {
  width: 30%;
  background-color: #ffffff;
}
@media screen and (max-width: 799px) {
  .p-product-list__img {
    width: 100%;
  }
}
.p-product-list__img.--top {
  padding: 4%;
}
.p-product-list__img.--bottom {
  padding: 4%;
}
@media screen and (max-width: 799px) {
  .p-product-list__img.--bottom {
    padding: 10%;
  }
}
.p-product-list__img img.--last {
  aspect-ratio: 250/250;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 799px) {
  .p-product-list__img img.--last {
    aspect-ratio: 315/215;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 799px) {
  .p-product-list__img img {
    aspect-ratio: 315/215;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-product-list__dsc {
  width: 70%;
}
@media screen and (max-width: 799px) {
  .p-product-list__dsc {
    width: 100%;
  }
}
.p-product-list__title {
  font-size: clamp(1.5rem, 1.3194444444vw, 1.9rem);
  line-height: 1.75;
}
.p-product-list__text {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  line-height: 1.8;
  font-weight: 400;
  padding-top: clamp(10px, 1.3888888889vw, 20px);
}
.p-product-list__detail {
  font-size: clamp(1.6rem, 1.3888888889vw, 2rem);
  letter-spacing: 0.08em;
}
.p-product-list__detail.--first {
  padding-top: clamp(10px, 1.3888888889vw, 20px);
}
.p-product-list__detail-slash {
  padding: 0 20px;
}
.p-product-list__detail-pmark {
  font-size: clamp(1.3rem, 1.1111111111vw, 1.6rem);
}

.p-product-villa__dsc {
  margin-bottom: clamp(15px, 4.1666666667vw, 60px);
}
.p-product-villa__title {
  font-size: clamp(1.5rem, 1.3194444444vw, 1.9rem);
  line-height: 1.75;
}
.p-product-villa__text {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  line-height: 1.8;
  padding-top: clamp(10px, 1.3888888889vw, 20px);
}

.u-font-english {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.u-font-infant {
  font-family: "Cormorant Infant";
  font-weight: 500;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-regular {
  font-weight: 400;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}/*# sourceMappingURL=style.css.map */