@charset "utf-8";
html{
  background: #000 !important;
}
.container{
  background:  transparent!important;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  line-height: 1.5em;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  margin: 0;
}

* {
  box-sizing: border-box;
}

p {
  margin: 1.5em 0;
}

h2, h3, h4, h5, h6 {
  margin: 0;
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
  display: block;
}
iframe {
  max-width: 100%;
}
address {
  font-style: normal;
  display: inline;
}
/* 日本語の自然な改行（文節境界・禁則処理） */
p, li, td, dd, h1, h2, h3, h4, h5, h6 {
  line-break: strict;
  word-break: auto-phrase;
}
/* フッターロゴは元解像度に合わせて表示サイズ制限（Retina対応） */
.ci-footer-right img {
  max-width: 74px;
  width: 100%;
  height: auto;
}

a {
  color:inherit;
  text-decoration: none;
}

.DivLink {
  position: relative;
}

.DivLink .Link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main{
  padding: 0 !important;
  position: relative !important;
  z-index: 0 !important;
  width: 100%!important;
  background-color: transparent!important;
  margin:0!important;
}

@font-face {
font-family: 'en';
src: url('../font/NotoSans-ExtraBold.ttf') format('truetype');
}
@font-face {
font-family: 'en-m';
src: url('../font/NotoSans-Medium.ttf') format('truetype');
}


/* 固定背景を持つ要素（親要素） */
.has-fixed-bg {
  position: relative;
}

/* 固定背景用のdiv要素 */
.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

  background-image: url("../img/back.jpg");
  background-position: center;
  background-size: cover;
}

/* コンテンツを背景より上に配置 */
.has-fixed-bg > *:not(.fixed-bg) {
  position: relative;
  z-index: 1;
}

.wrap {
  width: auto!important;
}


/*========================================================
　　　　　　　　　　ここまで基本設定
========================================================*/

.header__inner h1{
  font-size: 38px;
  line-height: 1em;
  font-family: 'en';
  color:#fff;
  letter-spacing:.1em;
  text-shadow:
    0 0 8px rgba(255, 188, 30, 0.55),
    0 0 20px rgba(255, 188, 30, 0.35);
  animation: header-glow 3s ease-in-out infinite;
}
@keyframes header-glow {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255, 188, 30, 0.4),
      0 0 16px rgba(255, 188, 30, 0.2);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 188, 30, 0.7),
      0 0 28px rgba(255, 188, 30, 0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__inner h1 { animation: none; }
}
.header {
  position: relative; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99 !important;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  height: 76px;
}
.logo {
  font-size: 1.25em;
  font-weight: bold;
}
/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  top: 1.2em;
  right: 2em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  width: 3.5em;
  aspect-ratio: 1 / 1;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 3px;
  background-color: #FFBC1E;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 1rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 1rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%; /* 親のdrawer__navに高さを合わせる */
  background-image: url("../img/back02.jpg");
  background-position: center;
  background-size: cover;
  padding: 0;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* ★ここが重要：スクロールバーは非表示にし、スクロール機能は維持 */
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* iOSで滑らかなスクロールを有効にする */

  /* Firefoxでスクロールバーを非表示にする */
  scrollbar-width: none;
}
/* Chrome、Safariでスクロールバーを非表示にする */
.drawer__nav__inner::-webkit-scrollbar {
  display: none;
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.drawer__nav__link {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 0 auto 6.8%;
  width: fit-content;
  font-size: 2.5rem;
  font-family: 'en';
  letter-spacing: .1em;
  text-align: center;
}

body.active {
  height: 100%;
}

ul.pri-con{
  max-width: 600px;
  width: 100%;
  margin: 0 auto 0;
}
ul.pri-con li{
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 1.5em 0 0;
}
ul.pri-con li a{
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  color:#fff;
  font-family: "en";
  letter-spacing: .1em;
  transition: .3s;
}
ul.pri-con li a:hover{
  color:#FFBC1E;
}

/* 文字のパッ、パッと光るアニメーションの定義 */
@keyframes instant-flash {
  0% {
    opacity: 1; /* 通常の状態（不透明） */
    color: #fff; /* 通常の色（白） */
  }
  26%, 74% {
    opacity: .8; /* 光る量（半透明） */
    color: #FFBC1E; /* 光る色（黄色） */
  }
  75%, 100% {
    opacity: 1;
    color: #fff;
  }
}

/* 常にアニメーションを適用する */
.drawer__nav__menu .drawer__nav__link span {
  /* 通常時はアニメーションは停止 */
  opacity: 1;
  color: #fff;
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* JavaScriptでis-flashingクラスが付いた時にだけアニメーションが実行される */
.drawer__nav__menu .drawer__nav__link span.is-flashing {
  animation-name: instant-flash;
  animation-duration: 1.5s; /* アニメーションの速度を0.5秒に設定 */
  animation-timing-function: steps(1, end); /* 一瞬で色が変わる */
  animation-iteration-count: 1; /* 1回だけ再生 */
  animation-fill-mode: forwards; /* アニメーション終了時の状態を維持 */
}


ul.pri-con .contact-h{
  background-color: #ffbc1e;
  color: #000;
  padding: .6em 3em;
  border-radius: 100px;
  font-family: 'en-m';
  letter-spacing: .1em;
  font-size: 1.8rem;
  margin: 1em 0 0;
  border: 1px solid #ffbc1e;
}
ul.pri-con .contact-h:hover{
  color: #ffbc1e;
  background-color: rgba(0,0,0,.2);
}





.top-footer {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 3rem 3% 0;
}

.footer {
    margin-top: 0!important;
    padding: 0!important;
    background-color: transparent!important;
}



.ci-footer-left ul li a{
  color:#fff;
  font-family:"en";
  font-size:2rem;
  letter-spacing: .1em;
  padding: .2em 0;
  display: block;
}
.ci-footer-left ul li a span{
  color:#FFBC1E;
}
.ci-footer-left a.pri-p{
  color: #fff;
  font-family: "en";
  font-size: 1.5rem;
  margin: 1em 0 0;
  letter-spacing: .1em;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}
.ci-footer-left a.pri-p:hover {
  color: #FFBC1E;
}
.ci-footer-left .foot-sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8em 1.4em;
  margin-top: 1em;
}
.ci-footer-left .foot-sub-links a.pri-p {
  margin: 0;
  font-size: 1.3rem;
}

.footer-main{
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: flex-end;
}

a.contact{
  background-color: #ffbc1e;
  color: #000;
  padding: .9em 3em;
  border-radius: 100px;
  font-family: 'en-m';
  letter-spacing: .1em;
  font-size: 1.8rem;
  margin: 1em 0 0;
}

.ci-footer-right{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.copylight p{
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  letter-spacing: .1em;
  font-size: 1.2rem;
  margin: 1em 0;
}

.breadcrumb{
  display: none;
}


/* ページタイトル（EQメーター演出） */
section.page-title {
    background: none;
    width: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 3rem auto 0;
    padding: 2rem 1rem;
    letter-spacing: .2em;
    position: relative;
}
section.page-title h2{
  font-family: "en";
  font-size: 4.8rem;
  text-align: center;
  color: #fff;
  letter-spacing: .3em;
  line-height: 1;
  margin: 0;
  text-shadow:
    0 0 10px rgba(255, 188, 30, 0.4),
    0 0 24px rgba(255, 188, 30, 0.25);
  position: relative;
  z-index: 2;
}

/* EQバー（上下） */
.eq-bars {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: min(480px, 85%);
  height: 40px;
}
.eq-bars--top { align-items: flex-start; }
.eq-bars--bottom { align-items: flex-end; }
.eq-bars span {
  position: relative;
  display: block;
  width: 6px;
  height: 50%;
  /* LEDセグメント風（バーに横の区切り線が入る） */
  background-image:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent 4px,
      rgba(0, 0, 0, 0.85) 4px,
      rgba(0, 0, 0, 0.85) 5px
    ),
    linear-gradient(to top, #FFBC1E 0%, #FFE89A 55%, #fff 100%);
  border-radius: 1px;
}
/* 上のバーはグラデーションを反転（反射のように） */
.eq-bars--top span {
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 4px,
      rgba(0, 0, 0, 0.85) 4px,
      rgba(0, 0, 0, 0.85) 5px
    ),
    linear-gradient(to bottom, #FFBC1E 0%, #FFE89A 55%, #fff 100%);
}
/* ピークキャップ（各バーの直上に光る白いライン） */
.eq-bars--bottom span::after,
.eq-bars--top span::before {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 188, 30, 0.6);
}
.eq-bars--bottom span::after { top: -5px; }
.eq-bars--top    span::before { bottom: -5px; }

/* 下のバー: 低音（左）→高音（右）の周波数分布 */
.eq-bars--bottom span:nth-child(16n+1)  { height: 68%; }
.eq-bars--bottom span:nth-child(16n+2)  { height: 92%; }
.eq-bars--bottom span:nth-child(16n+3)  { height: 58%; }
.eq-bars--bottom span:nth-child(16n+4)  { height: 78%; }
.eq-bars--bottom span:nth-child(16n+5)  { height: 48%; }
.eq-bars--bottom span:nth-child(16n+6)  { height: 82%; }
.eq-bars--bottom span:nth-child(16n+7)  { height: 56%; }
.eq-bars--bottom span:nth-child(16n+8)  { height: 64%; }
.eq-bars--bottom span:nth-child(16n+9)  { height: 42%; }
.eq-bars--bottom span:nth-child(16n+10) { height: 58%; }
.eq-bars--bottom span:nth-child(16n+11) { height: 34%; }
.eq-bars--bottom span:nth-child(16n+12) { height: 48%; }
.eq-bars--bottom span:nth-child(16n+13) { height: 28%; }
.eq-bars--bottom span:nth-child(16n+14) { height: 38%; }
.eq-bars--bottom span:nth-child(16n+15) { height: 20%; }
.eq-bars--bottom span:nth-child(16n+16) { height: 30%; }

/* 上のバー: 別の瞬間のスナップショット（ミッド強め） */
.eq-bars--top span:nth-child(16n+1)  { height: 46%; }
.eq-bars--top span:nth-child(16n+2)  { height: 70%; }
.eq-bars--top span:nth-child(16n+3)  { height: 54%; }
.eq-bars--top span:nth-child(16n+4)  { height: 86%; }
.eq-bars--top span:nth-child(16n+5)  { height: 62%; }
.eq-bars--top span:nth-child(16n+6)  { height: 94%; }
.eq-bars--top span:nth-child(16n+7)  { height: 76%; }
.eq-bars--top span:nth-child(16n+8)  { height: 88%; }
.eq-bars--top span:nth-child(16n+9)  { height: 72%; }
.eq-bars--top span:nth-child(16n+10) { height: 58%; }
.eq-bars--top span:nth-child(16n+11) { height: 68%; }
.eq-bars--top span:nth-child(16n+12) { height: 44%; }
.eq-bars--top span:nth-child(16n+13) { height: 52%; }
.eq-bars--top span:nth-child(16n+14) { height: 32%; }
.eq-bars--top span:nth-child(16n+15) { height: 38%; }
.eq-bars--top span:nth-child(16n+16) { height: 22%; }

.inner{
  max-width:1100px;
  width:85%;
  margin:0 auto;
  padding:7rem 0;
}
h3.h3-title{
  border-bottom: 1px solid #ffbc1e;
  font-size: 2.5rem;
  font-family: "en";
  color: #fff;
  letter-spacing: .1em;
  padding: 0 0 .6em 2.2em;
  position: relative;
}
h3.h3-title::before{
  content: "";
  position: absolute;
  top: -.5em;
  left: 0;
  background-image: url("../img/h2-img.png");
  background-size: cover;
  width: 4.3rem;
  aspect-ratio: 3.2 / 3;
  line-height: 1.5em;
}
h3.h3-title span:nth-child(1){
  color:#FFBC1E;
}
h3.h3-title span:last-child{
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 0 0 .5em;
  letter-spacing: .2em;
}
.content-box{
  min-height: 100px;
}




/*========================================================
==========================================================
　　　　　　　　　　　　　PC only
==========================================================
========================================================*/
@media screen and (min-width:1190px) {
html {
  font-size: 62.5%;
}

.pc-none {
  display: none;
}

.pc-br::after {
  content: "\A";
  white-space: pre;
}




}/*=======================================================
==========================================================
  　　　　　　　　　　　　SP only
==========================================================
========================================================*/
@media screen and (max-width:768px) {
html {
  font-size: 55%;
}

body {
  min-width: 360px;
}

.sp-none {
  display: none;
}

.sp-br::after {
  content: "\A";
  white-space: pre;
}

.header {
  position: relative;
}

.top-footer{
  position: relative;
  width: 100%;
  left: auto;
  bottom: auto;
}
.ci-footer-right{
  max-width: 44%;
}
a.contact {
  background-color: #ffbc1e;
  color: #000;
  padding: .9em 0;
  border-radius: 100px;
  font-family: 'en-m';
  letter-spacing: .1em;
  font-size: 1.8rem;
  margin: 1em 0 0;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.ci-footer-right img{
  width: 80%;
  max-width: 74px;
}
h3.h3-title {
  font-size: 2rem;
  padding: 0 0 .3em 1.7em;
  letter-spacing: .03em;
}
h3.h3-title:before {
  top: -.1em;
  width: 2.7rem;
}
h3.h3-title span:last-child {
    font-size: 1.4rem;
    letter-spacing: .1em;
}
/* SP: 横スクロール防止＆長い英字の折返し */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.inner, .content-box, main > section {
  word-break: break-word;
  overflow-wrap: break-word;
}
section.page-title h2 {
    font-size: 3.2rem;
    letter-spacing: .25em;
}
.eq-bars {
  height: 26px;
  gap: 3px;
  width: min(320px, 90%);
}
.eq-bars span {
  width: 4px;
  background-image:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent 2px,
      rgba(0, 0, 0, 0.85) 2px,
      rgba(0, 0, 0, 0.85) 3px
    ),
    linear-gradient(to top, #FFBC1E 0%, #FFE89A 55%, #fff 100%);
}
.eq-bars--top span {
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 2px,
      rgba(0, 0, 0, 0.85) 2px,
      rgba(0, 0, 0, 0.85) 3px
    ),
    linear-gradient(to bottom, #FFBC1E 0%, #FFE89A 55%, #fff 100%);
}
.eq-bars--bottom span::after { top: -3px; height: 1px; }
.eq-bars--top    span::before { bottom: -3px; height: 1px; }
section.page-title {
  width: 100%;
  min-height: 63px;
  margin: 1rem auto 0;
}
.header__inner h1 {
  font-size: 23px;
}
.drawer__button {
  top: .8em;
  right: 1em;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  height: 67px;
}
.inner {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
  padding: 3rem 0;
}



}/*=======================================================
==========================================================
  　　　　　　　　　　　　Ipad only
==========================================================
========================================================*/
@media screen and (min-width:768px) and (max-width:1190px) {
html {
  font-size: 59%;
}

.pc-none {
  display: none;
}

.pc-br::after {
  content: "\A";
  white-space: pre;
}



}/*=======================================================
==========================================================
==========================================================
========================================================*/
