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

#main-visual {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 0;
}
@keyframes show {
  0% {
    top: 15px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
#main-visual .swiper-top {
  width: 100%;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}
#main-visual .swiper-top .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
#main-visual .swiper-top .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
  position: relative;
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-bg01 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-deco {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1828/1219;
  width: 45%;
  top: 10%;
  right: -1px;
  z-index: 18;
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-bg {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 3840/1216;
  width: 100%;
  opacity: 0.2;
  left: 0;
  bottom: 0;
  z-index: 19;
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-sp-bg {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1536/1024;
  width: 100%;
  opacity: 0.2;
  left: 0;
  bottom: 0;
  z-index: 19;
  display: none;
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-text {
  display: block;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 2261/1644;
  width: 60%;
  top: 50%;
  left: 40%;
  z-index: 100;
  transform: translate(-50%, -50%);
}
#main-visual .swiper-top .swiper-slide .swiper-img .mv-text-sp {
  display: none;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1984/2538;
  width: 85%;
  top: 60%;
  left: 0;
  z-index: 20;
  transform: translate(0, -50%);
}
#main-visual .swiper-top .swiper-slide .swiper-img .logo {
  position: absolute;
  aspect-ratio: 1002/232;
  width: 30%;
  top: 20px;
  left: 20px;
  z-index: 20;
}
#main-visual .swiper-horizontal > .swiper-pagination-bullets,
#main-visual .swiper-pagination-bullets.swiper-pagination-horizontal,
#main-visual .swiper-pagination-custom,
#main-visual .swiper-pagination-fraction {
  bottom: 5%;
  display: none;
}
#main-visual .swiper-slide-active .swiper-img,
#main-visual .swiper-slide-duplicate-active .swiper-img,
#main-visual .swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

@media screen and (max-width: 1024px) {
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-deco {
    width: 100%;
    opacity: 0.8;
  }
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-bg {
    display: none;
  }
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-sp-bg {
    display: block;
  }
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-text {
    top: unset;
    bottom: 15%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 768px) {
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-deco {
    opacity: 0.8;
  }
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-text {
    bottom: 10%;
  }
}
@media screen and (max-width: 600px) {
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-text {
    display: none;
  }
  #main-visual .swiper-top .swiper-slide .swiper-img .mv-text-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #main-visual .copy .main {
    font-size: 13vw;
  }
}
#concept {
  position: relative;
  padding: 6rem 0 10rem;
}
#concept .section {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept .section {
    width: 90%;
  }
}
#concept .section {
  z-index: 10;
}
#concept .section__inner--item h3 {
  font-family: "Yuji Syuku", sans-serif;
  font-weight: bold;
  font-size: clamp(3.4rem, 3.08rem + 1.6vw, 5rem);
  text-align: center;
  margin-bottom: 2rem;
}
#concept .section__inner--item p {
  text-align: center;
}
#concept .kirikae {
  position: absolute;
  width: 100vw;
  height: auto;
  bottom: -1rem;
  opacity: 0.2;
  z-index: 0;
}

#history .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #history .section {
    width: 90%;
  }
}
#history .section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
#history .section__inner--img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#history .section__inner--img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/4;
}
#history .section__inner--item {
  width: 100%;
  height: 100%;
}
#history .section__inner--item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  #history .section__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  #history .section__inner--item {
    width: 100%;
  }
}
#deities .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #deities .section {
    width: 90%;
  }
}
#deities .section__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#deities .section__inner--item {
  width: 50%;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  #deities .section__inner {
    flex-direction: column;
  }
  #deities .section__inner--item {
    width: 100%;
  }
  #deities .section__inner .img {
    order: 1;
  }
  #deities .section__inner .text {
    order: 2;
  }
}
#divine-attributes .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #divine-attributes .section {
    width: 90%;
  }
}
#divine-attributes .section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
#divine-attributes .section__inner--img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#divine-attributes .section__inner--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#divine-attributes .section__inner--item {
  width: 100%;
}
#divine-attributes .section__inner--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 880px) {
  #divine-attributes .section__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  #divine-attributes .section__inner--img {
    width: 100%;
    height: 100%;
  }
  #divine-attributes .section__inner--item {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  #divine-attributes .section__inner--item {
    height: 400px;
  }
  #divine-attributes .section__inner--item .text-read h3 {
    margin-left: 5px;
  }
  #divine-attributes .section__inner--item .text-read h4 {
    font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  }
  #divine-attributes .section__inner--item p {
    font-size: clamp(0.85rem, 0.81rem + 0.2vw, 1.05rem);
  }
}
@media screen and (max-width: 480px) {
  #divine-attributes .section__inner--item {
    height: 400px;
    justify-content: center;
    gap: 0.5rem;
  }
}
#doctrine {
  background-color: #1a1a1a;
  color: #fff;
  overflow: hidden;
}
#doctrine.is-resizing .section__inner {
  display: none;
}
#doctrine .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #doctrine .section {
    width: 90%;
  }
}
#doctrine .section {
  max-width: 1600px;
  width: 95%;
}
#doctrine .section__inner {
  max-width: 1600px;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  height: 100%;
  gap: 1rem;
}
#doctrine .section__inner--item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
  gap: 1rem;
}
#doctrine .section__inner--item .text-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-direction: row-reverse;
}
#doctrine .section__inner--item .text01 {
  width: 300px;
}
#doctrine .section__inner--item .text02 {
  width: 300px;
}
#doctrine .section__inner--item .list {
  width: auto;
}
#doctrine .section__inner--item .text-read {
  width: 50px;
  display: flex;
  justify-content: end;
}
#doctrine .section__inner--item .text-read h3,
#doctrine .section__inner--item .text-read h4 {
  writing-mode: vertical-rl;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  -webkit-text-orientation: upright;
}
#doctrine .section__inner--item .bold {
  width: 100px;
}
#doctrine .section__inner--item p {
  width: auto;
  writing-mode: vertical-rl;
  font-size: clamp(1.1rem, 1.06rem + 0.2vw, 1.3rem);
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 800px;
}
#doctrine .section__inner--item ul {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 1rem;
}
#doctrine .section__inner--item ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  line-height: 1.5;
  height: 800px;
}
#doctrine .section__inner--item ul li .num {
  font-family: "Yuji Syuku", sans-serif;
  font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  line-height: 3rem;
  display: block;
  width: 3rem;
  height: 3rem;
  text-align: center;
  border: 1px solid #fff;
}

@media screen and (max-width: 1400px) {
  #doctrine .section__inner {
    gap: 0;
    max-width: 1300px;
    height: auto;
  }
  #doctrine .section__inner--item {
    height: 650px;
  }
  #doctrine .section__inner--item .text-read h3,
  #doctrine .section__inner--item .text-read h4 {
    font-size: clamp(1.1rem, 1.06rem + 0.2vw, 1.3rem);
  }
  #doctrine .section__inner--item p {
    font-size: clamp(0.85rem, 0.81rem + 0.2vw, 1.05rem);
    height: 600px;
  }
  #doctrine .section__inner--item .text01 {
    width: 200px;
  }
  #doctrine .section__inner--item .text02 {
    width: 260px;
  }
  #doctrine .section__inner--item ul li {
    height: 600px;
  }
}
@media screen and (max-width: 1280px) {
  #doctrine .section__inner {
    gap: 0;
  }
  #doctrine .section__inner--item .text-read h3,
  #doctrine .section__inner--item .text-read h4 {
    font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  }
  #doctrine .section__inner--item p {
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  }
  #doctrine .section__inner--item ul li {
    row-gap: 0.5rem;
  }
  #doctrine .section__inner--item ul li .num {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #doctrine .section__inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 0;
    row-gap: 3rem;
  }
  #doctrine .section__inner--item {
    width: 95%;
    height: 500px;
    margin: 1rem auto;
  }
  #doctrine .section__inner--item .text-wrap {
    height: auto;
    justify-content: end;
  }
  #doctrine .section__inner--item .text-read h3 {
    font-size: 24px;
  }
  #doctrine .section__inner--item .text01 {
    width: 100%;
  }
  #doctrine .section__inner--item .text02 {
    width: 100%;
  }
  #doctrine .section__inner--item p {
    height: auto;
    font-size: 18px;
    line-height: 2;
  }
  #doctrine .section__inner--item .list {
    width: 100%;
  }
  #doctrine .section__inner--item ul {
    width: 100%;
    justify-content: space-between;
  }
  #doctrine .section__inner--item ul li {
    height: 480px;
  }
  #doctrine .section__inner--item ul li .num {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
  #doctrine .section__inner--item ul li p {
    height: 100%;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  #doctrine .section__inner--item {
    height: 100%;
  }
  #doctrine .section__inner--item .text01,
  #doctrine .section__inner--item .text02 {
    height: 600px;
  }
  #doctrine .section__inner--item .text-read h3 {
    font-size: 1.2rem;
  }
  #doctrine .section__inner--item p {
    letter-spacing: 0.02em;
  }
  #doctrine .section__inner--item .list {
    width: 100%;
    height: 100%;
  }
  #doctrine .section__inner--item ul {
    gap: 2rem 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #doctrine .section__inner--item ul li {
    width: calc(25% - 0.5rem);
    height: 340px;
  }
  #doctrine .section__inner--item ul li .num {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
  #doctrine .section__inner--item ul li p {
    line-height: 1.55;
  }
}
/* ======================================================
   Small Smartphone
====================================================== */
@media screen and (max-width: 600px) {
  #doctrine .section__inner--item .text-wrap {
    gap: 0.5rem;
  }
  #doctrine .section__inner--item .text-read {
    width: -moz-fit-content;
    width: fit-content;
  }
  #doctrine .section__inner--item .text-read h3 {
    font-size: 1.2rem;
  }
  #doctrine .section__inner--item p {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  #doctrine .section__inner--item .list {
    width: 100%;
    height: 100%;
  }
  #doctrine .section__inner--item ul {
    gap: 2rem 0.5rem;
    flex-wrap: wrap;
    justify-content: end;
  }
  #doctrine .section__inner--item ul li {
    width: calc(25% - 0.5rem);
    height: 340px;
  }
  #doctrine .section__inner--item ul li .num {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
  #doctrine .section__inner--item ul li p {
    line-height: 1.55;
  }
}
@media screen and (max-width: 480px) {
  #doctrine .section__inner--item {
    gap: 0.5rem;
  }
  #doctrine .section__inner--item .text01,
  #doctrine .section__inner--item .text02 {
    height: 480px;
  }
  #doctrine .section__inner--item .text-read h3 {
    font-size: 1rem;
  }
  #doctrine .section__inner--item p {
    font-size: 14px;
  }
}
#link {
  position: relative;
  margin-top: 0;
}
#link .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #link .section {
    width: 90%;
  }
}
#link .section {
  max-width: 1600px;
}
#link .section__title {
  opacity: 0;
  position: absolute;
  z-index: -999;
  pointer-events: none;
}
#link .section__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  row-gap: 2rem;
}
#link .section__list .inner {
  width: 100%;
  position: relative;
}
#link .section__list .inner::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid #888;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}
#link .section__list .inner__image {
  width: 100%;
  aspect-ratio: 3.5/1.5;
  overflow: hidden;
}
#link .section__list .inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 1s ease;
  will-change: transform;
}
#link .section__list .inner .event-img img {
  -o-object-position: center bottom;
     object-position: center bottom;
}
#link .section__list .inner a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0.15;
  transition: 1s all;
}
#link .section__list .inner .ja {
  position: absolute;
  font-family: "Yuji Syuku";
  border-top: 10px 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;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 9;
  color: #0f1111;
  padding: 2rem 0 2rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: 1.8em;
  transition: 0.5s all;
  background-color: #0f1111;
  color: #fff;
  height: 80%;
  line-height: 1.8;
}
#link .section__list .inner a:hover img {
  transform: scale(1.05);
}
#link .section__list .inner a:hover::after {
  opacity: 0.05;
}
#link .section__list .inner a:hover .ja {
  background-color: rgba(245, 245, 245, 0.5);
  color: #1a1a1a;
}

@media screen and (max-width: 1024px) {
  #link .section__list .inner .ja {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  #link .section__list {
    display: grid;
    grid-template-columns: 1fr;
  }
  #link .section__list .inner {
    width: 100%;
  }
  #link .section__list .inner .ja span {
    display: block;
  }
}
@media screen and (max-width: 650px) {
  #link .section__list .inner__image {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 600px) {
  #link .section__list {
    row-gap: 1rem;
  }
  #link .section__list .inner .ja {
    right: 10px;
    padding: 0;
    line-height: 1.65;
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  }
}
#information .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #information .section {
    width: 90%;
  }
}
#information .section {
  max-width: 1600px;
}
#information .section .top-news_wrap {
  gap: 30px;
  grid-template-columns: 250px 1fr;
}
#information .section .top-news_wrap ul {
  overflow-y: scroll;
  /* スクロールを有効にする */
  height: 350px;
  /* 高さを設定し、スクロールを有効化 */
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  /* 横方向に中央揃え */
  align-items: center;
  /* 縦方向に中央揃え */
  flex-direction: column;
  background: #fff;
  /* リストアイテムを縦並びに */
}
#information .section .top-news_wrap ul::-webkit-scrollbar {
  width: 6px;
  /* スクロールバーの幅を設定 */
  height: 6px;
  /* 横スクロールバーの高さを設定 */
}
#information .section .top-news_wrap ul::-webkit-scrollbar-thumb {
  background-color: #303030;
}
#information .section .top-news_wrap ul li {
  width: 90%;
  border-bottom: 1px solid #1a1a1a;
}
#information .section .top-news_wrap ul li:last-child {
  border-bottom: 1px solid #1a1a1a;
}
#information .section .top-news_wrap ul li .list-text {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
#information .section .top-news_wrap ul li .list-text h5 {
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  background-color: #1a1a1a;
  padding: 6px 10px 6px;
  color: #fff;
  order: 0;
  text-align: center;
  white-space: nowrap;
}
#information .section .top-news_wrap ul li .list-text div h3 {
  font-weight: 600;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  margin: 10px 0;
  display: -webkit-box;
  /* flexboxのように動作する設定 */
  /* 超過したテキストに "..." を表示 */
}
#information .section .top-news_wrap ul li .list-text div p {
  font-size: 13px;
}

@media screen and (max-width: 1280px) {
  #information .top-news_wrap {
    width: 100%;
    grid-template-columns: 1fr;
  }
  #information .top-news_wrap__heading {
    border-right: 0px solid #fff;
    padding-bottom: 1.5rem;
  }
  #information .top-news_wrap ul {
    overflow-y: scroll;
    height: 400px;
    display: flex;
    justify-content: flex-start;
    /* 左寄せに変更 */
    flex-direction: column;
    /* リストアイテムを縦並びに */
  }
  #information .top-news_wrap ul li {
    width: 80%;
  }
  #information .top-news_wrap ul li .list-text {
    display: block;
  }
  #information .top-news_wrap ul li .list-text h5 {
    max-width: 120px;
    /* 横幅が120pxを超えないように設定 */
    width: 100%;
    /* 親要素の幅に合わせる */
  }
}
@media screen and (max-width: 1024px) {
  #information .top-news_wrap {
    padding: 50px 0 50px 0;
  }
}
@media screen and (max-width: 768px) {
  #information .section .top-news_wrap ul li .list-text {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  #information {
    padding: 1rem 0;
    margin: 0;
  }
  #information .top-news_wrap {
    padding: 0;
  }
  #information .top-news_wrap ul {
    overflow-y: scroll;
    height: 220px;
    padding: 10px 0;
    width: 96%;
  }
  #information .top-news_wrap ul::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
  #information .top-news_wrap ul li {
    margin: 0 0px 0 0;
  }
  #information .top-news_wrap ul li .list-img img {
    width: 100%;
  }
  #information .top-news_wrap ul li .list-text {
    margin: 1rem 0;
    flex-direction: column;
    align-items: self-start !important;
    gap: 0 !important;
  }
  #information .top-news_wrap ul li .list-text h5 {
    padding: 5px 10px;
    display: inline;
    font-size: 12px;
    margin: 0 0 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    max-width: 120px;
    width: 100%;
  }
  #information .top-news_wrap ul li .list-text div h3 {
    font-weight: 600;
    font-size: 13px;
    margin: 20px 0;
  }
  #information .top-news_wrap ul li .list-text div p {
    font-size: 13px;
  }
}
#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;
}

#gallery_2 {
  width: 100%;
  overflow-x: hidden;
}
#gallery_2 .section__title {
  position: absolute;
  z-index: -999;
  opacity: 0;
  pointer-events: none;
}
#gallery_2 .section {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#gallery_2 .section__list {
  display: flex;
  transition-timing-function: linear !important;
}
#gallery_2 .section__list li {
  width: 360px;
  display: block;
  padding-inline: 7.5px;
}
#gallery_2 .section__list li a {
  width: 100% !important;
  height: 100%;
  display: block;
}
#gallery_2 .section__list li a:hover img {
  scale: 1.1;
}
#gallery_2 .section__list li figure {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 5px;
}
#gallery_2 .section__list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 1s;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 928px) {
  #gallery_2 .section__list li {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  #gallery_2 .section__list li {
    width: 280px;
  }
}
.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 */