@charset "UTF-8";
/* base
============================= */
/* googleFonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
/* variables */
/* color */
.c-sectionTitle {
  margin-bottom: 40px;
  font-family: "pinyon Script", serif;
  font-size: 3.6rem;
  text-align: center;
  color: #A88657;
}
@media screen and (max-width: 969px) {
  .c-sectionTitle {
    margin-bottom: 42px;
  }
}

.c-sectionSubTitle {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: center;
  color: #A88657;
}

/* fontSize */
html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Sans JP", "Open Sans", "Hiragino Sanas", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

.noScroll {
  overflow: hidden;
}

a:hover {
  cursor: pointer;
}

@media screen and (max-width: 969px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 970px) {
  .sp-only {
    display: none;
  }
}
/* 2columns */
.header-mainArea-wrapper {
  display: flex;
}
@media screen and (max-width: 969px) {
  .header-mainArea-wrapper {
    flex-direction: column;
  }
}

main {
  flex: 1;
}

.mainArea {
  width: calc(100% - 200px);
}
@media screen and (max-width: 969px) {
  .mainArea {
    width: 100%;
  }
}

/* reset
============================= */
h1, h2, h3, h4, h5, h6, p, dl, dd, ul, li {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #333;
}

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

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.header--sp {
  display: none;
}

.header {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 969px) {
  .header {
    max-width: none;
  }
}

.header__inner {
  position: fixed;
  top: 0;
  top: 32px; /* ピクセルパーフェクト用 */
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  padding: 40px 16px 0;
}

.header__logo {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

.logo__upper {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.logo__lower {
  font-size: 2rem;
  line-height: 1;
}

.header__logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #bbb;
}

.header__nav {
  width: 100%;
}

.header__nav--sp {
  display: none;
}

.header__navList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.header__navListItem {
  width: 100%;
  text-align: center;
}

.header__navLink {
  display: block;
  width: 100%;
  font-weight: bold;
  line-height: 1.75;
}

.header__navLink:hover,
.header__navLink.is-active {
  color: #A88657;
}

.header__navLink--contact {
  padding: 8px 16px;
  color: #fff;
  background-color: #A88657;
  border: 1px solid #A88657;
  transition: background-color 0.5s ease-in-out;
}

.header__navLink--contact:hover {
  background-color: #fff;
}

.header__snsList {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}

.header__snsListItem {
  width: 40px;
  height: 40px;
}

.header__snsLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #A88657;
  transition: opacity 0.5s ease-in-out;
}

.header__snsLink:hover {
  opacity: 0.6;
}

.header__snsLink--instagram {
  font-size: 3.5rem;
}

.header__snsLink--facebook {
  font-size: 3.2rem;
}

@media screen and (max-width: 969px) {
  .header--pc {
    display: none;
  }
  .header__nav--sp {
    display: block;
  }
  .header--sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    background-color: #fff;
  }
  .header__inner--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header__spMenuBtn {
    position: relative;
    display: block;
    width: 35px;
    height: 24px;
  }
  .header__spMenuBtn > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: all 0.5 ease-in-out;
  }
  .header__spMenuBtn > span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .header__spMenuBtn > span:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .header__spMenuBtn > span:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .header__spLogo {
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    transition: opacity 0.5s ease-in-out;
  }
  .header__spLogo span {
    font-size: 2rem;
  }
  .header__nav--sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
  }
  .header__nav--sp.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header__navList {
    width: 100%;
    max-width: 292px;
  }
  .header__snsList {
    margin-top: 0;
  }
  .header.panelActive .header__spMenuBtn > span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header.panelActive .header__spMenuBtn > span:nth-child(2) {
    opacity: 0;
  }
  .header.panelActive .header__spMenuBtn > span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .header.panelActive .header__spLogo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .header.panelActive .header__nav--sp {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 40px 80px;
}
@media screen and (max-width: 969px) {
  .footer__inner {
    padding: 40px 20px;
  }
}

.footer__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 21px;
  border-bottom: 1px solid #bbb;
}
@media screen and (max-width: 969px) {
  .footer__upper {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}

.footer__logo {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.07em;
}

.footer__navLink {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
  transition: color 0.5s ease-in-out;
}
@media screen and (max-width: 969px) {
  .footer__navLink {
    font-size: 1.4rem;
    letter-spacing: 0.07em;
  }
}

.footer__navLink:hover {
  color: #A88657;
}

.footer__navList {
  display: flex;
  justify-content: center;
  gap: 23px;
}
@media screen and (max-width: 969px) {
  .footer__navList {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.footer__copyright {
  margin: 24px auto 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .footer__copyright {
    font-size: 1.2rem;
    margin: 24px auto 0;
  }
}

.fv__video {
  width: 100%;
  height: calc(100vh - 46px);
  height: 700px; /* ピクセルパーフェクト用 */
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 969px) {
  .fv__video {
    height: 734px;
  }
}

.copy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 80px;
}
@media screen and (max-width: 969px) {
  .copy__inner {
    padding: 40px 20px;
    text-align: center;
  }
}

.copy__line {
  display: block;
  width: 1px;
  height: 50px;
  margin: 0 auto;
  background-color: #333;
}

.copy__catchCopy {
  font-size: 2.4rem;
  line-height: 1.75;
}
@media screen and (max-width: 969px) {
  .copy__catchCopy {
    font-size: clamp(2rem, 6.75vw, 2.4rem);
  }
}

.copy__desc {
  margin-top: 24px;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .copy__desc {
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
  }
}

.pickup {
  background-color: #f6f6f6;
}

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

.pickup__splide {
  margin: 40px 0 80px;
}

.pickup__splideItem {
  height: 320px;
}

.pickup__item {
  transition: opacity 0.5s ease-in-out;
}

.pickup__item:hover {
  opacity: 0.6;
}

.pickup__itemImg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.pickup__itemTitle {
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #A88657;
}

.pickup__itemDesc {
  margin-top: 8px;
  line-height: 19px;
}

/* スライドのページネーション */
.pickup__splidePagination {
  bottom: -80px;
  gap: 12px;
}

.pickup__splidePagination li {
  line-height: 6px; /* ページネーションの高さ調整 */
}

.pickup__splidePage {
  width: 10px;
  height: 10px;
  margin: 0;
  background-color: #ccc;
  transition: all 0.5s ease-in-out;
}

.pickup__splidePage.is-active {
  background-color: #A88657;
  transform: scale(1);
  opacity: 1;
}

.plan__inner {
  padding: 80px;
}
@media screen and (max-width: 969px) {
  .plan__inner {
    padding: 64px 20px;
  }
}

.plan__tabList {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px;
}

.plan__tabItem {
  position: relative;
  width: 30.4%;
  padding: 7px;
  text-align: center;
  color: #bbb;
  border-bottom: 1px solid #bbb;
  transition: color 0.5s ease-in-out, border-bottom 0.3s ease-in-out;
}

.plan__tabItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A88657;
  transition: width 0.5s ease-in-out;
}

.plan__tabItem:hover,
.plan__tabItem.is-active {
  color: #A88657;
  border-bottom: 1px solid #baa281;
}

.plan__tabItem:hover::after,
.plan__tabItem.is-active::after {
  width: 100%;
}

.plan__tabLink {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width: 969px) {
  .plan__tabLink {
    font-size: clamp(1rem, 3.1vw, 1.4rem);
  }
}

.plan__block {
  width: 69.5%;
  height: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 2s ease, height 2s ease;
}
@media screen and (max-width: 969px) {
  .plan__block {
    width: 100%;
  }
}

.plan__block.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.plan__imageWrap > img {
  width: 100%;
  height: auto;
}

.plan__textWrap {
  margin-top: 40px;
}

.plan__deschead {
  padding-bottom: 6px;
  font-size: clamp(1.5rem, 4.6vw, 2rem);
  font-weight: 600;
  line-height: 1.75;
  color: #A88657;
  text-align: center;
  border-bottom: 1px solid #A88657;
}

.plan__descWrap {
  font-family: "Noto Sans JP", sans-serif;
}

.plan__desc {
  margin-top: 10px;
  line-height: 1.75;
}
@media screen and (max-width: 969px) {
  .plan__desc {
    font-size: clamp(1.2rem, 3.75vw, 1.6rem);
  }
}

.plan__btnWrap {
  margin-top: 40px;
  text-align: center;
}

.plan__btn {
  display: inline-block;
  padding: 16px 0;
  width: 100%;
  max-width: 360px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
  border: 1px solid #A88657;
  background-color: #A88657;
  transition: all 0.5s ease-in-out;
}

.plan__btn:hover {
  background-color: #fff;
  color: #A88657;
}

.feature {
  background-color: #f6f6f6;
}

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

.feature__contentWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 160px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .feature__contentWrap {
    gap: 40px;
  }
}

.feature__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .feature__content {
    flex-direction: column;
    align-items: center;
  }
}

.feature__content:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .feature__content:nth-of-type(2) {
    flex-direction: column;
  }
}

.feature__img {
  width: 54.3%;
  height: 350px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .feature__img {
    width: 100%;
    height: 308px;
  }
}

.feature__textWrap {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, 47.5%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 54.3%;
  height: 280px;
  padding: 58px 16px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .feature__textWrap {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 24px 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .feature__textWrap {
    padding: 40px 20px;
  }
}

.feature__content:nth-of-type(2) .feature__textWrap {
  left: 0;
}
@media screen and (max-width: 768px) {
  .feature__content:nth-of-type(2) .feature__textWrap {
    margin-right: 0;
  }
}

.feature__descHead {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 600;
  line-height: 1.75;
  color: #A88657;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .feature__descHead {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media screen and (max-width: 969px) {
  .feature__content:nth-of-type(3) .feature__descHead {
    padding-top: 3px;
  }
}

.feature__desc {
  height: 114px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  text-align: left;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
}
@media screen and (max-width: 969px) {
  .feature__desc {
    height: auto;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    letter-spacing: 0.08em;
  }
}

.feature__content:nth-of-type(2) .feature__desc {
  padding-top: 16px;
}
@media screen and (max-width: 969px) {
  .feature__content:nth-of-type(2) .feature__desc {
    padding-top: 5px;
  }
}

.feature__content:nth-of-type(3) .feature__desc {
  padding-top: 3px;
}

.gallery__inner {
  padding: 80px 0;
}
@media screen and (max-width: 969px) {
  .gallery__inner {
    padding: 64px 20px;
  }
}

.gallery__gallery {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 969px) {
  .gallery__gallery {
    gap: 8px;
  }
}

.gallery__row {
  display: grid;
  gap: 16px;
  width: 71.875vw;
}
@media screen and (max-width: 969px) {
  .gallery__row {
    gap: 8px;
    width: 100%;
  }
}

.gallery__row--1 {
  grid-template-columns: 305fr 205fr 205fr 157fr;
  aspect-ratio: 920/153;
}
@media screen and (max-width: 969px) {
  .gallery__row--1 {
    grid-template-columns: 120fr 100fr 100fr 96fr;
    aspect-ratio: 440/90;
  }
}

.gallery__row--2 {
  grid-template-columns: 350fr 190fr 350fr;
  aspect-ratio: 920/282;
}
@media screen and (max-width: 969px) {
  .gallery__row--2 {
    grid-template-columns: 164fr 102fr 158fr;
    aspect-ratio: 440/120;
  }
}

.gallery__row--3 {
  grid-template-columns: 265fr 393fr 230fr;
  aspect-ratio: 920/153;
}
@media screen and (max-width: 969px) {
  .gallery__row--3 {
    grid-template-columns: 135fr 180fr 109fr;
    aspect-ratio: 440/90;
  }
}

.gallery__item {
  width: 100%;
  height: 100%;
}

.gallery__imgWrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery__imgWrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: solid 0 rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.gallery__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 920/153;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 969px) {
  .gallery__imgWrap img {
    aspect-ratio: 440/90;
  }
}

/* hover */
.gallery__item:hover {
  cursor: pointer;
}

.gallery__item:hover .gallery__imgWrap::after {
  border-width: 15px;
}

.gallery__item:hover .gallery__imgWrap img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.1);
}

/* modal */
.modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 1000;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.modal__content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal__close {
  position: absolute;
  top: -53px;
  right: 0px;
  padding: 5px;
  font-size: 2.5rem;
  color: #A88657;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

.modal__close:hover {
  transform: rotate(25deg);
}

.cta__gridWrap {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 302px 266px;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .cta__gridWrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
  }
}

.cta__gridItem {
  position: relative;
}

.cta__gridItem::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  transition: background-color 0.5s ease-in-out;
}

.cta__gridItem:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.cta__gridItem.contactBlock:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.cta__gridContent {
  position: relative;
  z-index: 1;
}

.contactBlock {
  grid-row: 1/2;
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  background: url(../img/contact-cta.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contactBlock {
    grid-row: 1;
    padding: 40px 20px;
  }
}

.contactBlock__content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 969px) {
  .contactBlock__content {
    flex-direction: column;
    align-items: center;
  }
}

.contactBlock__textArea {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 969px) {
  .contactBlock__textArea {
    width: 100%;
    text-align: center;
  }
}

.contactBlock__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
}

.contactBlock__subTitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}

.contactBlock__sectionDesc {
  margin-top: 24px;
  font-weight: 600;
  line-height: 1.75;
  color: #fff;
}
@media screen and (max-width: 969px) {
  .contactBlock__sectionDesc {
    font-size: clamp(1.4rem, 4.3vw, 1.6rem);
  }
}

.contactBlock__btnArea {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 969px) {
  .contactBlock__btnArea {
    width: 100%;
    max-width: 440px;
  }
}

.contactBlock__btn {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 2rem;
  line-height: 1.5;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 969px) {
  .contactBlock__btn {
    font-size: 1.8rem;
  }
}

.contactBlock__btn:hover {
  background-color: #A88657;
  color: #fff;
}

.snsCtaBlock {
  grid-row: 2/2;
}

.snsCtaBlock--instagram {
  grid-column: 1/2;
  background: url(../img/instagram-cta.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .snsCtaBlock--instagram {
    grid-column: 1/1;
    grid-row: 2/3;
  }
}

.snsCtaBlock--facebook {
  grid-column: 2/3;
  background: url(../img/facebook-cta.webp) no-repeat center 70%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .snsCtaBlock--facebook {
    grid-column: 1/1;
    grid-row: 3/4;
  }
}

.snsCtaBlock__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 969px) {
  .snsCtaBlock__btn {
    height: 200px;
  }
}

.snsCtaBlock__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}

.snsCtaBlock__text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
}

.snsCtaBlock__btn > i {
  display: block;
  width: 40px;
  height: 40px;
}

.snsCtaBlock__btn--instagram > i {
  font-size: 4.2rem;
}

.snsCtaBlock__btn--facebook > i {
  font-size: 3.5rem;
}/*# sourceMappingURL=style.css.map */