@charset "UTF-8";

/* 共通 */

h2.cb_headline{
  margin-bottom: 5px;
}

/* mv font */

.#header_slider .catch{
  font-weight: 700;
}
.rich_font_2{
  font-family: "neulis-sans", "heisei-kaku-gothic-std", sans-serif;
  font-style: normal;
}

/* mv button font */

.design_button.type1 a{
  font-family: "neulis-sans", "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* title font */

.rich_font, .p-vertical {
  font-family: "neulis-sans", "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.rich_font_1 {
  font-family: "neulis-sans", "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.tab_content_bottom .title{
  font-family: "neulis-sans", "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*========= 固定ボタン ===============*/

.fixed-panel{
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 999;
}

.fixed-btn{
  width: 48px;
  display: flex;
  justify-content: center;
}

.fixed-btn:nth-of-type(1){
  background-color: #168E3C;
}
.fixed-btn:nth-of-type(2){
  background-color: #7AB852;
}

.fixed-btn:hover{
  background-color: #C5DB61;
}

.fixed-btn a{
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  cursor: pointer;
  user-select: none;
  padding: 24px 12px;
  text-decoration: none;
  color: #fff;
}

.slide-btn-wrap {
  position: absolute;
  right: -220px; /* ← 最初は画面外に押し出す（ボタンの幅ぶん） */
  transition: right 0.3s ease;
}

.slide-btn-wrap.slide-btn-active {
  right: 0; /* ← マウスオンで画面内へスライドイン */
}

.slide-btn-box {
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-color: #C4DB60;
}

.slide-btn {
  max-width: 48px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.slide-btn-content {
  padding: 12px;
  width: 196px;
  background-color: #168E3C;
}

.slide-btn-content p{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.0em;
  letter-spacing: 0.04em;
}
.slide-btn-content p span{
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0em;
}

@media screen and (max-width: 750px) {
  .fixed-panel {
    display: none;
  }
}

/*========= パララックス（動画） ===============*/

.parallax-video {
  position: relative;
  height: 60vh;
  overflow: hidden;
  background: #000; /* 背景が見える時の保険 */
}

.parallax-video video {
  position: absolute;
  top: -30%; /* 上にずらすことで下に動いても黒が見えないように */
  left: 0;
  width: 100%;
  height: 150%; /* かなり大きくすることでパララックスしても隙間が出ない */
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.1s linear;
  background-color: #000;
}

/* 動画セクションにオーバーレイテキスト */
.parallax-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* テーマの見出しに白色を強制（テーマカラーが黒固定の可能性あり） */
.parallax-caption .common_headline {
  color: #fff !important;
}

.parallax-caption .desc {
  color: #fff !important;
  font-size: 1rem;
  line-height: 2.4;
  margin: 16px 0 0;
}

@media screen and (max-width: 750px) {
  .parallax-video {
    height: 35vh;
  }
  .parallax-video video {
    top: -50%; /* 上にずらすことで下に動いても黒が見えないように */
    height: 170%; /* かなり大きくすることでパララックスしても隙間が出ない */
  }
  .parallax-caption {
    width: 100%;
  }
  .parallax-caption .desc {
    font-size: 14px;
    line-height: 2;
    margin: 6px 0 0;
    padding: 0 20px;
  }
}

/*========= 背景ぼかし ===============*/

:root{
  /* 近似色（添付画像ベース） */
  --lime:   #EEF1AD; /* 黄緑 */
  --lemon:  #F5F197; /* レモン */
  --orange: #F7CDA2; /* オレンジ */

  /* 全体の雰囲気調整 */
  --blur: 20px;        /* ぼかし強度（60〜100px） */
  --op: .9;           /* 不透明度（0.6〜0.9） */
}

/* グラデの芯をアニメ可能に */
@property --cx { syntax: '<percentage>'; initial-value: 40%; inherits: false; }
@property --cy { syntax: '<percentage>'; initial-value: 40%; inherits: false; }

/* 背景レイヤ */
.bg-blur{
  position:relative;
  overflow:hidden;          /* 裁ち落とし風 */
  isolation:isolate;
}

/* ぼかし円の共通（radial-gradient＋filter:blur） */
.blob{
  position:absolute;
  width: 420px; height: 420px;   /* 大きさは自由に調整 */
  border-radius:50%;
  filter: blur(var(--blur));
  opacity: var(--op);
  pointer-events:none;
  will-change: transform;
  mix-blend-mode:multiply;  /* 白背景と馴染む。不要なら削除 */
  /* “水彩っぽい”芯→外側のグラデ */
  background: radial-gradient(
    circle at var(--cx, 40%) var(--cy, 40%),
    var(--color) 0%,
    transparent 70%
  );

  /* “float”に加えて“glide”も同時に走らせる（遅らせて位相をズラす） */
  animation:
    float var(--dur) ease-in-out infinite alternate var(--delay),
    glide var(--glide, 18s) ease-in-out infinite alternate calc(var(--delay) + .6s);
}

/* 1つのキー フレームで“ゆらゆら” */
@keyframes float{
  0%   { transform: translate(0,0) scale(1) rotate(0deg); }
  50%  { transform: translate(var(--dx, 36px), var(--dy, -26px)) scale(1.06) rotate(6deg); }
  100% { transform: translate(calc(var(--dx, 36px) * -0.6), calc(var(--dy, -26px) * -0.6)) scale(1) rotate(-4deg); }
}
/* グラデの芯がゆっくり“泳ぐ” */
@keyframes glide {
  0%   { --cx: 40%; --cy: 42%; }
  50%  { --cx: 47%; --cy: 38%; }
  100% { --cx: 35%; --cy: 46%; }
}

/* ==== 3色の個別設定（位置・動き・色） ==== */
.blob.lime{
  --color: var(--lime);
  --dx: 82px;  --dy: -60px; --dur: 9.3s;  --delay: 0s;
  --glide: 18s;
  top:-88px; left:-136px; /* 見切れ回避で少しだけ内側へ */
}
.blob.lemon{
  --color: var(--lemon);
  --dx: -74px; --dy: 52px; --dur: 10.8s; --delay: .35s;
  --glide: 20s;
  right:-116px; bottom:-132px;
}
.blob.orange{
  --color: var(--orange);
  --dx: 72px;  --dy: 70px; --dur: 11.8s; --delay: .12s;
  --glide: 22s;
  left:44%; top:10%;
}

/* コンテンツ（前面） */
.section{
  position:relative; z-index:1;
  padding:130px 20px; text-align:center;
}
.section h1{ margin:0 0 12px; font-size:clamp(26px,3.6vw,44px); }

/* モバイル時は少し控えめに */
@media (max-width: 750px){
  .blob{ width:300px; height:300px; }
  .blob.lime   { display:none; }
  .blob.lemon  { --dx: -34px; --dy: 24px;  }
  .blob.orange { 
  --dx: 34px;  --dy: 32px;
  left:0%; top:40%;
  }
  :root{ --blur: 70px; --op:.7; }
}

/* 動きを抑えたいユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .blob{ animation:none !important; }
}

/*========= footer-sitemap ===============*/

.footer-sitemap{
  max-width: 1150px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 20px auto 0px;
  font-size: 1em;
}

.footer-sitemap a{
  text-decoration: none;
}

dl.footer-sitemap-box{
  width: 25%;
  padding: 0 40px 50px;
  border-left: 1px solid #ddd;
}
dl.footer-sitemap-box:last-child{
  border-right: 1px solid #ddd;
}

dl.footer-sitemap-box dt{
  color: #178e3c;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  margin: 12px 0 4px;
}
dl.footer-sitemap-box dt:first-child{
  margin-top: 0px;
}

dl.footer-sitemap-box dt a{
  color: #178e3c;
}

dl.footer-sitemap-box dt a:hover{
  color: #C4DB60;
}

dl.footer-sitemap-box dd{
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
}

dl.footer-sitemap-box dd a{
  color: #000;
}

dl.footer-sitemap-box dd a:hover{
  color: #C4DB60;
}

.footer-sitemap .dt-toggle {
  display: none;
}

/* ====== SP(～750px)：1カラム＋矢印表示 ====== */
@media (max-width: 750px) {
  .footer-sitemap{
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid #f6f6f6;
  }
  dl.footer-sitemap-box{
    width: 100%;
    padding: 0 0px 0px;
    border-left: none;
  }
  dl.footer-sitemap-box:last-child{
    border-right: none;
  }

  dl.footer-sitemap-box dt{
    color: #000;
    font-size: 13px;
    font-weight: normal;
    margin: 0px;
    padding: 12px 20px;
    border-top: 1px solid #f6f6f6;
  }

  dl.footer-sitemap-box dt a{
    color: #000;
    font-weight: normal;
  }
  dl.footer-sitemap-box dd{
    font-size: 13px;
    font-weight: normal;
    line-height: 2;
    padding: 12px 20px;
    background: #f6f6f6;
  }

  /* トグルボタン */
  .footer-sitemap .dt-toggle {
    display: block;
    position: relative;
    float: right;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 4px 0 0 0;
    margin: 0;
    cursor: pointer;
  }

  /* アイコン */
  .footer-sitemap .dt-toggle .icon::before {
    font-family: 'design_plus';
    content: '\e90e';
    display: block;
    font-size: 12px;
    color: #000; /* ←必要に応じて #fff にも */
    text-align: center;
    position: relative;
    transition: transform 0.25s ease;
  }

  /* 開いているとき（∧） */
  .footer-sitemap .dt-toggle[aria-expanded="true"] .icon::before {
    transform: rotate(180deg);
  }

  /* パネル開閉アニメ */
  .footer-sitemap .dd-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }

  .footer-sitemap .dd-panel.open {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
  }
}

/*========= mobile menu phone-parts ===============*/
@media (max-width: 1200px) {
.sp-phone-wrap{
	padding: 0 20px;
}
.sp-phone{
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
}
.sp-phone-icon{
    max-width: 24%;
	display: flex;
	align-items: center;
    padding: 12px;
	background-color: #C4DB60;
}
.sp-phone-txt{
    width: 76%;
	padding: 12px;
    background-color: #168E3C;
	color: #fff;
}
.sp-phone-txt p a{
	color: #fff !important;
}
.sp-phone-txt p{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.0em;
    letter-spacing: 0.04em;
}
.sp-phone-txt span{
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0em;
}
}