@charset "UTF-8";
/**
 * rclamp拡張版
 * - 文字サイズ・高さ・幅・paddingなどに使える
 * - デフォルトのビューポートは SP: 390px, PC: 1400px
 */
/* clamp() Safari バグ対策 */
* {
  min-height: 0vw;
}

body {
  background: #fff;
  color: #464646;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 2;
}

.text__change-color {
  color: #fd0a02;
}

.btn {
  background: #464646;
  padding-inline: 30px;
  justify-content: center; /* 横方向中央 */
  align-items: center;
  color: #fff;
  display: inline-flex;
  border: 1px solid #464646;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.btn:hover {
  background-color: #fff;
  color: #464646;
  border: 1px solid #464646;
}

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

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

.inner {
  margin: 0 auto;
  max-width: 1400px;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 15px;
  }
}

.section {
  padding-top: 88px;
}
@media not screen and (min-width: 768px) {
  .section {
    padding-top: 80px;
  }
}

.section__title-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.section__title-logo {
  max-width: 116px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .section__title-logo {
    max-width: 70px;
  }
}

.section__title {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
}
@media not screen and (min-width: 768px) {
  .section__title {
    font-size: 35px;
  }
}

.about__profile-section-yonezawa.animated__clipView {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.about__profile-section-yonezawa.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.profile-section_yonezawa.animated__clipView {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
.profile-section_yonezawa.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.about__profile-section-onchi.animated__clipView {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.8s ease;
}
.about__profile-section-onchi.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.profile-section-onchi.animated__clipView {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.8s ease;
}
.profile-section-onchi.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.animation-logo {
  animation: 2s 1s linear backwards infinite animationLogo;
}
@keyframes animationLogo {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 10deg;
  }
  100% {
    rotate: 0deg;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
  background: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 82px 40px;
  padding-block: 5px;
}
@media screen and (max-width: 899px) {
  .header__inner {
    padding-left: 16px;
    height: 60px;
  }
}

.header__logo-title {
  transition: opacity 0.3s ease;
}
.header__logo-title img {
  width: 89.069px;
  height: 78.273px;
}
@media screen and (max-width: 899px) {
  .header__logo-title img {
    width: 57.207px;
    height: 50.273px;
    aspect-ratio: 57.21/50.27;
  }
}
.header__logo-title:hover {
  opacity: 0.8;
}

.header__lists {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 899px) {
  .header__lists {
    display: none;
  }
}

.header__link {
  font-size: clamp(1.125rem, 0.45rem + 1.2vw, 1.5rem);
  font-family: "Open Sans", sans-serif;
}

.header__btn {
  margin-left: 27px;
  color: #fff;
  font-size: clamp(1.125rem, 0.675rem + 0.8vw, 1.375rem);
  height: 40px;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 18px;
  right: 17px;
  width: 25px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.drawer__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: #464646;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.drawer__icon.js-show::before {
  background: #464646;
}
@media screen and (min-width: 900px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #fff;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 10.5px;
  background: #fff;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -10.5px;
  background: #fff;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 290px;
  height: 100vh;
  background: #464646;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.drawer__list li a {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.drawer__list li a:hover {
  opacity: 0.8;
}

.fvImage {
  position: relative;
}

.fv__swiper-slide img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title {
  background-color: #fff;
  max-width: 518px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 21%;
  z-index: 10;
  padding-block: 8px 17px;
}
@media not screen and (min-width: 768px) {
  .fv__title {
    width: 80%;
    gap: 0;
    bottom: 9%;
    height: 98px;
  }
}

.fv__title-logo {
  max-width: 309.326px;
  width: 80%;
  height: auto;
}
@media not screen and (min-width: 768px) {
  .fv__title-logo {
    max-width: 199.45px;
  }
}

.fv__title-text {
  font-family: "Zen Kurenaido", sans-serif;
}
@media not screen and (min-width: 768px) {
  .fv__title-text {
    font-size: 14px;
    margin-top: 23px;
  }
}

.about__text {
  text-align: center;
  margin-top: 67px;
  font-size: 20px;
}
@media not screen and (min-width: 768px) {
  .about__text {
    margin-top: 40px;
  }
}

.about__subtext {
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .about__subtext {
    margin-top: 15px;
    font-size: 14px;
  }
}

.about__profile-contents-pc {
  margin-top: 75px;
  max-width: 806px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media not screen and (min-width: 768px) {
  .about__profile-contents-pc {
    display: none;
  }
}

.about__profile-section-yonezawa-wrap {
  position: relative;
}

.about__profile-bg-yonezawa {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 77vw; /* 画面幅の左半分を塗る */
  min-width: 800px;
  height: 100%;
  background-color: #f6f5f3;
  z-index: -1; /* 背景にする */
  /* inner の中央寄せを打ち消して左端へ */
  margin-left: calc(50% - 50vw);
}

.about__profile-section-yonezawa {
  display: flex;
  align-items: flex-start;
  padding-right: 107px;
  position: relative;
  padding-block: 40px;
}

.about__profile-section-yonezawa-logo {
  width: 166.432px;
  height: 134.625px;
  flex-shrink: 0;
  aspect-ratio: 166.43/134.62;
  position: absolute;
  bottom: 29px;
  right: 68px;
}

.about__profile-image-yonezawa {
  width: 200px;
  margin-right: clamp(2.5rem, 0.5rem + 4.5714285714vw, 4.5rem);
}

.about__profile-body-yonezawa {
  margin-top: 47px;
}

.about__profile-text-yonezawa {
  margin-right: 86px;
  font-size: 14px;
}

.about__profile-name-yonezawa {
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  left: -42px;
  top: 13px;
}

.about__profile-name-ja-yonezawa {
  font-size: 24px;
  letter-spacing: 4px;
}

.about__profile-name-en-yonezawa {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  writing-mode: horizontal-tb;
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: left top;
  position: absolute;
  top: -5px;
  right: -111px;
  white-space: nowrap;
}

.about__profile-section-onchi-wrap {
  position: relative;
}

.about__profile-bg-onchi {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 77vw; /* 画面幅の左半分を塗る */
  min-width: 800px;
  height: 100%;
  background-color: #f6f5f3;
  z-index: -1; /* 背景にする */
  /* inner の中央寄せを打ち消して左端へ */
  margin-right: calc(50% - 50vw);
}

.about__profile-section-onchi {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  padding-left: 107px;
  position: relative;
  padding-block: 40px;
}

.about__profile-section-onchi-logo {
  width: 119.633px;
  height: 177.061px;
  flex-shrink: 0;
  aspect-ratio: 119.63/177.06;
  position: absolute;
  left: 65px;
  bottom: 11px;
}

.about__profile-image-onchi {
  width: 200px;
  margin-left: clamp(2.5rem, 0.5rem + 4.5714285714vw, 4.5rem);
}

.about__profile-body-onchi {
  margin-top: 46px;
}

.about__profile-text-onchi {
  font-size: 14px;
  margin-left: 88px;
}

.about__profile-name-onchi {
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  top: 8px;
  left: 36px;
}

.about__profile-name-ja-onchi {
  font-size: 24px;
  letter-spacing: 4px;
}

.about__profile-name-en-onchi {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  writing-mode: horizontal-tb;
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: left top;
  position: absolute;
  top: 0;
  right: -49px;
  white-space: nowrap;
}

.about__button {
  text-align: center;
  margin-top: 60px;
}

.about__profile-contents-sp {
  display: none;
}
@media not screen and (min-width: 768px) {
  .about__profile-contents-sp {
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
    margin-top: 30px;
  }
}

.profile-section_yonezawa-wrap {
  position: relative;
}

.profile-section_yonezawa-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 92vw; /* 画面幅の左半分を塗る */
  height: 100%;
  background-color: #f6f5f3;
  z-index: -1; /* 背景にする */
  /* inner の中央寄せを打ち消して左端へ */
  margin-left: calc(50% - 50vw);
}

.profile-section_yonezawa {
  position: relative;
  padding-block: 40px;
  margin-top: 50px;
}

.profile-section_yonezawa-top {
  display: flex;
  position: relative;
}

.about__profile-section-yonezawa-logo-sp {
  width: 166.432px;
  height: 134.625px;
  flex-shrink: 0;
  aspect-ratio: 166.43/134.62;
  position: absolute;
  bottom: 4px;
  left: clamp(180px, 50%, 500px);
}

.about__profile-text-yonezawa-sp {
  width: 90%;
  padding-left: 10px;
  font-size: 14px;
}

.profile-section-onchi-wrap {
  position: relative;
}

.profile-section_onchi-bg {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 92vw; /* 画面幅の左半分を塗る */
  height: 100%;
  background-color: #f6f5f3;
  z-index: -1; /* 背景にする */
  /* inner の中央寄せを打ち消して左端へ */
  margin-right: calc(50% - 50vw);
}

.profile-section-onchi {
  position: relative;
  padding-block: 40px;
}

.profile-section-onchi-top {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.about__profile-section-onchi-logo-sp {
  width: 100px;
  flex-shrink: 0;
  aspect-ratio: 119/177;
  position: absolute;
  bottom: 4px;
  right: clamp(200px, 50%, 500px);
}

.about__profile-text-onchi-sp {
  width: 90%;
  margin-left: auto;
  font-size: 14px;
}

.gallery {
  padding-bottom: 50px;
  padding-top: 187px;
}
@media not screen and (min-width: 768px) {
  .gallery {
    padding-top: 100px;
    padding-bottom: 0;
  }
}

.gallery__swiper {
  margin-top: 61px;
  padding-bottom: 70px;
}
@media not screen and (min-width: 768px) {
  .gallery__swiper {
    padding-bottom: 0;
  }
}

.gallery__swiper-slide {
  width: 320px; /* 最低幅を確保 */
  aspect-ratio: 320/434;
}

.gallery__swiper img {
  width: 100%;
}

.custom-pagination {
  text-align: center;
  padding-top: 74px;
  bottom: 0;
}
@media not screen and (min-width: 768px) {
  .custom-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  opacity: 0.5;
  background-color: #464646;
  width: 11px;
  height: 11px;
  aspect-ratio: 1/1;
  margin: 0 9px !important;
}

.swiper-pagination-bullet-active {
  /*アクティブなドットの透過度を1にする*/
  opacity: 1;
}

.news {
  padding-bottom: 65px;
}
@media not screen and (min-width: 768px) {
  .news {
    padding-bottom: 0;
  }
}

.news-card {
  margin-top: 80px;
  background-color: #f6f5f3;
  padding-block: 65px;
  max-width: 700px;
  padding-inline: 31px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .news-card {
    margin-top: 40px;
  }
}

.news-card__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.news-card__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card__header {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .news-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.news-card__category {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28px;
  padding-inline: 10px;
  border: 1px solid #464646;
}

.news-card__date {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75; /* 175% */
  letter-spacing: 0.32px;
}

.news-card__text {
  font-family: "Noto Sans JP", sans-serif;
}
@media not screen and (min-width: 768px) {
  .news-card__text {
    font-size: 14px;
  }
}

.instagram {
  padding-top: 107px;
  padding-bottom: 100px;
}
@media not screen and (min-width: 768px) {
  .instagram {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.instagram__inner {
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.instagram__contents {
  margin-top: 65px;
}

.instagram__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}
@media not screen and (min-width: 768px) {
  .instagram__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram__item {
  overflow: hidden;
}

.instagram__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.instagram__item img:hover {
  transform: scale(1.2);
}

.instagram__button {
  margin-top: 68px;
  text-align: center;
}

.contact {
  background-color: #f6f5f3;
  padding-bottom: 96px;
}

.contact__title {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.contact__form {
  max-width: 700px;
  padding-inline: 40px;
  margin-inline: auto;
  background-color: #fff;
  margin-top: 67px;
}
@media not screen and (min-width: 768px) {
  .contact__form {
    margin-top: 60px;
  }
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
  margin-inline: auto;
  padding-block: 25px 32px;
}
@media not screen and (min-width: 768px) {
  .contact__items {
    padding-block: 32px;
  }
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.contact-control__head {
  display: flex;
  gap: 8px;
  align-items: center;
}

.from__label {
  font-weight: 500;
}

.form-field__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #464646;
  padding-inline: 5px;
  height: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    flex-grow: 1;
  }
}

.form-text {
  width: 100%;
  height: 32px;
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid #464646;
  background: #fff;
  padding: 8px 10px;
}
.form-text:focus {
  outline: #6e6e6e solid 2px;
}

.form-textarea {
  width: 100%;
  height: 195px;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid #464646;
  resize: vertical;
}
.form-textarea:focus {
  outline: #6e6e6e solid 2px;
}

/* 自動入力の背景を落ち着いたグレーに */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f6f5f3 inset; /* 背景色をフォームに合わせる */
  -webkit-text-fill-color: #000; /* 文字色を黒に */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; /* フォーカス時の青瞬間を防ぐ */
}

.contact__button {
  text-align: center;
  margin-top: 9px;
}

.contact__btn {
  font-family: "Raleway", sans-serif;
}

.footer {
  background-color: #464646;
  padding-top: 55px;
  padding-bottom: 9px;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-top: 40px;
  }
}

.footer__inner {
  max-width: 920px;
  padding-inline: 20px;
  margin-inline: auto;
}

.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  max-width: 125px;
  height: auto;
  aspect-ratio: 125/109.85;
  width: 100%;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.8;
}
@media not screen and (min-width: 768px) {
  .footer__logo {
    max-width: 90px;
  }
}

.footer__body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__top-lists {
  color: #fff;
  display: flex;
  gap: 45px;
  margin-right: 27px;
}
@media not screen and (min-width: 768px) {
  .footer__top-lists {
    display: none;
  }
}

.footer__bottom-contents {
  display: flex;
  padding-left: 26px;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .footer__bottom-contents {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.footer__bottom-lists {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  display: flex; /* 中央寄せ用 */
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 4px; /* 角丸が欲しければ */
  transition: opacity 0.3s ease;
}
.footer__bottom-link:hover {
  opacity: 0.8;
}

.footer__link-image-instagram {
  width: 27.925px;
  height: 27.925px;
}

.footer_btn {
  color: #464646;
  background-color: #fff;
  margin-inline: 58px 32px;
  padding-inline: 35px;
  font-family: "Open Sans", sans-serif;
  height: 35px;
}
@media not screen and (min-width: 768px) {
  .footer_btn {
    margin-inline: 0;
  }
}

.footer_copy {
  color: var(--BW-White, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10px;
  letter-spacing: 0.2px;
  display: block;
  margin-top: 52px;
}
@media not screen and (min-width: 768px) {
  .footer_copy {
    margin-top: 20px;
  }
}

.shop {
  padding-block: 80px;
}

.shop h2 {
  font-size: 20px;
  text-align: center;
}