@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 400;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 500;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 900;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Yuji Syuku";
  font-weight: 900;
  src: url("../../font/Yuji_Syuku/woff2/YujiSyuku-Regular.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen Old Mincho";
  color: #1a1a1a;
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  line-height: 1.8;
  letter-spacing: 0.1rem;
  position: relative;
}
html body.noscroll {
  overflow: hidden;
  touch-action: none;
  /* モバイルでも操作を制限 */
}

@media screen and (max-width: 480px) {
  html body {
    font-size: clamp(0.85rem, 0.81rem + 0.2vw, 1.05rem);
    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: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-t.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

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

.js-blur {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-blur.is-show {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-fader {
  -webkit-mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 250% 100%;
  mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
}

.js-fader.is-show {
  transition: opacity 1.8s, -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  opacity: 1;
}

.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;
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  ヘッダー部分基本幅設定  end  ******/
/*****************************************/
img {
  max-width: 100%;
}

/*****************************************/
/****  コンテンツ部分基本幅設定  start  ****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.layout_width_full {
  width: 90%;
  padding: 0 2rem;
  margin: 0 auto;
}

.layout_width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.layout_width_1024 {
  width: 100%;
  max-width: 1024px;
  padding: 0 2rem;
  margin: 0 auto;
}

.layout_width_830 {
  width: 100%;
  max-width: 830px;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .layout_width {
    padding: 0 1rem;
  }
  .layout_width_1024 {
    padding: 0 1rem;
  }
  .layout_width_830 {
    padding: 0 1rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/*****  コンテンツ部分基本幅設定  end  *****/
/*****************************************/
/*****************************************/
/*****  セクション部分空白設定  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
section {
  padding: 6rem 0;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
.bgcolor {
  background-color: #595757;
}
.bgcolor div h2 {
  color: #B67B03;
}
.bgcolor div h2 b {
  color: #B67B03;
}

/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.lead {
  font-size: 1.35em;
}

.lead_lg {
  font-size: 1.25em;
}

.main-ttl {
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 1rem;
  margin: 0 auto 8rem auto;
  font-family: "Yuji Syuku";
  line-height: 1;
}
.main-ttl .en {
  display: none;
}
.main-ttl .ja {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 0;
  font-size: clamp(1.9rem, 1.86rem + 0.2vw, 2.1rem);
  font-family: "Yuji Syuku", sans-serif;
}
.main-ttl .ja::before {
  content: "";
  width: 50vw;
  height: 2px;
  max-height: 2px;
  background: #B67B03;
  background: linear-gradient(90deg, rgb(182, 123, 3) 0%, rgb(218, 175, 8) 31%, rgb(254, 233, 160) 78%, rgb(218, 175, 8) 89%, rgb(218, 175, 8) 100%);
  position: absolute;
  top: 50%;
  right: calc(100% + 1.75rem);
  z-index: -2;
}
.main-ttl .ja::after {
  content: "";
  width: 50vw;
  height: 2px;
  background: #B67B03;
  background: linear-gradient(90deg, rgb(182, 123, 3) 0%, rgb(218, 175, 8) 31%, rgb(254, 233, 160) 78%, rgb(218, 175, 8) 89%, rgb(218, 175, 8) 100%);
  position: absolute;
  top: 50%;
  left: calc(100% + 1.75rem);
  z-index: -2;
}

@media screen and (max-width: 1024px) {
  .main-ttl {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .main-ttl {
    margin-bottom: 4rem;
  }
  .main-ttl .ja {
    font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  transition: 0.3s ease;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #888;
  top: -3px;
  left: -3px;
  transition: 0.3s ease;
  position: absolute;
  pointer-events: none;
}
.btn::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #888;
  bottom: -3px;
  right: -3px;
  transition: 0.3s ease;
  pointer-events: none;
  position: absolute;
}
.btn:hover {
  background-color: #595757;
}
.btn:hover::before {
  transform: translate(3px, 3px);
  border: 1px solid #595757;
}
.btn:hover::after {
  transform: translate(-3px, -3px);
  border: 1px solid #595757;
}

.btn-frame {
  --offset: 10px;
  --border-size: 2px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1em;
  color: #fff;
  background: transparent;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.25em;
  text-decoration: none;
  border: var(--border-size) solid currentColor;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.8s ease, color 0.3s ease;
  /*
  横方向に広がった枠
  */
}
.btn-frame::before {
  content: "";
  position: absolute;
  top: calc(var(--offset) * -1);
  right: 0;
  bottom: calc(var(--offset) * -1);
  left: 0;
  border-top: var(--border-size) solid currentColor;
  border-bottom: var(--border-size) solid currentColor;
  pointer-events: none;
  transform: scaleX(1);
  transition: transform 0.8s ease;
}
.btn-frame {
  /*
  縦方向に広がった枠
  */
}
.btn-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--offset) * -1);
  bottom: 0;
  left: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentColor;
  border-right: var(--border-size) solid currentColor;
  pointer-events: none;
  transform: scaleY(1);
  transition: transform 0.8s ease;
}
.btn-frame:hover {
  background-color: rgba(100, 0, 0, 0.03);
}
.btn-frame:hover::before {
  transform: scaleX(0);
}
.btn-frame:hover::after {
  transform: scaleY(0);
}

/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 251, 0, 0.6) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #303030;
  text-emphasis: filled #303030;
  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;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  フォトギャラリー上下中央設定 ******/
/*****************************************/
/*****************************************/
/**********  パララックス  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.parallax_imagebox {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 400px;
}
.parallax_imagebox .background {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax_imagebox .bg_image_one {
  background-image: url("../../img/common/sample__bg.jpg");
}

@media screen and (max-width: 768px) {
  .parallax_imagebox {
    height: 400px;
  }
  .parallax_imagebox .background {
    background-position: bottom -20vh;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/***********  パララックス  end  **********/
/*****************************************/
#breadcrumb {
  padding: 0rem 0;
  margin: 1rem 0;
  width: 100%;
}
#breadcrumb .breadcrumb__warp {
  width: 100%;
  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;
}

.br {
  display: inline-block;
}

main {
  overflow: hidden;
}

/* ======================================================
   Header - Part 1
   Base / Fixed / Theme / Logo
====================================================== */
/* ======================================================
   Scroll Lock
====================================================== */
.menu-open {
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}

/* ======================================================
   Header Loading
====================================================== */
/*
JavaScriptが有効な場合は、
ページ読み込み完了までヘッダーを非表示にする
*/
.js #header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.js.is-ready #header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ======================================================
   Header Base
====================================================== */
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  color: #fff;
  background-color: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  /*
  fixed時にヘッダーが急に飛び出すのを防ぐ
  */
  will-change: transform;
}
#header .header__warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  margin: 0 auto;
  padding: 1rem 2rem;
  box-sizing: border-box;
  transition: min-height 0.4s ease, padding 0.4s ease;
}
#header .container-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
#header .container-header .header__sp {
  display: none;
}
#header .container-header .header__sp .menu-button {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 100001;
}
#header .container-header .header__sp .menu-button .menu-button__line,
#header .container-header .header__sp .menu-button .menu-button__line::before,
#header .container-header .header__sp .menu-button .menu-button__line::after {
  display: block;
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  content: "";
  left: 6px;
  transition: all 0.3s;
}
#header .container-header .header__sp .menu-button .menu-button__line {
  top: 19px;
}
#header .container-header .header__sp .menu-button .menu-button__line::before {
  top: -10px;
}
#header .container-header .header__sp .menu-button .menu-button__line::after {
  top: 10px;
}
#header .container-header .header__sp .menu-button.active .menu-button__line {
  background: transparent;
}
#header .container-header .header__sp .menu-button.active .menu-button__line::before {
  transform: translateY(10px) rotate(45deg);
  background: #303030;
}
#header .container-header .header__sp .menu-button.active .menu-button__line::after {
  transform: translateY(-10px) rotate(-45deg);
  background: #303030;
}
#header .container-header .header__sp .sp-nav {
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease, visibility 0.5s ease;
  display: flex;
  flex-direction: column;
}
#header .container-header .header__sp .sp-nav ul .sp__logo {
  width: 270px;
}
#header .container-header .header__sp .sp-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 280px;
  margin: 0 auto;
  gap: 10px;
}
#header .container-header .header__sp .sp-nav ul > li {
  width: 100%;
  border-bottom: 1px dotted #303030;
}
#header .container-header .header__sp .sp-nav ul > li > a {
  display: block;
  padding: 5px 0 5px;
  font-size: 1.2em;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s ease;
}
#header .container-header .header__sp .sp-nav ul > li > a p {
  display: block;
  padding: 0;
  font-size: 1rem;
}
#header .container-header .header__sp .sp-nav ul > li > a span {
  display: none;
}
#header .container-header .header__sp .sp-nav ul > li > a:hover {
  color: #464646;
}
@media screen and (max-width: 480px) {
  #header .container-header .header__sp .sp-nav ul .menu-parent {
    max-height: 400px;
    overflow-y: scroll;
  }
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn {
  cursor: pointer;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn i.dropdown-toggle {
  transition: transform 0.2s;
}
#header .container-header .header__sp .sp-nav ul .menu-parent.open .btn i.dropdown-toggle {
  transform: rotate(180deg);
}
#header .container-header .header__sp .sp-nav ul .menu-parent .menu-children {
  display: none;
  padding-left: 2rem;
}
@media screen and (max-width: 480px) {
  #header .container-header .header__sp .sp-nav ul .menu-parent .menu-children {
    padding-left: 1rem;
  }
}
#header .container-header .header__sp .sp-nav ul .menu-parent .menu-children li {
  border-bottom: none;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .menu-children li a {
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  padding: 10px 0;
}
#header .container-header .header__sp .sp-nav ul .menu-parent.open .menu-children {
  display: block;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn {
  display: flex;
  align-items: center;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn a {
  display: block;
  padding: 10px 0 10px;
  font-size: 1.2em;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  font-weight: bold;
  position: relative;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn a::before {
  content: "●";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: #1a1a1a;
  font-size: 0.7em;
  min-width: 0.7em;
  display: inline-block;
  text-align: center;
}
#header .container-header .header__sp .sp-nav ul .menu-parent .btn i {
  font-size: clamp(1.1rem, 1.06rem + 0.2vw, 1.3rem);
  color: #555;
  width: 40px;
  margin-left: 20px;
}
#header .container-header .header__sp .sp-nav ul .sns-box a i {
  font-size: 40px;
}
#header .container-header .header__sp .sp-nav ul .sns-box a:hover i {
  color: #B67B03;
  transition: all 0.4s;
}
#header .container-header .header__sp .sp-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ======================================================
   Fixed Header
====================================================== */
#header.fixed {
  position: fixed;
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  /*
  背景を少しぼかす
  対応ブラウザのみ反映
  */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#header.fixed .header__warp {
  min-height: 70px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#header.fixed .header__nav a {
  color: #1a1a1a;
}
#header.fixed .header__nav p,
#header.fixed .header__nav span {
  color: #fff;
}
#header.fixed {
  /*
  fixed時は黒ロゴ
  */
}
#header.fixed .logo-white {
  opacity: 0;
}
#header.fixed .logo-black {
  opacity: 1;
}
#header.fixed {
  /*
  fixed時のハンバーガーボタン
  */
}
#header.fixed .menu-button__line,
#header.fixed .menu-button__line::before,
#header.fixed .menu-button__line::after {
  background-color: #303030;
}

/* ======================================================
   Header Logo
====================================================== */
#header .header__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 500px;
  max-width: 35vw;
  margin: 0;
  transition: width 0.4s ease, opacity 0.3s ease;
}
#header .header__logo a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#header .header__logo a:hover {
  opacity: 0.7;
}
#header .header__logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}
#header .header__logo {
  /*
  黒ロゴを白ロゴの上に重ねる
  */
}
#header .header__logo .logo-black {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#header .header__logo .logo-white {
  position: relative;
  opacity: 1;
}
#header {
  /*
  fixed時はロゴを小さくする
  */
}
#header.fixed .header__logo {
  width: 300px;
  max-width: 25vw;
}

/* ======================================================
   Header Theme
====================================================== */
/*
黒・暗い背景のスライド上
ヘッダーを白くする
*/
#header.header-theme-light {
  color: #fff;
}
#header.header-theme-light .header__nav a,
#header.header-theme-light .header__nav p,
#header.header-theme-light .header__nav span {
  color: #fff;
}
#header.header-theme-light .logo-white {
  opacity: 1;
}
#header.header-theme-light .logo-black {
  opacity: 0;
}
#header.header-theme-light .menu-button__line,
#header.header-theme-light .menu-button__line::before,
#header.header-theme-light .menu-button__line::after {
  background-color: #fff;
}

/*
白・明るい背景のスライド上
ヘッダーを黒くする
*/
#header.header-theme-dark {
  color: #111;
}
#header.header-theme-dark .header__nav a,
#header.header-theme-dark .header__nav p,
#header.header-theme-dark .header__nav span {
  color: #111;
}
#header.header-theme-dark .logo-white {
  opacity: 0;
}
#header.header-theme-dark .logo-black {
  opacity: 1;
}
#header.header-theme-dark .menu-button__line,
#header.header-theme-dark .menu-button__line::before,
#header.header-theme-dark .menu-button__line::after {
  background-color: #111;
}

/*
fixedを最優先にする
スライドテーマよりfixedの見た目を優先
*/
#header.fixed,
#header.fixed.header-theme-light,
#header.fixed.header-theme-dark {
  color: #1a1a1a;
}
#header.fixed .header__nav a,
#header.fixed .header__nav p,
#header.fixed .header__nav span,
#header.fixed.header-theme-light .header__nav a,
#header.fixed.header-theme-light .header__nav p,
#header.fixed.header-theme-light .header__nav span,
#header.fixed.header-theme-dark .header__nav a,
#header.fixed.header-theme-dark .header__nav p,
#header.fixed.header-theme-dark .header__nav span {
  color: #1a1a1a;
}
#header.fixed .logo-white,
#header.fixed.header-theme-light .logo-white,
#header.fixed.header-theme-dark .logo-white {
  opacity: 0;
}
#header.fixed .logo-black,
#header.fixed.header-theme-light .logo-black,
#header.fixed.header-theme-dark .logo-black {
  opacity: 1;
}
#header.fixed .menu-button__line,
#header.fixed .menu-button__line::before,
#header.fixed .menu-button__line::after,
#header.fixed.header-theme-light .menu-button__line,
#header.fixed.header-theme-light .menu-button__line::before,
#header.fixed.header-theme-light .menu-button__line::after,
#header.fixed.header-theme-dark .menu-button__line,
#header.fixed.header-theme-dark .menu-button__line::before,
#header.fixed.header-theme-dark .menu-button__line::after {
  background-color: #303030;
}

/* ======================================================
   Tablet
====================================================== */
@media screen and (max-width: 1024px) {
  #header .header__warp {
    min-height: 70px;
    padding: 0.5rem 1rem;
  }
  #header .header__logo {
    width: 300px;
    max-width: none;
  }
  #header .container-header {
    padding: 0;
    background-color: transparent;
  }
  #header .container-header .header__sp {
    display: block;
  }
  #header.fixed .header__warp {
    min-height: 65px;
  }
  #header.fixed .header__logo {
    width: 280px;
    max-width: none;
  }
}
/* ======================================================
   Smartphone
====================================================== */
@media screen and (max-width: 600px) {
  #header .header__warp {
    min-height: 64px;
    padding: 0.5rem 0.75rem;
  }
  #header .header__logo {
    width: 250px;
  }
  #header.fixed .header__warp {
    min-height: 60px;
  }
  #header.fixed .header__logo {
    width: 185px;
  }
}
@media screen and (max-width: 480px) {
  #header .header__logo {
    width: 200px;
  }
}
/* ======================================================
   Header Navigation
====================================================== */
#header .header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .header__nav li {
  margin: 0;
  padding: 0;
}
#header .header__nav a {
  position: relative;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}
#header .header__nav a:hover .en {
  transform: translateY(-2px);
}
#header .header__nav a:hover .ja {
  transform: translateY(2px);
}
#header .header__nav .en {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 0.3s;
}
#header .header__nav .ja {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

/* ======================================================
   Current
====================================================== */
#header .header__nav li.current a::after,
#header .header__nav li.current-menu-item a::after,
#header .header__nav li.current_page_item a::after {
  width: 100%;
}

/* ======================================================
   Under Line
====================================================== */
#header .header__nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: 0.35s;
}
#header .header__nav a:hover::after {
  width: 100%;
}

/* ======================================================
   Contact Button
====================================================== */
#header .header__nav .menu-contact a {
  padding: 0.9rem 1.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: 0.35s;
}
#header .header__nav .menu-contact a::after {
  display: none;
}
#header .header__nav .menu-contact a:hover {
  color: #fff;
  background: currentColor;
}

/* ======================================================
   Fixed
====================================================== */
#header.fixed .header__nav a {
  color: #1a1a1a;
}
#header.fixed .header__nav a::after {
  background: #303030;
}

/* ======================================================
   Light Theme
====================================================== */
#header.header-theme-light .header__nav a {
  color: #fff;
}
#header.header-theme-light .header__nav a::after {
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  transition: width 0.4s ease;
}

/* ======================================================
   Dark Theme
====================================================== */
#header.header-theme-dark .header__nav a {
  color: #111;
}
#header.header-theme-dark .header__nav a::after {
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  transition: width 0.4s ease;
}

/* ======================================================
   Mobile Menu
====================================================== */
.header__sp {
  display: none;
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   Hamburger Button
====================================================== */
.menu-button {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  transition: 0.3s;
}

/* ======================================================
   Hamburger Line
====================================================== */
.menu-button__line,
.menu-button__line::before,
.menu-button__line::after {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.3s ease, background-color 0.35s ease;
}

.menu-button__line {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-button__line::before {
  content: "";
  top: -9px;
}

.menu-button__line::after {
  content: "";
  top: 9px;
}

/* ======================================================
   Open
====================================================== */
.menu-open .menu-button__line {
  background: transparent;
}
.menu-open .menu-button__line::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-open .menu-button__line::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ======================================================
   Overlay
====================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
}

/* ======================================================
   Drawer
====================================================== */
.header-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  overflow-y: auto;
  width: min(420px, 85vw);
  height: 100vh;
  padding: 110px 40px 60px;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu-open .header-drawer {
  transform: translateX(0);
}

/* ======================================================
   Drawer Navigation
====================================================== */
.header-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-drawer li {
  margin: 0;
}
.header-drawer a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header-drawer a:hover {
  opacity: 0.65;
}
.header-drawer .en {
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.header-drawer .ja {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* ======================================================
   Common Transition
====================================================== */
#header,
#header * {
  box-sizing: border-box;
}

#header a,
#header button {
  -webkit-tap-highlight-color: transparent;
}

#header img {
  display: block;
  max-width: 100%;
  height: auto;
}

#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header a {
  text-decoration: none;
}

#header button {
  font: inherit;
}

/* ======================================================
   Animation
====================================================== */
#header * {
  transition-property: color, background-color, border-color, opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ======================================================
   Accessibility
====================================================== */
@media (prefers-reduced-motion: reduce) {
  #header,
  #header * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* ======================================================
   Utility
====================================================== */
.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

/* ======================================================
   End Header
====================================================== */
/* ======================================================
   Tablet
====================================================== */
@media screen and (max-width: 1200px) {
  #header .header__nav ul {
    gap: 1.8rem;
  }
  #header .header__nav .en {
    font-size: 0.72rem;
  }
  #header .header__nav .ja {
    font-size: 0.65rem;
  }
}
/* ======================================================
   SP
====================================================== */
@media screen and (max-width: 1024px) {
  #header .header__nav {
    display: none;
  }
}
/* ======================================================
   Responsive
====================================================== */
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__sp {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .header-drawer {
    width: 100%;
    padding: 90px 30px 50px;
  }
}
#heading {
  width: 100%;
  height: 70vh;
  position: relative;
  padding: 0;
  margin: 0;
  top: -50px;
}
#heading .background {
  width: 100%;
  height: 100%;
  position: relative;
  position: relative;
  overflow: hidden;
}
#heading .background__inner {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
#heading .background__image {
  position: relative;
  transform: translate(-50%, 0%);
  top: 0;
  left: 50%;
  width: 100%;
  height: 70vh;
  background-image: url("../../img/common/heading/heading.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
#heading .background__image--guide {
  background-image: url("../../img/home/link-01.jpg");
  background-position: center 50%;
}
#heading .background__image--access {
  background-image: url("../../img/home/link-02.jpg");
  background-position: center 30%;
}
#heading .background__image--event {
  background-image: url("../../img/home/link-03.png");
  background-position: center bottom;
}
#heading .background__image--odaimoku {
  background-image: url("../../img/home/link-04.jpg");
}
#heading .background__image--memorial {
  background-image: url("../../img/home/link-05.jpg");
  background-position: center 20%;
}
#heading .background::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}
#heading .heading {
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
}
#heading .heading h1 {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.75;
  gap: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 2em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Yuji Syuku";
}
#heading .heading h1 .en {
  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 .heading {
    padding: 1rem 0.5rem;
  }
  #heading .background__image--about {
    background-position: center bottom;
  }
  #heading .background__image--instructor {
    background-position: center -100% !important;
  }
}
#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 998;
  opacity: 0;
}
#floating li {
  display: block;
  margin: 1.25rem 0;
  border-right: none;
}
#floating li a {
  width: 45px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #303030;
  color: #f5f5f5;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  border: 3px solid transparent;
  -o-border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
     border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
  padding: 1rem 1rem;
  border-right: none;
  font-weight: 800;
  display: flex;
  row-gap: 5px;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  transition: ease 0.4s;
}
#floating li a i {
  font-size: 20px;
  margin-bottom: 10px;
}
#floating li a::before {
  position: absolute;
  top: 0.75rem;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#floating li a:hover {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  #floating {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    will-change: transform;
    backface-visibility: hidden;
  }
  #floating li {
    display: block;
    width: 100%;
    margin: 0;
    will-change: transform;
    backface-visibility: hidden;
  }
  #floating li a {
    writing-mode: unset;
    width: 100%;
    border-radius: 0;
    border-left: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.5s ease;
    font-size: 1rem;
  }
  #floating li a:hover {
    transform: none;
    background-color: #1a1a1a;
    opacity: 1;
  }
  #floating li a:hover span {
    color: #1a1a1a;
  }
  #floating li a span {
    display: block;
    writing-mode: horizontal-tb;
  }
  #floating li a i {
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 1px;
    margin-right: 10px;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
#floating {
  right: 18px;
}
_:lang(x) + _:-webkit-full-screen-document li,
#floating li {
  border: none;
}

#map-ai .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #map-ai .section {
    width: 90%;
  }
}
#map-ai .section__inner--item {
  width: 80%;
  margin: auto;
  overflow: hidden;
  background-color: #fff;
  padding: 30px;
}
#map-ai .section__inner--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 480px) {
  #map-ai .section__inner--item {
    width: 100%;
  }
}
#access .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #access .section {
    width: 90%;
  }
}
#access .section .main-ttl .ja br {
  display: none;
}
#access .section__inner--item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #B67B03;
  color: #f7f7f7;
  margin: 2rem auto 1rem;
  font-weight: bold;
}
#access .section__inner--item h3 span {
  margin-left: 1.5rem;
}
#access .section__inner--item ul {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
#access .section__inner--item ul li h4 {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: thick double #464646;
}
#access .section__inner--item ul li p {
  border-bottom: 1px dotted #464646;
}

@media screen and (max-width: 600px) {
  #access .section .main-ttl .ja br {
    display: block;
  }
  #access .section__inner--item h3 {
    line-height: 1.8;
    font-size: 20px;
  }
}
#map {
  padding-bottom: 0;
}
#map .section__inner--item .map iframe {
  aspect-ratio: 16/9;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #595757;
  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: #595757;
  border: solid 1px #595757;
  color: #B67B03;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #1a1a1a;
  color: #303030;
}

#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;
}

.calender__content table {
  border: #303030 2px solid;
  width: 100%;
}
.calender__content table tbody tr {
  border-bottom: #303030 2px solid;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calender__content table tbody tr th,
.calender__content table tbody tr td {
  border-right: #303030 2px solid;
}
.calender__content table tbody tr th:last-child,
.calender__content table tbody tr td:last-child {
  border-right: none;
}
.calender__content table tbody tr th {
  padding: 5px 0px;
  text-align: center;
  background-color: #1a1a1a;
}
.calender__content table tbody tr td {
  min-height: 70px;
  text-align: left;
  padding: 5px;
  padding-top: 0;
}
.calender__content table tbody tr td .date {
  font-weight: bold;
  color: #303030;
}
.calender__content table tbody tr td.sat .date {
  color: blue;
}
.calender__content table tbody tr td.holiday .date, .calender__content table tbody tr td.sun .date {
  color: red;
}
.calender__content table tbody tr td.close {
  background-color: #ffe0eb;
}
.calender__content table tbody tr td.close2 {
  background-color: #ffff8b;
}
.calender__content table tbody tr td.close3 {
  background-color: #c8e7fa;
}
.calender__content table tbody tr td.close4 {
  background-color: #c8ffc8;
}
.calender__content table tbody tr td.close5 {
  background-color: #eee5d7;
}
.calender__content table tbody tr td.close6 {
  background-color: #ffd700;
}
.calender__content table tbody tr td {
  container-type: inline-size;
}
@container (max-width: 60px) {
  .calender__content table tbody tr td .event-button {
    font-size: 30cqi;
    padding: 3cqi 5cqi;
  }
}
.calender__content table tbody tr:last-child {
  border-bottom: none;
}
.calender__content .event-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  margin: 2px 0;
  font-size: 12px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.calender__content .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(infinity);
}
.calender__content .modal-content {
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
}
.calender__content .close-button {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}
.calender__content .modal-title {
  margin-bottom: 15px;
  padding-right: 20px;
}
.calender__content .modal-events {
  margin-top: 10px;
}
.calender__content .modal-events a {
  color: blue;
  text-decoration: underline;
}
.calender__content .cms_calendar {
  margin-bottom: 20px;
  display: none;
}
.calender__content .cms_calendar.current-month {
  display: block;
}
.calender__content .cms_calendar .past {
  background-color: #f5f5f5;
}
.calender__content .cms_calendar .close {
  background-color: #ffe6e6;
}
.calender__content .cms_calendar .date {
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.calender__content .d_null {
  background-color: #d8d8d8;
}
.calender__content .calender__btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 20px;
}
.calender__content .calender__btn #prev {
  grid-row: 1/2;
  grid-column: 1/2;
  display: none;
}
.calender__content .calender__btn #next {
  grid-row: 1/2;
  grid-column: 3/4;
}
.calender__content .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.calender__content .calender__note {
  margin-top: 30px;
}

#calender {
  padding: 120px 0;
}
#calender .section {
  width: 80%;
  max-width: 1280px;
  margin-inline: auto;
}

body:has(#eventModal.open) {
  overflow: hidden;
}
body:has(#eventModal.open) header,
body:has(#eventModal.open) #floating,
body:has(#eventModal.open) #page-top {
  display: none;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 2.5em;
  right: 2.5em;
  z-index: 999;
}
.pagetop a {
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: block;
  background-color: #303030;
  border: solid 1px transparent;
  -o-border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
     border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  transition: all ease 0.5s;
}
.pagetop a i {
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pagetop a:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    bottom: calc(75px + 1.5rem);
    right: 1.5em;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
  }
}
#footer {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: #1a1a1a;
  color: #fff;
}
#footer::before {
  position: absolute;
  content: "";
  background-image: url("../../img/home/mv-deco.png");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1828/1219;
  width: 45%;
  top: 10%;
  right: -1px;
  opacity: 0.5;
}
#footer .footer-section {
  position: relative;
  z-index: 2;
  width: 60%;
  margin-left: 10px;
}
#footer .footer__warp {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 0 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
#footer .footer__warp .content-right {
  width: -moz-fit-content;
  width: fit-content;
}
#footer .footer__warp .content-right .logo {
  transition: opacity 0.4s ease;
}
#footer .footer__warp .content-right .logo a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
#footer .footer__warp .content-right .logo img {
  width: 300px;
}
#footer .footer__warp .content-right .logo:hover {
  opacity: 0.75;
}
#footer .footer__warp .content-right .footer-catch {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}
#footer .footer__warp .content-left {
  width: -moz-fit-content;
  width: fit-content;
}
#footer .footer__warp .content-left .footer__warp--box--address {
  width: 100%;
  font-style: normal;
  margin-bottom: 20px;
}
#footer .footer__warp .content-left .footer__warp--box--address p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
#footer .footer__warp .content-left .mail {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
}
#footer .footer__warp .content-left .mail:hover {
  color: #DAAF08;
}
#footer .footer__nav {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 0 3rem;
}
#footer .footer__nav--warp {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
#footer .footer__nav nav .nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer__nav nav .nav_list li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}
#footer .footer__nav nav .nav_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 1px;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  transition: width 0.4s ease;
}
#footer .footer__nav nav .nav_list li a:hover {
  color: #fff;
}
#footer .footer__nav nav .nav_list li a:hover::after {
  width: 100%;
}
#footer .footer__nav nav .nav_list li a span {
  display: none;
}
#footer .footer__copy {
  position: relative;
  z-index: 2;
  padding: 1.6rem 0;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

@media screen and (max-width: 1280px) {
  #footer .footer__warp .content-left .phone .btn03 {
    font-size: 18px;
  }
  #footer .footer__warp .content-left .phone .btn03 i {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #footer .footer-section {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  #footer .footer__warp {
    flex-direction: column;
  }
  #footer .footer__warp .content-left .footer__warp--box--address p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer__copy {
    padding: 20px 0 70px;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer__warp .content-left .footer__warp--box--address p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=style.css.map */