@charset "UTF-8";
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-container--intro {
    padding: 0 2%;
  }
}

/* セクションレイアウト
----------------------- */
/* ===============================================
ヘッダー
=============================================== */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.l-header__btn {
  position: fixed;
  top: 20px;
  right: 120px;
  height: 50px;
  width: 290px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header__btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    top: auto;
    bottom: 10px;
    left: 50%;
    height: 60px;
    transform: translateX(-50%);
    width: 90%;
  }
}
.l-header__link {
  background: linear-gradient(to right, #CF9C00 0%, #FFFAC4 50%, #FFFAC4 55%, #CF9C00 100%);
  display: block;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center start;
  padding: 5%;
  position: relative;
  border: 2px solid #fff;
  font-size: 17px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .l-header__link {
    place-content: center center;
  }
}
.l-header__link:hover {
  transition: 0.5s;
  filter: brightness(1.2);
  letter-spacing: 1.5px;
}
.l-header__link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border: 1px solid #7a5c00;
  width: 98%;
  height: 90%;
}
.l-header__link::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* ===============================================
フッター
=============================================== */
.l-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-footer__inner {
  position: relative;
  padding: 6em 0;
  overflow: hidden;
  width: 100%;
}
.l-footer__inner::before, .l-footer__inner::after {
  position: absolute;
  content: "";
  background: url(../img/bg_asa.png) no-repeat center center/contain;
  width: 773px;
  height: 771px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner::before, .l-footer__inner::after {
    width: 287px;
    height: 286px;
  }
}
.l-footer__inner::before {
  top: -450px;
  right: -350px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner::before {
    top: -130px;
    right: -120px;
  }
}
.l-footer__inner::after {
  bottom: -200px;
  left: -350px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner::after {
    bottom: -60px;
    left: -120px;
  }
}
.l-footer__logo {
  width: 407px;
  height: 115px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 60vw;
    height: auto;
  }
}
.l-footer__hp-link {
  margin: 2em auto;
  background: #690000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  max-width: 560px;
  width: 90%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.l-footer__hp-link:hover {
  transition: 0.3s;
  letter-spacing: 1.3px;
  border: 2px solid #690000;
  background: #fff;
  color: #690000;
}
.l-footer__hp-link::after {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
}
.l-footer__hp-text {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__hp-text {
    font-size: 18px;
  }
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin: 3em auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    gap: 2em;
  }
}
.l-footer__sns-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.l-footer__sns-link:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.l-footer__sns-link i {
  font-size: 4em;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-link i {
    font-size: 3em;
  }
}
.l-footer__sns-link span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-link span {
    font-size: 16px;
  }
}
.l-footer__copyright {
  background: #000;
  color: #fff;
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1em 0;
}

/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1A1A;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #fff url("../img/bg.png") center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
    font-size: 15px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  width: 100%;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.f-link--txt {
  display: inline;
  text-decoration: underline;
}
.f-link--txt i {
  display: inline-block;
  padding-left: 0.5em;
}
.f-link--line {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0 0.5em 0;
  border-bottom: 1px solid #1A1A1A;
  text-align: center;
}
.f-link--line .icon-img {
  display: inline-flex;
  align-items: center;
}
.f-link--line .icon-img img {
  display: block;
  height: 0.9em;
  width: auto;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  display: block;
}

/* ボタン
----------------------- */
/* ロゴ
----------------------- */
/* 見出しタイトル
----------------------- */
.c-title {
  font-size: 48px;
  font-family: "Hina Mincho", serif;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 26px;
  }
}
.c-title .red {
  color: #690000;
}

.c-subtitle {
  font-size: 24px;
  font-family: "Hina Mincho", serif;
  border-left: 0.3em solid #690000;
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-subtitle {
    font-size: 20px;
  }
}

/* ===============================================
初回表示：生成り・朱・金茶で和の空気感をつくる
JS無効時／フェイルセーフ後は非表示が既定値
=============================================== */
.c-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #f6f2e9;
  color: #690000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}

.is-loading .c-loading {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.c-loading__inner {
  text-align: center;
  padding: 24px;
}

.c-loading__label {
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.c-loading__name {
  font-family: "Hina Mincho", serif;
  font-size: clamp(30px, 6vw, 42px);
  letter-spacing: 0.25em;
  margin: 8px 0 24px;
  padding-left: 0.25em;
}

.c-loading__spinner {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  border: 2px solid rgba(185, 145, 90, 0.22);
  border-top-color: #b9915a;
  border-radius: 50%;
}

.is-loading .c-loading__spinner {
  animation: loading-spin 2200ms linear infinite;
}

.c-loading__status {
  margin-top: 18px;
  color: #66584a;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.is-loading, .is-revealing {
  overflow: hidden;
}

/* ローダー表示中の背面へのキーボード操作も抑止する。 */
.is-loading body > .l-header, .is-loading body > main {
  visibility: hidden;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-loading {
    transition: none;
  }
  .is-loading .c-loading__spinner {
    animation: none;
  }
}
/* ===============================================
ナビゲーションメニュー
=============================================== */
.p-navi__hamburger {
  appearance: none;
  border: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: 2%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 999;
}
.p-navi {
  /* 中央の線 */
}
.p-navi__hamburger-line {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: background 0.3s ease;
  background-clip: padding-box;
  /* 上の線・下の線 */
}
.p-navi__hamburger-line::before, .p-navi__hamburger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}
.p-navi__hamburger-line::before {
  transform: translateY(-12px);
}
.p-navi__hamburger-line::after {
  transform: translateY(12px);
}
.p-navi__hamburger-line.is-scrolled {
  background: #7a5c00;
  box-shadow: 0 0 2px 2px rgba(225, 255, 255, 0.7);
}
.p-navi__hamburger-line.is-scrolled::before, .p-navi__hamburger-line.is-scrolled::after {
  background: #7a5c00;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.7);
}
body.is-menu-open .p-navi__hamburger-line {
  background: transparent;
}
body.is-menu-open .p-navi__hamburger-line::before, body.is-menu-open .p-navi__hamburger-line::after {
  background: #7a5c00;
}
body.is-menu-open .p-navi__hamburger-line::before {
  transform: rotate(45deg);
}
body.is-menu-open .p-navi__hamburger-line::after {
  transform: rotate(-45deg);
}
.p-navi__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 400;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.is-menu-open .p-navi__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-navi__area {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff url("../img/bg.png") center/cover no-repeat;
  pointer-events: none;
  visibility: hidden;
  z-index: 500;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 888;
}
@media screen and (max-width: 767px) {
  .p-navi__area {
    width: 90%;
  }
}
body.is-menu-open .p-navi__area {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-navi__contents {
  padding: 60px;
  margin-block: auto;
}
@media screen and (max-width: 767px) {
  .p-navi__contents {
    padding: 30px;
  }
}
.p-navi__title {
  margin-bottom: 2em;
  font-family: "Hina Mincho", serif;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-navi__title {
    font-size: 20px;
    margin-bottom: 1.5em;
  }
}
.p-navi__title .navi-big {
  display: block;
  font-size: 1.2em;
  color: #690000;
}
.p-navi__list {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
  font-size: 24px;
  font-family: "Hina Mincho", serif;
}
.p-navi__list .nav-icon {
  color: #690000;
  padding-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-navi__list {
    font-size: 1.2em;
    row-gap: 26px;
  }
}
.p-navi__link {
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.p-navi__link:hover {
  transition: 0.3s;
  color: #690000;
}
.p-navi__link .nav-img {
  display: inline-flex;
  align-items: center;
}
.p-navi__link .nav-img img {
  display: block;
  height: 0.9em;
  width: auto;
}
.p-navi__btm {
  margin-top: 40px;
}
.p-navi__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 14px;
}
.p-navi__logolink {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-navi__logolink {
    width: 160px;
  }
}
.p-navi__tel {
  font-family: "Noto Serif JP", serif;
  font-size: 29px;
  white-space: nowrap;
  color: #42210B;
}
@media screen and (max-width: 767px) {
  .p-navi__tel {
    font-size: 1.4em;
  }
}
.p-navi__tel i {
  color: #690000;
}

body.is-menu-open {
  overflow: hidden;
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  font-family: "Hina Mincho", serif;
  background: url(../img/kv_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-kv {
    aspect-ratio: auto;
    height: 100svh;
    background: url(../img/kv_bg_sp.webp) no-repeat center center/cover;
  }
}
.p-kv__sub {
  writing-mode: vertical-rl;
  position: absolute;
  left: 11%;
  top: 14%;
  font-size: 3vw;
}
@media screen and (max-width: 767px) {
  .p-kv__sub {
    font-size: 6.5vw;
    writing-mode: horizontal-tb;
    left: 5%;
    top: 60px;
  }
}
.p-kv__sub span.kv-big {
  font-size: 1.2em;
}
.p-kv__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: grid;
  place-content: center;
  place-items: center;
}
.p-kv__logo {
  width: 13vw;
}
@media screen and (max-width: 767px) {
  .p-kv__logo {
    width: 25vw;
  }
}
.p-kv__title {
  font-size: 7vw;
}
@media screen and (max-width: 767px) {
  .p-kv__title {
    font-size: 14vw;
    white-space: nowrap;
  }
}

/* ローディング終了後だけ登場。親の中央配置transformには触れない。 */
.is-loading .p-kv__logo,
.is-revealing .p-kv__logo,
.is-loading .p-kv__title,
.is-revealing .p-kv__title {
  opacity: 0;
}

.is-loaded .p-kv__logo {
  animation: kv-logo-enter 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ロゴの1400msが終了する300ms前にコピーのフェードインを開始。bothで待機中も透明にする。 */
.is-loaded .p-kv__title {
  animation: kv-title-enter 1400ms ease 700ms both;
}

@keyframes kv-title-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kv-logo-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-loaded .p-kv__logo,
  .is-loaded .p-kv__title {
    animation: none;
  }
}
/* ===============================================
イントロダクション
=============================================== */
.p-intro {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-intro {
    min-height: auto;
  }
}
.p-intro::before, .p-intro::after {
  position: absolute;
  content: "";
  background: url(../img/bg_asa.png) no-repeat center center/contain;
  width: 773px;
  height: 771px;
}
@media screen and (max-width: 767px) {
  .p-intro::before, .p-intro::after {
    width: 287px;
    height: 286px;
  }
}
.p-intro::before {
  top: -330px;
  right: -350px;
}
@media screen and (max-width: 767px) {
  .p-intro::before {
    top: -130px;
    right: -120px;
  }
}
.p-intro::after {
  bottom: 0px;
  left: -350px;
}
.p-intro__contents {
  text-align: center;
  padding: 150px 0 0;
  font-family: "Hina Mincho", serif;
  position: relative;
  z-index: 20;
  text-shadow: 3px 3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, -3px -3px 3px #fff, 0 0 15px #fff, 0 0 30px #fff;
}
@media screen and (max-width: 767px) {
  .p-intro__contents {
    padding: 40px 0 0;
    background: none;
    text-shadow: none;
  }
}
.p-intro__contents::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-intro__contents::after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/bg_asa.png) no-repeat center center/contain;
    width: 287px;
    height: 286px;
    bottom: -100px;
    left: -130px;
  }
}
.p-intro__main-title {
  font-size: 4vw;
  position: relative;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .p-intro__main-title {
    font-size: 37px;
  }
}
.p-intro__main-title .red {
  color: #690000;
}
.p-intro__main-txt {
  font-size: 26px;
  margin-top: 30px;
  line-height: 1.9;
  position: relative;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .p-intro__main-txt {
    font-size: 18px;
    margin-top: 20px;
  }
}
.p-intro__photo {
  position: absolute;
  z-index: 1;
  will-change: transform;
  width: 250px;
  height: 152px;
}
.p-intro__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(100, 55, 25, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo {
    width: 200px;
    height: 122px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__photo {
    display: none;
  }
}
.p-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
}
.p-intro__photo--01 {
  top: 210px;
  left: -3%;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--01 {
    left: 0%;
    top: 10px;
  }
}
.p-intro__photo--02 {
  top: 85px;
  left: 17%;
  width: 152px;
  height: 250px;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--02 {
    left: 0%;
    top: 200px;
    width: 122px;
    height: 200px;
  }
}
.p-intro__photo--03 {
  top: 400px;
  left: 5%;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--03 {
    top: 360px;
    left: -5%;
  }
}
.p-intro__photo--04 {
  top: 100px;
  right: 10%;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--04 {
    right: 0%;
    top: 10px;
  }
}
.p-intro__photo--05 {
  top: 380px;
  right: -3%;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--05 {
    right: -6%;
    top: 200px;
  }
}
.p-intro__photo--06 {
  top: 290px;
  right: 16%;
  width: 152px;
  height: 250px;
}
@media screen and (max-width: 1180px) {
  .p-intro__photo--06 {
    right: 0%;
    width: 122px;
    height: 200px;
    top: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__photo {
    display: none;
  }
}
.p-intro__slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-intro__slider {
    display: block;
    width: 100%;
    margin-top: 10vw;
    position: relative;
    z-index: 30;
  }
}
.p-intro__slider .splide__slide {
  width: 30vw;
  aspect-ratio: 4/3;
}
.p-intro__slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-intro__list {
  display: flex;
  justify-content: center;
  column-gap: 1cqw;
  width: 100%;
  position: relative;
  z-index: 20;
  container-type: inline-size;
  margin: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-intro__list {
    margin: 60px 0;
    column-gap: 0cqw;
  }
}
.p-intro__item {
  width: 33cqw;
  aspect-ratio: 1.15/1;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  filter: drop-shadow(0 10px 10px rgba(112, 0, 0, 0.18));
}
.p-intro__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #000000 0%, #690000 100%);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  z-index: 0;
}
.p-intro__item::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fff;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro__item::after {
    inset: 1px;
  }
}
.p-intro__item > * {
  position: relative;
  z-index: 2;
}
.p-intro__item-icon {
  margin-top: -10cqw;
}
.p-intro__item-icon img {
  width: 9cqw;
}
.p-intro__item-title {
  font-size: 3.5cqw;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  margin-top: 3cqw;
}
@media screen and (max-width: 767px) {
  .p-intro__item-title {
    font-size: 3.5cqw;
    line-height: 1.3;
  }
}
.p-intro__item-title .item-red {
  display: block;
  color: #690000;
}
@media screen and (max-width: 767px) {
  .p-intro__item-title .item-red {
    font-size: 1.5em;
  }
}
.p-intro__item-txt {
  font-size: 1.8cqw;
  margin-top: 2cqw;
}
@media screen and (max-width: 767px) {
  .p-intro__item-txt {
    font-size: 2.8cqw;
    line-height: 1.4;
    margin-top: 1cqw;
  }
}

/* ===============================================
作品について
=============================================== */
.p-products {
  padding-bottom: 180px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-products {
    padding-bottom: 60px;
  }
}
.p-products::after {
  position: absolute;
  content: "";
  background: url(../img/bg_asa.png) no-repeat center center/contain;
  width: 773px;
  height: 771px;
  bottom: -450px;
  right: -450px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-products::after {
    width: 287px;
    height: 286px;
    bottom: 0px;
    right: -130px;
  }
}
.p-products__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .p-products__wrapper {
    flex-direction: column;
  }
}
.p-products__desc {
  width: calc(100% - 550px);
  padding-right: 3em;
}
@media screen and (max-width: 1280px) {
  .p-products__desc {
    width: 100%;
  }
}
.p-products__title {
  font-size: 36px;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-products__title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.4;
  }
}
.p-products__title .red {
  color: #690000;
}
.p-products__txt {
  margin: 2em 0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-products__txt {
    font-size: 14px;
    margin: 1em 0;
  }
}
.p-products__size {
  font-size: 14px;
}
.p-products__slider {
  width: 570px;
  position: relative;
  padding-bottom: 32px;
  overflow: visible;
}
@media screen and (max-width: 1280px) {
  .p-products__slider {
    width: 100%;
    margin: 30px auto;
  }
}
.p-products .splide__track {
  overflow: hidden;
}
.p-products .splide__slide {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-products .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.p-products .splide__arrow {
  top: calc(50% - 16px);
}
.p-products .splide__pagination {
  bottom: 0;
  gap: 12px;
}
.p-products .splide__pagination__page {
  background-color: #d8d3bf;
  opacity: 1;
}
.p-products .splide__pagination__page.is-active {
  background-color: #690000;
}
.p-products__tamate {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3em;
  margin: 5em 0;
}
@media screen and (max-width: 767px) {
  .p-products__tamate {
    flex-direction: column-reverse;
    row-gap: 2em;
    margin: 3em 0 5em;
  }
}
.p-products__tamate-pic {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-products__tamate-pic {
    width: 70%;
  }
}
.p-products__tamate-pic img {
  border-radius: 20px;
  border: 3px solid #B9915A;
}
.p-products__tamate-desc {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-products__tamate-desc {
    width: 100%;
  }
}
.p-products__tamate-title {
  font-size: 30px;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-products__tamate-title {
    font-size: clamp(20px, 6vw, 30px);
  }
}
.p-products__tamate-title .red {
  color: #690000;
}
.p-products__tamate-txt {
  margin: 1em 0 0;
}
.p-products__tamate-cap {
  font-size: 0.9em;
  margin: 1em 0;
}
.p-products__tamate-btn {
  height: 60px;
  max-width: 385px;
}
.p-products__tamate-link {
  background: #690000;
  color: #fff;
  font-size: 18px;
  display: grid;
  place-content: center start;
  place-items: center;
  position: relative;
  padding: 0 1em;
  border: 2px solid #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-products__tamate-link {
    font-size: clamp(13px, 4vw, 16px);
    padding: 0 1em;
  }
}
.p-products__tamate-link::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.p-products__tamate-link:hover {
  background: #fff;
  color: #690000;
  border: 2px solid #690000;
  transition: 0.3s;
  font-weight: 700;
}

/* ===============================================
体験のご案内
=============================================== */
.p-experience {
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}
.p-experience::after {
  position: absolute;
  content: "";
  background: url(../img/bg_experience.jpg) repeat center center/contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-experience {
    padding: 40px 0;
  }
}
.p-experience__inner {
  padding-left: max(5vw, (100vw - 1200px) / 2);
  position: relative;
  z-index: 10;
}
.p-experience__slider {
  width: 90%;
  margin: 60px auto 30px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-experience__slider {
    margin: 30px auto 30px;
  }
}
.p-experience .splide__track {
  overflow: visible;
}
.p-experience .splide__slide {
  width: 28vw;
}
@media screen and (max-width: 1280px) {
  .p-experience .splide__slide {
    width: 42vw;
  }
}
@media screen and (max-width: 767px) {
  .p-experience .splide__slide {
    width: 78vw;
  }
}
.p-experience__item {
  width: 100%;
}
.p-experience__img {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-experience__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-experience__heading {
  display: flex;
  margin-top: 1em;
  column-gap: 1em;
}
.p-experience__number {
  background: linear-gradient(45deg, #000000 0%, #690000 100%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  width: 50px;
  height: 30px;
  display: grid;
  place-content: center;
  place-items: center;
  margin-top: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-experience__number {
    height: 24px;
    font-size: 18px;
  }
}
.p-experience__item-title {
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-experience__item-title {
    font-size: 22px;
  }
}
.p-experience__item-title .red {
  color: #690000;
}
.p-experience__txt {
  margin-top: 1em;
}
.p-experience__controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
  padding-right: 5vw;
}
.p-experience__progress {
  flex: 1;
  height: 3px;
  background: rgba(66, 33, 11, 0.25);
}
.p-experience__progress-bar {
  width: 0;
  height: 100%;
  background: #7a5c00;
  transition: width 0.4s ease;
}
.p-experience__arrows {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.p-experience__arrow {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #7a5c00;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

/* ===============================================
工房情報・アクセス
=============================================== */
.p-access {
  padding: 180px 0 60px;
  position: relative;
  overflow: hidden;
}
.p-access::before, .p-access::after {
  position: absolute;
  content: "";
  background: url(../img/bg_asa.png) no-repeat center center/contain;
  width: 773px;
  height: 771px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-access::before, .p-access::after {
    width: 287px;
    height: 286px;
  }
}
.p-access::before {
  top: -400px;
  left: -350px;
}
@media screen and (max-width: 767px) {
  .p-access::before {
    top: -180px;
    left: -120px;
  }
}
.p-access::after {
  bottom: -400px;
  right: -450px;
}
@media screen and (max-width: 767px) {
  .p-access::after {
    bottom: -90px;
    right: -160px;
  }
}
@media screen and (max-width: 767px) {
  .p-access {
    padding: 60px 0;
  }
}
.p-access__block {
  margin: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-access__block {
    margin: 4em 0;
  }
}
.p-access__txt {
  margin: 1em 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-access__txt {
    font-size: 15px;
  }
}
.p-access__caption {
  margin: 2em 0;
  text-indent: -1em;
  padding-left: 1em;
}
.p-access__caption .red {
  color: rgb(177, 0, 0);
}
.p-access__link {
  margin: 1.5em 0 0 0;
  display: inline-block;
}
.p-access__pic-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .p-access__pic-wrapper {
    grid-template-columns: 1fr;
  }
}
.p-access__wrapper {
  margin: 2em 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-access__wrapper {
    flex-direction: column;
    margin: 1em 0;
  }
}
.p-access__map {
  width: 500px;
}
@media screen and (max-width: 1280px) {
  .p-access__map {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: 100%;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 320px;
  filter: grayscale(0.5);
}
.p-access__desc {
  width: calc(100% - 500px);
  padding-left: 2em;
}
@media screen and (max-width: 1280px) {
  .p-access__desc {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-access__desc {
    width: 100%;
    margin-top: 2em;
    padding-left: 0em;
  }
}
.p-access__subtitle {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  margin-bottom: 0.3em;
}
.p-access__subtxt {
  margin-bottom: 1.5em;
  line-height: 1.5;
}

/* ===============================================
体験のご案内
=============================================== */
.p-guide {
  background: url(../img/guide_bg.jpg) no-repeat center center/cover;
  padding: 60px 0;
}
.p-guide__section {
  margin: 3em 0;
}
.p-guide__basic-list {
  display: grid;
  gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1em 0;
}
@media screen and (max-width: 1280px) {
  .p-guide__basic-list {
    gap: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-guide__basic-list {
    grid-template-columns: 1fr 1fr;
  }
}
.p-guide__basic-item {
  background: #fff;
  border: 1px solid #690000;
  padding: 1em;
  display: grid;
  place-content: start center;
  place-items: center;
  line-height: 1.8;
}
.p-guide__basic-icon {
  font-size: 57px;
  color: #690000;
  line-height: 1;
}
.p-guide__basic-label {
  font-size: 18px;
  font-weight: 700;
  color: #690000;
}
.p-guide__basic-txt {
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .p-guide__basic-txt {
    font-size: 16px;
  }
}
.p-guide__contents-list {
  margin: 1.5em 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.6em;
}
.p-guide__contents-list li {
  padding-left: 2.5em;
  position: relative;
}
.p-guide__contents-list li::before {
  position: absolute;
  content: "◆";
  color: #7a5c00;
  top: 0;
  left: 1em;
}
.p-guide__detail-list {
  margin: 1em 0;
  background: #fff;
}
.p-guide__detail-row {
  border-bottom: 1px solid #bbbbbb;
  display: flex;
}
.p-guide__detail-row:last-child {
  border-bottom: none;
}
.p-guide__detail-term {
  background: #F9F3E0;
  width: 174px;
  font-weight: lighter;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .p-guide__detail-term {
    width: 100px;
    font-size: 14px;
    padding: 1em 0.5em;
  }
}
.p-guide__detail-desc {
  width: calc(100% - 174px);
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .p-guide__detail-desc {
    width: calc(100% - 100px);
    padding: 1em;
    font-size: 14px;
  }
}
.p-guide__attention-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.p-guide__attention-item {
  border-right: 1px solid #7a5c00;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 1em;
}
@media screen and (max-width: 767px) {
  .p-guide__attention-item {
    padding: 0.8em;
  }
}
.p-guide__attention-item:last-child {
  border-right: none;
}
.p-guide__attention-icon {
  font-size: 65px;
  color: #7a5c00;
}
@media screen and (max-width: 767px) {
  .p-guide__attention-icon {
    font-size: 30px;
  }
}
.p-guide__attention-txt {
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-guide__attention-txt {
    text-align: left;
  }
}
.p-guide__attention-txt .red {
  color: #690000;
  font-weight: 700;
}
.p-guide__attention-txt small {
  margin-top: 0.5em;
  text-align: left;
  display: block;
}
.p-guide__contact {
  margin: 2em auto;
  background: #fff;
  border: 1px solid #7a5c00;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  padding: 0.5em;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-guide__contact {
    line-height: 1.4;
    font-size: 18px;
    padding: 0.8em;
  }
}

/* ===============================================
お問い合わせ・お申込
=============================================== */
.p-contact {
  background: url(../img/contact_bg.webp) no-repeat center center/cover;
  padding: 6em 0;
  color: #fff;
  text-align: center;
}
.p-contact__title {
  font-size: 40px;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: clamp(20px, 6vw, 36px);
    line-height: 1.4;
  }
}
.p-contact__title .big {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__title .big {
    font-size: 2em;
  }
}
.p-contact__btn-area {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2em;
  margin: 6em auto;
}
@media screen and (max-width: 1280px) {
  .p-contact__btn-area {
    gap: 1em;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__btn-area {
    grid-template-columns: 1fr;
    gap: 60px;
    margin: 6em auto 4em;
  }
}
.p-contact__btn {
  height: 120px;
  width: 100%;
  display: grid;
  place-content: center;
  place-items: center;
  font-family: "Noto Serif JP", serif;
  position: relative;
  filter: drop-shadow(4px 4px 6px #000);
  font-weight: 700;
}
.p-contact__btn i.fa-angle-right {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.p-contact__btn::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 96%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.p-contact__btn--reserve {
  background: linear-gradient(to right, #CF9C00 0%, #FFFAC4 50%, #FFFAC4 55%, #CF9C00 100%);
  color: #1A1A1A;
  font-size: clamp(18px, 2.5vw, 30px);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--reserve {
    height: 100px;
    font-size: clamp(18px, 4.5vw, 30px);
  }
}
.p-contact__btn--reserve:hover {
  transition: 0.5s;
  filter: brightness(1.2);
  letter-spacing: 1.5px;
}
.p-contact__btn--reserve::before {
  content: "＼ 体験のお申込はこちら ／";
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1em;
  color: #fff;
  z-index: 90;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 2vw, 22px);
}
@media screen and (max-width: 767px) {
  .p-contact__btn--reserve::before {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 400;
  }
}
.p-contact__btn--reserve::after {
  border-width: 3px;
  border-color: #FFFAC4;
}
.p-contact__btn--inquiry {
  position: relative;
  background: #fff;
  font-size: clamp(14px, 1.7vw, 22px);
  color: #1A1A1A;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact__btn--inquiry {
    height: 70px;
    font-size: clamp(16px, 2.4vw, 22px);
  }
}
.p-contact__btn--inquiry::before {
  content: "＼ ご相談・ご不明な点はこちらから ／";
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1em;
  color: #fff;
  z-index: 90;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(9px, 1.5vw, 20px);
}
@media screen and (max-width: 767px) {
  .p-contact__btn--inquiry::before {
    font-size: clamp(15px, 2.5vw, 20px);
    font-weight: 400;
  }
}
.p-contact__btn--inquiry::after {
  border-color: #7a5c00;
  border-width: 2px;
  transition: 0.3s;
}
.p-contact__btn--inquiry:hover {
  transition: 0.3s;
  letter-spacing: 1.5px;
}
.p-contact__btn--inquiry:hover::after {
  border-color: #690000;
  transition: 0.3s;
}
.p-contact__btn-text {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.p-contact__btn-text i.fa-calendar-days,
.p-contact__btn-text i.fa-envelope {
  font-size: 1.4em;
  padding-right: 1em;
}
.p-contact__tel-label {
  font-size: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-label {
    font-size: clamp(9px, 4vw, 16px);
    text-align: center;
    display: block;
  }
}
.p-contact__tel-label::before, .p-contact__tel-label::after {
  content: "";
  height: 1px;
  background: #fff;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-label::before, .p-contact__tel-label::after {
    display: none;
  }
}
.p-contact__tel-link {
  margin: 2em auto;
}
.p-contact__tel-number {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 7vw, 66px);
  font-weight: 700;
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */