@charset "utf-8";

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}
.eibun{  font-family: 'Roboto', sans-serif; letter-spacing: 0.08em;}
/* ==========================
   背景画像
========================== */
.bg-container {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

/* デフォルト：横優先 */
.bg-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* 縦長画面（画面縦長の時のみ高さ優先） */
@media (max-aspect-ratio: 16/9) {
  .bg-container video {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* スマホ（幅480px以下）：高さ優先 */
@media screen and (max-width: 480px) {
  .bg-container video {
    width: 100vh;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
  }
}

/* ==========================
   ヘッダー部分
========================== */
.header {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

@media screen and (max-width: 480px) {
.header {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  z-index: 1000;
}
}

.logo-menu {
  display: flex;
  align-items: center;
  gap: 10px;                 /* ロゴとハンバーガーの間隔 */
  background-color: #fff;    /* 背景白 */
  padding: 10px 20px;        /* ボタン内余白 */
  border-radius: 12px;       /* 角丸 */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 軽い影でボタン感 */
  cursor: pointer;
  position: absolute;
  top: 30px;                 /* 左上から30px */
  left: 30px;
  z-index: 100;
}

.logo-menu img.logo {
  width: 40px;
  height: auto;
  filter: none;  /* 色をそのまま表示 */
}


.menu-toggle {
	text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle .hamburger {
  width: 24px;
  height: 2px;
  background-color: #000;    /* 黒ハンバーガー */
  position: relative;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before {
  top: -8px;
}

.menu-toggle .hamburger::after {
  top: 8px;
}

.menu-toggle .menu-text {
  color: #000;               /* 黒文字 */
  font-weight: bold;
  font-size: 14px;
}

/* ==========================
   ハンバーガーメニュー
========================== */
.menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.hamburger {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: 0.4s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.4s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* 開いた時のアニメーション */
.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.menu-text {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ==========================
   フルスクリーンメニュー装飾リセット
========================== */
.fullscreen-menu {
  background-color: #595757;  /* 背景色はそのまま */
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.6s ease-in-out;
  z-index: 999;
}

.fullscreen-menu.active {
  transform: translateY(0);
}

.fullscreen-menu .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-menu .menu-links li {
  margin: 0;  /* 全ての余白を消す */
}

/* フルスクリーンメニュー */
.fullscreen-menu .menu-links a {
  all: unset;             
  display: inline-block;
  font-size: calc(6vw + 24pt);
  font-family: 'Roboto', sans-serif;  
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #fff;            
  position: relative;      /* ::after を使うため */
  transition: color 0.3s ease; /* 文字色の変化も滑らかに */
}

/* 下線用の疑似要素 */
.fullscreen-menu .menu-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;            
  width: 0%;
  height: 4px;             
  background-color: #fff;  
  transition: width 0.3s ease;
}

/* hover で左から右に下線が伸び、文字色も変更 */
.fullscreen-menu .menu-links a:hover {
  color: #fff000;  /* 黄色に変更 */
}

.fullscreen-menu .menu-links a:hover::after {
  width: 100%;
}

/* rewrite-menu は hover 無効化 */
.fullscreen-menu a.rewrite-menu:hover {
  color: #fff;       /* hover 色変更を無効化 */
}

.fullscreen-menu a.rewrite-menu:hover::after {
  width: 0%;         /* 下線アニメーション無効化 */
}

/* 中央打ち消し線 */
.fullscreen-menu a.rewrite-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;                  /* 文字中央 */
  transform: translateY(-50%);
  height: 4px;               /* 線の太さ */
  background-color: #fff;     /* 線の色 */
  pointer-events: none;       /* クリックは無効 */
}


/* ==========================
   中央テキスト（ADCRE）
========================== */
.scroll-text-container {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-50%);
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.scroll-text-img {
  height: calc(10vw + 40pt);
  flex-shrink: 0;
}

/* 画像間に50pxの隙間を追加 */
.scroll-track img + img {
  margin-left: 10vw;      /* 2枚目以降に適用 */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px)); /* 隙間分も流す */
  }
}

/* ==========================
   undermenu
========================== */

.undermenu {
  position: absolute;
  top: 70%;                 /* ADCRE文字列の少し下に配置 */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.undermenu .menu-row {
  display: flex;
  justify-content: center;   /* 中央揃え */
  gap: 40px;                 /* 横の間隔 */
  margin-bottom: 30px;       /* 行間 */
}
.undermenu .menu-row:last-child {
  margin-bottom: 0;          /* 最下段は下マージンなし */
}
.undermenu a {
  color: #fff;
  text-decoration: none;
  font-size: 12pt;           /* 適宜調整 */
  border: 1px solid #fff;
  padding: 0.5em 30px;
  display: inline-block;
  transition: all 0.3s ease;
    background: rgba(0,0,0,0.4);
    border-radius: 1.5em;
}
.undermenu a:hover {
  background-color: #fff;
  color: #000;
}
.text {
  display: inline-block;
  overflow: hidden; /* ←これが重要。影部分をカット */
  line-height: 0.9em; /* 行の高さを文字サイズに合わせる */
  vertical-align: bottom;
}
.text span {
  display: inline-block;
  color: transparent;                 
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s ease;
  line-height: 0.9em;
}
/* hover 時に1文字ずつ delay を付けて順番に動かす */
.text:hover span {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}
/* 文字ごとに delay を付ける */
.text span:nth-child(1) { transition-delay: 0s; }
.text span:nth-child(2) { transition-delay: 0.02s; }
.text span:nth-child(3) { transition-delay: 0.04s; }
.text span:nth-child(4) { transition-delay: 0.06s; }
.text span:nth-child(5) { transition-delay: 0.08s; }
.text span:nth-child(6) { transition-delay: 0.10s; }
.text span:nth-child(7) { transition-delay: 0.12s; }
.text span:nth-child(8) { transition-delay: 0.14s; }
.text span:nth-child(9) { transition-delay: 0.16s; }

.text span {
  display: inline-block;
  color: transparent;                 
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s ease;
  line-height: 0.9em;
}

.rewrite span {
  display: inline-block;
  color: transparent;
  transition: text-shadow 0.3s ease;
  line-height: 0.9em;
}
.rewrite:hover span {
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff; /* ←初期状態を固定してhover効果を打ち消す */
  transition: none; /* アニメーションも無効化 */
}
.rewrite span {
  position: relative;
  display: inline-block;
  color: transparent;                 
  transition: text-shadow 0.3s ease;
  line-height: 0.9em;
}

.rewrite span::after {
  content: "";
  position: absolute;
  left: -5px;        /* 左に5pxはみ出させる */
  right: -5px;       /* 右に5pxはみ出させる */
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #fff;
}


/* デフォルトはPC表示 */
/* デフォルトは非表示（PC用） */
.sp-only {
  display: none;
}
.pc-only a {
    flex: 0 0 45%;  /* 2列に収まる幅 */
    text-align: center;
  }
/* スマホ幅のみ表示 */
@media screen and (max-width: 480px) {
.scroll-text-img {
  height: calc(10vw + 60pt);
  flex-shrink: 0;
}
.undermenu .menu-row {
  margin-bottom: 10px;       /* 行間 */
}
.undermenu a {
  font-size: 12pt;
}
.pc-only { display: none; }
  .sp-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    top: 64%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .sp-only .menu-row {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .sp-only a {
    flex: 0 0 78%;  /* 2列に収まる幅 */
    text-align: center;
  }
.undermenu .contactbox a:last-of-type {
    flex: 0 0 100%;      /* CONTACT だけ広げる */
  }

	
}
.click-text {
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  font-size: 1rem; /* 適宜調整 */
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000; /* 元の影エフェクト */
  transition: text-shadow 0.3s ease;
}

.click-text span {
  display: inline-block;
  transition: text-shadow 0.3s ease;
}

/* hover 時 */
.click-text:hover span {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

/* 文字ごとの遅延 */
.click-text span:nth-child(1) { transition-delay: 0s; }
.click-text span:nth-child(2) { transition-delay: 0.02s; }
.click-text span:nth-child(3) { transition-delay: 0.04s; }
.click-text span:nth-child(4) { transition-delay: 0.06s; }
.click-text span:nth-child(5) { transition-delay: 0.08s; }
.click-text span:nth-child(6) { transition-delay: 0.10s; }
.click-text span:nth-child(7) { transition-delay: 0.12s; }
.click-text span:nth-child(8) { transition-delay: 0.14s; }
.click-text span:nth-child(9) { transition-delay: 0.16s; }
.click-text span:nth-child(10){ transition-delay: 0.18s; }
.click-text span:nth-child(11){ transition-delay: 0.20s; }
.click-text span:nth-child(12){ transition-delay: 0.22s; }
.click-text span:nth-child(13){ transition-delay: 0.24s; }
.text.click-text{
	border-radius: 1em;
}

/* CLICK TO ENTER は黒のまま */
.click-text span {
  color: transparent; /* 元文字透明 */
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000; /* 黒文字 */
  transition: text-shadow 0.3s ease;
}

.logo-menu .menu-text,
.logo-menu img.logo {
  transition: transform 0.3s ease;
}

.logo-menu .menu-text:hover,
.logo-menu img.logo:hover {
  transform: scale(1.1);
}

.mailicon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #fff000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease; /* 円自体も拡大可能 */
}

.mailicon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mailicon img {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease; /* アイコン画像拡大用 */
}

/* ホバーでアイコンを拡大 */
.mailicon:hover img {
  transform: scale(1.1);
}
.topimg{
	margin: 0 auto;
	width: 100%;
}
.topimg img{
	width: 100%;
	height: auto;
}
.section{
	background-image: url("../images/backgraund.gif");
	background-repeat: repeat;
	text-align: center;
	margin-top: -50px;
	padding-top: 100px;
}
.colopink {color:#e4007f;}

/* ==========================
   CAMPBOX 全体
========================== */
.campbox {
  display: flex;
  flex-direction: column;
  max-width: 900px; /* PC表示時の最大幅 */
  margin: 50px auto 100px;
  gap: 10px; /* 行間 */
	position: relative;
	border: none;
}
.campbox::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 43%;
  width: 1px;
  background-color: #000;
  transform: translateX(-50%);
}

.campleft, .campright {
  flex: 1;
  padding: 10px 30px;
  box-sizing: border-box;
}
/* 各行 */
.camprow {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

/* 左列（項目名） */
.camprow-label {
  width: 40%; /* PCでの固定幅 */
  text-align: right;
  font-weight: bold;
  letter-spacing: 0.1em;
  flex-shrink: 0;
	line-height: 2em;
}

/* 右列（値） */
.camprow-value {
  flex: 1;
  text-align: left;
  line-height: 1.5em;
	padding-left: 4.2%;
	letter-spacing: 0.08em;
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
  .camprow {
    flex-direction: column;
    align-items: flex-start;
  }
  .camprow-label {
    width: 86%;
    text-align: left;
	  margin: auto;
	  margin-left: 5%;
    margin-bottom: -0.4em;
	  padding-left: 0.5em;
	  border-bottom: solid 1px #000;
  }
  .camprow-value {
    width: 100%;
    margin-bottom: 1.5em;
	  padding-left: 1.5em;
  }
}
@media screen and (min-width: 769px) {
	
}
@media screen and (max-width: 768px) {
  .campbox {
    flex-direction: column;
  }
  .campbox::after {
    display: none;
  }
}



.googlemap {
  width: 100%;
  height: 400px;
  margin: 0 auto 100px;     /* 中央揃え */
  position: relative;
  z-index: 1;
}

.googlemap iframe {
  width: 100%;
  height: 100%;       /* 親に合わせる */
  border: 0;
  display: block;
}

.footer {
  width: 100%;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

/* 上段 */
.footer-top {
  background-color: #424242;  
	padding: 1em 0 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-company {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
}

.footer-nav li {
  margin: 0;
  position: relative;
}

.footer-nav li:not(:last-child)::after {
  content: "|";
  color: #fff;
  margin:auto 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
  font-weight: 500;
	font-size: 0.8em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 下段 */
.footer-bottom {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 50px 0 20px;
}

.footer-bottom-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.footer-logo-img {
  height: 60px;
	margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}
.footer-links-row{
	margin-bottom: 0.5em;
}
.footer-links-row a{
	font-size: 0.9em;
	letter-spacing: 0.08em;
	padding: 0 1em;
	color: #fff;
	text-decoration: none;
}
.footer-copy {
  font-size: 12px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
.footer-links-row a{
	font-size: 0.8em;
	letter-spacing: 0.06em;
	padding: 0 0.5em;
}
}

@media screen and (max-width: 480px) {
.fullscreen-menu .menu-links a {
	line-height: 1.6em;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0;
  font-weight: 500;
	font-size: 0.7em;
	letter-spacing: 0.06em;
}
	.footer-company{display: none;}
}

.main-content.about{
	background: #ddd;
	position: relative;
	width: 100%;
	height: 100%;
}
.abso0 img{ width: 100%;height: auto;}
.abso0{
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1000px;
 }
.sec01pa h1{
	line-height: 1.4em;
	font-weight: lighter;
	font-size: 3em;
	font-family: 'Noto Sans JP', sans-serif;
}

.sec01pa{
	color: #595757;
	text-align: center;
	position: absolute;
	top:30%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
@media screen and (max-width: 480px) {
	.sec01pa h1{
		margin-bottom: 20px;
	line-height: 1.2em;
	}
.sec01pa{
	width: 100%;
}
}
@media (max-width: 768px) {
  .sec01pa {
	top:12%;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
	  line-height: 1.7em;
  }
}
.main-content.privacy{
	background: #eeeeee;
}

.privacybox{
	width: 80%;
	margin:auto;
	padding: 100px 0;
}

.privacybox > div:first-child{
	padding-top: 100px;
}

.privacybox > div:not(:first-child){
	padding-top: 50px;
	font-size: 2em;
	border-bottom: solid 1px #000;
	letter-spacing: 0.08em;
}



