@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
}

body {
  font-size: 1.4em;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #FAFAFA;
}
@media screen and (min-width: 768px) {
  body {
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  }
}

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

a {
  display: block;
  color: #333;
  text-decoration: none;
}

li {
  list-style: none;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.main-title {
  margin-bottom: 32px;
  color: #D1989F;
  font-size: 3.4rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.16em;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .main-title {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .main-title {
    margin-bottom: 32px;
  }
}

.main-catch {
  margin-bottom: 24px;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .main-catch {
    margin-bottom: 40px;
    font-size: clamp(2rem, 1.875vw, 2.4rem);
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .main-catch {
    margin-bottom: 24px;
  }
}

.link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 14px 0;
  max-width: 180px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #7A9EA1;
  border: 1px solid #7A9EA1;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .link-button {
    margin-top: 60px;
  }
}
.link-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/arrow-green.svg);
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.link-button:hover {
  color: #FAFAFA;
  background-color: #7A9EA1;
}
.link-button:hover::after {
  background-image: url(../img/common/arrow-white.svg);
}

.container {
  margin: 0 auto 100px;
  width: 89.33%;
  max-width: 1300px;
}
@media screen and (min-width: 768px) {
  .container {
    margin-bottom: 180px;
    width: 87.5%;
  }
}

.page-mv {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .page-mv {
    margin-bottom: 160px;
  }
}

.page-title {
  color: #FAFAFA;
  font-family: "Roboto", sans-serif;
  font-size: clamp(4.8rem, 12.8vw, 7rem);
  letter-spacing: 0.16em;
  font-weight: 600;
}

.js-fadeIn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.3s ease;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 68px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
    padding: 0 40px;
  }
}
.header__logo {
  z-index: 20;
  width: 80px;
  height: auto;
  line-height: 1px;
}
.header__logo--green {
  display: none;
}
.header__logo--black {
  display: none;
}
.header__hamburger {
  position: relative;
  z-index: 20;
  width: 30px;
  height: 30px;
}
.header__hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FAFAFA;
  transition: all 0.5s ease-in-out;
}
.header__hamburger span:first-child {
  top: 30%;
}
.header__hamburger span:last-child {
  bottom: 30%;
}
.header__nav {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav {
    position: relative;
    left: 0;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    width: auto;
    height: auto;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 188px;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }
}
.header__nav-item a {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav-item a {
    color: #FAFAFA;
  }
}
.header__nav-item a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FAFAFA;
  transform: scale(0, 1);
  transition: all 0.3s ease;
  transform-origin: left bottom;
}
.header__nav-item a:hover::after {
  transform: scale(1, 1);
}
.header__nav-item--shop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #7A9EA1;
  border-radius: 9999px;
  color: #7A9EA1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav-item--shop a {
    color: #FAFAFA;
    border: 1px solid #FAFAFA;
  }
}
.header__nav-item--shop a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/shop-icon-green.svg);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav-item--shop a::before {
    background-image: url(../img/common/shop-icon-white.svg);
  }
}
.header__nav-item--shop a::after {
  content: none;
}
.header__nav-item--shop a:hover {
  background-color: #7A9EA1;
}

.header.is-show .header__logo--white {
  display: none;
}
.header.is-show .header__logo--green {
  display: block;
}
.header.is-show .header__hamburger span {
  background-color: #333;
}
.header.is-show .header__hamburger span:first-child {
  top: 50%;
  transform: rotate(-45deg);
}
.header.is-show .header__hamburger span:last-child {
  top: 50%;
  transform: rotate(45deg);
}
.header.is-show .header__nav {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.header.is-ColorScroll {
  background-color: rgba(250, 250, 250, 0.6);
}
.header.is-ColorScroll .header__logo--white {
  display: none;
}
.header.is-ColorScroll .header__logo--green {
  display: block;
}
.header.is-ColorScroll .header__hamburger span {
  background-color: #333;
}
.header.is-ColorScroll .header__nav-item a {
  color: #333;
}
.header.is-ColorScroll .header__nav-item a::after {
  background-color: #333;
}
.header.is-ColorScroll .header__nav-item--shop a {
  color: #7A9EA1;
  border: 1px solid #7A9EA1;
}
.header.is-ColorScroll .header__nav-item--shop a::before {
  background-image: url(../img/common/shop-icon-green.svg);
  transition: all 0.3s ease;
}
.header.is-ColorScroll .header__nav-item--shop a:hover {
  color: #FAFAFA;
}
.header.is-ColorScroll .header__nav-item--shop a:hover::before {
  background-image: url(../img/common/shop-icon-white.svg);
}

.footer {
  padding: 40px 0 24px;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}
.footer__wrapper {
  margin: 0 auto;
  width: 89.33%;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    width: 87.5%;
  }
}
.footer__info {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-bottom: 0;
  }
}
.footer__logo {
  margin-bottom: 40px;
  width: 140px;
  transition: all 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  transition: all 0.3s ease;
}
.footer__sns::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/sns-icon-black.svg);
  background-position: center;
}
.footer__sns:hover {
  opacity: 0.6;
}
.footer__nav {
  margin-bottom: 60px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    flex-direction: row;
    gap: 40px;
  }
}
.footer__nav-list a {
  width: fit-content;
  transition: all 0.3s ease;
}
.footer__nav-list a:hover {
  opacity: 0.6;
}
.footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

/* -----------------------------------------------------------------
main-visual
----------------------------------------------------------------- */
.front-mv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 0px 0px 22px 20px;
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/mv_img.jpg);
  background-size: cover;
  background-position: 63% 50%;
}
@media screen and (min-width: 768px) {
  .front-mv {
    padding: 0px 80px 60px 0px;
  }
}
.front-mv p {
  color: #FAFAFA;
  letter-spacing: 0.16em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.26);
}
@media screen and (min-width: 768px) {
  .front-mv p {
    text-align: right;
  }
}
.front-mv__catch {
  font-size: clamp(1.8rem, 4.8vw, 2.6rem);
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .front-mv__catch {
    font-size: clamp(2.6rem, 2.03vw, 5rem);
  }
}
.front-mv__text {
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .front-mv__text {
    font-size: clamp(1.8rem, 1.4vw, 3.5rem);
  }
}

/* -----------------------------------------------------------------
front-information
----------------------------------------------------------------- */
.front-information {
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .front-information {
    padding: 200px 0;
  }
}
.front-information__text {
  text-align: center;
}
.front-information__text span {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .front-information__text span {
    display: inline-block;
    margin-top: 8px;
  }
}

.front-information__container {
  height: 400vh;
  /* スクロール可能な高さを設定 */
  position: relative;
}

.scroll-section {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.images-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* 初期位置：縦に並べる */
.image-item:nth-child(1) {
  width: 50.6vw;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(1) {
    width: 25vw;
  }
}

.image-item:nth-child(2) {
  width: 33.06vw;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(2) {
    width: 17.65vw;
  }
}

.image-item:nth-child(3) {
  width: 32vw;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(3) {
    width: 17.65vw;
  }
}

.image-item:nth-child(4) {
  width: 37.33vw;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(4) {
    width: 13.28vw;
  }
}

.image-item:nth-child(5) {
  width: 20.26vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(5) {
    width: 19.53vw;
  }
}

.image-item:nth-child(6) {
  width: 20.26vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(6) {
    width: 17.96vw;
  }
}

.image-item:nth-child(7) {
  width: 50.66vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .image-item:nth-child(7) {
    width: 15.62vw;
  }
}

/* -----------------------------------------------------------------
about / recommend
----------------------------------------------------------------- */
.front-about,
.front-recommend {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .front-about,
  .front-recommend {
    margin-bottom: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .front-about,
  .front-recommend {
    margin-bottom: 120px;
  }
}
.front-about__container,
.front-recommend__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 2200px;
}
@media screen and (min-width: 768px) {
  .front-about__container,
  .front-recommend__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 93.75%;
  }
}
.front-about__wrapper,
.front-recommend__wrapper {
  margin: 0 auto;
  width: 89.33%;
}
@media screen and (min-width: 768px) {
  .front-about__wrapper,
  .front-recommend__wrapper {
    margin: 0;
    width: 41.67%;
  }
}
@media screen and (min-width: 768px) {
  .front-about__img,
  .front-recommend__img {
    width: 50%;
  }
}

/* about */
@media screen and (min-width: 768px) {
  .front-about__container {
    margin-left: auto;
  }
}

/* recommend */
@media screen and (min-width: 768px) {
  .front-recommend__container {
    flex-direction: row-reverse;
  }
}

/* -----------------------------------------------------------------
item
----------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .front-item {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .front-item__content {
    width: 81.25%;
  }
}
@media screen and (min-width: 768px) {
  .front-item__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
  }
}
.front-item__list-item {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .front-item__list-item {
    margin-bottom: 0;
  }
  .front-item__list-item:nth-child(1) {
    grid-row: 1/3;
  }
  .front-item__list-item:nth-child(2) {
    grid-row: 1;
  }
  .front-item__list-item:nth-child(3) {
    grid-row: 3;
  }
  .front-item__list-item:nth-child(4) {
    grid-row: 2/4;
  }
}
.front-item__list-item a {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .front-item__list-item a {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .front-item__list-item a img {
    height: 100%;
    object-position: center;
    transition: all 0.3s ease-in-out;
  }
}
.front-item__list-item a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 146px;
  border: 1px solid #FAFAFA;
  border-radius: 9999px;
  color: #FAFAFA;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.14em;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .front-item__list-item a span {
    width: 13vw;
    max-width: 146px;
    height: 13vw;
    max-height: 146px;
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  }
}
.front-item__list-item a:hover img {
  transform: scale(1.1);
}
.front-item__list-item a:hover span {
  background-color: #FAFAFA;
  color: #7A9EA1;
}
.front-item__link-button {
  margin-left: auto;
}

/* -----------------------------------------------------------------
instagram
----------------------------------------------------------------- */
.instagram {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .instagram {
    margin-bottom: 180px;
  }
}
.instagram__main-title {
  margin: 0 auto 32px;
  width: 89.33%;
}
@media screen and (min-width: 768px) {
  .instagram__main-title {
    margin-bottom: 60px;
    width: 87.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .instagram__main-title {
    margin-bottom: 32px;
  }
}
.instagram__slide {
  width: 100%;
}

.slick-slide {
  margin: 0 5px;
}

/* -----------------------------------------------------------------
faq
----------------------------------------------------------------- */
.front-faq {
  margin-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .front-faq {
    display: flex;
    justify-content: space-between;
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 768px) {
  .front-faq__content {
    width: 81.25%;
  }
}
.front-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}
.front-faq__item:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.4);
}
.front-faq__item p {
  width: calc(100% - 16px - 40px);
}
.front-faq__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #FAFAFA;
  transform: translate(0, 24%);
}
@media screen and (min-width: 768px) {
  .front-faq__item span {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
  }
}
.front-faq__question, .front-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 8px;
}
.front-faq__question {
  cursor: pointer;
  transition: all 0.3s ease;
}
.front-faq__question span {
  background-color: #7A9EA1;
}
.front-faq__question::after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0, 24%);
  background-image: url(../img/top/fqa_open-icon.svg);
}
.front-faq__question:hover {
  opacity: 0.6;
}
.front-faq__answer {
  padding-top: 24px;
}
.front-faq__answer span {
  background-color: #D1989F;
}

.front-faq__question.is-open::after {
  background-image: url(../img/top/fqa_close-icon.svg);
}

.cta {
  position: relative;
  margin-top: 120px;
  padding: 60px 0 80px;
  background: linear-gradient(45deg, rgb(209, 152, 159) 0%, rgba(209, 152, 159, 0.8) 71%, rgba(209, 152, 159, 0.3) 100%);
}
@media screen and (min-width: 768px) {
  .cta {
    margin-top: 200px;
  }
}
.cta p {
  margin: 0 auto 32px;
  width: 68%;
  font-size: 1.6rem;
  color: #FAFAFA;
}
@media screen and (min-width: 768px) {
  .cta p {
    text-align: center;
  }
}
.cta a {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 180px;
  height: 180px;
  border: 1px solid #FAFAFA;
  border-radius: 9999px;
  background-color: #FAFAFA;
  color: #D1989F;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.cta a span {
  position: relative;
  z-index: 2;
}
.cta a::before {
  position: relative;
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background-image: url(../img/common/shop-icon-pink.svg);
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.cta a::after {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  background-color: #D1989F;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transform-origin: center;
  border-radius: 9999px;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}
.cta a:hover {
  color: #FAFAFA;
}
.cta a:hover::before {
  background-image: url(../img/common/shop-icon-white.svg);
}
.cta a:hover::after {
  transform: translate(-50%, -50%) scale(1, 1);
}
.cta__bg-container {
  position: absolute;
  top: 190px;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .cta__bg-container {
    top: 160px;
  }
}
.cta__bg-content {
  display: flex;
  animation: loop_animation 120s linear infinite both;
}
.cta__bg-text {
  font-size: 5.6rem;
  letter-spacing: 0.06em;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.2);
  white-space: nowrap;
}

@keyframes loop_animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* -----------------------------------------------------------------
main-visual
----------------------------------------------------------------- */
.about-mv {
  background-image: url(../img/about/mv_img.jpg);
}

/* -----------------------------------------------------------------
story
----------------------------------------------------------------- */
.about-story {
  text-align: center;
}
.about-story__text {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .about-story__text {
    margin-bottom: 32px;
  }
}

/* -----------------------------------------------------------------
recommend
----------------------------------------------------------------- */
#about-recommend {
  scroll-margin-top: 100px;
}

@media screen and (min-width: 768px) {
  .about-recommend__wrapper {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .about-recommend__list {
    width: 50%;
  }
}
.about-recommend__item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}
@media screen and (min-width: 768px) {
  .about-recommend__item {
    padding: 200px 0;
  }
}
.about-recommend__item:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.4);
}
.about-recommend__sub-title {
  display: block;
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}
.about-recommend__img--sp {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .about-recommend__img--sp {
    display: none;
  }
}
.about-recommend__title {
  margin-bottom: 24px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-weight: 400;
}
.about-recommend__list--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-recommend__list--pc {
    display: block;
    position: sticky;
    top: 120px;
    width: 40%;
    height: 100%;
    aspect-ratio: 5/6;
  }
}
.about-recommend__item--pc {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.about-recommend__item--pc:first-child {
  visibility: visible;
  opacity: 1;
}
.about-recommend__item--pc.active {
  visibility: visible;
  opacity: 1;
}

/* -----------------------------------------------------------------
main-visual
----------------------------------------------------------------- */
.item-mv {
  background-image: url(../img/item/mv_img.jpg);
}

/* -----------------------------------------------------------------
itemコンテンツ
----------------------------------------------------------------- */
#item-container {
  scroll-margin-top: 100px;
}

/* -----------------------------------------------------------------
カテゴリータブ
----------------------------------------------------------------- */
.item-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 80px;
  letter-spacing: 0.14em;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .item-category__list {
    gap: 40px;
    margin-bottom: 100px;
  }
}
.item-category__item {
  position: relative;
  font-weight: 500;
}
.item-category__item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: all 0.3s ease;
}
.item-category__item:hover::after {
  transform: scale(1, 1);
}
.item-category__item.is-selected::after {
  transform: scale(1, 1);
}

/* -----------------------------------------------------------------
item一覧
----------------------------------------------------------------- */
.item__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6%;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .item__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3.5%;
    row-gap: 80px;
  }
}
.item__img {
  margin-bottom: 8px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .item__img {
    margin-bottom: 16px;
  }
}
.item__img img {
  width: 100%;
  aspect-ratio: 1;
  transition: all 0.3s ease-in-out;
}
.item__price {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .item__price {
    font-size: 1.4rem;
  }
}
.item__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .item__button {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}
.item__button::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../img/item/online-link-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.item__link:hover .item__img img {
  transform: scale(1.1);
}
.item__link:hover .item__button {
  color: #7A9EA1;
  border-top: 1px solid #7A9EA1;
  border-bottom: 1px solid #7A9EA1;
}
.item__link:hover .item__button::after {
  background-image: url(../img/item/online-link-green.svg);
}

/* -----------------------------------------------------------------
main-visual
----------------------------------------------------------------- */
.contact-mv {
  background-image: url(../img/contact/mv_img.jpg);
}

.contact__lead {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .contact__container {
    width: 62.5%;
  }
}
.contact__label {
  margin-bottom: 8px;
}
.contact__content {
  margin-bottom: 40px;
}
.contact__content:last-child {
  height: 180px;
}
.contact__content p {
  height: 100%;
}
.contact__content input {
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.4);
}
.contact__content textarea {
  padding: 8px 16px;
  overflow-y: scroll;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.4);
}
.contact__input {
  width: 100%;
  height: 100%;
}
.contact__submit {
  margin: 40px auto 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 60px;
  }
}
.contact__submit input {
  color: #7A9EA1;
  transition: all 0.3s ease-in-out;
}
.contact__submit:hover input {
  color: #FAFAFA;
}

.wpcf7-spinner {
  display: none;
}/*# sourceMappingURL=style.css.map */