@charset "UTF-8";
/* commonParts
---------------------------------------------------- */
.__inner {
  width: 99.375rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .__inner {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner {
    width: calc(100% - 40px);
  }
}
.__inner.__medium {
  width: 82.5rem;
}
@media screen and (max-width: 1199px) {
  .__inner.__medium {
    width: 99.375rem;
  }
}
@media screen and (max-width: 991px) {
  .__inner.__medium {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__inner.__medium {
    width: calc(100% - 40px);
  }
}

.__liststyle li {
  display: flex;
  align-items: baseline;
}
.__liststyle li::before {
  content: "\f111";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.4em;
  flex-shrink: 0;
}
.__liststyle.__leaf li::before {
  content: "\f299";
  font-family: "Font Awesome 6 Brands";
}
.__liststyle.__order li::before {
  display: none;
}
.__liststyle.__order li span.__num {
  flex-shrink: 0;
  margin-right: 0.3em;
}
.__liststyle.__note li::before {
  content: "※";
}

.__ttlstyle01 {
  text-shadow: 0px 0px 16px rgb(255, 255, 255);
}
.__ttlstyle01 span {
  display: block;
}
.__ttlstyle01 span.__jp {
  font-weight: 600;
  margin-bottom: 0.2em;
}
.__ttlstyle01 span.__en {
  color: #393d39;
  font-weight: 400;
  font-size: 8.75rem;
  letter-spacing: 0;
  line-height: 1em;
  margin-top: 0.1em;
}
@media screen and (max-width: 1199px) {
  .__ttlstyle01 span.__en {
    font-size: min(13vw, 80px);
  }
}
.__ttlstyle01 span.__en .__color {
  display: inline;
}
.__ttlstyle01 span.__en .__color, .__ttlstyle01 span.__en .__rotated {
  letter-spacing: 0;
  line-height: 1em;
}
.__ttlstyle01.__large span.__en {
  margin-top: -0.05em;
  font-size: 12.5rem;
}
@media screen and (max-width: 1199px) {
  .__ttlstyle01.__large span.__en {
    font-size: min(13vw, 120px);
  }
}

.__ttlstyle02 {
  text-align: center;
  font-weight: 700;
  font-size: max(1.25rem, 16px);
}
@media screen and (max-width: 1199px) {
  .__ttlstyle02 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 767px) {
  .__ttlstyle02 {
    font-size: 1em;
  }
}
.__ttlstyle02 span.__jp {
  font-weight: 800;
  letter-spacing: 0.2em;
}
.__ttlstyle02 span.__en {
  display: block;
  font-size: 0.8em;
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .__ttlstyle02 span.__en {
    margin-top: 0;
  }
}

.__ttlstyle03 {
  text-align: center;
  font-weight: 700;
}
.__ttlstyle03 span.__en {
  font-size: 2rem;
}
@media screen and (max-width: 1199px) {
  .__ttlstyle03 span.__en {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  .__ttlstyle03 span.__en {
    font-size: 1.5em;
  }
}
.__ttlstyle03 span.__jp {
  display: block;
  margin-top: -0.4em;
}
@media screen and (max-width: 1199px) {
  .__ttlstyle03 span.__jp {
    font-size: 0.9em;
  }
}
.__ttlstyle03 span.__jp .__small {
  font-size: 0.8em;
}

.__txtstyle01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.__txtstyle01::before, .__txtstyle01::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #393d39;
  margin-bottom: 0.4em;
}
.__txtstyle01 span {
  letter-spacing: 0.2em;
}
.__txtstyle01 span.__txt {
  color: #393d39;
}

.__txtstyle02 {
  font-weight: 600;
  padding-bottom: 0.4em;
  border-bottom: solid 1px #333;
}
.__txtstyle02::before {
  content: "\f299";
  font-family: "Font Awesome 6 Brands";
  margin-right: 0.1em;
}

.__txtstyle03 {
  font-weight: 600;
  font-size: 1.125em;
  line-height: 1em;
}
.__txtstyle03 span.__num {
  display: inline-block;
  font-family: "Red Rose", sans-serif;
  font-size: 1.125em;
  border-left: solid 1px #534439;
  border-right: solid 1px #534439;
  padding: 0 0.4em;
  margin-right: 1em;
}

.__txtstyle04::before {
  content: "-";
}

.__txtlimit {
  max-width: 100%; /* 親幅に合わせて制限 */
  white-space: nowrap; /* 折り返さない */
  overflow: hidden; /* はみ出した部分を隠す */
  text-overflow: ellipsis;
}

.__link-arrow {
  position: relative;
  display: block;
  width: 3em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px #fff;
}
.__link-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "\f054";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  color: #fff;
}

.__linkbtn {
  width: -moz-fit-content;
  width: fit-content;
}
.__linkbtn a, .__linkbtn button {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.6em 0;
  border-bottom: solid 1px #636763;
}
.__linkbtn a::before, .__linkbtn button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -2px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #636763;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}
.__linkbtn a span.__txt, .__linkbtn button span.__txt {
  color: #393d39;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-left: 0.6em;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .__linkbtn a span.__txt, .__linkbtn button span.__txt {
    font-size: 0.95em;
  }
}
.__linkbtn a span.__link-arrow, .__linkbtn button span.__link-arrow {
  width: 3em;
  border: none;
  background-color: #534439;
}
@media screen and (max-width: 767px) {
  .__linkbtn a span.__link-arrow, .__linkbtn button span.__link-arrow {
    width: 2.4em;
  }
}
.__linkbtn a span.__link-arrow::before, .__linkbtn button span.__link-arrow::before {
  font-size: 0.8em;
}
.__linkbtn a:hover::before, .__linkbtn button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.__linkbtn.__back a::before, .__linkbtn.__back button::before {
  transform-origin: left;
}
.__linkbtn.__back a span.__txt, .__linkbtn.__back button span.__txt {
  padding-left: 0;
  padding-right: 0.6em;
  margin-right: 0;
  margin-left: 2em;
}
.__linkbtn.__back a span.__link-arrow::before, .__linkbtn.__back button span.__link-arrow::before {
  content: "\f104";
}
.__linkbtn.__back a:hover::before, .__linkbtn.__back button:hover::before {
  transform-origin: right;
}

.__link-style01 {
  position: relative;
  width: 100%;
  height: 100%;
}
.__link-style01 .item-bgimg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: clip;
}
.__link-style01 .item-bgimg::before {
  position: absolute;
  z-index: 2;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.8);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.__link-style01 .item-bgimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: all 0.4s ease;
}
.__link-style01 .item-content {
  color: #fff;
  text-shadow: 6px 6px 12px rgba(40, 40, 40, 0.6);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 2em;
}
@media screen and (max-width: 1199px) {
  .__link-style01 .item-content {
    padding: 0 3em;
  }
}
@media screen and (max-width: 767px) {
  .__link-style01 .item-content {
    padding: 0;
  }
}
.__link-style01 .item-link {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  margin: 1em;
  opacity: 0.8;
}
.__link-style01:hover .item-bgimg::before {
  background-color: #5b7157;
}
.__link-style01:hover .item-bgimg img {
  transform: scale(1.05);
}

a.__txtlink {
  color: #333;
  display: inline;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.24s ease;
}
a.__txtlink:hover {
  opacity: 0.6;
}

.__bgimg-leaf::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  height: 100%;
}

.work-list ul {
  display: flex;
  flex-wrap: wrap;
}
.work-list ul li {
  background-color: #fff;
  border: solid 1px #edece8;
  box-shadow: 2px 2px 8px rgba(40, 40, 40, 0.1);
  width: calc(25% - 1.40625rem);
  margin-top: 1.875rem;
  margin-right: 1.875rem;
}
.work-list ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .work-list ul li {
    width: calc(50% - 0.5em);
    margin-top: 1em;
    margin-right: 1em;
  }
  .work-list ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.work-list ul li a {
  padding: 1em;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .work-list ul li a {
    padding: 2em 2em 1em;
  }
}
@media screen and (max-width: 767px) {
  .work-list ul li a {
    padding: 0.8em;
  }
}
.work-list ul li a .item-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: clip;
}
.work-list ul li a .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: all 0.4s ease;
}
.work-list ul li a .item-ttl {
  margin-top: 1em;
  padding-right: 1.4em;
}
.work-list ul li a .item-ttl h3 {
  font-weight: 700;
  color: #393d39;
}
@media screen and (max-width: 767px) {
  .work-list ul li a .item-ttl h3 {
    font-size: min(2.8vw, 1em);
  }
}
.work-list ul li a .item-ttl h3 span.__cate {
  display: block;
  color: #5d8c62;
  font-size: 0.85em;
}
.work-list ul li a .item-icon {
  text-align: end;
  margin-top: -1.6em;
}
.work-list ul li a:hover {
  opacity: 0.7;
}
.work-list ul li a:hover .item-img img {
  transform: scale(1.05);
}

.column-list ul .column-list-item {
  margin-top: 1em;
}
.column-list ul .column-list-item:nth-of-type(1) {
  margin-top: 0;
}
.column-list ul .column-list-item .item-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 2px 2px 8px rgba(40, 40, 40, 0.1);
  padding: 2.4em;
  padding-right: 4em;
  border-radius: 1.875rem;
  transition: all 0.24s ease;
}
@media screen and (max-width: 767px) {
  .column-list ul .column-list-item .item-inner {
    padding: 2em;
  }
}
.column-list ul .column-list-item .item-inner .item-img {
  width: 9em;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .column-list ul .column-list-item .item-inner .item-img {
    width: 8em;
  }
}
.column-list ul .column-list-item .item-inner .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-list ul .column-list-item .item-inner .item-content {
  width: calc(100% - 9em - 3em);
}
@media screen and (max-width: 767px) {
  .column-list ul .column-list-item .item-inner .item-content {
    width: calc(100% - 8em - 2em);
  }
}
.column-list ul .column-list-item .item-inner .item-content p {
  font-weight: 600;
}
.column-list ul .column-list-item .item-inner .item-content p span {
  display: inline-block;
}
.column-list ul .column-list-item .item-inner .item-content p span.__cate {
  color: #fff;
  background-color: #6e7e6b;
  font-size: 0.75em;
  line-height: 1em;
  padding: 0.4em 1em 0.5em;
}
.column-list ul .column-list-item .item-inner .item-content p span.__date {
  font-weight: 700;
  margin-left: 0.4em;
}
.column-list ul .column-list-item .item-inner .item-content p span.__new {
  font-weight: 700;
  color: #ac453f;
  margin-left: 0.4em;
}
.column-list ul .column-list-item .item-inner .item-content h3 {
  font-weight: 700;
  margin-top: 0.4em;
}
.column-list ul .column-list-item .item-inner .item-link {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .column-list ul .column-list-item .item-inner .item-link {
    margin-right: 1.6em;
  }
}
.column-list ul .column-list-item .item-inner .item-link .__link-arrow {
  width: auto;
  border: none;
  border-radius: 0;
}
.column-list ul .column-list-item .item-inner .item-link .__link-arrow::before {
  color: #393d39;
}
.column-list ul .column-list-item a:hover .item-inner {
  opacity: 0.7;
}

@media screen and (max-width: 1199px) {
  .__content-style01 {
    width: min(99.375rem, 720px);
  }
}
@media screen and (max-width: 991px) {
  .__content-style01 {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .__content-style01 {
    width: calc(100% - 40px);
  }
}
.__content-style01 .sec-ttl {
  margin-top: -1em;
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-ttl {
    margin-left: -80px;
  }
}
@media screen and (max-width: 991px) {
  .__content-style01 .sec-ttl {
    margin-left: 0;
  }
}
.__content-style01 .sec-ttl h3 span.__jp {
  line-height: 1em;
  margin-bottom: 1em;
}
.__content-style01 .sec-ttl h3 span.__en {
  height: 1em;
  transform: translateY(-0.4em);
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-ttl h3 span.__en {
    font-size: min(10.5vw, 80px);
  }
}
@media screen and (max-width: 991px) {
  .__content-style01 .sec-ttl h3 span.__en {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    height: auto;
    transform: translateY(0);
  }
}
.__content-style01 .sec-ttl h3 span.__en .__rotated {
  width: 1em;
  transform: translate(1em, 4em) rotate(-90deg);
  transform-origin: left bottom;
  margin-bottom: -0.6em;
  margin-left: -0.2em;
}
@media screen and (max-width: 991px) {
  .__content-style01 .sec-ttl h3 span.__en .__rotated {
    display: inline-block;
    width: auto;
    transform: initial;
    margin-bottom: -0.1em;
    margin-left: 0;
    margin-right: 0.2em;
  }
}
.__content-style01 .sec-content {
  width: calc(100% - 10rem);
  margin-top: 2em;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content {
    width: min(100%, 680px);
    margin-right: auto;
  }
}
.__content-style01 .sec-content .content-img {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.__content-style01 .sec-content .content-img .swiper {
  margin: 0;
}
.__content-style01 .sec-content .content-img .slider-main {
  width: 55rem;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .slider-main {
    width: 100%;
  }
}
.__content-style01 .sec-content .content-img .slider-main .swiper-wrapper {
  width: 100%;
}
.__content-style01 .sec-content .content-img .slider-main .swiper-wrapper .swiper-slide .slide-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #fff;
}
.__content-style01 .sec-content .content-img .slider-main .swiper-wrapper .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.__content-style01 .sec-content .content-img .slider-main .swiper-wrapper .swiper-slide .slide-ttl {
  color: #736250;
  padding: 1em 1.2em;
}
.__content-style01 .sec-content .content-img .slider-main .swiper-wrapper .swiper-slide .slide-ttl p {
  font-weight: 700;
  font-size: 0.9em;
}
.__content-style01 .sec-content .content-img .right-content {
  position: relative;
  width: calc(100% - 55rem - 3.75rem);
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .right-content {
    width: 100%;
    margin-top: 2em;
  }
}
.__content-style01 .sec-content .content-img .right-content .click-attention {
  color: #fff;
  background-color: #393d39;
  height: 3.75rem;
  display: flex;
  align-items: center;
  padding: 0 0.6em;
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .right-content .click-attention {
    height: auto;
    padding-top: 0.4em;
    padding-bottom: 0.6em;
  }
}
.__content-style01 .sec-content .content-img .right-content .click-attention p {
  padding-left: 1.4em;
  font-size: min(0.95vw, 0.9em);
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .right-content .click-attention p {
    font-size: 0.8em;
  }
}
.__content-style01 .sec-content .content-img .right-content .click-attention p i {
  margin-left: -1em;
  margin-right: 0.4em;
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail {
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail {
    position: relative;
  }
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper {
  flex-wrap: wrap;
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide {
  position: relative;
  transition: opacity 0.4s;
  width: calc(50% - 0.9375rem) !important;
  aspect-ratio: 4/3;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  margin-top: 1.875rem;
  margin-right: 1.875rem !important;
  cursor: pointer;
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(2n) {
  margin-right: 0 !important;
}
@media screen and (max-width: 1199px) {
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide {
    width: calc(33.3333333333% - 0.6666666667em) !important;
    margin-top: 1em;
    margin-right: 1em !important;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(2n) {
    margin-right: 1em !important;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(1) {
    order: 1;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(2) {
    order: 4;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(3) {
    order: 2;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(4) {
    order: 5;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(5) {
    margin-right: 0 !important;
    order: 3;
  }
  .__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide:nth-of-type(6) {
    margin-right: 0 !important;
    order: 6;
  }
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.6);
  opacity: 0;
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.__content-style01 .sec-content .content-img .right-content .slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}

.__content-style02 .sec-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1199px) {
  .__content-style02 .sec-inner {
    display: block;
  }
}
.__content-style02 .sec-inner .sec-ttl {
  margin-top: -3.75rem;
}
@media screen and (max-width: 1199px) {
  .__content-style02 .sec-inner .sec-ttl {
    margin-top: 0;
  }
}
.__content-style02 .sec-inner .sec-ttl h2, .__content-style02 .sec-inner .sec-ttl h3 {
  text-align: end;
  text-shadow: none;
}
.__content-style02 .sec-inner .sec-ttl h2 span.__en, .__content-style02 .sec-inner .sec-ttl h3 span.__en {
  width: 1em;
  transform: translateX(-1em) rotate(90deg);
  transform-origin: right bottom;
  margin-top: 0.1em;
  margin-right: -0.2em;
  font-size: 15rem;
}
@media screen and (max-width: 1199px) {
  .__content-style02 .sec-inner .sec-ttl h2 span.__en, .__content-style02 .sec-inner .sec-ttl h3 span.__en {
    width: auto;
    transform: initial;
    margin-top: 0;
    margin-right: 0;
    font-size: min(13vw, 120px);
  }
}
.__content-style02 .sec-inner .sec-content {
  width: calc(100% - 15rem);
}
@media screen and (max-width: 1199px) {
  .__content-style02 .sec-inner .sec-content {
    width: 100%;
  }
}

/* header
---------------------------------------------------- */
#header {
  pointer-events: none;
  position: fixed;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 1379px) {
  #header {
    top: 0;
  }
}
#header > * {
  pointer-events: auto;
}
#header .header-inner {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #534439;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  border-radius: 50vh;
  min-width: 99.375rem;
  padding: 1.2em 2.5rem;
}
@media screen and (max-width: 1379px) {
  #header .header-inner {
    position: relative;
    justify-content: space-between;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    color: #393d39;
    background-color: rgba(83, 68, 57, 0.9);
    padding: 1.2em 20px;
  }
}
@media screen and (max-width: 767px) {
  #header .header-inner {
    padding: 0.8em 16px;
  }
}
#header.__floating .header-inner {
  position: fixed;
}
@media screen and (max-width: 1379px) {
  #header.__floating .header-inner {
    position: relative;
  }
}
@media screen and (max-width: 1379px) {
  #header .__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(40, 40, 40, 0.6);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.36s ease;
  }
  #header .__overlay.__open {
    opacity: 1;
    visibility: visible;
  }
}
#header .header-logo {
  display: none;
}
@media screen and (max-width: 1379px) {
  #header .header-logo {
    display: block;
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  #header .header-logo {
    width: 60px;
  }
}
#header .header-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1379px) {
  #header .nav-btn {
    position: relative;
    margin-right: 8px;
    z-index: 99;
    width: 32px;
    height: 40px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1379px) and (max-width: 767px) {
  #header .nav-btn {
    width: 27px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1379px) {
  #header .nav-btn span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #edece8;
    transition: all 0.2s ease;
  }
  #header .nav-btn span:nth-of-type(1) {
    margin-top: -9px;
  }
  #header .nav-btn span:nth-of-type(3) {
    margin-top: 9px;
  }
}
@media screen and (max-width: 1379px) and (max-width: 767px) {
  #header .nav-btn span:nth-of-type(1) {
    margin-top: -7px;
  }
  #header .nav-btn span:nth-of-type(3) {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1379px) {
  #header .nav-btn.__open span {
    background-color: #534439;
  }
  #header .nav-btn.__open span:nth-of-type(1) {
    margin-top: 0;
    transform: translateY(-50%) rotate(30deg);
  }
  #header .nav-btn.__open span:nth-of-type(2) {
    opacity: 0;
  }
  #header .nav-btn.__open span:nth-of-type(3) {
    margin-top: 0;
    transform: translateY(-50%) rotate(-30deg);
  }
}
@media screen and (max-width: 1379px) {
  #header .header-menu {
    background-color: #edece8;
    width: 270px;
    height: 100lvh;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.36s ease;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1379px) {
  #header .header-menu .header-menu-inner {
    width: 100%;
    padding-top: 16lvh;
    padding-bottom: 12lvh;
    overflow-y: scroll;
    opacity: 0;
    transition: all 0.36s ease;
  }
}
@media screen and (max-width: 1379px) {
  #header .header-menu.__open {
    transform: translateX(0);
  }
  #header .header-menu.__open .header-menu-inner {
    opacity: 1;
    transition: all 0.36s 0.3s ease;
  }
}
#header .header-menu nav ul {
  display: flex;
}
@media screen and (max-width: 1379px) {
  #header .header-menu nav ul {
    display: block;
  }
}
#header .header-menu nav ul li a {
  font-size: max(1rem, 14px);
  padding: 0 1.875rem;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 1379px) {
  #header .header-menu nav ul li a {
    font-size: 1.125em;
    padding: 0;
    border-right: none;
    margin: 2em 0;
  }
}
#header .header-menu nav ul li a span {
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
}
#header .header-menu nav ul li a span.__jp {
  font-size: 0.9em;
}
@media screen and (max-width: 1379px) {
  #header .header-menu nav ul li a span.__jp {
    font-size: 0.7em;
  }
}
#header .header-menu nav ul li:last-of-type a {
  border-right: none;
}
#header .header-menu nav ul li.__current a {
  color: #b3a98d;
  pointer-events: none;
}

.__sec-last {
  position: relative;
  z-index: 4;
  margin-bottom: -12.5rem;
}
@media screen and (max-width: 1199px) {
  .__sec-last {
    margin-bottom: -120px;
  }
}

/* footer
---------------------------------------------------- */
footer {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  background-color: #5b7157;
  padding-top: 22.5rem;
}
@media screen and (max-width: 1199px) {
  footer {
    padding-top: 220px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 200px;
    padding-bottom: 80px !important;
  }
}
footer.__contact {
  padding-top: 8.75rem;
}
@media screen and (max-width: 1199px) {
  footer.__contact {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  footer.__contact {
    padding-top: 80px;
  }
}
footer::before {
  bottom: 0;
  left: 0;
  width: 35.4166666667vw;
  background-image: url(../images/bgimg-leaf_footer.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
}
footer .footer-logo {
  width: 3.6em;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  footer .footer-logo {
    width: 3.2em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-logo {
    width: 2.4em;
  }
}
footer .footer-logo img {
  width: 100%;
  height: auto;
}
footer .footer-info {
  margin-top: 2em;
}
footer .footer-info p {
  font-size: max(1rem, 15px);
}
footer .footer-info p.__company {
  font-weight: 800;
  font-size: 1.125em;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 1379px) {
  footer .footer-info p {
    font-size: 1em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-info p {
    font-size: 0.95em;
  }
}
footer .footer-info p a {
  display: inline;
  font-size: 1em;
}
footer .footer-menu ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1379px) {
  footer .footer-menu ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 559px) {
  footer .footer-menu ul li:nth-of-type(odd) {
    width: 40%;
  }
  footer .footer-menu ul li:nth-of-type(even) {
    width: 60%;
  }
}
footer .footer-menu ul li a {
  font-size: max(1.0625rem, 15px);
  padding: 0 1.875rem;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 1379px) {
  footer .footer-menu ul li a {
    font-size: 1.125em;
    padding: 0;
    margin: 1em;
    border-right: none;
    padding: 0 1em;
  }
}
@media screen and (max-width: 559px) {
  footer .footer-menu ul li a {
    font-size: min(4.2vw, 1.125em);
    text-align: start;
    margin: 1em 0;
  }
}
footer .footer-menu ul li a span {
  white-space: nowrap;
  font-weight: 600;
}
footer .footer-menu ul li a span.__jp {
  font-size: 0.9em;
}
@media screen and (max-width: 1379px) {
  footer .footer-menu ul li a span.__jp {
    font-size: 0.7em;
  }
}
footer .footer-menu ul li:last-of-type a {
  border-right: none;
}
footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 1379px) {
  footer .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  footer .copyright {
    margin-top: 2em;
  }
}

#pagetop {
  display: none;
  position: fixed;
  z-index: 9;
  bottom: 0;
  right: 0;
  margin: 2em;
}
@media screen and (max-width: 991px) {
  #pagetop {
    margin: 20px;
  }
}
@media screen and (max-width: 767px) {
  #pagetop {
    margin: 14px;
  }
}
#pagetop a {
  width: 7.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #393d39;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
@media screen and (max-width: 1379px) {
  #pagetop a {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 56px;
  }
}
#pagetop a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6em;
  height: auto;
}
#pagetop a:hover {
  background-color: #6e7e6b;
}/*# sourceMappingURL=common.css.map */