@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "M_PLUS_Rounded";
  font-weight: 400;
  font-style: normal;
  src: url("../../font/M_PLUS_Rounded/woff2/MPLUSRounded1c-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "M_PLUS_Rounded";
  font-weight: 500;
  font-style: normal;
  src: url("../../font/M_PLUS_Rounded/woff2/MPLUSRounded1c-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "M_PLUS_Rounded";
  font-weight: 700;
  font-style: normal;
  src: url("../../font/M_PLUS_Rounded/woff2/MPLUSRounded1c-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "M_PLUS_Rounded";
  font-weight: 800;
  font-style: normal;
  src: url("../../font/M_PLUS_Rounded/woff2/MPLUSRounded1c-ExtraBold.woff2") format("woff2");
}
html {
  scroll-behavior: auto;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "M_PLUS_Rounded", sans-serif;
  color: #333333;
  background: #fff5ee;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.85rem, 0.81rem + 0.2vw, 1.05rem);
  line-height: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: 500;
}
html body .bg_noise {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-size: 100px 100px;
  pointer-events: none;
}
html body::before {
  content: "";
  background-image: radial-gradient(#fff9f5 40%, #e9dacc);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
html body b {
  font-family: "M_PLUS_Rounded", sans-serif !important;
  font-weight: 500;
}
html body main {
  overflow: hidden;
  position: relative;
}
html body main .space {
  display: block;
  height: 1rem;
}
html body main .deco01 {
  animation: float 12s ease-in-out infinite;
}
html body main .deco02 {
  animation: float-alt 12s ease-in-out infinite;
}
html body main .deco03 {
  animation: float 10s ease-in-out infinite;
}
html body main {
  /* キーフレームで上下左右にふわふわ移動 */
}
@keyframes float {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(10px, -10px);
  }
  50% {
    transform: translate(-10px, 10px);
  }
  75% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes float-alt {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(-12px, 8px);
  }
  40% {
    transform: translate(6px, -10px);
  }
  60% {
    transform: translate(-8px, -6px);
  }
  80% {
    transform: translate(10px, 12px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
html body.noscroll {
  overflow: hidden;
  touch-action: none; /* モバイルでも操作を制限 */
}

@media screen and (max-width: 480px) {
  html body {
    line-height: clamp(1.5rem, 1.46rem + 0.2vw, 1.7rem);
  }
}
/*****************************************/
/*****  inview  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.js-fader-l {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-l.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-r {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-r.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-t {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transition: 0.8s all ease;
  -webkit-transition: 0.8s all ease;
}
.js-fader-t.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-fader {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s all ease;
  -webkit-transition: 0.8s all ease;
  transition-delay: 0.2s;
}
.js-fader.is-show {
  opacity: 1;
  visibility: visible;
}

.zoomin {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: transform 1.2s ease, filter 1.2s ease;
  -webkit-transition: transform 1.2s ease, filter 1.2s ease;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
}
.zoomin.is-show {
  transform: scale(1);
  -webkit-transform: scale(1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-anim {
  position: relative;
  display: inline-block;
  transition: all 0.8s ease;
  clip-path: inset(0 100% 0 0);
}
.js-anim.is-show {
  clip-path: inset(0);
}

.js-bganim {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
  transition-delay: 0.3s;
  display: flex;
}
.js-bganim span {
  transform: translateX(var(--x, -125%));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}
.js-bganim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 150%;
  transform: translateX(var(--cover-x, -101%));
  transition: transform 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #bce9ec;
}
.js-bganim.is-show {
  --skewX: 0deg;
  --cover-x: 101%;
  --x: 0;
}
@media screen and (max-width: 480px) {
  .js-fader-t {
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition: 0.8s all ease;
    -webkit-transition: 0.8s all ease;
  }
  .js-fader {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s all ease;
    -webkit-transition: 0.8s all ease;
    transition-delay: 0.2s;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  inview  end  ******/
/*****************************************/
img {
  max-width: 100%;
}

/*****************************************/
/****  コンテンツ部分基本幅設定  start  ****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.layout_width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 480px) {
  .layout_width {
    padding: 0 1rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/*****  コンテンツ部分基本幅設定  end  *****/
/*****************************************/
/*****************************************/
/*****  セクション部分空白設定  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
section {
  padding: 6rem 0;
  background-color: #fff5ee;
  background-color: transparent;
  transform: rotate(0.05deg);
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.lead {
  font-size: 1.35em;
  font-weight: 700;
}

.lead_lg {
  font-size: 2.5em;
  font-weight: 800;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 1rem;
  margin: 0 auto 3rem auto;
  font-family: "M_PLUS_Rounded", sans-serif;
  line-height: 1;
}
h2 .en {
  display: none;
}
h2 .ja {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  line-height: 1.5;
  font-weight: 700;
}

.title01 .ja {
  display: none;
}
.title01 .en {
  display: block;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 20px;
}
.title01 .en::before {
  content: "";
  background-image: url(../../img/common/deco03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 0.8rem;
  display: block;
}
.title01 .en::after {
  content: "";
  background-image: url(../../img/common/deco03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 0.8rem;
  display: block;
  margin-left: -0.5em;
}

@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 2.5rem;
  }
  h2 .ja {
    font-size: clamp(1.9rem, 1.86rem + 0.2vw, 2.1rem);
  }
}
@media screen and (max-width: 600px) {
  .title01 .ja {
    display: none;
  }
  .title01 .en {
    font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  }
  .lead_lg {
    font-size: 1.75em;
  }
  .lead {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 480px) {
  h2 {
    margin-bottom: 2rem;
  }
  h2 .ja {
    font-size: clamp(1.5rem, 1.46rem + 0.2vw, 1.7rem);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  position: relative;
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  transition: 0.3s ease;
}
.btn .arrow {
  border: 1px solid #333333;
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.65rem;
  overflow: hidden;
  transition: 0.3s ease;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .arrow_icon {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: #fff;
}
@keyframes arrowAnime {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 140% 0;
  }
  50.1% {
    translate: -140% 0;
  }
  100% {
    translate: 0 0;
  }
}
.btn:hover .arrow {
  background-color: #fff;
}
.btn:hover .arrow_icon {
  color: #333333;
  animation: arrowAnime 0.5s;
}

@media screen and (max-width: 480px) {
  .btn .arrow {
    height: 2rem;
    width: 2rem;
  }
}
/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #595757;
  text-emphasis: filled #595757;
  font-weight: bold;
}

.marker_type2 {
  display: inline;
  background: linear-gradient(transparent 60%, rgb(255, 136, 0) 55%);
  padding: 0 0.15rem 0.25rem;
  margin: 1rem 0.15rem 0;
  -webkit-text-emphasis: filled rgb(255, 136, 0);
  text-emphasis: filled rgb(255, 136, 0);
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/***********  マーカー設定  end  **********/
/*****************************************/
/*****************************************/
/********フォトギャラリー上下中央設定*******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
#lightbox {
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  フォトギャラリー上下中央設定 ******/
/*****************************************/
#breadcrumb {
  padding: 0rem 0;
  margin: 1rem 0;
}
#breadcrumb .breadcrumb__warp {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
#breadcrumb .breadcrumb__warp ol {
  width: 100%;
  display: flex;
}
#breadcrumb .breadcrumb__warp ol li {
  padding: 0 0.5rem;
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  font-weight: 800;
}
#breadcrumb .breadcrumb__warp ol li:first-child {
  padding: 0 1rem 0 0;
}

@media screen and (max-width: 480px) {
  #breadcrumb .breadcrumb__warp {
    width: 90%;
  }
}
header {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
  align-items: flex-start;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 20px 5% 10px;
  position: absolute;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .he_logo {
  width: 300px;
  transition: 0.3s ease;
}
header .he_logo img {
  width: 100%;
  filter: invert(0.15);
}
header .he-box {
  position: relative;
  display: flex;
  justify-content: end;
}
header .he-box .he_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}
header .he-box .he_wrap nav ul {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  gap: 0 40px;
  align-items: flex-end;
}
header .he-box .he_wrap nav ul li p {
  text-align: center;
  font-weight: 600;
  transform: rotate(0.05deg);
}
header .he-box .he_wrap nav ul li span {
  color: #333333;
  font-size: 11px;
  font-weight: 800;
}
header .he-box .he_wrap nav ul li a {
  position: relative;
  display: block;
  transition: 0.3s ease;
}
header .he-box .he_wrap nav ul li a:hover {
  opacity: 0.6;
}
header .he-box .he_wrap nav ul .active a::after {
  transform: scale(1, 1);
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.fixed .he_logo {
  width: 220px;
}
.fixed .he-box .he_wrap nav {
  display: none;
}
.fixed .menu-btn,
.fixed .menu-icon {
  display: block;
}

@media screen and (max-width: 1279px) {
  header .he-box .he_wrap nav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 10px 5% 10px;
  }
  header .he_logo {
    width: 200px;
  }
  header .he-box .he_wrap {
    margin: 0 15px 0 0;
  }
  .fixed .he_logo {
    width: 120px;
  }
}
#heading {
  width: 100%;
  height: 20vh;
  position: relative;
  padding: 0;
}
#heading .background {
  width: 100%;
  height: 100%;
  position: relative;
}
#heading .background__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
#heading .heading {
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 6%;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#heading .heading h1 {
  letter-spacing: 0.5em;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 15px;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: bold;
}
#heading .heading h1 .ja {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 480px) {
  #heading {
    height: 15vh;
  }
  #heading .heading h1 {
    font-size: 1.25em;
  }
  #heading .background__image--about {
    background-position: center bottom;
  }
  #heading .background__image--instructor {
    background-position: center -100% !important;
  }
}
@media screen and (max-width: 380px) {
  #heading {
    height: 20vh;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(172, 145, 127, 0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s; /* ← visibilityは遅延 */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s; /* ← 表示時は即visibility: visible */
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  min-width: 200px;
  height: 80vh;
  /*ナビの高さ*/
  /*動き*/
  transition: right 0.6s ease;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}
#g-nav .g-nav-icon {
  display: flex;
  align-items: center;
  width: 200px;
  margin-top: 30px;
  margin-left: 5px;
}
#g-nav .g-nav-icon a {
  padding: 0;
}
#g-nav .g-nav-icon a img {
  width: 30px;
  margin-right: 20px;
  transition: 0.4s;
}
#g-nav .g-nav-icon a img:hover {
  opacity: 0.5;
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  padding-right: 15px; /* スクロールバーの幅分を確保（ブラウザにより調整） */
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
#g-nav.panelactive ul {
  display: block;
}

#g-nav-list {
  right: -50%;
  transition: 0.3s;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  background-color: #333333;
  border-radius: 0 0 0 7.5vw;
  right: 0;
  top: 0;
  max-width: 400px;
  max-height: 500px;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 99999;
  top: 6rem;
  left: 3rem;
  width: 80%;
}

/*リストのレイアウト設定*/
#g-nav ul {
  transform: rotate(0.05deg) !important;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  display: none;
}
#g-nav ul .sns_wrap {
  margin-top: 2rem;
}
#g-nav ul .sns_wrap .sns a {
  display: flex; /* Flexboxを使う */
  align-items: center; /* 縦方向中央寄せ */
  justify-content: center; /* 横方向中央寄せ */
  font-size: 1.6em;
  padding: 0.4em;
  height: 2em;
  width: 2em;
  background: linear-gradient(45deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285aeb 100%);
  color: #fff;
  border-radius: 100%;
  transition: 0.3s;
}
#g-nav ul .sns_wrap .sns a:hover {
  opacity: 0.6;
}
#g-nav ul li {
  list-style: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
#g-nav ul li img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 2rem;
  filter: invert(0.2);
  filter: brightness(0) invert(1);
}
#g-nav ul li a {
  font-weight: 700;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  transition: 0.5s;
}
#g-nav ul li a:hover {
  opacity: 0.5;
}
#g-nav ul li p {
  text-align: center;
}
#g-nav ul li p i {
  font-size: 30px;
}
#g-nav ul li span {
  color: #333333;
}
#g-nav ul li:first-child a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*========= ボタンのためのCSS ===============*/
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 0px;
  z-index: 9999999;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
}

.navicon {
  background: #333333;
  display: block;
  height: 2px;
  width: 34px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #333333;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-40deg);
  background: #fff;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(40deg);
  background: #fff;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn,
.menu-icon {
  display: none;
}

@media screen and (max-width: 1024px) {
  body.noscroll {
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 928px) {
  #g-nav.panelactive #g-nav-list {
    max-width: 300px;
    max-height: 450px;
  }
  #g-nav ul {
    left: 2rem;
  }
}
@media screen and (max-width: 1279px) {
  .menu-btn,
  .menu-icon {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #g-nav.panelactive #g-nav-list {
    max-width: 200px;
    max-height: 400px;
  }
  #g-nav.panelactive ul {
    display: flex;
    flex-flow: column;
    gap: 0.75rem;
  }
  #g-nav ul {
    left: 1rem;
  }
  #g-nav ul .sns_wrap {
    margin-top: 1rem;
  }
  #g-nav ul li img {
    margin-bottom: 1rem;
  }
}
#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99;
  display: none;
}
#floating li {
  display: block;
  margin: 0.5rem 0;
  border: solid 2px #ffffff;
  border-right: none;
}
#floating li a {
  width: 40px;
  text-transform: uppercase;
  background-color: #333333;
  color: #888888;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  padding: 1rem 0.5rem;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  transition: all ease 0.5s;
}
#floating li a i {
  margin-bottom: 0.25rem;
}
#floating li:hover a {
  background-color: pink;
  color: red;
}

@media screen and (max-width: 768px) {
  #floating {
    display: none !important;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
#floating {
  right: 25px;
}
_:lang(x) + _:-webkit-full-screen-document li,
#floating li {
  border: none;
}

#menu .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1350px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #menu .section {
    width: 90%;
  }
}
#menu .section_inner ul {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3rem;
}
#menu .section_inner ul li {
  transform: rotate(0.05deg);
  max-width: 560px;
  margin-inline: auto;
}
#menu .section_inner ul li figure {
  width: 85%;
  margin-inline: auto;
}
#menu .section_inner ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 7.5vw;
}
#menu .section_inner ul li .txt {
  margin-top: 1rem;
}
#menu .section_inner ul li .txt .lead {
  font-weight: 700;
  text-align: center;
}
#menu .section_inner ul li .txt .price {
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 928px) {
  #menu .section_inner ul li figure {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #menu .section_inner ul {
    padding-top: 0;
  }
  #menu .section_inner ul li figure {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #menu .section_inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  #menu .section_inner ul li figure {
    width: 80%;
  }
}
#menu .section_inner ul li .txt .lead {
  margin-bottom: 0.5rem;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(172, 145, 127, 0.5); /* ハンバーガーと同じ色 */
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.modal-content {
  background: #fff;
  max-width: 928px;
  width: 90%;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  box-sizing: border-box;
  transform: rotate(0.05deg);
}
.modal-content .modal-body {
  padding: 1.5rem;
  padding-right: 1rem;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.modal-content .modal-body p {
  display: flex;
  text-align: justify;
}
.modal-content .modal-body p span {
  white-space: nowrap;
  min-width: 7.5rem;
}
.modal-content .modal-body p span::before {
  content: "〔";
}
.modal-content .modal-body p span::after {
  content: "〕";
}

.modal-close {
  position: sticky;
  top: 0;
  font-size: 24px;
  cursor: pointer;
  display: block;
  float: right;
  padding-right: 1rem;
}

#shop .tb_br {
  display: none;
}
#shop .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1350px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #shop .section {
    width: 90%;
  }
}
#shop .section_inner ul {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3rem;
}
#shop .section_inner ul li {
  transform: rotate(0.05deg);
  max-width: 560px;
  margin-inline: auto;
}
#shop .section_inner ul li figure {
  width: 85%;
  margin-inline: auto;
}
#shop .section_inner ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 7.5vw;
}
#shop .section_inner ul li .txt {
  margin-top: 1rem;
}
#shop .section_inner ul li .txt .lead {
  font-weight: 700;
  text-align: center;
}
#shop .section_inner ul li .txt .price {
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 928px) {
  #shop .section_inner ul li figure {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #shop .section_inner ul {
    padding-top: 0;
  }
  #shop .section_inner ul li figure {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #shop .section_inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  #shop .section_inner ul li figure {
    width: 80%;
  }
}
#shop .section_inner ul li .btn {
  margin: 1rem auto 0;
}

@media screen and (max-width: 928px) {
  #shop .tb_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #shop .section_inner ul li .btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .modal-close {
    padding-top: 0.25rem;
    padding-right: 0.75rem;
  }
  .modal-content {
    max-height: 80svh;
  }
  .modal-content .modal-body {
    padding: 1rem;
    padding-right: 0.5rem;
  }
  .modal-content .modal-body p {
    flex-flow: column;
    gap: 5px;
  }
  .modal-content .modal-body p span {
    margin-left: -5px;
  }
}
#cta {
  max-width: 1280px;
  background-color: #444444;
  color: #fff;
  border-radius: 5vw;
  position: relative;
  margin-inline: auto;
}
#cta .sp_br {
  display: none;
}
#cta .frame {
  position: absolute;
  width: calc(100% - 8rem);
  height: calc(100% - 4rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}
#cta .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1350px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #cta .section {
    width: 90%;
  }
}
#cta .section_inner p {
  text-align: center;
  line-height: 1.75;
}
#cta .section_inner a {
  margin: 3rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
#cta .section_inner a:hover {
  opacity: 0.6;
}
#cta .section_inner a i {
  border: 1px solid #fff;
  letter-spacing: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  #cta .frame {
    width: calc(100% - 4rem);
    height: calc(100% - 3rem);
  }
}
@media screen and (max-width: 768px) {
  #cta .sp_br {
    display: block;
  }
  #cta .section {
    padding-inline: 1rem;
  }
  #cta .frame {
    width: calc(100% - 2rem);
  }
}
@media screen and (max-width: 480px) {
  #cta .section_inner a {
    margin-top: 1.5rem;
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #333333;
  clip-path: polygon(0 0, 65% 0, 100% 100%, 35% 100%);
}
#carousel .carousel__warp h2 {
  margin: 0 auto 4rem;
}
#carousel .carousel__warp--slider {
  overflow: hidden;
}
#carousel .carousel__warp--slider--box {
  transition-timing-function: linear;
}
#carousel .carousel__warp--slider--box--list {
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__warp--slider--box--list img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__warp--link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#carousel .carousel__warp--link a {
  margin: 2rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #333333;
  border: solid 1px #333333;
  color: #888888;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #888888;
  color: #595757;
}

#modal {
  padding: 5rem 0 15rem 0;
  position: relative;
  margin: 0 3rem 3rem;
  width: calc(100% - 6rem);
}
#modal::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "coating gallery";
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(4rem, 3.5rem + 2.5vw, 6.5rem);
  writing-mode: vertical-rl;
  text-wrap: nowrap;
  line-height: 1;
  z-index: 1;
}
#modal .modal__warp h2 {
  margin: 0 auto 4rem;
}
#modal .modal__warp .modal {
  padding: 0 0;
}
#modal .modal__warp .inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}
#modal .modal__warp .inner > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#modal .modal__warp .inner > ul > li {
  width: calc(25% - 20px);
  margin-top: unset !important;
  margin: 0 10px 20px;
}
#modal .modal__warp .inner > ul > li figure {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#modal .modal__warp .inner > ul > li figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 1s;
}
#modal .modal__warp .inner > ul > li figure:hover img {
  scale: 1.15;
}
#modal .modal__warp {
  /* モーダルを開くボタン */
}
#modal .modal__warp .modal__trigger {
  cursor: pointer;
}
#modal .modal__warp .modal__trigger:nth-child(n+2) {
  margin-top: 60px;
}
#modal .modal__warp {
  /* モーダル本体 */
}
#modal .modal__warp .modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
#modal .modal__warp .modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}
#modal .modal__warp .modal__container {
  position: absolute;
  top: calc(50% + 46px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 1000px);
  height: calc(80vh - 40px);
  padding: 20px;
  background: #fff;
}
#modal .modal__warp .modal__inner {
  position: relative;
  overflow-y: scroll;
  height: calc(100% - 50px);
  padding: 0px 20px 20px 20px;
  margin: 50px 0 0 0;
}
#modal .modal__warp {
  /* モーダルを閉じるボタン */
}
#modal .modal__warp .modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
  z-index: 999;
}
#modal .modal__warp .modal__close:hover {
  opacity: 0.6;
}
#modal .modal__warp .modal__close:before,
#modal .modal__warp .modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}
#modal .modal__warp .modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#modal .modal__warp .modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#modal .modal__warp {
  /* モーダル内のコンテンツ */
}
#modal .modal__warp .modal__content .modal__title {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
}
#modal .modal__warp .modal__content .modal__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 3.5em;
  right: 2.5em;
  z-index: 99;
}
.pagetop a {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.pagetop a img {
  top: -2px;
  position: absolute;
  transition: transform 0.3s ease;
  transform-origin: center center;
  z-index: 0;
}
.pagetop a i {
  transition: all ease 0.5s;
  z-index: 1;
  color: #444;
  letter-spacing: 0;
}
.pagetop a:hover img {
  transform: scale(1.15);
}
@media screen and (max-width: 1280px) {
  .pagetop {
    bottom: calc(45px + 1rem);
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    right: 1.5em;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
.pagetop {
  right: 18px;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer_bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.footer_wrap {
  width: 80%;
  max-width: 1600px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 160px 0 45px;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 1rem;
  align-items: flex-start;
  transform: rotate(0.05deg);
}
.footer_wrap__logo {
  grid-row: 1/3;
  grid-column: 1/2;
  margin-bottom: 1rem;
  width: 100%;
}
.footer_wrap__logo a {
  display: block;
  width: 100%;
  max-width: 350px;
}
.footer_wrap__logo img {
  filter: invert(0.2);
  width: 100%;
  margin-bottom: 2rem;
}
.footer_wrap__address {
  display: flex;
  flex-flow: column;
}
.footer_wrap__address span {
  display: inline-block;
}
.footer_wrap__tel .btn {
  display: flex;
  align-items: center;
}
.footer_wrap__tel i {
  margin-right: 0.5rem;
}
.footer_wrap__tel a {
  font-size: 1.1em;
}
.footer_wrap__sns {
  display: flex;
  flex-flow: column;
}
.footer_wrap__sns .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.footer_wrap__sns a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s ease;
}
.footer_wrap__sns a:hover {
  opacity: 0.6;
}
.footer_wrap__sns a i {
  border: 1px solid #333333;
  letter-spacing: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_wrap__time {
  display: flex;
  width: 100%;
  max-width: 750px;
  padding: 1.5rem 0 0;
  gap: 1rem 4rem;
}
.footer_wrap__time p {
  text-align: center;
}
.footer_wrap__time p span {
  font-weight: 500;
}
.footer_wrap__time .box {
  margin-bottom: 1rem;
}
.footer_wrap__time .box p {
  margin-bottom: 5px;
  text-align: center;
}
.footer_wrap__time .box ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
  font-size: 0.9em;
}
.footer_wrap__time .box ul li {
  display: flex;
  gap: 5px;
  line-height: 1.5;
}
.footer_wrap__time .box ul li span {
  border: 1px solid #333333;
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  letter-spacing: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_wrap__nav {
  margin-top: 1rem;
  font-size: 0.9em;
  position: relative;
  z-index: 0;
  transform: rotate(0.05deg);
}
.footer_wrap__nav ul {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1;
}
.footer_wrap__nav ul li a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  transition: 0.3s ease;
}
.footer_wrap__nav ul li a i {
  padding-top: 2px;
}
.footer_wrap__nav ul li a span {
  display: none;
}
.footer_wrap__nav ul li:hover a {
  opacity: 0.6;
}
.footer_copy {
  position: relative;
  z-index: 7;
  padding: 10px 0;
  text-align: center;
  font-size: 0.9em;
  z-index: 1;
  transform: rotate(0.05deg);
  background-color: #333333;
  color: #fff5ee;
}
.footer_copy span {
  display: inline-block;
}
.footer__bg-image {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  background-image: url(../../img/common/footer.jpg);
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  z-index: -1;
}

.sp-fixed-link {
  display: none;
}

@media screen and (max-width: 1580px) {
  .footer_wrap__nav {
    width: 100%;
  }
  .footer_wrap__nav ul {
    flex-flow: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 928px) {
  .footer_wrap__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    padding-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer_wrap__logo {
    margin-inline: auto;
  }
  .footer_wrap__logo a {
    width: 80%;
    margin: 0 auto;
  }
  .footer_wrap__logo a img {
    margin-bottom: 0;
  }
  .footer_wrap__sns .btns {
    justify-content: center;
    background-color: #333333;
    color: #fff;
    padding: 1.5rem 0.5rem;
    border-radius: 5vw;
    gap: 1rem;
  }
  .footer_wrap__sns a i {
    border: 1px solid #fff;
  }
  .footer_wrap__time {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_wrap__address {
    justify-content: center;
    text-align: center;
  }
  .footer_wrap__nav ul {
    justify-content: center;
  }
  .sp-fixed-link {
    display: flex;
    position: fixed;
    bottom: -70px;
    /* 初期位置は画面外 */
    left: 0;
    z-index: 99;
    width: 100%;
    transition: bottom 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    /* transformを追加 */
    transform: translateY(100%);
    /* 初期位置は下に隠れる状態 */
  }
  .sp-fixed-link.hidden {
    display: none;
  }
  .sp-fixed-link.scroll {
    opacity: 0;
    transform: translateY(100%);
    /* スクロール中は下に隠れる */
    pointer-events: none;
  }
  .sp-fixed-link.page-open {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
    /* 下からスライドして表示される */
  }
  .sp-fixed-link.page-top {
    bottom: 0;
    opacity: 0;
    transform: translateY(0);
    /* 下からスライドして表示される */
    pointer-events: none;
  }
  #sp_btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-top: 2px solid #f4f6f6;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #sp_btn ul li {
    height: 45px;
    width: 100%;
    display: block;
    padding: 7.5px 0;
    background-color: #888888;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    gap: 2px;
    text-align: center;
    color: #333333;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #sp_btn ul li:nth-child(2) {
    border-left: 2px solid #f4f6f6;
  }
}
@media screen and (max-width: 480px) {
  .footer_wrap {
    width: 90%;
  }
}
main {
  position: relative;
}
main .deco01 {
  position: fixed;
  width: 30%;
  max-width: 350px;
  top: 60%;
  left: 5%;
}
main .deco02 {
  position: fixed;
  width: 30%;
  max-width: 350px;
  top: 30%;
  right: 5%;
}

@media screen and (max-width: 1024px) {
  main .deco01 {
    top: 80%;
  }
  main .deco02 {
    top: 20%;
  }
}/*# sourceMappingURL=style.css.map */