.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  margin: 0;
  scroll-behavior: smooth;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #333333;
  background: #FFFFFF;
  font-family: sans-serif;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.wrapper {
  margin: 0 auto;
  padding: 0 80px;
  max-width: 1280px;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

.section {
  width: calc(100% - 200px);
  margin-left: 200px;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 64px 0;
    margin: 0;
    width: 100%;
  }
}

.section__title {
  text-align: center;
  margin-bottom: 40px;
  color: #A88657;
}
.section__title h2 {
  margin: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
  font-weight: normal;
  line-height: 1;
  font-family: "Pinyon Script", cursive;
}
.section__title .section__subtitle {
  color: #A88657;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-size: 16px;
  font-family: Noto Sans JP;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding: 8px 16px;
  background: #A88657;
  color: #FFFFFF;
  text-align: center;
  border: 1px solid #A88657;
  letter-spacing: 0.08em;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background-color: #FFFFFF;
    color: #A88657;
  }
}
.btn a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  font-family: "Zen Old Mincho", serif;
}

.header__inner {
  padding: 32px 16px;
}

.header__title {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 4px 0 24px;
  border-bottom: 1px solid #BBBBBB;
  margin: 0;
}

.header__titleLink {
  display: inline-block;
  color: #333333;
}

.header__titleTop {
  display: block;
  font-size: 24px;
}

.header__titleBottom {
  display: block;
  font-size: 20px;
  margin-top: 6px;
}

.header__nav {
  margin-top: 24px;
}

.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.header__link {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.header__link.is-active {
  color: #A88657;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    opacity: 0.8;
  }
}

.header__item--contact {
  margin-top: 6px;
}

.header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 44px;
  background: #A88657;
  color: #FFFFFF;
  border: 1px solid #A88657;
  letter-spacing: 0.16em;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__btn.is-active {
  background: #FFFFFF;
  color: #A88657;
}

.header__sns {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header__snsIcon {
  width: 34px;
  height: 34px;
}

.header__hamburger,
.spMenu {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
  }
  .header__inner {
    height: 100%;
    padding: 20px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__title {
    border-bottom: none;
    padding: 18px 0px;
  }
  .header__nav,
  .header__sns {
    display: none;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .header__hamburgerLine {
    width: 28px;
    height: 2px;
    background: #333333;
    display: block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .spMenu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
  }
  .spMenu.is-open {
    pointer-events: auto;
    opacity: 1;
  }
  .spMenu__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border: 0;
  }
  .spMenu__panel {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    padding: 52px 24px 28px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .spMenu__panel {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .spMenu__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .spMenu__title {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 0.08em;
    color: #333333;
  }
  .spMenu__titleTop {
    font-size: 28px;
  }
  .spMenu__titleBottom {
    font-size: 20px;
    margin-top: 6px;
  }
  .spMenu__hr {
    width: 80%;
    height: 1px;
    background: #ddd;
    margin: 18px auto 22px;
  }
  .spMenu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: grid;
    gap: 24px;
  }
  .spMenu__link {
    display: inline-block;
    color: #333333;
    letter-spacing: 0.08em;
    line-height: 1.75;
    font-size: 16px;
  }
  .spMenu__btn {
    margin: 28px auto 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 260px;
    max-width: 100%;
    height: 46px;
    background: #A88657;
    color: #FFFFFF;
    letter-spacing: 0.08em;
    font-size: 16px;
    line-height: 1.75;
  }
  .spMenu__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }
  .spMenu__snsLink {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
  }
  .spMenu__snsLink img {
    width: 33px;
    height: 33px;
    display: block;
  }
}
.fv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.movie {
  width: 100%;
  height: 700px;
}
.movie video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__movieText {
  font-family: "Zen Old Mincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 40px 80px;
  color: #333333;
}

.fv__line {
  width: 1px;
  height: 50px;
  background: #333333;
}

.fv__text-top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fv__text-top .fv__text-top-bottom {
  display: block;
}

.fv__text-bottom {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.fv__text-bottom-23 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 980px) {
  .fv__movieText {
    padding: 40px 20px;
  }
  .fv__text-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fv__text-bottom-23 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pickup__section {
  background: #F6F6F6;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .pickup__section {
    padding: 64px 0;
  }
}

.pickup__slider {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}

.swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.swiper-slide {
  width: 100%;
}

.pickup__post {
  width: 100%;
}

.pickup__image {
  height: 220px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pickup__image {
    height: 260px;
  }
}
.pickup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pickup__postTitle {
  color: #A88657;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 0.1em;
}

.pickup__content {
  margin-top: 12px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.pickup__slider.swiper-horizontal > .swiper-pagination {
  position: static;
  margin-top: 48px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #e6e6e6;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

.pickup__slider .swiper-pagination-bullet-active {
  background: #C8B296;
}

.plan__section {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .plan__section {
    padding: 64px 0px;
  }
}

.tab__content {
  display: none;
}

.tab__contents {
  max-width: 640px;
  margin: 0 auto;
}

.tab__content.active {
  display: block;
}

.tab__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .tab__buttons {
    gap: 16px;
  }
}

.tab__button {
  width: 30%;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Zen Old Mincho", serif;
  color: #BBBBBB;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0 40px 5px;
  line-height: 2.1;
  position: relative;
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (max-width: 768px) {
  .tab__button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tab__button:hover {
    color: #A88657;
    border-bottom: 1px solid #A88657;
  }
}

.tab__button.active {
  color: #A88657;
  border-color: #A88657;
}

.plan__postImage {
  margin-bottom: 40px;
}

.plan__post__contents {
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.plan__postTitle {
  font-size: 20px;
  text-align: center;
  color: #A88657;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.plan__postText {
  font-size: 16px;
  color: #333333;
  font-family: Noto Sans JP;
  border-top: 1px solid #A88657;
}
.plan__postText p {
  padding-top: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
.plan__postText p:nth-child(2) {
  padding-top: 8px;
}

.plan__btn {
  width: 360px;
  height: 62px;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0 auto;
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .plan__btn {
    font-size: 18px;
    max-width: 360px;
    width: 100%;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp {
    display: inline;
  }
}

.feature__section {
  background: #F6F6F6;
  padding: 80px 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .feature__section {
    padding: 64px 0;
  }
}

.feature__contents {
  position: relative;
  margin-top: 80px;
}

.post {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 160px;
}
@media (max-width: 1100px) {
  .post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}
.post:last-child {
  margin-bottom: 0;
}

.post__image {
  width: 55%;
  position: relative;
  z-index: 1;
}
.post__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1100px) {
  .post__image {
    width: 100%;
  }
}

.post__contents {
  width: 45%;
  background: #FFFFFF;
  padding: 58px 16px;
  position: absolute;
  bottom: -40px;
  right: 80px;
  z-index: 2;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1100px) {
  .post__contents {
    position: static;
    width: 100%;
    padding: 24px 16px;
    min-height: 210px;
  }
}

.post:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.post:nth-child(even) .post__contents {
  right: auto;
  left: 80px;
}
@media (max-width: 1100px) {
  .post:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.post__title {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  font-size: 20px;
  color: #A88657;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 10px;
}

.post__text {
  font-family: "Noto Sans JP", sans-serif;
}
.post__text p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp {
    display: inline;
  }
}

.gallery__section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .gallery__section {
    padding: 64px 0;
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 16px;
  margin-left: 5px;
  grid-template-rows: 140px 270px 140px;
}
@media screen and (max-width: 768px) {
  .gallery__grid {
    grid-template-rows: 90px 120px 90px;
    gap: 8px;
  }
}

.gallery__item {
  width: 100%;
  height: 100%;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.gallery__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.item-1 {
  grid-column: 1/6;
  grid-row: 1/2;
}

.item-2 {
  grid-column: 6/10;
  grid-row: 1/2;
}

.item-3 {
  grid-column: 10/14;
  grid-row: 1/2;
}

.item-4 {
  grid-column: 14/17;
  grid-row: 1/2;
}

.item-5 {
  grid-column: 1/7;
  grid-row: 2/3;
}

.item-6 {
  grid-column: 7/11;
  grid-row: 2/3;
}

.item-7 {
  grid-column: 11/17;
  grid-row: 2/3;
}

.item-8 {
  grid-column: 1/6;
  grid-row: 3/4;
}

.item-9 {
  grid-column: 6/13;
  grid-row: 3/4;
}

.item-10 {
  grid-column: 13/17;
  grid-row: 3/4;
}

.focus {
  position: relative;
  overflow: hidden;
}
.focus::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 0 rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.focus:hover::after {
  border-width: 10px;
  border-color: rgba(255, 255, 255, 0.4);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99999;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
}

.modal-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: 10px solid rgba(255, 255, 255, 0.6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: -45px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #A88657;
  border-radius: 50%;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.contact__section {
  position: relative;
  background: url("../img/common/contact-cta.jpg") center/cover no-repeat;
  padding: 40px 80px;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .contact__section {
    padding: 40px 20px;
  }
}

.contact__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Old Mincho", serif;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}

.contact__title {
  max-width: 520px;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.contact__title h2 {
  font-weight: normal;
  font-size: 24px;
}
.contact__title .section__subtitle h3 {
  font-weight: normal;
  margin-bottom: 20px;
}

.contact__btn {
  width: 440px;
  height: 62px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  padding: 16px 24px;
  letter-spacing: 0.08em;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
.contact__btn a {
  color: #333333;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}
.contact__btn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    width: 100%;
  }
}

.sns__section {
  margin-top: 24px;
  margin-left: 200px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .sns__section {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
}

.sns__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .sns__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.instagram__contents,
.facebook__contents {
  position: relative;
  width: 50%;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.4s ease, -webkit-transform 0.4s ease;
  transition: -webkit-filter 0.4s ease, -webkit-transform 0.4s ease;
  transition: filter 0.4s ease, transform 0.4s ease;
  transition: filter 0.4s ease, transform 0.4s ease, -webkit-filter 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .instagram__contents,
  .facebook__contents {
    width: 100%;
    height: 240px;
  }
}
.instagram__contents:hover,
.facebook__contents:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.overlay {
  background-blend-mode: multiply;
}

.sns__icons-white {
  width: 48px;
  margin-bottom: 16px;
}
.sns__icons-white img {
  width: 100%;
  display: block;
}

.sns__icons-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.footer {
  padding: 40px 0;
  width: calc(100% - 200px);
  margin-left: 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    margin: 0;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 24px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (max-width: 768px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer__title {
  font-size: 24px;
  font-weight: bold;
}

.footer__menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 16px;
  color: #333333;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
    gap: 14px;
  }
}
.footer__menu a {
  line-height: 1.75;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__menu a:hover {
    color: #A88657;
  }
}

.footer__copyright {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-family: Noto Sans JP;
  font-size: 14x;
  padding-top: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .footer__copyright {
    font-size: 12px;
  }
}