@charset "utf-8";

/* ==========================================================================
   1. Reset
   ========================================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{line-height:1.8em;}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
table{border-collapse:collapse;border-spacing:0}
button{background-color: transparent;border: none;cursor: pointer;outline: none;padding: 0; appearance: none;}




/* ==========================================================================
   2. Variables & Base (ポップ＆イエロー設定)
   ========================================================================== */
:root {
    --primary-color: #fff100; /* 鮮やかなイエロー */
    --accent-color: #FF6B00;     /* 元気なオレンジ */
    --text-color: #000;       /* 少し柔らかい黒 */
    --bg-light: #FFFDF0;         /* 非常に薄いクリームイエロー */
    --bg-dark: #2C3E50;          /* 洗練されたネイビー（フッター用） */
    --border-color: #FFE0B2;     /* 薄いオレンジの境界線 */
    --font-jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
      --yellow:#fff100;
  --black:#111;
      --paper:#FFFDF0;
  --line:rgba(0,0,0,.18);
}



* {
    box-sizing: border-box;
}


body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 2;
    margin: 0;
}


h1, h2, h3, .sub-title {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 20px; /* 画像の角を丸くしてポップに */
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; display: block; }

.text-center{
    text-align: center;
}

.pc{
    display: none;
}
.sp{
    display: block;
}

.stt-lang-select{
	    right: inherit !important;
	    max-height: 80px !important;
	    bottom: inherit !important;
	    top: 0 !important;
	    background-color: #fff100 !important;
	    box-shadow: 1px 2px 3px rgb(113 113 113 / 52%) !important;
	    border: 1px solid #fff100 !important;
}
.stt-text{
	    padding: 9px 7px !important;
	    right: inherit !important;
	    left:  0 !important;
	    font-size: 16px !important;
	    width: 66px !important;
}
.stt-lang-select .stt-select .stt-item{
	    position: relative;
    padding: 4px 26px 7px 0;
    font-size: 17px;
}
/* ====================
Hamburger 
==================== */
.hamburger{
  display:none;
  width: 51px;
  height: 40px;
  border-radius:16px;
  border:2px solid var(--black);
  background:#fff;
  /* box-shadow: 6px 6px 0 var(--black); */
  cursor:pointer;
  position:relative;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0;
  transition:.2s;
  margin-right: 23px;
}
.hamburger:hover{ transform: translateY(-2px); }
.hamburger__line{
  display:block;
  width:24px;
  height:2px;
  background:var(--black);
  border-radius:999px;
  transition:.25s;
}
body.is-menu-open .hamburger__line:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
body.is-menu-open .hamburger__line:nth-child(2){
  opacity:0;
}
body.is-menu-open .hamburger__line:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Overlay ===== */
.spmenu-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.25s;
  z-index: 9998;
}
body.is-menu-open .spmenu-overlay{
  opacity:1;
  visibility:visible;
}

/* ===== Slide Menu ===== */
.spmenu{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(420px, 90vw);
  background: #fff;
  border-left:2px solid var(--black);
  transform: translateX(105%);
  transition:.28s;
  z-index: 9999;
  overflow:auto;
}
body.is-menu-open .spmenu{
  transform: translateX(0);
}
main{
    margin: 90px 0 0;
}
.spmenu__inner{
  padding:22px;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.spmenu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.spmenu__title{
  margin:0;
  font-weight:900;
  letter-spacing:.12em;
}
.spmenu__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:2px solid var(--black);
  background: var(--yellow);
  font-weight:900;
  box-shadow: 4px 4px 0 var(--black);
  cursor:pointer;
  transition:.2s;
}
.spmenu__close:hover{ transform: translateY(-2px); }

.spmenu__list{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}
.spmenu__list a{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border:2px solid var(--black);
  border-radius:16px;
  text-decoration:none;
  color:var(--black);
  font-weight:900;
  background:#fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.15);
  transition:.2s;
}
.spmenu__list a span{
  font-weight:800;
  font-size:.85rem;
  opacity:.7;
  letter-spacing:.04em;
}
.spmenu__list a:hover{
  transform: translateY(-2px);
  background: var(--yellow);
}

.spmenu__cta{
  margin-top:auto;
  padding-top:18px;
}

/* ===== Responsive: SPで表示 ===== */
@media (max-width: 960px){
  .hamburger{ display:inline-flex; }
  /* PCナビがある場合はここで非表示に */
  /* .header-nav{ display:none; } */
}

/* bodyスクロール停止 */
body.is-menu-open{
  overflow:hidden;
}


/* ==========================================================================
   3. Common Layout
   ========================================================================== */

/* 共通コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0%;
}


/* 共通ボタン：真っ黒ベース */
.btn-strong {
    display: inline-block;
    background: #000;
    color: #FFEF00 !important;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 100px; /* 極太丸み */
    text-decoration: none;
    transition: 0.2s ease;
    border: 4px solid #000;
}

.btn-strong:hover {
    background: transparent;
    color: #000 !important;
}

.section {padding: 50px 15px;}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    color: var(--text-color);
}



.section-title.left { text-align: left; }
.section-title.left::after { margin: 15px 0 0; }

/* Buttons (ぷっくりした立体感) */
.btn-outline {
    display: inline-block;
    padding: 12px 45px;
    background: #000; /* 黒に変更 */
    color: #FFF;   /* 黄色文字 */
    border: 3px solid #000; /* 太枠でポップ感 */
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 6px 0 #222; /* 濃い影 */
    transition: 0.2s ease;
    cursor: pointer;
    display: block;
    /* max-width: 230px; */
    margin: 0 auto;
    line-height: 1.5;
    display: table;
}

.btn-outline:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #222;
}

.logo-link {
    display: flex;
    align-items: center;
    width: 190px;
    justify-content: center;
}

.logo img {
    /* height: 50px; */
    width: auto;
    border-radius: 0; /* ロゴは角丸なし */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.pagetop {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%; /* スライダーに合わせて円形に */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px var(--accent-color);
    z-index: 9999;
    
    /* 登場アニメーションの準備 */
    opacity: 0;
    transform: translateY(100px) scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 表示時：ぴょこんと跳ねて登場 */
.pagetop.is-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* スクロール進捗のSVG */
.pagetop-svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* 上から始まるように回転 */
    width: 40px;
    height: 40px;
}

.pagetop-circle {
    stroke-dasharray: 170; /* 円周の長さ（2 * π * r） */
    stroke-dashoffset: 170; /* 最初は空っぽ */
    transition: stroke-dashoffset 0.1s linear;
}

.pagetop-arrow {
    width: 12px;
    height: 12px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(-45deg);
    margin-top: 5px;
    position: relative;
    z-index: 2;
}

/* ホバー時の「ぷるぷる」アクション */
.pagetop:hover {
    animation: purupuru 0.5s ease duration;
    background: var(--wp--preset--color--black);
}

@keyframes purupuru {
    0% { transform: scale(1); }
    30% { transform: scale(1.1) rotate(5deg); }
    60% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1); }
}


/* ===== Page Header : simple ===== */
.page-header{
  background: #FFF;
  color:#000;
  padding: 30px 0 40px;  /* 間延び防止 */
  text-align:center;
  border-bottom: 1px solid rgba(0,0,0,.18); /* 太線やめる */
}

.page-header h1{
  font-size: clamp(2.0rem, 3.6vw, 3.0rem);
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 0px;
  text-shadow: none; /* 影やめる */
}

.page-header p{
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .8; /* これだけで十分 */
  background: none;     /* ピルやめる */
  box-shadow: none;     /* 影やめる */
  padding: 0;           /* 余計な装飾やめる */
}


.reveal {
    opacity: 0;
    /* 距離を少し伸ばして、動きの幅を見せる */
    transform: translateY(80px); 
    /* durationを0.8s → 1.2sに延長
       cubic-bezierを調整して、後半に吸い付くような動きに
    */
transition: 
        opacity 0.8s ease-out,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity; /* ブラウザに最適化を指示（滑らかさUP） */
}

/* 表示状態 */
.is-active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* 時間差の感覚を少し広げて、ゆったりと見せる */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }




.content-narrow {
    /* max-width: 850px; */ /* 少しだけ広げてゆとりを */
}

.sub-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
}



/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */



   header {
    height: auto; /* 高さを固定せず中身に合わせる */
    min-height: 100px !important;
    padding: 10px 0 !important;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    /* border-bottom: 4px solid var(--primary-color); */
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    transition: padding 1s ease;
    height: auto !important;
    width: 100%;
}



/* 初期状態（ロード前） */
.home:not(.is-header-ready) header {
    height: 0 !important;
    opacity: 0;
    min-height: 0 !important;
    padding: 0!important;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
}

.pc-nav {
    flex: 1; 
}

.pc-nav ul {
    display: grid;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
}

.pc-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 11px 8px;
    white-space: nowrap;
}

.pc-nav ul li a span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    margin-top: 2px;
}

.pc-nav ul li a:hover {
    background: #000;
    color: #fff;
}
.pc-nav ul li a:hover span {
        color: #fff;
}
.nav-contact {
    background: var(--accent-color) !important;
    padding: 8px 15px !important;
    margin-left: 10px;
}
.nav-contact span { color: #fff !important; opacity: 0.9; }

header.is-scrolled {
    min-height: 74px !important;
    padding: 1px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* height: 73px; */
}

header.is-scrolled .logo img {
    height: auto; /* スクロール後のロゴサイズ */
    margin: 0 0 0 auto;
}

header.is-scrolled .pc-nav ul li a {
    font-size: 0.95rem;
    padding: 6px 10px;
}

header.is-scrolled .pc-nav ul li a span{
    opacity: 0;
    display: none;
}
header.is-scrolled  .pc-nav ul li a:hover {}
header.is-scrolled  .pc-nav ul li a:hover span {
        color: #fff;
        opacity: 1;
       transition: .8s;
}

/* ==========================================================================
   5. Footer
   ========================================================================== */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 40px 4% 30px;
    border-top: 8px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.footer-logo{
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p{
    font-size: .8em;
}
.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.f-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.f-logo-link:hover{
    opacity: .7;
}

.f-logo {
    height: 100px;
    width: auto;
     /* ロゴを白抜きに */
}

.f-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-group h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-nav-group ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==========================================================================
   SNS Links (White Version)
   ========================================================================== */
/* SNSエリアのレイアウト */
.sns-links {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin: 20px 0;
    align-items: center;
}

.sns-icon {
    font-size: 1.5rem;
    color: #ffffff !important; /* 強制的に白にする */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* XなどのSVGアイコンも白に */
.sns-icon svg {
    fill: #FFF !important;
    width: 24px;
}

/* ホバー時の動き：黄色に光って少し浮き上がる */
.sns-icon:hover {
    color: var(--primary-color) !important; /* 黄色に変える */
    transform: translateY(-5px) scale(1.2);
}

.sns-icon:hover svg {
    fill: var(--primary-color) !important;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
}
.section-desc {
    text-align: center;
    /* margin-top: -20px; */
    margin-bottom: 20px;
    color: #000;
    font-size: 1em;
}
/* モバイル対応 */
@media (max-width: 960px) {
    .pc-nav { display: none; } /* 本来はハンバーガーメニューへ */
    .header-inner {justify-content: center;}
}


@media(min-width:767px){
    .sp{
    display: none;
}
.pc{
    display: block;
}


    /* ==========================================================================
   3. Common Layout
   ========================================================================== */
main{
    margin: 140px 0 0;
}
/* 共通コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

/* 共通タイトル：極太・真っ黒 */
.section-title {
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 10px;
}

/* 共通ボタン：真っ黒ベース */
.btn-strong {
    display: inline-block;
    background: #000;
    color: #FFEF00 !important;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 100px; /* 極太丸み */
    text-decoration: none;
    transition: 0.2s ease;
    border: 4px solid #000;
}

.btn-strong:hover {
    background: transparent;
    color: #000 !important;
}

.section {padding: 50px 15px;}



.section-title::after {
    content: '';
    display: block;
    width: 80px; /* ラインを少し長めに */
    height: 10px; /* ラインを太くしてポップに */
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 5px;
}

.section-title.left {}
.section-title.left::after { margin: 15px 0 0; }

/* Buttons (ぷっくりした立体感) */
.btn-outline {
    display: inline-block;
    padding: 16px 48px;
     /* 黒に変更 */
       /* 黄色文字 */
     /* 太枠でポップ感 */
    border-radius: 50px;
    
    
    
    
     /* 濃い影 */
}

.btn-outline:hover {}

.logo-link {
    /* display: flex; */
    /* align-items: center; */
    width: 135px;
}

.logo img {
     /* ロゴは角丸なし */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.pagetop {
    right: 30px;
    bottom: 30px;
    width: 64px;
    height: 64px;
    
     /* スライダーに合わせて円形に */
    
    
    
    
    
    
    
    /* 登場アニメーションの準備 */
}

/* 表示時：ぴょこんと跳ねて登場 */
.pagetop.is-show {
}

/* スクロール進捗のSVG */
.pagetop-svg {width: 64px;height: 64px;}

.pagetop-circle {
     /* 円周の長さ（2 * π * r） */
     /* 最初は空っぽ */
}

.pagetop-arrow {}

/* ホバー時の「ぷるぷる」アクション */
.pagetop:hover {
    animation: purupuru 0.5s ease duration;
    background: var(--wp--preset--color--black);
}

@keyframes purupuru {
    0% { transform: scale(1); }
    30% { transform: scale(1.1) rotate(5deg); }
    60% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1); }
}


/* ===== Page Header : simple ===== */
.page-header{
  padding: 64px 0 52px;  /* 間延び防止 */
  
   /* 太線やめる */
}

.page-header h1{
  margin: 0 0 10px;
   /* 影やめる */
}

.page-header p{
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .8; /* これだけで十分 */
  background: none;     /* ピルやめる */
  box-shadow: none;     /* 影やめる */
  padding: 0;           /* 余計な装飾やめる */
}




.sub-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 50px;
}



/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */



   header {
     /* 高さを固定せず中身に合わせる */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
}

.pc-nav {
    flex: 1; 
}

.pc-nav ul {
    display: grid;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
}

.pc-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 11px 8px;
    white-space: nowrap;
}

.pc-nav ul li a span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    margin-top: 2px;
}

.pc-nav ul li a:hover {
    background: #000;
    color: #fff;
}
.pc-nav ul li a:hover span {
        color: #fff;
}
.nav-contact {
    background: var(--accent-color) !important;
    padding: 8px 15px !important;
    margin-left: 10px;
}
.nav-contact span { color: #fff !important; opacity: 0.9; }

header.is-scrolled {
    min-height: 70px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

header.is-scrolled .logo img {
    height: 90px; /* スクロール後のロゴサイズ */
    margin: 0 0 0 auto;
}

header.is-scrolled .pc-nav ul li a {
    font-size: 0.95rem;
    padding: 6px 10px;
}
/* ==========================================================================
   5. Footer
   ========================================================================== */
footer {
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-content {
    gap: 40px;
    margin-bottom: 60px;
}
    

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.f-logo-link {
}

.f-logo {
    height: 132px;
    
     /* ロゴを白抜きに */
}

.f-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.footer-nav {
}

.footer-nav-group h4 {
}

.footer-nav-group ul li a:hover {

}

/* ==========================================================================
   SNS Links (White Version)
   ========================================================================== */
/* SNSエリアのレイアウト */
.sns-links {
    gap: 40px;
    margin: 40px 0;
}

.sns-icon {
    font-size: 2.2rem;
     /* 強制的に白にする */
}

/* XなどのSVGアイコンも白に */
.sns-icon svg {
}

/* ホバー時の動き：黄色に光って少し浮き上がる */
.sns-icon:hover {
     /* 黄色に変える */
}

.sns-icon:hover svg {
    fill: var(--primary-color) !important;
}


.footer-bottom {
}
.section-desc {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #000;
    font-size: 1.4em;
}
}


@media(min-width:991px){
    main{
    margin: 225px 0 0;
}
    /* ==========================================================================
   3. Common Layout
   ========================================================================== */
.stt-text{
	    padding: 14px 12px !important;
	    right: inherit !important;
	    left:  0 !important;
	    font-size: 16px !important;
	    width: 90px !important;
}
/* 共通コンテナ */
.container {}



/* 共通ボタン：真っ黒ベース */
.btn-strong {
    display: inline-block;
    background: #000;
    color: #FFEF00 !important;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 100px; /* 極太丸み */
    text-decoration: none;
    transition: 0.2s ease;
    border: 4px solid #000;
}

.btn-strong:hover {
    background: transparent;
    color: #000 !important;
}

.section {
    padding: 100px 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px; /* ラインを少し長めに */
    height: 10px; /* ラインを太くしてポップに */
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 5px;
}

.section-title.left {}
.section-title.left::after { margin: 15px 0 0; }

/* Buttons (ぷっくりした立体感) */
.btn-outline {}

.btn-outline:hover {}

.logo-link {
    /* display: flex; */
    /* align-items: center; */
    width: 200px;
}
    .logo-link:hover{
        opacity: .7
    }

.logo img {
    /* height: 50px; */
    width: auto;
    border-radius: 0; /* ロゴは角丸なし */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.pagetop {}

/* 表示時：ぴょこんと跳ねて登場 */
.pagetop.is-show {
}

/* スクロール進捗のSVG */
.pagetop-svg {}

.pagetop-circle {
     /* 円周の長さ（2 * π * r） */
     /* 最初は空っぽ */
}

.pagetop-arrow {}

/* ホバー時の「ぷるぷる」アクション */
.pagetop:hover {
    animation: purupuru 0.5s ease duration;
    background: var(--wp--preset--color--black);
}

@keyframes purupuru {
    0% { transform: scale(1); }
    30% { transform: scale(1.1) rotate(5deg); }
    60% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1); }
}


/* ===== Page Header : simple ===== */
.page-header{
  
  
    /* 間延び防止 */
  
   /* 太線やめる */
}

.page-header h1{
   /* 影やめる */
}

.page-header p{
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .8; /* これだけで十分 */
  background: none;     /* ピルやめる */
  box-shadow: none;     /* 影やめる */
  padding: 0;           /* 余計な装飾やめる */
}

.content-narrow {
    /* max-width: 850px; */ /* 少しだけ広げてゆとりを */
}

.sub-title {}



/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */



   header {
     /* 高さを固定せず中身に合わせる */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
}

.pc-nav {
    flex: 1; 
}

.pc-nav ul {
    display: grid;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
}

.pc-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 11px 8px;
    white-space: nowrap;
}

.pc-nav ul li a span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    margin-top: 2px;
}

.pc-nav ul li a:hover {
    background: #000;
    color: #fff;
}
.pc-nav ul li a:hover span {
        color: #fff;
}
.nav-contact {
    background: var(--accent-color) !important;
    padding: 8px 15px !important;
    margin-left: 10px;
}
.nav-contact span { color: #fff !important; opacity: 0.9; }

header.is-scrolled {
    min-height: 70px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header.is-scrolled .logo img {
    height: 90px; /* スクロール後のロゴサイズ */
    margin: 0 0 0 auto;
}

header.is-scrolled .pc-nav ul li a {
    font-size: 0.95rem;
    padding: 6px 10px;
}
/* ==========================================================================
   5. Footer
   ========================================================================== */
footer {
}

.footer-content {
}
    .footer-logo{
    display: block;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.f-logo-link {
}

.f-logo {
    
    
     /* ロゴを白抜きに */
}

.f-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.footer-nav {
}

.footer-nav-group h4 {
}

.footer-nav-group ul li a:hover {
}

/* ==========================================================================
   SNS Links (White Version)
   ========================================================================== */
/* SNSエリアのレイアウト */
.sns-links {
}

.sns-icon {
    
     /* 強制的に白にする */
}

/* XなどのSVGアイコンも白に */
.sns-icon svg {
    width: 30px;
}

/* ホバー時の動き：黄色に光って少し浮き上がる */
.sns-icon:hover {
     /* 黄色に変える */
}

.sns-icon:hover svg {
    fill: var(--primary-color) !important;
}


.footer-bottom {
}
.section-desc {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #000;
    font-size: 1.4em;
}
}

@media(min-width:1200px){

    /* ==========================================================================
   3. Common Layout
   ========================================================================== */

/* 共通コンテナ */
.container {
}


/* 共通ボタン：真っ黒ベース */
.btn-strong {
    display: inline-block;
    background: #000;
    color: #FFEF00 !important;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 100px; /* 極太丸み */
    text-decoration: none;
    transition: 0.2s ease;
    border: 4px solid #000;
}

.btn-strong:hover {
    background: transparent;
    color: #000 !important;
}

.section {}

.section-title {
}

.section-title::after {
    content: '';
    display: block;
    width: 80px; /* ラインを少し長めに */
    height: 10px; /* ラインを太くしてポップに */
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 5px;
}

.section-title.left {}
.section-title.left::after { margin: 15px 0 0; }

/* Buttons (ぷっくりした立体感) */
.btn-outline {}

.btn-outline:hover {}

.logo-link {
    /* display: flex; */
    /* align-items: center; */
    width: 200px;
}

.logo img {
    /* height: 50px; */
    width: auto;
    border-radius: 0; /* ロゴは角丸なし */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.pagetop {}

/* 表示時：ぴょこんと跳ねて登場 */
.pagetop.is-show {
}

/* スクロール進捗のSVG */
.pagetop-svg {

}

.pagetop-circle {
     /* 円周の長さ（2 * π * r） */
      /* 最初は空っぽ */
}

.pagetop-arrow {}

/* ホバー時の「ぷるぷる」アクション */
.pagetop:hover {
    animation: purupuru 0.5s ease duration;
    background: var(--wp--preset--color--black);
}

@keyframes purupuru {
    0% { transform: scale(1); }
    30% { transform: scale(1.1) rotate(5deg); }
    60% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1); }
}


/* ===== Page Header : simple ===== */
.page-header{
  padding: 70px 0 100px;  /* 間延び防止 */
  
   /* 太線やめる */
}

.page-header h1{
   /* 影やめる */
}

.page-header p{
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .8; /* これだけで十分 */
  background: none;     /* ピルやめる */
  box-shadow: none;     /* 影やめる */
  padding: 0;           /* 余計な装飾やめる */
}


.sub-title {}



/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */



   header {
     /* 高さを固定せず中身に合わせる */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 0;
}

.pc-nav {
    flex: 1; 
}

.pc-nav ul {
    display: grid;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
}

.pc-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 11px 8px;
    white-space: nowrap;
    transition: .8s;
}

.pc-nav ul li a span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    margin-top: 2px;
}

.pc-nav ul li a:hover {
    background: #000;
    color: #fff;
}
.pc-nav ul li a:hover span {
    color: #fff;
    display:block;
}

.nav-contact {
    background: var(--accent-color) !important;
    padding: 8px 15px !important;
    margin-left: 10px;
}
.nav-contact span { 
    color: #fff !important; 
    opacity: 0.9;
}

header.is-scrolled {
    min-height: 70px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header.is-scrolled .logo img {
    height: 90px; /* スクロール後のロゴサイズ */
    margin: 0 0 0 auto;
}

header.is-scrolled .pc-nav ul li a {
    font-size: 0.95rem;
    padding: 6px 10px;
}
    header.is-scrolled .pc-nav ul li a span{
        opacity: 0;
        display: none;
    }
       header.is-scrolled  .pc-nav ul li a:hover {

       }
   header.is-scrolled  .pc-nav ul li a:hover span {
        color: #fff;
        opacity: 1;
       transition: .8s;
}

/* ==========================================================================
   5. Footer
   ========================================================================== */
footer {
}

.footer-content {
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.f-logo-link {
}

.f-logo {
    
    
     /* ロゴを白抜きに */
}

.f-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.footer-nav {
}

.footer-nav-group h4 {
}

.footer-nav-group ul li a:hover {
}

/* ==========================================================================
   SNS Links (White Version)
   ========================================================================== */
/* SNSエリアのレイアウト */
.sns-links {
}

.sns-icon {
    
     /* 強制的に白にする */
}

/* XなどのSVGアイコンも白に */
.sns-icon svg {
}

/* ホバー時の動き：黄色に光って少し浮き上がる */
.sns-icon:hover {
     /* 黄色に変える */
}

.sns-icon:hover svg {
    fill: var(--primary-color) !important;
}


.footer-bottom {
}
.section-desc {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #000;
    font-size: 1.4em;
}

}

