/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
*/


/* ＝＝＝＝＝＝＝＝＝共通＝＝＝＝＝＝＝＝＝ */
:root,body {
    font-family: "Bebas Neue", "Noto Sans JP", system-ui, -apple-system,
                BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: .01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Bebas Neue", "Noto Sans JP", system-ui, -apple-system,
                BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* すべての要素に box-sizing を適用（layout安定） */
*, *::before, *::after { box-sizing: border-box; }

/* 既存指定の微修正： body/htmlへの text-decoration は不要なので外す */
:root,body,html {
    margin: 0;
    padding: 0;
    color: #333;
}

a { text-decoration: none; color: #333; }
li { list-style: none; }

/* WordPressブロックのルートにも適用（!important は最後の頼みの綱） */
.wp-site-blocks {
    font-family: "Bebas Neue","Noto Sans JP",system-ui,-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif !important;
}
section {
    margin-top: 100px!important;
}
ul {
    margin: 0 !important;
}

a,
a:active,
a:focus,
a:visited {
  text-decoration: none !important;
  outline: none;
}

@media (max-width: 640px){

    body {
        padding-bottom: 77px !important;
    }
}



/* ＝＝＝＝＝＝＝＝＝共通ここまで＝＝＝＝＝＝＝＝＝ */





/* ＝＝＝＝＝＝＝＝＝ローディング＝＝＝＝＝＝＝＝＝ */

.cover{
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  background: #ff801f;
  z-index: 9999;
  opacity: 1;
  transition: opacity .65s ease;
  margin: 0;
}
.cover.is-hide{
  opacity: 0;
  pointer-events: none;
}

/* 中央にローダー */
.ui-circle-loading{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* ベース */
.ui-circle-loading .animate{
  position: relative;      /* 子liの絶対配置の基準 */
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 粒 */
.ui-circle-loading .animate li{
  list-style: none;
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 50%;
  margin: auto;
  top: 0; left: 0; right: 0; bottom: 0;
  /* 標準 + ベンダーの両方を書く */
  animation: loading-item 4.2s infinite;
  -webkit-animation: loading-item 4.2s infinite;
}

/* delay（1から始める） */
.ui-circle-loading .animate li:nth-child(1){ animation-delay: .0s;  -webkit-animation-delay: .0s; }
.ui-circle-loading .animate li:nth-child(2){ animation-delay: .1s;  -webkit-animation-delay: .1s; }
.ui-circle-loading .animate li:nth-child(3){ animation-delay: .2s;  -webkit-animation-delay: .2s; }
.ui-circle-loading .animate li:nth-child(4){ animation-delay: .3s;  -webkit-animation-delay: .3s; }
.ui-circle-loading .animate li:nth-child(5){ animation-delay: .4s;  -webkit-animation-delay: .4s; }
.ui-circle-loading .animate li:nth-child(6){ animation-delay: .5s;  -webkit-animation-delay: .5s; }
.ui-circle-loading .animate li:nth-child(7){ animation-delay: .6s;  -webkit-animation-delay: .6s; }

/* 標準キーフレーム */
@keyframes loading-item {
  0%   { transform: rotate(0)      translateX(-100px) translateY(30px); background-color: rgba(255,255,255,0); }
  5%   { transform: rotate(0deg)   translateX(0)      translateY(30px); background-color: rgba(255,255,255,1); }
  30%  { transform: rotate(-360deg) translateX(0)     translateY(30px); background-color: rgba(255,255,255,1); }
  55%  { transform: rotate(-720deg) translateX(0)     translateY(30px); background-color: rgba(255,255,255,1); }
  80%  { transform: rotate(-1080deg) translateX(0)    translateY(30px); background-color: rgba(255,255,255,1); }
  85%  { transform: rotate(-1080deg) translateX(100px) translateY(30px); background-color: rgba(255,255,255,0); }
  100% { transform: rotate(0)      translateX(-100px) translateY(30px); background-color: rgba(255,255,255,0); }
}

/* 互換用（Safari等） */
@-webkit-keyframes loading-item {
  0%   { -webkit-transform: rotate(0)      translateX(-100px) translateY(30px); background-color: rgba(255,255,255,0); }
  5%   { -webkit-transform: rotate(0deg)   translateX(0)      translateY(30px); background-color: rgba(255,255,255,1); }
  30%  { -webkit-transform: rotate(-360deg) translateX(0)     translateY(30px); background-color: rgba(255,255,255,1); }
  55%  { -webkit-transform: rotate(-720deg) translateX(0)     translateY(30px); background-color: rgba(255,255,255,1); }
  80%  { -webkit-transform: rotate(-1080deg) translateX(0)    translateY(30px); background-color: rgba(255,255,255,1); }
  85%  { -webkit-transform: rotate(-1080deg) translateX(100px) translateY(30px); background-color: rgba(255,255,255,0); }
  100% { -webkit-transform: rotate(0)      translateX(-100px) translateY(30px); background-color: rgba(255,255,255,0); }
}

/* ＝＝＝＝＝＝＝＝＝ローディングここまで＝＝＝＝＝＝＝＝＝ */





/* ＝＝＝＝＝＝＝＝＝ヘッダー＝＝＝＝＝＝＝＝＝ */
header{
    height: 100px;
}
.header-container,.header-nav ul,.header-right {
    display: flex;
}
/* ヘッダーロゴ */
.header-logo {
    margin: 25px;
}
.header-logo img{
    width: 190px;
    height: auto;
}
/* ヘッダーナビ */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    max-width: 100%;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 18px;
}
.header-nav {
    margin-right: 0;
    padding-right: 0;
}
.header-nav ul{ 
    margin-left: auto; /* メニューを右端に寄せる */
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: bold;
}
.header-nav a{
    color: inherit;
    text-decoration: none;
    padding: 8px 4px;
    border-radius: 6px;
    transition: color .2s ease, background-color .2s ease;
}
.header-nav a:hover,
.header-nav a:focus{
    background: rgba(0,0,0,.06);
    text-decoration: none;
}
.header-contact{
    margin-left: auto;
}

/* ===== CTA（お問い合わせ） ===== */
.contact-button{
    display: inline-block;
    background: #ff801f; color: #fff;
    padding: 41px 16px;
    text-decoration: none;
    line-height: 1;
    transition: opacity .2s ease, transform .08s ease;
    white-space: nowrap;
    font-weight: bold;
}
.contact-button:hover{ opacity: .9; }
.contact-button:active{ transform: translateY(1px); }

.has-global-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff33!important;
}


@media (min-width: 961px){
  .hamburger{ display: none !important; }
}




/* ========= SPレイアウト ========= */
@media (max-width: 640px){

header{ height: 64px; }
.header-logo{ margin: 13px 14px; }
.header-logo img{ width: 150px; }

/* ハンバーガー表示 */
.hamburger{
appearance: none;
background: transparent;
border: 0;
padding: 10px 20px;
line-height: 1;
cursor: pointer;      /* SPでだけ表示 → @media で上書き */
z-index: 1200;

}

/* PC用の横並びは解除 → ドロワー化 */
.header-container{ position: relative; }
.header-right{
    position: fixed;
    top: 0; right: -84vw;                 /* 初期は画面外 */
    width: 84vw; max-width: 360px;
    height: 100dvh;
    background: #fff;
    box-shadow: -6px 0 24px rgba(0,0,0,.2);
    display: flex; flex-direction: column;
    gap: 12px;
    padding: 76px 18px 18px;              /* 上はヘッダー分＋余白 */
    z-index: 1101;
    transition: right .22s ease;
    background: #ff901f;
}

/* ナビを縦並びに */
.header-nav ul{
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 50px!important;
    padding-right: 50px;
    color: #fff;
}
.header-nav a{
    display:block; padding: 14px 10px;
    border-radius: 6px;
    font-size: 16px; font-weight: 700;
}
.header-nav a:hover{ background: rgba(0,0,0,.05); }

/* CTAボタンは幅いっぱい */
.header-contact{ 
        margin-left: -30px;
        margin-top: 30px;
    
}
.contact-button{
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 54px;
    border-radius: 42px;
    background: #ffffff;
    color: #ff801f;
    border: 2px solid #ff801f;
    font-weight: bold;
}

/* ドロワーOPEN状態 */
header.is-open .drawer-backdrop{
    opacity: 1; pointer-events:auto; 
}
header.is-open .header-right{
    right: 0;
}
/* 黒幕は閉じている時は完全に無効 */
.drawer-backdrop[hidden],
header:not(.is-open) .drawer-backdrop{
  display:none !important; pointer-events:none !important; opacity:0 !important;
}

/* 送信UIを前面に */
.mw_wp_form input[type="submit"],
.mw_wp_form button[type="submit"]{
  position:relative; z-index:2;
}
.hamburger span{
  display: block;
  width: 28px;
  height: 2px;
  background: #333;
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}
header.is-open .hamburger span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
    background: #F2FF40;
    position: fixed;
}
header.is-open .hamburger span:nth-child(2){
    opacity: 0;
}
header.is-open .hamburger span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
    background: #F2FF40;
    position: fixed;
    right: 10;
    margin: 8px 0;
}

/* 既存：PC風の余白・装飾はSPでは抑える */
.header-nav a:hover, .header-nav a:focus{
    background: rgba(0,0,0,.05);
}

.header-nav li {
    border-bottom: 1px solid #ffffff;
    position: relative;              /* relativeを付けて::beforeの基準に */
    padding-left: 28px;   
}
.header-nav li a::before {
    content: "";
    position: absolute;
    left: 0;                         /* 左端に配置 */
    top: 50%;                        /* 高さ中央揃え */
    transform: translateY(-50%);     /* 中央補正 */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #F2FF40;
}

}







/* ＝＝＝＝＝＝＝＝＝ヘッダーここまで＝＝＝＝＝＝＝＝＝ */ 










/* ＝＝＝＝＝＝＝＝＝mainbanner＝＝＝＝＝＝＝＝＝ */ 
.mainbanner {
    margin: 0 !important;
}
.mainbanner {
    position: relative;
    margin: 0;
    min-height: 52vh;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000; /* 画像の代わりに黒背景 */
    }
.mainbanner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.mainbanner-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-inline: clamp(16px, 4vw, 48px);
    padding-bottom: 30px;
    text-align: right;
}
.mainbanner-inner h1 {
    color: #fff;
    font-size: 136px;
}
.mainbanner-text {
    color: #ff801f;
    font-size: 28px;
    display: inline-block;
    font-weight: bold;
}
.mainbanner-text p {
    padding: 14px 80px;
    background: #ffffffc4;
    border: 1px solid #ff801f;
}




/* SP */

@media (max-width: 640px){
.mainbanner{
    background-image: url("https://tnkfitness.jp/wp-content/uploads/2025/10/SP_main.png");
    min-height: 36vh;
    aspect-ratio: 1.1 / 1;
    background-size: cover;
    background-position: center;
}
.mainbanner-text {
    font-size: 15px;
    margin-bottom: 10px;
}
.mainbanner-text p {
    padding: 5px 20px;
    margin: 10px 0 !important;
    border-radius: 2px;
}
.mainbanner-inner {
    padding-bottom: 0;
}
.mainbanner-inner h1 {
    font-size: 56px;
    margin-bottom: 0!important;
}
}

/* ＝＝＝＝＝＝＝＝＝mainbannerここまで＝＝＝＝＝＝＝＝＝ */ 






/* ＝＝＝＝＝＝＝＝＝middle-banner＝＝＝＝＝＝＝＝＝ */ 

.middle-banner {
    background: #e3ded8;
    padding: 60px 0 50px;
    margin-top: 150px!important;
}
.banner-slider {
    width: 100%;                 /* 画面いっぱい */
    margin-left: 50%;
    transform: translateX(-50%);  /* 左右中央に固定 */
    position: relative;
    margin-top: -150px;
}
.banner-slider_img {
    margin: 0 10px;
}
.banner-slider img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

/* ドットの配置 */
.slick-dots {
    bottom: -48px;
}
/* デフォルトの●を消す */
.slick-dots li button:before {
    content: "";
}
/* 丸枠を自作 */
.slick-dots li button {
    width: 14px;
    height: 14px;
    border: 1px solid #ff801f;   /* ← 枠線を青に */
    border-radius: 50%;
    background-color: #fff;  
    background: transparent;
    transition: all 0.3s ease;
    padding: 0;
}
/* アクティブ時：塗りつぶし青 */
.slick-dots li.slick-active button {
    background-color: #ff801f;
    border-color: #ff801f;
}




/* SP */

@media (max-width: 640px){
.banner-slider .slick-slide{ 
    box-sizing: border-box; 
}
.banner-slider_img img{
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 4px; 
    display:block;
} 
.middle-banner {
    padding: 110px 0 20px;
    margin-top: 80px !important;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
}
.slick-dots {
    bottom: -39px;
}
}


/* ＝＝＝＝＝＝＝＝＝middle-bannerここまで＝＝＝＝＝＝＝＝＝ */ 









/* ========== FEATURES セクション ========== */

#features-section {
    background-color: #fff;
    padding: 80px 20px;
    font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
    color: #333;
    margin-top: 30px !important;
}

/* 全体の中央揃え＆最大幅 */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* タイトル */
.features-title {
    font-size: 88px;
    font-weight: 900;
    color: #ff801f;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    border-bottom: 3px solid #ff801f;
    display: inline-block;
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s ease;
}
.features-title.animate {
  opacity: 1;
  transform: translateX(0);
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* spanも少し遅れてフェードアップ */
.features-title span {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-title span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #ff801f;
    padding-bottom: 4px;
    width: fit-content;
}

/* メイン構成：左テキスト＋右画像 */
.features-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: -130px;
}

/* コピー部分 */
.features-copy {
    position: absolute;
    bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}
.features-copy span {
    color: #ff801f;
    -webkit-text-stroke: 1px #ff801f;
    text-stroke: 1px #ff801f;
    text-shadow: none;
    background: none;
}

/* 画像 */
.features-image {
    margin-left: auto;
}
.features-image img {
    width: 821px;
    height: auto;
    display: block;
}

/* 青帯（リード文） */
.features-lead {
    background: linear-gradient(135deg,#ff901f,#ff801f);
    color: #fff;
    text-align: center;
    padding: 18px;
    margin: -100px 0 30px;
    font-weight: 700;
    font-size: 20px;
}

/* 本文テキスト */
.features-text {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 16px;
}

/* タグボックス */
.features-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-tags li {
    background: #ff801f;
    color: #fff;
    padding: 16px 84px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    min-width: 140px;
    border-radius: 2px;
    transition: 0.2s;
}
.features-tags li:hover {
    opacity: 0.8;
}




/* SP */


@media (max-width: 640px){

  /* セクション余白とフォントの密度をSP用に */
  #features-section{
    margin-top: 10px !important;
    padding: 40px 16px 0;
  }

  /* タイトルは左寄せ・大きく・下線 */
  .features-title{
    font-size: 76px;
    margin: 0 0 30px;
    border-bottom: 3px solid #ff801f;
    display: inline-block;
  }
  .features-title span{
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  /* 画像を中央に・角丸。上の重ねテキストを乗せるためrelative */
  .features-main{
    position: relative;
    top: 0;
    display: block;            /* columnにせず単列 */
    margin-top: 10px;
  }
  .features-image{
    margin: 0 auto;
    width: 100%;
    max-width: 320px;          /* 画像幅（調整可：300〜360px） */
  }
  .features-image img{
    width: 100%;
    height: auto;
    display: block;
  }

  /* 画像の下辺に被せる大きいコピー */
  .features-copy{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -98px;
    font-size: 25px;
    line-height: 1.25;
    color: #ff801f;
  }
  .features-copy span{ color:#ff801f; -webkit-text-stroke: 0; }

  /* 青帯（リード文）をコンパクトに */
  .features-lead{
    margin: 100px 0 16px;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    position: relative;     /* 背景用の基準 */
    z-index: 0;
  }
  .features-lead::before{
  content: "";
  position: absolute;
  inset: 0;               /* 上下は同じ高さ */
  left: 50%;              /* 画面中央基準にして */
  width: 100vw;           /* 画面幅いっぱい */
  transform: translateX(-50%);
  background: inherit;    /* 親のグラデ背景をそのまま使う */
  z-index: -1;            /* 文字の背面へ */
}

  /* 本文は読みやすい行間で左揃え */
  .features-text{
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 18px;
  }

  /* タグをボタン風に：2カラム＋最下はフル幅（添付風） */
  .features-tags{
    justify-content: space-between;
    gap: 8px;
  }
  .features-tags li{
    flex: 1 1 calc(30% - 4px); /* 2列 */
    padding: 14px 0;
    min-width: auto;
    font-size: 14px;
    border-radius: 4px;
  }
  .features-tags li:nth-child(4),
  .features-tags li:nth-child(5){
    flex-basis: calc(30% - 4px);
  }
    .features-tags li:nth-child(4) {
    margin-left: 50px;
    }
    .features-tags li:nth-child(5) {
    margin-right: 50px;
    }
}

/* ========== FEATURES セクションここまで ========== */









/* ========== POINT セクション ========== */

/* ===== 背景：ff801f → ff901f のグラデーション ===== */
.points-section{
    background: linear-gradient(180deg, #ff801f 0%, #ff901f 100%);
    color: #fff;
    font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
    padding: 10px 0;
}
.points-container{ 
    max-width: 1200px; 
    margin: 0 auto; 
    padding-bottom: 70px;
}

/* 行レイアウト：画像を少し大きめに */
article {
    margin-top: 100px;
}
.point{
    display: grid;
    grid-template-areas: "text image";
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: clamp(64px, 10vw, 150px);
    position: relative;
}
.point--rev{
    grid-template-columns: 1.3fr 0.9fr;
    grid-template-areas: "image text";
}

.point-text{ 
    grid-area: text; 
    position: relative; 
    bottom: -90px;
}
.point-image{ 
    grid-area: image; 
    position: relative; 
    z-index: 5;
    opacity: 0;
    transform: translateX(60px);  /* 2枚目は後述で左からに上書き */
    transition: transform .8s ease, opacity .8s;
    will-change: transform, opacity;
}
.point.is-inview .point-image{
  opacity: 1; transform: translateX(0);
  transition-delay: .18s;         /* ← 画像は少し後（好みで .2〜.3s） */
    overflow: hidden;
}

/* 2枚目だけ左から（.point--rev を使う or nth-of-typeで指定）*/
.point--rev .point-image{                    /* 2枚目のarticleに付いているクラス */
  transform: translateX(-60px);              /* 左から */
}
.point--rev.is-inview .point-image{
  transform: translateX(0);
}


.point-image img{
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    border-radius: 4px!important;
}
.point--rev .point-image img {
    transform: none !important;
    border-radius: 4px !important;
}


/* POINTバッジ（縦幅を作らない） */
.point-badge{
    position: absolute;  /* レイアウトに高さを作らない */
    top: -136px;
    right: 0;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    color: #f4e8a5;
    opacity: 0;
    transform: translateX(60px);
    transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .8s;
    will-change: transform, opacity;
}
.point-badge span{
    display: inline-block;
    font-size: 165px;
    font-weight: 800;
    color: #fff;
}
.point.is-inview .point-badge{
    opacity: 1; transform: translateX(0);
    transition-delay: 0s;          /* 先に出す */
}

/* 任意：段階的に遅らせて演出（1,2,3番目のPOINT） */
.point:nth-of-type(1) .point-badge{ transition-delay: 0s;    }
.point:nth-of-type(1) .point-image{ transition-delay: .18s;  }
.point:nth-of-type(2) .point-badge{ transition-delay: .05s;  }
.point:nth-of-type(2) .point-image{ transition-delay: .23s;  }
.point:nth-of-type(3) .point-badge{ transition-delay: .10s;  }
.point:nth-of-type(3) .point-image{ transition-delay: .28s;  }


/* タイトル */
.point-title{
    margin-top: clamp(12px, 2vw, 18px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: .02em;
    color: #fff;
    text-align: right;
}

/* 画像に重なる白枠ボックス（左右反転にも追従） */
.point-box{
    grid-area: image;
    align-self: end;
    justify-self: start;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, .95);
    padding: clamp(12px, 2vw, 18px) clamp(16px, 2.6vw, 24px);
    /* width: min(78%, 680px); */
    width: 110%;
    margin-bottom: -36px;
    border-radius: 4px;
    right: 570px;
}
.point--rev .point-box{
    justify-self: end;      /* 反転時は右寄せ */
    right: -510px;
}


.point-box p{
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 1.9;
    font-size: clamp(14px, 1.7vw, 16px);
    color: #fff;
}

/* 下部センターテキスト */
.points-footer{
    text-align: center;
    margin-top: clamp(32px, 6vw, 56px);
}
.points-footer p{
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    line-height: 2;
    font-weight: 700;
    opacity: .95;
}





/* SP */

@media (max-width: 640px){

.points-section{
padding: 20px 0 40px;
overflow-x: hidden;
}
.points-container{
padding: 0 14px 24px;
}

/* 1行レイアウトにして中央寄せ */
.point{
display: block;
margin: 76px 0;               /* 各ブロックの間隔 */
position: relative;
}

/* 上の “POINT” バッジ（右上に大きく） */
.point-text{
position: relative;
bottom: auto;
text-align: center;
}
.point-badge{
position: relative;           /* レイアウトに高さを作る */
top: auto; right: auto;
font-size: 44px;              /* “POINT” */
color: #f4e8a5;
letter-spacing: .06em;
margin: 0 auto 10px;
line-height: 1;
text-align: right;
}
.point-badge span{
font-size: 140px;             /* 大きい数字 */
line-height: .8;
color: #fff;
opacity: .95;
margin-top: -8px;             /* “POINT”に少し重ねる */
}

/* 見出し（中央・太字） */
.point-title{
font-size: 18px;
margin: -8px 0 12px;          /* 数字に少し重ねて近づける */
color: #fff;
font-weight: 800;
letter-spacing: .02em;
}

/* 画像：中央・角丸 */
.point-image {
display: flex;
justify-content: flex-end; /* 右寄せ */
width: 96vw;
max-width: 100vw;
margin: 0;
padding: 0;
overflow: hidden;
}
.point-image img {
max-width: 350px;          /* 画像自体は小さめに */
width: 100%;
height: auto;
margin: 0;
display: block;
border-radius: 4px 0 0 4px;
}

/* 白枠ボックス：画像の下で軽く重ねる */
.point-box{
width: 86%;
margin: -14px auto 0 0;
right: auto;
left: auto;
justify-self: auto;
align-self: auto;
position: relative;
border: 2px solid rgba(255,255,255,.95);
border-radius: 4px;
padding: 12px 14px;
z-index: 2;
}
.point--rev .point-box{
right: auto;
}

.point-box p{
font-size: 13px;
line-height: 1.8;
margin: 10px 0;
text-align: left;             /* 2番目だけ右寄せしていたのを統一 */
color: #fff;
font-weight: 700;
}

/* 末尾テキスト（中央・読みやすく） */
.points-footer{
margin-top: 0px;
padding: 0 8px;
text-align: center;
}
.points-footer p{
font-size: 14px;
line-height: 2;
opacity: .95;
}
.point--rev .point-image img {
    transform: translateX(0%);
}
}

/* ========== POINT セクションここまで ========== */




/* ========== 料金表 セクション ========== */


/* ベース */
:root{
--orange: #ff901f;
--orange2:#ff901f;
--bg-deep:#0f1b22;
--grid: rgba(255,255,255,.22);
--muted: rgba(255,255,255,.55);
--pickup-bg:#fef2e9;
}
.price-section{
font-family: "Bebas Neue","Noto Sans JP",sans-serif;
padding: clamp(56px,7vw,96px) 20px;
}
.price-container{
    max-width:1200px;margin:0 auto;
}

/* 見出し */
.price-head{ 
    text-align:center; margin-bottom: 28px; 
}
.price-title{
    font-size: clamp(40px,7vw,88px);
    letter-spacing:.04em;
    margin:0;
    color: var(--orange);
}
.price-sub{
    margin:.1em 0 8px;
    color: var(--orange);
    font-size: 14px;
    letter-spacing:.2em;
}
.price-underline{
    width: 240px; height:2px; display:inline-block;
    background: var(--orange);
    opacity:.8;
}

/* テーブル（5列：行見出し＋4プラン） */
.plan-table{
    display:grid;
    grid-template-columns: minmax(160px, 1fr) repeat(4, 1fr);
    /* 3ブロック×高さ揃え */
    grid-auto-rows:auto;
    border:1px solid #C1C1C1;
    border-top:none; border-left:none; /* 枠線は内側で管理 */
    margin-top: 82px;
    overflow: visible;
}

/* すべてのセル共通の枠線 */
.plan-table > *{
    /* border-top:1px solid #C1C1C1;
    border-left:1px solid #C1C1C1; */
    padding: 0;
}

/* 行見出し */
.rowhead{
    grid-column: 1 / 2;
    background: transparent;
    font-weight: 800;
    font-size: clamp(16px,1.8vw,18px);
    letter-spacing:.06em;
    display:flex; 
    align-items:center; 
    justify-content:center;
    text-align:center;
    padding: clamp(18px,2.4vw,24px) 12px;
}
.rowhead_1{
    grid-column: 1 / 2;
    background: transparent;
    font-weight: 800;
    font-size: clamp(16px, 1.8vw, 18px);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(22px, 2.4vw, 24px) 12px;
    margin-top: 63px;
    border-left: 1px solid #C1C1C1;
    border-top: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
}

/* 列（プラン） */
.plan{ 
    background: transparent; 
    position: relative; 
}
.plan--pickup{ 
    background: var(--pickup-bg); 
    color:#123; 
    overflow: visible;
    box-shadow: 0 0 0 14px #fef2e9; /* 外側に淡いブルーの影（任意） */
    z-index: 2;
    position: relative;
}
.plan--pickup::after {
    content: "";
    position: absolute;
    top: -18px;
    left: -17px;
    right: -15px;
    bottom: -14px;
    border: 3px solid #ff901f;
    pointer-events: none;
    z-index: 3;
}

/* タブ（上部の山形） */
.plan-tab{
    position: relative;
    padding: clamp(12px,1.8vw,16px) 10px;
    text-align:center;
    background: var(--orange);
    color:#fff;
    font-weight: 800;
    letter-spacing:.06em;
}
.plan-tab_pm{
    position: relative;
    padding: clamp(12px,1.8vw,16px) 10px;
    text-align:center;
    background: var(--orange);
    color:#fff;
    font-weight: 800;
    letter-spacing:.06em;
    position: relative;
    width: 112%;
    left: -14px;
    height: 38%;
    top: -20px;
}
.plan--pickup .plan-tab{
    background: var(--orange);
}
.plan-tab_pm::after{
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: -14px;
    margin: auto;
    width: 101%;
    height: 15px;
    background: var(--orange);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tab-title{ 
    font-size: clamp(16px,1.9vw,20px); 
}

/* バッジ（オススメ） */
.plan--pickup .badge{
    position:absolute;
    left:-22px; 
    top: -55px;
    background:#F0F671;
    color:#0a0f12;
    font-weight:900;
    font-size: 14px;
    border-radius: 999px;
    padding: 39px 17px;
    line-height:1;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    z-index: 5;
}

/* 価格欄 */
.plan-price{
    display:flex; align-items:center; justify-content:center;
    padding: clamp(24px,4vw,38px) 10px;
}
.plan-price span{
    font-family:"Bebas Neue","Noto Sans JP",sans-serif;
    font-size: clamp(28px,3.8vw,40px);
    font-weight:900;
    letter-spacing:.06em;
}
.plan--pickup .plan-price span{ 
    color:#000; 
}

/* 条件・家族割の本文 */
.plan-cond{
    text-align:center;
    padding: clamp(18px,2.6vw,26px) 16px;
    font-family:"Noto Sans JP",sans-serif;
    font-weight:700;
    line-height:1.9;
    font-size: clamp(13px,1.6vw,15px);
}
.plan-cond_fd {
    border-right: 1px solid #C1C1C1;
}
.plan--pickup .plan-cond{ 
    color:#0e2430; 
}
.plan-cond.plan-note{ 
    font-size: clamp(12px,1.5vw,14px); 
}

/* 追加文 & ボタン */
.plan-extra{
    text-align:center;
    color:#ff801f;
    font-weight:900;
    margin-top: 70px!important;
    font-size: clamp(14px,1.8vw,18px);
}

.plan-footer {
    text-align:center;
    margin-top: 30px;
}
.plan-footer p {
    color: #ff801f;
    font-weight: 900;
}
.plan-btn {
    background: #ff801f;
    padding: 10px 40px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    font-weight: bold;
}
.plan-btn:hover,
.plan-btn:focus {
  background: #fff;
  color: #ff801f;
  border: 2px solid #ff801f;
}

.attention {
    text-align: right;
}

@media (min-width: 1025px){
.price-section_sp {
    display: none;
}
}


/* SP */

@media (max-width: 640px){
    #price {
        display: none;
    }
    :root{
  --orange: #ff901f;   /* 見出し帯の青 */
  --orange-deep:#ff801f;
  --light:#fef2e9;   /* 本体の薄い水色 */
  --line:#fabb8b;    /* 罫線 */
}
.price-section_sp {
    padding: 40px 16px;
    display: block !important;
}

/* カード本体 */
.plan-box_p{
position: relative;
width: 100%;
max-width: 368px;                  /* 画像のカード幅に合わせる */
    margin: 50px auto 28px;
background: var(--light);
border: 3px solid var(--orange-deep);
border-radius: 2px;
overflow: hidden;
font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
color:#222;
}
.plan-box{
  position: relative;
  width: 100%;
  max-width: 368px;                  /* 画像のカード幅に合わせる */
  margin: 0 auto 28px;
  border: 1px solid var(--orange-deep);
  border-radius: 2px;
  overflow: hidden;
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color:#222;
}
.plan-box tr:nth-child(3){
    border-bottom: none;
}
.plan-box_p,
.plan-box {
  position: relative;
  overflow: visible; /* バッジがはみ出しても表示 */
}
.plan-box_p,
.plan-box {
  position: relative;
  overflow: visible; /* バッジはみ出し許容 */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.price-section_sp .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
.price-section_sp .reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.plan-box_p.is-inview,
.plan-box.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.plan-box_p.is-inview { transition-delay: 0.1s; }
.plan-box:nth-of-type(2).is-inview { transition-delay: 0.25s; }
.plan-box:nth-of-type(3).is-inview { transition-delay: 0.4s; }
.plan-box:nth-of-type(4).is-inview { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .plan-fade,
  .plan-fade.in {
    transition: none;
    transform: none;
    opacity: 1;
  }
    .plan-box_p,
  .plan-box {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
    .price-section_sp .reveal,
  .price-section_sp .reveal.in {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* オススメの丸バッジ */
.plan-badge{
position:absolute;
top:-26px; left:-10px;
background:#F0F671;
color:#0a0f12;
font-weight:900;
font-size:13px;
padding: 33px 13px;
border-radius:999px;
box-shadow:0 6px 14px rgba(0,0,0,.18);
line-height:1;
z-index:10;
}

/* 見出し帯（上部） */
.plan-header,.plan-header_p{
  position: relative;
  text-align:center;
  color:#fff;
  background: var(--orange);
  font-weight:900;
  font-size:26px;
  letter-spacing:.06em;
  padding:18px 12px 22px;            /* 下に余白：山形の分 */
}

/* 見出し帯の“ゆるい山形” */
.plan-header_p::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 20px;
    background: #ff901f;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 50% 100%, 0 40%);
    z-index: 1;
}

/* 表本体 */
.plan-table{
    width: 100%;
    text-align: left;
    border-collapse: collapse; /* テーブルの線を揃える */
    font-size: 14px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
    margin: 0;
    display: revert-layer;
    border: none;
}

.plan-table th{
width:38%;
padding: 36px 22px;
font-weight:700;
color:#222;
background:transparent;
vertical-align:top;
}
.plan-table td{
  width:62%;
  color:#333;
}
.plan-table tr:nth-child(2) {
    border-top: 1px solid #ff801f!important;
    border-bottom: 1px solid #ff801f!important;
}
.plan-table tr:first-child td {
  border-top: none;
}
.price-underline{
    width: 100%;
    max-width: none;
    margin: 10px 0 24px 0;
}
.plan-table td {
  width: 62%;
  padding: 16px 12px;
  color: #333;
  border-top: none;                     /* 上線は不要なら消す */
}
.plan-table > * {
    border: none;                        /* 枠線は不要なら消す */
}

/* 価格の強調（1行目の右セル） */
.plan-table tr:first-child td{
  text-align:center;
  font-size:34px;
  font-weight:900;
  letter-spacing:.02em;
}
.plan-footer {
    text-align:center;
}
.plan-footer p {
    color: #ff801f;
    font-weight: 900;
}
.plan-btn {
    background: #ff801f;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    font-weight: bold;
}
.trial-cond {
  border-bottom: none !important;
}
.trial-row {
  border-bottom: none !important;
}
.plan-box .trial-cond {
    border-bottom: none !important;
}
.plan-box:has(.plan-header:contains("トライアル")) .plan-table tr:nth-child(2) {
    border-bottom: none !important;
}
.plan-price {
    margin-left: 30px;
}

}




/* ========== 料金表 セクションここまで ========== */









/* ========== ニュース セクション ========== */

/* 見出し */
#section-news>h2{
    margin-bottom: 48px;
}
#section-news {
    max-width: 1100px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
}

/* リストレイアウト */
.news-lists{
    list-style: none;
    padding: 0;
    margin-top: 50px !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.5vw, 24px);
}


/* サムネは使わない */
.news-thumb{ display:none; }

/* 日付とタイトル */
.news-meta{ display:flex; align-items:center; gap: 18px; }
.news-meta .date{
    color: #ff801f;               /* 青 */
    letter-spacing: .02em;
    white-space: nowrap;
    min-width: 9ch;
    padding-right: 50px;             /* 視覚的に揃える */
}
.news-text {
    display: flex;
}

.news-title{
    margin: 0;
    font-weight: 500;
    font-size: clamp(16px, 1.9vw, 20px);
    line-height: 1.7;
}
.news-list p{
    display: none;
}
/* カード見た目（既存に合わせて適宜） */
.news-card{
    position: relative;
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 34px;
  border: 1px solid #ff801f;
  border-radius: 2px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.news-card:hover{ transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.news-thumb img{ width: 100%; height: auto; display: block; border-radius: 4px; }
.news-meta{ display:flex; gap:10px; align-items:center; font-size: 12px; color:#555; }
.new-badge {
    position: absolute;
    right: -14px;
    top: 13%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #F2FF40;
    color: #ff801f;
    font: 900 18px / 94px "Bebas Neue", "Noto Sans JP", sans-serif;
    letter-spacing: .06em;
    text-align: center;
    box-shadow: 0 6px 56px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px; 
}
/* ===== スクロールで 1枚ずつ“ふわっ”と ===== */
.news-item{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
.news-item.is-inview{
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s); /* PHPで埋めた順次ディレイを適用 */
}

/* 動きを減らす設定の人には即時表示 */
@media (prefers-reduced-motion: reduce){
  .news-item{ opacity:1 !important; transform:none !important; transition:none !important; }
}


/* ホバーで濃いブルーに反転（バッジはそのまま） */
.news-card:hover,
.news-card:focus-visible{
    background: #ff801f;          /* 濃いブルー */
    color: #fff;
    transform: translateY(-1px);
    /* box-shadow: 0 3px 0 rgba(0,0,0,.4), 0 12px 28px rgba(0,0,0,.22); */
}
.news-card:hover .news-title,
.news-card:focus-visible .news-title{ color: #fff; }
.news-card:hover .news-meta .date,
.news-card:focus-visible .news-meta .date{ color: #fff; }

.button-container {
    margin-top: 30px;
    display: inline-block;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.button-container a {
    color: #ff801f;
    border-bottom: 1px solid #ff801f;
}




/* SP */

@media (max-width: 640px){

    #section-news {
        padding: 0px 16px;
        margin: 0 auto;
    }
    .news-card {
        padding: 0;
    }
    .news-text {
        display: block;
        text-align: left;
        font-size: 14px;
        margin: 10px;
    }
    .news-meta {
        display: block;   
        margin-bottom: 5px;    
    }
    .news-title {
        font-size: 16px;
        padding-top: 5px;
    }
    .new-badge {
        right: -14px;
        top: 3%;
        width: 54px;
        height: 54px;
        font: 900 18px / 57px "Bebas Neue", "Noto Sans JP", sans-serif;
    }
    .button-container {
        justify-content: center;
        margin-top: 40px;
    }

}







/* ===== Access ===== */
.access-section{
  background: linear-gradient(180deg,#ff801f 0%, #ff901f 100%);
  padding: clamp(48px,6vw,80px) 20px;
  color:#fff;
  font-family:"Bebas Neue","Noto Sans JP",sans-serif;
}
.access-section .features-title {
    border-bottom: 3px solid #fff;
}
.access-container{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.access-container h2 {
    color: #fff;
}
.access-container span {
    color: #fff;
}

/* タイトル */
.access-title{
  margin:0;
  font-weight:900;
  letter-spacing:.04em;
  font-size: clamp(40px,6vw,72px);
}
.access-sub{
  margin:.35rem 0 0;
  font: 700 14px/1 "Noto Sans JP",sans-serif;
  letter-spacing:.18em;
  opacity:.95;
}
.access-underline{
  display:block;
  width: 220px;
  height: 3px;
  background:#fff;
  opacity:.85;
  border-radius:2px;
  margin: 10px auto 24px;
}

.access-map {
    display: flex;
    margin-top: 80px;
}

/* 写真 */
.access-photo{
  margin: 0 auto clamp(24px,4vw,36px);
  width: min(88%, 640px);
}
.access-photo img{
  display:block;
  width:100%;
  height:auto;
  margin-top: 10px;
}

/* 情報テキスト */
.access-info{
  font-family:"Noto Sans JP",sans-serif;
  text-align: left;              /* 文章は左揃え */
  width: min(92%, 760px);
  margin: 0 auto;
  line-height: 2;
  font-weight:700;
  font-size: clamp(14px,1.9vw,16px);
}
.access-info .row{ margin: 0 0 .4rem; }
.access-info .label{ letter-spacing:.06em; }

/* Google Map リンク（右寄せ風に末尾配置） */
.gmaps{
  margin-left: .8em;
  display: inline-flex;
  align-items: center;
  gap: .35em;
  color: #0b2e42;
  background: rgba(255,255,255,.9);
  padding: .2em .6em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: filter .15s ease, transform .15s ease;
}
.gmaps .pin{ filter: saturate(120%); }
.gmaps:hover{ filter: brightness(1.05); transform: translateY(-1px); }

.row iframe{
    width: 80%;
    height: auto;
    margin: 30px 0;
}

/* SP 微調整 */
@media (max-width:640px){
  .access-photo{ width: 92%; }
  .gmaps{ display:inline-flex; margin-left: .6em; }
  .access-map {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
.access-photo {
    order: -1; /* 画像を一番上に */
    margin-bottom: 18px;
  }
}







/* ===== Footer ===== */
.site-footer{
  font-family: "Bebas Neue","Noto Sans JP",sans-serif;
  color:#222;
}

/* 上段：ロゴ＋ナビ */
.footer-top{
  background:#fff6f6; /* 明るいグレー */
}
.footer-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(36px,5vw,60px) 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  align-items: center;
  gap: 20px;
}
.footer-inner img{
    width: 50%;
    height: auto;
}

/* ロゴ（左） */
.footer-brand{
  text-decoration: none;
  color:#000;
  display: inline-block;
  line-height: 1.05;
}
.footer-brand .brand-main{
  display: block;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(28px,5vw,48px);
}
.footer-brand .brand-sub{
  display: block;
  font-weight: 900;
  letter-spacing: .1em;
  font-size: clamp(18px,3vw,28px);
  margin-top: 4px;
}

/* ナビ（右） */
.footer-nav{ justify-self: end; }
.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  /* 2行×3列のグリッドで並べる */
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-rows: auto;
  gap: clamp(20px,3vw,20px) clamp(28px,4vw,35px);
}
.footer-menu a{
  text-decoration: none;
  color:#333;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(14px,1.8vw,18px);
  transition: opacity .15s ease, transform .15s ease;
}
.footer-menu a:hover{ opacity:.75; transform: translateY(-1px); }

/* 下段：コピーライト帯 */
.footer-bottom{
  background:#ff801f; /* 青帯 */
  color:#fff;
  text-align: center;
}
.footer-bottom small{
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 300;
  letter-spacing: .03em;
  font-size: 10px;
}

/* レスポンシブ：幅が狭いときは縦積み＋中央寄せ */
@media (max-width: 640px){
.footer-inner{
grid-template-columns: 1fr;
text-align: center;
}
.footer-nav{ justify-self: center; }
.footer-menu{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.footer-menu li {
justify-self: center;
}

}





/* ==================================

contact

================================== */

#mw_wp_form_mw-wp-form-38 input,textarea {
border: 1px solid #ff801f;
width: 100%;

}

#mw_wp_form_mw-wp-form-38 {
    width: 70%;
    margin: 30px auto 70px;
    font-size: 14px;
}

input[type=submit] {
    margin: 30px auto;
    display: block;
    background: #ff801f;
    border-radius: 5px;
    padding: 10px 50px;
    font-size: 16px;
    color: #fff;
}
input[type=submit], .submit input[type=submit] {
  position: relative;
  z-index: 98;
  pointer-events: auto !important;
  opacity: 1 !important;
}

#mw_wp_form_mw-wp-form-38 {
    width: 70%;
    margin: 30px auto 70px;
    font-size: 14px;
}

input:not([type=checkbox],[type=submit],[type=radio],[type=file],.wc-block-price-filter__range-input) {
    padding: 5px 19px;
    margin-top: 8px
}

.submit {
    display: flex;
    justify-content: center;
}


input {
    text-align: center;
    display: block;
    margin: 30px 0;
    border-radius: 5px!important;
}

input[type=submit] {
    margin: 30px auto;
    display: block;
    background: #ff801f;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    margin: 30px 20px 50px
}

textarea {
    border: 1px solid #ff801f!important;
    border-radius: 5px!important;
    margin-top: 8px!important
}


@media (max-width: 640px){
.wp-block-post-title {
text-align: center;
}
#mw_wp_form_mw-wp-form-38 {
width: 80%;
margin: 30px auto 70px;
font-size: 14px;
}
.has-global-padding {
    width: 100%;
}
.has-global-padding > .alignfull {
    margin: 0;
    padding: 0;
}

/* MW WP Form 内の入力欄は読みやすい汎用Sansに固定 */
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="url"],
.mw_wp_form input[type="search"],
.mw_wp_form textarea {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-transform: none !important;
  font-variant: normal !important;
  font-feature-settings: "smcp" 0, "c2sc" 0 !important; /* 小型大文字も無効化 */
}

/* UIkit を使っている場合の保険 */
.uk-input, .uk-textarea {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-transform: none !important;
}

}



/* ==================================

news

================================== */
.site-main{
    width: 810px;
    margin: 120px auto!important;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 50px;
}
.page-numbers {
    margin: 0 5px;
    border: 1px solid #ff801f;
    padding: 5px 16px;
}
.page-numbers:hover {
    background: #ff801f;
    color: #fff;
}

.archive .news-card {
    border: none;
}
.archive .news-list {
    border-bottom: 1px solid #ff801f;
    margin-top: 20px;
}
.archive .new-badge {
    right: 26px;
    top: 43%;
}
.archive .news-card:hover {
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  background: inherit !important;
  color: inherit !important;
}

.archive .news-card:hover .news-title,
.archive .news-card:hover .news-meta .date {
  color: #ff801f;
}

@media (max-width: 640px){
    .site-main {
        width: 100vw;
        max-width: 100vw;
        margin: 90px 0 0 0 !important;
        padding: 0 8px;
        box-sizing: border-box;
}
}



/* ==================================

news詳細

================================== */


.single-post.category-news .post-navigation a {
  display: inline-block;
  border: 1px solid #fff6f6;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.single-post.category-news .post-navigation a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

@media (max-width: 640px) {
.archive .new-badge{
    right: 216px;
    top: 14%;
}
.archive .new-badge {
    width: 14px;
    height: 14px;
    background: inherit;
    display: flex;
    left: 80px;
}

.postid-52 .wp-block-group {
    width: 90%;
    margin: 0 auto;
}
.postid-52 .wp-block-post-title {
    font-size: 24px;
    margin: 30px 0;
}
}



/* ==================================

料金

================================== */
/* .another_plan_list li::before {
    content: "";
    position: absolute;
    left: 120px;
    transform: translateY(50%);
    width: 14px;
    height: 14px;
    border-radius: 53%;
    background-color: #ff801f;
} */
.another_plan_list li {
    margin-bottom: 50px;
}
.another_plan_list p {
    font-weight: bold;
}
.another_plan h2{
    margin: 40px 0;
    color: #ff801f;
}



@media (max-width: 640px) {
    .page-id-73 .plan-box_p, .plan-box {
        opacity: inherit;
        transform: inherit;
        transition: inherit;
        will-change: inherit;
        
    }
    .attention {
    font-size: 16px;
    }
    .another_plan_list li::before {
    left: 20px;
    transform: translateY(45%);
    }
    .page-id-73 .price-section_sp {
        margin-top: 50px!important;
    }

     ul.another_plan_list{
        padding: 0;
    }
}


/* ==================================

予約ボタン固定表示

================================== */

.floatBtnWrap{
    position: fixed;
    left: 0;
    right: 0;
    bottom: max(0px, env(safe-area-inset-bottom));
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 18px 54px calc(18px + env(safe-area-inset-bottom));
    pointer-events: none;
}

.floatBtnWrap .gnaviBtn a{
  pointer-events: auto;
}

/* ボタン共通 */
.gnaviBtn{
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* お問い合わせ（ゴースト） */
.gnaviBtn.contact_btn{
  background: #fff;
  border: 2px solid #ff801f;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.gnaviBtn.contact_btn a{
  color: #ff801f;
  font-weight: 700;
  font-size: clamp(14px, 3.8vw, 18px);
  display: block;
}
.gnaviBtn.contact_btn:hover{ transform: translateY(-2px); }
.gnaviBtn.contact_btn:active{ transform: translateY(0); }

/* 予約（グラデ & シャドウ & シャイン） */
.gnaviBtn.reserve{
  border: none;
  background: linear-gradient(90deg, #6CCB5F 0%, #41C4DD 100%);
  box-shadow:
    0 10px 18px rgba(65,196,221,.25),
    0 6px 10px rgba(108,203,95,.25);
  position: relative;
  overflow: hidden;
}
.gnaviBtn.reserve a{
    color: #fff;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 16px;
    display: block;
}
/* 斜めのハイライト（hover時にスッと流れる） */
.gnaviBtn.reserve::before{
  content:"";
  position:absolute; inset:-40% -60% auto auto;
  width:50%; height:300%;
  background:linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 70%);
  transform:translateX(-120%) rotate(25deg);
  transition:transform .6s ease;
  pointer-events:none;
}
.gnaviBtn.reserve:hover::before{ transform:translateX(60%) rotate(25deg); }
.gnaviBtn.reserve:hover{ transform: translateY(-2px); }
.gnaviBtn.reserve:active{ transform: translateY(0); filter: saturate(1.08); }

/* a の共通（安全） */
.gnaviBtn a{
  width: 100%;
  text-decoration: none;
}

/* スマホ幅のレイアウト（片方40% / もう片方50% を踏襲） */
@media (max-width: 640px){
    .gnaviBtn.contact_btn{ flex-basis: 40%; }
    .gnaviBtn.reserve     { flex-basis: 50%; }
    .floatBtnWrap {
        background: #f7f7f7;
    }   
    .floatBtnWrap {
        padding: 18px 26px calc(18px + env(safe-area-inset-bottom));
    }
    .gnaviBtn.reserve a{
        font-size: 15px;
    }
}

/* PCでは非表示（PCで出したいならこのブロックを削除） */
@media (min-width: 1024px){
  .contact_btn{ display: none !important; }
}

/* キーボードフォーカス（アクセシビリティ） */
.gnaviBtn a:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px rgba(65,196,221,.55);
  border-radius: inherit;
}
