@charset "UTF-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "ZEN Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #333333;
  box-sizing: border-box;
  scrollbar-gutter: stable both-edges;
}

.wrapper {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  min-height: 100vh;
  box-sizing: border-box;
}

.main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-width: calc(100vw - 200px);
  box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .main {
    margin-left: 0;
    max-width: 100%;
  }
}

.u__title {
  text-align: center;
  line-height: 1.2;
}
.u__title__upper {
  font-family: "Pinyon Script", cursive;
  font-size: 36px;
  color: #A88657;
}
.u__title__bottom {
  color: #A88657;
}

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

/* モーダル表示時にスクロールを無効化 */
/*body.modal-open {
    overflow: hidden;
}*/
/*-----------------------------------------------------------
ヘッダー
-------------------------------------------------------------*/
.header {
  width: 200px;
  padding: 40px 0;
  text-align: center;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  z-index: 10;
  /*ハンバーガーメニューの横線*/
  /*ハンバーガーメニュークリック時、×になる*/
  /*ハンバーガーメニュークリック時背景*/
}
@media screen and (max-width: 820px) {
  .header {
    display: none;
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.header__wrapper {
  width: 168px;
  height: auto;
  padding-left: 16px;
  margin: 0 auto;
  position: fixed;
}
@media screen and (max-width: 820px) {
  .header__wrapper {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: static;
  }
}
@media screen and (max-width: 820px) {
  .header__main {
    display: none;
  }
}
.header__title {
  padding-bottom: 24px;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (max-width: 820px) {
  .header__title {
    padding: 16px 0;
    border-bottom: none;
    font-size: 24px;
  }
}
.header .title__bottom {
  font-size: 20px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 820px) {
  .header .title__bottom {
    font-size: 20px;
  }
}
.header .nav-list:first-child {
  padding-top: 24px;
}
.header .nav-item {
  display: block;
  padding-bottom: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}
.header .nav-item a.active {
  color: #A88657;
}
.header .nav-contact {
  width: 100%;
  display: inline-block;
  padding: 8px 16px;
  background-color: #A88657;
  color: #fff;
  text-decoration: none;
}
.header .nav-contact:hover {
  opacity: 0.7;
}
.header .social__icons__sidebar {
  padding: 24px 32px 0;
  display: flex;
  justify-content: center;
}
.header .social__icons__sidebar .social__link {
  margin: 0 12px;
}
.header .social__icons__sidebar .social__link img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 820px) {
  .header__toggleBtn {
    display: block;
    width: 35px;
    height: 24px;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}
.header__hamburgerLine {
  display: block;
  position: absolute;
  width: 35px;
  height: 1px;
  background-color: #333333;
  transition: all 0.5s;
}
.header__hamburgerLine:nth-child(1) {
  top: -3px;
}
.header__hamburgerLine:nth-child(2) {
  top: 9px;
}
.header__hamburgerLine:nth-child(3) {
  top: 21px;
}
.js-open .header__hamburgerLine:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
}
.js-open .header__hamburgerLine:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
}
.js-open .header__hamburgerLine:nth-child(3) {
  display: none;
}
.header__mask {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  right: -120%;
  top: 72px;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.header__mask__inner {
  width: 292px;
  height: auto;
}
.header__mask__title {
  margin: 0 auto;
  padding-bottom: 24px;
  border-bottom: 1px solid #BBBBBB;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.header__mask__title .title__bottom {
  font-size: 20px;
}
.header__maskNav {
  margin-left: 0;
  width: 100%;
  text-align: center;
  color: #000;
  font-weight: 700;
}
.header__maskList {
  margin-top: 24px;
  font-weight: 700;
}
.header__maskList:first-of-type {
  margin-top: 24px;
}
.header__maskList:last-of-type {
  margin-top: 36px;
}
.header__contact {
  background: #A88657;
  padding: 10px 113px;
  color: #fff;
}
.header__maskLink--sns:first-of-type {
  width: 33px;
  height: 30px;
}
.header__maskLink--sns:last-of-type {
  width: 33.25px;
  height: 33.25px;
}
.header .social__icons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-bottom: 20px;
}
.header .social__icons img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.js-open .header__mask {
  right: 0;
  z-index: 10;
}

/*--------------------------------------------------------------------
ファーストビュー
----------------------------------------------------------------------*/
.firstView {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .firstView {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.firstView video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 820px) {
  .firstView video {
    width: 100%;
    height: 700px;
  }
}

/*--------------------------------------------------------------------
キャッチコピー
----------------------------------------------------------------------*/
.catch {
  padding-top: 70px;
  padding-bottom: 40px;
}
.catch__copy {
  font-size: 24px;
  display: flex;
  justify-content: center;
  margin: 24px 0;
  position: relative;
  color: #333333;
}
@media screen and (min-width: 431px) and (max-width: 820px) {
  .catch__copy {
    padding: 0 65px;
    margin-bottom: 24px;
    text-align: center;
    display: block;
    line-height: 1.75;
  }
}
@media screen and (max-width: 430px) {
  .catch__copy {
    padding: 0 60px;
    margin-bottom: 24px;
    text-align: center;
    display: block;
    font-size: 20px;
    line-height: 1.75;
  }
}
.catch__copy::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  width: 50px;
  height: 1px;
  background-color: #333333;
}
@media screen and (max-width: 820px) {
  .catch__copy::before {
    margin-top: 40px;
    top: -70px;
  }
}
.catch .sub__copy {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 820px) {
  .catch .sub__copy {
    font-size: 16px;
    line-height: 1.75;
  }
}

/*-------------------------------------------------------
Pickup
---------------------------------------------------------*/
.pickup {
  background: #f6f6f6;
}
.pickup__inner {
  padding-top: 100px;
  width: 100%;
  max-width: 1080px;
  padding: 64px 35px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .pickup__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.swiper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 450px;
}
.swiper-wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 482px) and (max-width: 820px) {
  .swiper-wrapper {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 481px) {
  .swiper-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.swiper-slide {
  width: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media screen and (min-width: 482px) and (max-width: 820px) {
  .swiper-slide {
    width: 80% !important;
  }
}
@media screen and (max-width: 481px) {
  .swiper-slide {
    width: 67% !important;
  }
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-pagination-bullet {
  background-color: #C8B296 !important;
}

.card-content {
  margin-top: 16px;
}
.card-content h3 {
  color: #A88657;
  letter-spacing: 0.08em;
  font-size: 18px;
  font-weight: 600;
}
.card-content p {
  margin-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------
Plan
----------------------------------------------------------------*/
.plan__inner {
  width: 100%;
  max-width: 1080px;
  padding: 80px 80px;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .plan__inner {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 64px;
  }
}

.tab-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .tab-container {
    gap: 16px;
    width: 100%;
  }
}

.tab {
  width: 280px;
  padding: 8px 0;
  text-align: center;
  margin: 0 20px;
  cursor: pointer;
  color: #BBBBBB;
  position: relative;
  transition: color 0.3s ease;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 822px) and (max-width: 1023px) {
  .tab {
    width: 100%;
    font-size: 14px;
    padding: 8px;
    margin: 0 7px;
  }
}
@media screen and (min-width: 386px) and (max-width: 820px) {
  .tab {
    width: 100%;
    font-size: 14px;
    padding: 8px;
    margin: 0;
  }
}
@media screen and (max-width: 385px) {
  .tab {
    width: 100%;
    font-size: 12px;
    padding: 8px;
    margin: 0;
  }
}
.tab-text .sp-only-tab {
  display: none;
}
@media screen and (max-width: 820px) {
  .tab-text .sp-only-tab {
    display: inline;
  }
}
.tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #BBBBBB;
  transition: background-color 0.3s ease;
}
.tab.active .tab-text {
  color: #BAA281;
}
.tab.active .tab-underline {
  background-color: #BAA281;
}

.content-container {
  padding: 0 140px 0;
  background-color: #fff;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 822px) and (max-width: 1023px) {
  .content-container {
    padding: 0 70px 0;
  }
}
@media screen and (max-width: 820px) {
  .content-container {
    padding: 0;
  }
}

.tab-content {
  display: none;
  text-align: center;
  width: 640px;
  max-width: 1080px;
  height: auto;
}
.tab-content.active {
  display: block;
  width: 640px;
  max-width: 1080px;
  height: auto;
}
.tab-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.tab-content-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}
.tab-content-wrap h2 {
  color: #A88657;
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #A88657;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 600px;
}
@media screen and (max-width: 385px) {
  .tab-content-wrap h2 {
    font-size: 18px;
  }
}
.tab-content-wrap .sp-only-content {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tab-content-wrap .sp-only-content {
    display: inline;
  }
}
.tab-content-wrap .tab-detail {
  padding-top: 10px;
  text-align: left;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.102em;
}

.plan-btn-wrap {
  width: 360px;
  height: auto;
  padding: 16px 24px;
  background: #A88657;
  color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .plan-btn-wrap {
    max-width: 100%;
  }
}

.plan-btn {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 820px) {
  .plan-btn {
    font-size: 18px;
  }
}

/*--------------------------------------------------------
Feature
----------------------------------------------------------*/
.feature__inner {
  background: #f6f6f6;
  width: 100%;
  height: auto;
  padding: 80px 80px 0;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .feature__inner {
    padding: 64px 20px;
    height: auto;
  }
}

.feature__content__wrap {
  margin-top: 40px;
}

.feature__content1,
.feature__content2 {
  width: 100%;
  max-width: 1080px;
  height: auto;
  display: flex;
  margin: 0 auto 160px auto;
  position: relative;
}
@media screen and (max-width: 820px) {
  .feature__content1,
  .feature__content2 {
    flex-direction: column; /* 縦に積み重ねる */
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.feature__content1:last-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .feature__content1:last-of-type {
    margin-bottom: 0;
  }
}

.feature__content1 .feature__text__wrap {
  right: 0;
}

.feature__content2 .feature__text__wrap {
  left: 0;
}

.feature__image__wrap {
  width: 54.34%;
  max-width: 500px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 820px) {
  .feature__image__wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    height: auto;
  }
}
.feature__image__wrap img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}

.feature__content1 .feature__image__wrap {
  margin: 0;
  padding: 0;
}

.feature__content2 .feature__image__wrap {
  margin-left: auto;
  margin-right: 0;
}

.feature__text__wrap {
  width: 54.34%;
  max-width: 500px;
  min-width: 280px;
  height: auto;
  position: absolute;
  z-index: 0;
  top: 38%;
}
@media screen and (max-width: 820px) {
  .feature__text__wrap {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    min-width: unset;
    height: auto;
    z-index: 10;
  }
}

.feature__text1,
.feature__text2 {
  width: 100%;
  height: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  padding: 58px 16px;
  z-index: 10;
}
@media screen and (min-width: 822px) and (max-width: 1024px) {
  .feature__text1,
  .feature__text2 {
    min-width: 250px;
    padding: 20px 16px;
    font-size: 14px;
  }
}
@media screen and (max-width: 820px) {
  .feature__text1,
  .feature__text2 {
    width: 100%;
    padding: 24px 20px;
  }
}
.feature__text1 h2,
.feature__text2 h2 {
  margin-bottom: 17px;
  font-size: 20px;
  color: #A88657;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .feature__text1 h2,
  .feature__text2 h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.feature__text1 p,
.feature__text2 p {
  line-height: 1.75;
}

.feature__text2 p {
  padding: 14px 0;
}
@media screen and (max-width: 1023px) {
  .feature__text2 p {
    padding: 0;
  }
}

/*------------------------------------------------------------------
Gallery
--------------------------------------------------------------------*/
.gallery__inner {
  width: 100%;
  max-width: 1080px;
  padding: 80px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .gallery__inner {
    padding: 64px 20px;
  }
}

.gallery-grid {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-item:hover {
  border-color: #A88657;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::before {
  box-shadow: inset 0 0 0 15px rgba(0, 0, 0, 0.3);
}

.gallery-row-type-A {
  display: grid;
  grid-template-columns: 305px 205px 205px 157px;
  gap: 16px;
  grid-auto-rows: 153px;
  align-items: stretch;
  margin-bottom: 16px;
}
@media screen and (min-width: 822px) and (max-width: 1024px) {
  .gallery-row-type-A {
    grid-template-columns: 230fr 185fr 185fr 177fr;
    gap: 1.2vw;
    grid-auto-rows: 13.8vw;
    margin-bottom: 1.2vw;
  }
}
@media screen and (max-width: 820px) {
  .gallery-row-type-A {
    grid-template-columns: 230fr 185fr 185fr 177fr;
    gap: 1.5vw;
    grid-auto-rows: 21.8vw;
    margin-bottom: 1.5vw;
  }
}

.gallery-row-type-B {
  display: grid;
  grid-template-columns: 350px 190px 350px;
  gap: 16px;
  grid-auto-rows: 282px;
  align-items: stretch;
  margin-bottom: 16px;
}
@media screen and (min-width: 822px) and (max-width: 1024px) {
  .gallery-row-type-B {
    grid-template-columns: 350fr 190fr 350fr;
    gap: 1.2vw;
    grid-auto-rows: 19.8vw;
    margin-bottom: 1.2vw;
  }
}
@media screen and (max-width: 820px) {
  .gallery-row-type-B {
    grid-template-columns: 350fr 220fr 320fr;
    gap: 1.5vw;
    grid-auto-rows: 26.8vw;
    margin-bottom: 1.5vw;
  }
}

.gallery-row-type-C {
  display: grid;
  grid-template-columns: 265px 393px 230px;
  gap: 16px;
  grid-auto-rows: 153px;
  align-items: stretch;
}
@media screen and (min-width: 822px) and (max-width: 1024px) {
  .gallery-row-type-C {
    grid-template-columns: 285fr 393fr 230fr;
    gap: 1.2vw;
    grid-auto-rows: 13.8vw;
  }
}
@media screen and (max-width: 820px) {
  .gallery-row-type-C {
    grid-template-columns: 290fr 368fr 230fr;
    gap: 1.5vw;
    grid-auto-rows: 19.8vw;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 820px) {
  .modal-overlay {
    padding-left: 0;
    left: 0 !important;
    width: 100% !important;
    justify-content: center;
    align-items: center;
  }
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .modal-content {
    position: relative;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-close-button {
  position: absolute;
  top: -28px;
  right: 2px;
  font-size: 15px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid #ccc;
}
@media screen and (max-width: 820px) {
  .modal-close-button {
    position: absolute;
    font-size: 24px;
    top: -50px;
    right: 10px;
    width: 35px;
    height: 35px;
    transform: none;
  }
}
.modal-close-button:hover {
  background-color: #f0f0f0;
}

/*-----------------------------------------------------------
Contact
-------------------------------------------------------------*/
.contact__inner {
  width: 100%;
  max-width: 1080px;
  height: 302px;
  max-height: 100%;
  padding: 40px 0px;
  background-image: url("../image/contact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  /*&::before {
    transform: scale(0.8);
  }*/
}
@media screen and (max-width: 820px) {
  .contact__inner {
    display: block;
    height: 329px;
    padding: 40px 0;
  }
}

.contact__title__upper {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 5px;
}
@media screen and (max-width: 820px) {
  .contact__title__upper {
    text-align: center;
  }
}
.contact__title__bottom {
  color: #fff;
}
@media screen and (max-width: 820px) {
  .contact__title__bottom {
    text-align: center;
  }
}

.contact__text {
  color: #fff;
  padding-top: 40px;
  line-height: 1.75;
}
@media screen and (max-width: 820px) {
  .contact__text {
    text-align: center;
    padding-top: 24px;
  }
}

.contact-btn-wrap {
  width: 440px;
  height: 62px;
  background: #fff;
}
@media screen and (min-width: 822px) and (max-width: 1024px) {
  .contact-btn-wrap {
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 820px) {
  .contact-btn-wrap {
    margin: 40px auto 0;
    max-width: 90%;
  }
}

.contact-btn {
  font-size: 20px;
  text-align: center;
  line-height: 62px;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .contact-btn {
    font-size: 18px;
  }
}

/*-----------------------------------------------------
sns
-------------------------------------------------------*/
.sns__inner {
  width: 100%;
  max-width: 1080px;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .sns__inner {
    display: block;
  }
}

.sns__ig,
.sns__fb {
  width: 100%;
  height: 266px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
@media screen and (max-width: 820px) {
  .sns__ig,
  .sns__fb {
    margin-bottom: 24px;
    height: 200px;
  }
  .sns__ig.sns__fb,
  .sns__fb.sns__fb { /* ここを追加 */
    margin-bottom: 0;
  }
}
.sns__ig:hover,
.sns__fb:hover {
  filter: grayscale(0%);
}
.sns__ig a,
.sns__fb a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.sns__ig p,
.sns__fb p {
  color: #fff;
  font-size: 24px;
  padding-top: 3px;
  font-weight: 700;
}

.sns__ig {
  background-image: url("../image/instagram-cta.png");
}

.sns__fb {
  background-image: url("../image/facebook-cta.png");
}

/*-------------------------------------------------------------------
Footer
---------------------------------------------------------------------*/
.footer {
  width: 100%;
  max-width: 1080px;
  height: 191px;
  padding: 40px 80px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .footer {
    padding: 0 20px;
  }
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (max-width: 820px) {
  .footer__wrapper {
    display: block;
    padding: 40px 20px 24px;
  }
}
.footer__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 820px) {
  .footer__title {
    text-align: center;
  }
}
.footer__nav__list {
  display: flex;
  gap: 24px;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .footer__nav__list {
    justify-content: center;
    padding-top: 24px;
  }
}
@media screen and (max-width: 414px) {
  .footer__nav__list {
    gap: 18px;
  }
}
@media screen and (max-width: 820px) {
  .footer__nav__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 414px) {
  .footer__nav__item {
    font-size: 12px;
  }
}

.copy__right {
  font-size: 14px;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 820px) {
  .copy__right {
    padding-bottom: 40px;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */