@CHARSET "utf-8";
/*
theme Name: Tadokoro Yusuke
Author: Plusers
Description: original theme
version: 2.0.0
License URI: https://tadokoro-yusuke.com/
*/

/* =============================================
   リセットCSS
   ============================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* =============================================
   基本設定
   ============================================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP',sans-serif, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
    font-size: 17px;
	-webkit-font-smoothing:antialiased;
}

li {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

a img {
    border: none;
}

a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -khtml-opacity: 0.70;
}

figure {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

figcaption {
    display: block;
    padding: 5px 0;
}

svg {
    height: auto;
    width: 100%;
}

p {
    font-size: 18px;
    line-height: 1.6em;
    margin: 6px 15px 20px 15px;
}
@media screen and (max-width: 760px) {
    p {
        font-size: 17px;
    }
}

/* =============================================
   レイアウト
   ============================================= */
.content {
    overflow: hidden;
    width: 100%;
}

div#container {
    font-size: 18px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    text-align: left;
}
@media screen and (max-width: 480px) {
    div#container {
        margin: 0 0 10px 0;
    }
}

div#content {
    padding: 0;
    margin: 0;
    min-height: 100vh;
}
@media screen and (max-width: 760px) {
    div#content {
        width: 100%;
        padding: 0;
    }
}

div#main {
    font-size: 22px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    flex: 1 0 auto; /* これが重要：メインコンテンツを伸ばす */
}
@media screen and (max-width: 760px) {
    div#main {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    div#main {
        font-size: 18px;
        width: 100%;
        line-height: 1.5em;
    }
}

article.post {
    display: block;
    margin: 0;
}
@media only screen and (max-width: 760px) {
    article.post {
        margin: 0;
    }
}
@media only screen and (max-width: 480px) {
    article.post {
        margin: 0;
    }
}



/* =============================================
   ヘッダー
   ============================================= */
#header {
    display: block;
    background-color: #fff;
    margin-bottom: 0;
    height: 100%;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 85px;
    z-index: 999;
    background-color: #fff; /* 透明に変更 */
    transition: background-color 0.3s ease;
}

/* スクロール時に白背景に */
.header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ヘッダーテキスト（初期状態：白） */
.header_position {
    font-size: 14px;
    color: #fff; /* 白に変更 */
    font-weight: 900;
    transition: color 0.3s ease;
}

.header_name {
    font-size: 32px;
    color: #fff; /* 白に変更 */
    font-weight: 900;
    margin: 5px 0;
    transition: color 0.3s ease;
}

.title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    z-index: 1000;
}

/* ヘッダーナビゲーション（PC） */
@media only screen and (min-width: 960px) {
    /* ヘッダーを透明に */
    .header {
        background-color: #fff;
    }	
	
    /* スクロール時は白背景 */
    .header.scrolled {
        background-color: #fff;
    }
	
    /* ヘッダーテキスト - 初期状態は白 */
    .header .header_name {
        color: #fff;
    }
	
    .header_inner {
        width: 100%;
        padding: 3px 0;
        margin-left: auto;
        margin-right: auto;
    }
	
    .header .header_position {
        color: #fff;
    }
	
    /* スクロール時は元の色に */
    .header.scrolled .header_name {
        color: #e60012;
    }
	
    .header.scrolled .header_position {
        color: #333;
    }
	
    /* ハンバーガーボタン - 初期状態 */
    .header .hamburger {
        background: rgba(255, 255, 255, 0.9);
    }
	
    .header .hamburger_border {
        background-color: #e60012;
    }

    .header .logo {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 20px;
    }
	
    .header_text {
        padding-top: 10px;
        padding-left: 5px;
    }	

    .nav_list {
        text-align: right;
    }
    .nav_list ul {
        padding: 50px 0 0 0;
    }
    .nav_list li {
        display: inline-block;
        text-align: right;
        padding: 20px 20px 0 20px;
    }
    .nav_list li a {
        color: #333; /* 白に変更 */
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s ease;
    }
	
	.nav_item a::after {
        background-color: #fff; /* 下線も白に */
        transition: background-color 0.3s ease;
    }

    .nav_item a {
        position: relative;
        display: inline-block;
    }
    .nav_item a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0;
        height: 2px;
        background-color: #e60012;
        transition: 0.2s;
    }
    .nav_item a:hover::after {
        width: 100%;
    }
}

/* スクロール時のテキスト色（元の色に戻す） */
.header.scrolled .header_position {
    color: #333;
}

.header.scrolled .header_name {
    color: #e60012;
}

@media only screen and (min-width: 960px) {
    .header.scrolled .nav_list li a {
        color: #000;
    }
    
    .header.scrolled .nav_item a::after {
        background-color: #e60012;
    }
}

@media screen and (max-width: 760px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }
    
    #container {
        overflow: visible;
    }
}



/* =============================================
   お問い合わせボタン（ヘッダー）
   ============================================= */
/* ヘッダーテキスト */
.header_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.title a {
    text-decoration: none;
}
.header_position {
    font-size: 14px;
    color: #fff;
    font-weight: 900;
}

/* お問い合わせボタン */
@media only screen and (min-width: 960px) {
    .nav_item_contact {
        margin: -20px 0 0 0 !important;
        padding: 0 !important;
        vertical-align: top;
    }
    .nav_item_contact a {
        background-color: #e60012;
        color: #fff !important;
        padding: 20px 30px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 5px;
        transition: background-color 0.3s ease;
        height: 62px;
    }
    .nav_item_contact a:hover {
        background-color: #c62828;
    }
    .nav_item_contact a::after {
        display: none;
    }
/* 
    .contact_icon {
        font-size: 26px;
        line-height: 1;
        margin-top: 10px;
    }
 */
}

@media screen and (max-width: 760px) {
    /* ヘッダー */
    .header,
    .header.scrolled {
        width: 100% !important;
        height: 70px !important;
        min-height: 70px !important;
        overflow: visible !important;
    }
    
    /* header_inner をflexboxに */
    .header_inner,
    .header.scrolled .header_inner {
        display: flex !important;
        align-items: center !important;
        height: 70px !important;
        min-height: 70px !important;
        padding: 0 !important;
    }
    
    /* ロゴ - 高さも追加 */
    .header .logo,
    .header.scrolled .logo {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding: 0 0 0 15px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        height: 70px !important;  /* 追加 */
    }
    
    .header .header_text,
    .header.scrolled .header_text {
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        height: 100% !important;  /* 追加 */
    }
    
    .header_name,
    .header.scrolled .header_name {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap;
    }
    
    .header_position,
    .header.scrolled .header_position {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap;
    }
}


/* =============================================
   スマホナビゲーション（修正版C）
   ============================================= */
@media only screen and (max-width: 960px) {
    .header .nav {
        position: fixed;
        right: -320px;
        top: 0;
        width: 85%;
        max-width: 280px;
        height: 100vh;
        height: 100dvh; /* 動的ビューポート対応 */
        padding-top: 160px;
		padding-bottom: 80px;
        background: #fff;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        -webkit-overflow-scrolling: touch !important; /* iOS用スムーズスクロール */
        overflow-y: scroll !important;
    }

    .nav-open .header .nav {
        right: 0;
    }

    /* 名前 - 大きく */
    .header .nav::before {
        content: '有沢 芳郎';
        position: absolute;
        top: 80px;
        left: 30px;
        font-size: 28px;
        font-weight: bold;
        color: #e60012;
        letter-spacing: 2px;
    }
	
    /* 読み仮名 - 下の余白を増やす */
    .header .nav::after {
        content: 'ありさわ よしろう';
        position: absolute;
        top: 120px;
        left: 30px;
        font-size: 13px;
        font-weight: normal;
        color: #888;
        letter-spacing: 1px;
        padding-bottom: 25px; /* 20px → 25px */
        border-bottom: 1px solid #eee;
        width: calc(100% - 60px);
    }


    .header .nav_list {
        margin: 0;
        padding: 0;
        list-style: none;
        max-height: none; /* 制限を解除 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px; /* 余白を増やす */
    }
	
    /* メニューが開いている時、背景のスクロールを止める */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .header .nav_item {
        text-align: left;
        padding: 0;
    }

    /* メニュー項目 - フォント大きく */
    .header .nav_item a {
        display: block;
        padding: 20px 30px;
        text-decoration: none;
        color: #333;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 1px;
        position: relative;
        transition: all 0.3s ease;
        border-bottom: none;
        background: transparent;
    }

    .header .nav_item a::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 30px;
        width: 0;
        height: 2px;
        background: #e60012;
        transition: all 0.3s ease;
    }

    .header .nav_item a:hover {
        color: #e60012;
        background: #f8f9fa;
    }

    .header .nav_item a:hover::after {
        width: 40px;
    }

    /* お問い合わせボタン - 幅を調整 */
    .header .nav_item_contact a {
        background: #e60012;
        color: #fff;
        margin: 15px;
        padding: 14px 10px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        width: calc(100% - 30px);
        box-sizing: border-box;
    }
	
    .header .nav_item_contact a:hover {
        background: #c62828;
        color: #fff;
    }

    .header .nav_item_contact a::after {
        display: none;
    }

    /* SNS縦並び */
    .header .nav_sns_item {
        margin-top: 10px;
        padding: 0;
        border-top: 1px solid #eee;
    }

    .header .nav_sns {
        display: flex;
        flex-direction: column;
        padding: 15px 0 100px 0;
    }

    .header .nav_sns a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 25px;
        text-decoration: none;
        color: #555;
        font-size: 14px;
        font-weight: normal;
        transition: all 0.3s ease;
    }

    .header .nav_sns a:hover {
        color: #e60012;
        background: #f8f9fa;
    }

    .header .nav_sns a::after {
        display: none;
    }

    .header .nav_sns i {
        width: 20px;
        text-align: center;
        font-size: 16px;
        color: #e60012;
    }

    /* ハンバーガーボタン */
    .header .hamburger {
        position: fixed;
        right: 15px;
        top: 10px;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        cursor: pointer;
        z-index: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header .hamburger_border {
        position: relative;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: #e60012;
        transition: all 0.3s ease;
        margin: 3px 0;
    }

    .nav-open .header .hamburger_border {
        background-color: #333;
    }

    .nav-open .header .hamburger_border_top {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .header .hamburger_border_center {
        opacity: 0;
    }

    .nav-open .header .hamburger_border_bottom {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* 背景オーバーレイ */
    .header .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .nav-open .header .black_bg {
        opacity: 0.5;
        visibility: visible;
    }
}

/* PC版ではSNS非表示 */
@media only screen and (min-width: 961px) {
    .header .nav_sns_item {
        display: none;
    }
}

/* =============================================
   ヘッダーロゴの色分け
   ============================================= */

/* デフォルト：トップページ以外（青ロゴ・透明背景） */
.header .header_name {
    color: #e60012 !important;
}

.header .header_position {
    color: #333 !important;
}

/* ナビは常に黒 */
.header .nav_list li a {
    color: #333 !important;
}

/* トップページのみ（白ロゴ・透明背景） */
body[data-page="home"] .header .header_name {
    color: #e60012 !important;
}

body[data-page="home"] .header .header_position {
    color: #333 !important;
}

/* トップページ：スクロール時（背景白に） */
body[data-page="home"] .header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* トップページ：スクロール時（ロゴのみ青に） */
body[data-page="home"] .header.scrolled .header_name {
    color: #e60012 !important;
    text-shadow: none;
}

body[data-page="home"] .header.scrolled .header_position {
    color: #333 !important;
    text-shadow: none;
}


/* =============================================
   スマホ版：トップページでも初期状態で青ロゴ
   ============================================= */
@media screen and (max-width: 760px) {
    /* トップページでも初期状態で青に */
    body[data-page="home"] .header .header_name {
        color: #e60012 !important;
    }
    
    body[data-page="home"] .header .header_position {
        color: #333 !important;
    }
    
    /* スクロール後も青のまま */
    body[data-page="home"] .header.scrolled .header_name {
        color: #e60012 !important;
    }
    
    body[data-page="home"] .header.scrolled .header_position {
        color: #333 !important;
    }
}


/* =============================================
   お問い合わせボタン修正
   ============================================= */

/* お問い合わせボタン：常に白文字 */
.nav_item_contact a {
    color: #fff !important;
    transition: background-color 0.3s ease !important;
}

.nav_item_contact a .contact_icon {
    color: #fff !important;
}

.nav_item_contact a span {
    color: #fff !important;
}

/* ホバー時：濃い青にふわっと変化 */
.nav_item_contact a:hover {
    background-color: #c62828 !important;
}


/* =============================================
   フローティングSNSボタン（右下固定）
   ============================================= */
.sns-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(200, 30, 30, 0.85);
  padding: 20px 15px 20px 15px;
  border-radius: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
}

.sns-float-chara {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100px;  /* 親要素に幅を指定 */
}
.sns-float-chara img {
    width: 100%;
    max-width: none;  /* max-width: 100% を解除 */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sns-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sns-float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.sns-float-item:hover {
  transform: scale(1.1);
}

.sns-float-item i {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #c81e1e;
}

.sns-float-item span {
  font-size: 11px;
  margin-top: 5px;
  color: #fff;
}

/* 各SNSアイコンの色（ホバー時など使う場合） */
.sns-float-item.facebook i { color: #1877f2; }
.sns-float-item.x i { color: #000; }
.sns-float-item.instagram i { color: #e4405f; }
.sns-float-item.line i { color: #06c755; }
/* YouTubeアイコンの色を追加 */
.sns-float-item.youtube i { color: #ff0000; }

/* スマホで非表示 */
@media screen and (max-width: 760px) {
  .sns-float {
    display: none;
  }
}

/* =============================================
   スマホ用ページトップボタン
   ============================================= */
.pagetop-sp {
  display: none;
}
@media screen and (max-width: 760px) {
/* =============================================
   ページトップボタン
   ============================================= */

.pagetop-sp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: #e60012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
    box-shadow: 0 4px 12px rgba(230, 0, 18, .3);
    text-decoration: none;
}

.pagetop-sp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pagetop-sp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(230, 0, 18, .4);
}

.pagetop-sp i {
    font-size: 18px;
    color: #fff;
}
}


/* =============================================
   YouTube埋め込み（レスポンシブ）
   ============================================= */
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}



/* =============================================
   フッター
   ============================================= */
#footer {
    width: 100%;
    background-color: #fff;
    font-size: 0.8em;
    color: #000;
    padding: 0;
    margin: 0;
    flex-shrink: 0; /* フッターが縮まないように */
    margin-top: auto; /* 上部の余白を自動調整 */
}

.foot {
    background-color: #e60012;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.foot a {
    color: white;
    text-decoration: none;
}

.foot p {
    text-align: center;
    padding: 10px 0;
    margin: 0;
    color: #fff;
    font-size: 1em;
}

p.foot {
    font-size: 13px;
    text-align: center;
    padding: 0 0 10px 0;
    margin: 0;
    color: #fff;
}

a.footer_01 {
    color: #fff;
    text-decoration: none;
}

/* フッターナビゲーション */
.f_navi {
    text-align: center;
    margin: 0;
    width: 100%;
}
@media screen and (max-width: 760px) {
    .f_navi {
        margin: 10px 0 0 0;
        overflow: hidden;
    }
}

.f_navi ul {
    margin: 0;
    padding: 2% 10% 1% 10%;
}
@media screen and (max-width: 1200px) {
    .f_navi ul {
        padding: 2% 2% 1% 2%;
    }
}
@media screen and (max-width: 760px) {
    .f_navi ul {
        padding: 5px 0 10px 0;
    }
}

.f_navi ul li {
    list-style: none;
    display: inline-block;
    width: 12%;
    min-width: 75px;
    margin: 10px 0;
    vertical-align: bottom;
}
@media screen and (max-width: 1200px) {
    .f_navi ul li {
        width: 18%;
    }
}
@media screen and (max-width: 760px) {
    .f_navi ul li {
        width: 100%;
        min-width: 35px;
        border-bottom: dashed 1px #e60012;
        padding: 10px;
        margin: 0;
    }
    .f_navi ul li:last-child {
        border-bottom: none;
    }
}

.f_navi ul li a {
    text-decoration: none;
    color: #000;
}



/* =============================================
   フッター上部
   ============================================= */

.ft {
    background: #e60012;
    color: #fff;
    padding: 60px 5% 50px;
}

.ft_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
}

/* 名前・事務所 */
.ft_info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ft_kana {
    font-size: 12px;
    opacity: .7;
    letter-spacing: .15em;
}

.ft_name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: 2px;
}

.ft_pos {
    font-size: 13px;
    opacity: .8;
    margin-top: 4px;
}

.ft_office {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ft_office_label {
    font-size: 12px;
    font-weight: 700;
    opacity: .8;
    letter-spacing: .08em;
}

.ft_office_label i {
    margin-right: 4px;
}

.ft_office_address {
    font-size: 13px;
    opacity: .9;
    line-height: 1.6;
}

/* ナビゲーション */
.ft_nav {
    display: flex;
    gap: 40px;
}

.ft_nav_col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft_nav_heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    opacity: .6;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.ft_nav_link {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: .9;
    transition: opacity .3s;
    letter-spacing: .03em;
}

.ft_nav_link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* お問い合わせ */
.ft_contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.ft_contact_text {
    font-size: 14px;
    opacity: .9;
    letter-spacing: .05em;
}

.ft_contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e60012;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
    letter-spacing: .05em;
}

.ft_contact_btn:hover {
    opacity: .85;
    text-decoration: none;
}

.ft_support_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    letter-spacing: .05em;
}

.ft_support_btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    text-decoration: none;
}


/* =============================================
   フッター下部（コピーライト）
   ============================================= */

.ft_bottom {
    background: #c5000f;
    padding: 16px 5%;
}

.ft_bottom_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft_copy {
    font-size: 11px;
    color: #fff;
    opacity: .7;
}

.ft_bottom_links {
    display: flex;
    gap: 20px;
}

.ft_bottom_links a {
    font-size: 11px;
    color: #fff;
    opacity: .6;
    text-decoration: none;
    transition: opacity .3s;
}

.ft_bottom_links a:hover {
    opacity: 1;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 960px) {

    .ft_inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ft_contact {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .ft {
        padding: 40px 5% 36px;
    }

    .ft_inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ft_nav {
        justify-content: center;
        gap: 32px;
    }

    .ft_nav_col {
        align-items: center;
    }

    .ft_contact {
        align-items: center;
    }

    .ft_contact_btn,
    .ft_support_btn {
        width: 100%;
        justify-content: center;
    }

    .ft_bottom_inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ft_bottom_links {
        flex-direction: column;
        gap: 6px;
    }
}


/* =============================================
   お問い合わせページ
   ============================================= */

/* ヒーローセクション */
.contact-hero-section {
  background: #ffebee;
  padding: 80px 20px;
  text-align: center;
  margin-top: -85px;
  padding-top: 165px;
}

.contact-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-label {
  font-size: 16px;
  color: #e60012;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-hero-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e60012;
}

.contact-hero-title {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 20px;
}

.contact-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

/* フォームセクション */
.contact-form-section {
  background: #fff;
  padding: 80px 20px;
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-note {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}

.contact-form-note .required {
  color: #e60012;
}

/* フォームグループ */
.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-group label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.contact-form-group .required {
  color: #e60012;
  font-size: 12px;
  margin-left: 5px;
}

/* 入力フィールド */
.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group input[type="tel"],
.contact-form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}

.contact-form-group input[type="text"]:focus,
.contact-form-group input[type="email"]:focus,
.contact-form-group input[type="tel"]:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #e60012;
  background: #fff;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 180px;
}

/* 送信ボタン */
.contact-form-submit {
  text-align: center;
  margin: 40px 0;
}

.contact-form-submit input[type="submit"] {
  background: #e60012;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contact-form-submit input[type="submit"]:hover {
  background: #003d7a;
  transform: translateY(-2px);
}

/* Contact Form 7 のエラー・成功メッセージ */
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px !important;
  border-radius: 5px !important;
  text-align: center;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: #e60012 !important;
  background: #fff5f5 !important;
  color: #e60012 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #28a745 !important;
  background: #f0fff4 !important;
  color: #28a745 !important;
}

.wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 13px !important;
  margin-top: 5px !important;
}

/* スピナー */
.wpcf7-spinner {
  display: block;
  margin: 15px auto 0;
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .contact-hero-section {
    padding: 60px 20px;
    margin-top: -70px;
    padding-top: 130px;
  }
  
  .contact-hero-title {
    font-size: 32px;
  }
  
  .contact-hero-message {
    font-size: 14px;
  }
  
  .contact-form-section {
    padding: 50px 15px;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
  
  .contact-form-group input[type="text"],
  .contact-form-group input[type="email"],
  .contact-form-group input[type="tel"],
  .contact-form-group textarea {
    font-size: 16px; /* iOS ズーム防止 */
    padding: 12px;
  }
  
  .contact-form-submit input[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}





/* =============================================
   サンクスページ
   ============================================= */
.thanks-section {
  background: #ffebee;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  margin-top: -85px;
  padding-top: 165px;
}

.thanks-inner {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thanks-icon {
  margin-bottom: 25px;
}

.thanks-icon i {
  font-size: 80px;
  color: #28a745;
}

.thanks-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
}

.thanks-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 40px;
}

.thanks-button {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.thanks-button:hover {
  background: #003d7a;
  transform: translateY(-2px);
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .thanks-section {
    margin-top: -70px;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .thanks-inner {
    padding: 40px 25px;
  }
  
  .thanks-icon i {
    font-size: 60px;
  }
  
  .thanks-title {
    font-size: 26px;
  }
  
  .thanks-message {
    font-size: 14px;
  }
  
  .thanks-button {
    width: 100%;
    padding: 14px;
  }
}





/* =============================================
   ニュース一覧ページ
   ============================================= */
.news-archive {
    padding: 120px 0 80px;
    background-color: #fff;
    min-height: 60vh;
}

.news-archive-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-archive-header .news-subtitle {
    font-size: 16px;
    color: #c62828;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news-archive-header .news-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #c62828;
}

.news-archive-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin: 15px 0 0;
}

.news-archive-list {
    border-top: 1px solid #e0e0e0;
}

.news-archive-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.news-archive-item:hover {
    background-color: #f8f8f8;
}

.news-archive-date {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.news-archive-item-title {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* ページネーション */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #c62828;
    color: #fff;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
    .news-archive {
        padding: 100px 0 60px;
    }
    
    .news-archive-inner {
        padding: 0 20px;
    }
    
    .news-archive-title {
        font-size: 26px;
    }
    
    .news-archive-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .news-archive-item-title {
        width: 100%;
        font-size: 14px;
    }
}

/* =============================================
   ニュース一覧ページ - カテゴリと矢印のスタイル
   ============================================= */

/* 矢印を青に */
.news-archive-item .news-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: #c62828;
}

.news-archive-item .news-arrow i {
    transition: transform 0.3s ease;
}

.news-archive-item:hover .news-arrow i {
    transform: translateX(5px);
}

/* カテゴリラベル共通 */
.news-archive-item .news-category {
    display: inline-block;
    padding: 6px 6px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 0;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

/* カテゴリ別の色分け */
.news-category.cat-activity {
    background-color: #e60012; /* 活動報告：赤 */
}

.news-category.cat-blog {
    background-color: #c62828; /* ブログ：青 */
}

.news-category.cat-news {
    background-color: #00aa00; /* お知らせ：緑 */
}

/* デフォルト色（上記以外のカテゴリ） */
.news-category {
    background-color: #666;
}






/* =============================================
   カテゴリページ
   ============================================= */

/* ヒーローセクション */
.category-hero-section {
  background: linear-gradient(rgba(228, 243, 249, 0.85), rgba(228, 243, 249, 0.85)),
              url('https://tadokoro-yusuke.com/wp-content/uploads/category-img.jpg');
  background-size: cover;
  background-position: 45% 40%;  /* center → 40% */
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
  margin-top: -85px;
  padding-top: 165px;
}

.category-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.category-hero-label {
  font-size: 16px;
  color: #e60012;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.category-hero-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e60012;
}

.category-hero-title {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 20px;
}

.category-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* 投稿一覧セクション */
.category-posts-section {
  background: #fff;
  padding: 80px 20px;
}

.category-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* カード グリッド */
.category-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* カード */
.category-post-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-post-link {
  text-decoration: none;
  display: block;
}

/* サムネイル */
.category-post-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ffebee;
}

.category-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-post-card:hover .category-post-thumbnail img {
  transform: scale(1.05);
}

.category-post-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f0f5;
}

.category-post-no-image i {
  font-size: 40px;
  color: #ccc;
}

/* コンテンツ部分 */
.category-post-content {
  padding: 20px;
}

.category-post-date {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-post-date i {
  font-size: 12px;
}

.category-post-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-post-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-post-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #e60012;
  font-weight: bold;
  margin-top: 15px;
}

.category-post-more i {
  transition: transform 0.3s;
}

.category-post-card:hover .category-post-more i {
  transform: translateX(3px);
}

/* ページネーション */
.category-pagination {
  margin-top: 60px;
  text-align: center;
}

.category-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.category-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s;
}

.category-pagination .page-numbers:hover {
  background: #e60012;
  border-color: #e60012;
  color: #fff;
}

.category-pagination .page-numbers.current {
  background: #e60012;
  border-color: #e60012;
  color: #fff;
}

.category-pagination .prev,
.category-pagination .next {
  background: transparent;
  border: none;
  color: #e60012;
}

.category-pagination .prev:hover,
.category-pagination .next:hover {
  background: #ffebee;
  color: #e60012;
}

/* 投稿なし */
.category-no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 960px) {
  .category-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .category-hero-section {
    padding: 60px 20px;
    margin-top: -85px;
    padding-top: 160px;
  }
  
  .category-hero-title {
    font-size: 32px;
  }
  
  .category-hero-message {
    font-size: 14px;
  }
  
  .category-posts-section {
    padding: 50px 15px;
  }
  
  .category-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-post-title {
    font-size: 16px;
  }
  
  .category-post-excerpt {
    font-size: 13px;
  }
  
  .category-pagination {
    margin-top: 40px;
  }
  
  .category-pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}







/* =============================================
   個別記事ページ
   ============================================= */

/* ヒーロー（アイキャッチ） */
.single-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: -85px;
  padding-top: 85px;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-noimage {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e60012 0%, #0077cc 100%);
}

/* 記事コンテンツ */
.single-content {
  background: #fff;
  padding: 60px 20px 80px;
  margin-top: -85px;
  padding-top: 180px;
}

.single-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* メタ情報 */
.single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.single-category {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
}

.single-category:hover {
  background: #003d7a;
}

.single-date {
  font-size: 14px;
  color: #888;
}

.single-date i {
  margin-right: 5px;
}

/* タイトル */
.single-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

/* 本文 */
.single-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.single-body p {
  margin-bottom: 1.8em;
}

.single-body h2 {
  font-size: 24px;
  font-weight: bold;
  color: #e60012;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #e60012;
}

.single-body h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 40px 0 15px;
}

.single-body h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 30px 0 10px;
}

.single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
}

.single-body ul,
.single-body ol {
  margin: 20px 0;
  padding-left: 25px;
}

.single-body li {
  margin-bottom: 10px;
}

.single-body blockquote {
  background: #f5f5f5;
  border-left: 4px solid #e60012;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
}

.single-body a {
  color: #e60012;
  text-decoration: underline;
}

.single-body a:hover {
  text-decoration: none;
}

/* 前後記事ナビゲーション */
.single-nav {
  background: #fff;
  padding: 40px 20px;
}

.single-nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.single-nav-prev,
.single-nav-next {
  flex: 1;
}

.single-nav-next {
  text-align: right;
}

.single-nav a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: solid 1px #e60012;
}

.single-nav a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.single-nav-label {
  display: block;
  font-size: 13px;
  color: #e60012;
  font-weight: bold;
  margin-bottom: 8px;
}

.single-nav-title {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 関連記事 */
.single-related {
  background: #fff;
  padding: 60px 20px 80px;
}

.single-related-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.single-related-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single-related-card {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.single-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.single-related-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.single-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.single-related-card:hover .single-related-thumb img {
  transform: scale(1.05);
}

/* 関連記事のサムネイル（アイキャッチなし時） */
.single-related-noimage {
  width: 100%;
  height: 100%;
  background: #ffebee;
}

.single-related-info {
  padding: 20px;
}

.single-related-date {
  font-size: 13px;
  color: #888;
}

.single-related-card-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.single-related-none {
  text-align: center;
  color: #888;
  grid-column: 1 / -1;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
  .single-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 760px) {
  .single-hero {
    height: 250px;
    margin-top: -70px;
    padding-top: 70px;
  }
  
  .single-content {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  
  .single-title {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .single-body {
    font-size: 15px;
  }
  
  .single-body h2 {
    font-size: 20px;
  }
  
  .single-body h3 {
    font-size: 18px;
  }
  
  .single-nav-inner {
    flex-direction: column;
    gap: 15px;
  }
  
  .single-nav-next {
    text-align: left;
  }
  
  .single-related {
    padding: 40px 20px 60px;
  }
  
  .single-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}






/* =============================================
   404ページ
   ============================================= */
.error404-section {
  background: #ffebee;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  margin-top: -85px;
  padding-top: 165px;
}

.error404-inner {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.error404-number {
  font-size: 120px;
  font-weight: bold;
  color: #e60012;
  line-height: 1;
  margin-bottom: 20px;
}

.error404-title {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
}

.error404-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 40px;
}

.error404-button {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.error404-button:hover {
  background: #003d7a;
  transform: translateY(-2px);
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .error404-section {
    margin-top: -70px;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .error404-inner {
    padding: 40px 25px;
  }
  
  .error404-number {
    font-size: 80px;
  }
  
  .error404-title {
    font-size: 22px;
  }
  
  .error404-message {
    font-size: 14px;
  }
  
  .error404-button {
    width: 100%;
    padding: 14px;
  }
}









/* =============================================
   ヒーローセクション（タイトルH1）
   ============================================= */
.hero-intro {
  padding: 80px 0 60px;
  background: #fff;
}

.hero-intro .section_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  text-align: center;
}

.hero-title span {
  display: block;
}

.hero-title .name {
  font-size: 48px;
  color: #e60012;
  font-weight: bold;
}

.hero-title .catchcopy {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.hero-title .position {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  margin: 20px 0 0;
}

/* メッセージ */
.hero-message {
  text-align: center;
  font-size: 20px;
  color: #e60012;
  margin: 30px 0 0;
  font-weight: 500;
}

/* CTAボタン */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: #e60012;
  color: #fff;
  border: 2px solid #e60012;
}

.hero-buttons .btn-primary:hover {
  background: #fff;
  border-color: #e60012;
  color: #e60012;
}

.hero-buttons .btn-outline {
  background: #fff;
  color: #e60012;
  border: 2px solid #e60012;
}

.hero-buttons .btn-outline:hover {
  background: #e60012;
  color: #fff;
}

/* モバイル対応 */
@media screen and (max-width: 760px) {
  .hero-title .name {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .hero-title .catchcopy {
    font-size: 18px;
  }
  
  .hero-title .position {
    font-size: 14px;
    margin: 10px 0 0;
  }
  
  .hero-message {
    font-size: 26px;
    font-weight: bold;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 80%;
    text-align: center;
  }
}




/* =============================================
   ヒーローセクション（テキスト版）
   ============================================= */
.hero_section {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

/* 背景＋人物 */
.hero_bg_image {
    display: block;
    width: 100%;
    z-index: 1;
}

.hero_bg_image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeIn 1s ease-out 0s forwards;
}

/* キャッチコピー全体のラッパー */
.hero_catch_wrapper {
    position: absolute;
    top: 55%;  /* 50% → 55% に変更 */
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 5vw, 60px);
}

/* メインキャッチ：責任と実行（右側・大きい） */
.hero_main_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6.2rem);  /* 5.5rem → 6.2rem */
    font-weight: 900;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

/* サブキャッチ：未来への責任を果たす。（左側・白） */
.hero_sub_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);  /* 3rem → 3.5rem */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.3s forwards;
}

/* 「責任」「実行」は元の色 + 白い影 */
.hero_main_text .text-navy {
    color: #e60012;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

/* 「と」は白 + 影を強く */
.hero_main_text .text-white {
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   タブレット版：961px〜1280px
   ============================================= */
@media screen and (max-width: 1280px) {
    .hero_catch_wrapper {
        left: 6%;
        gap: clamp(15px, 4vw, 40px);
    }
    
    .hero_main_text {
        font-size: clamp(3rem, 9vw, 5.5rem);
    }
    
    .hero_sub_text {
        font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    }
}

/* タブレット版：761px〜960px */
@media screen and (max-width: 960px) {
    .hero_catch_wrapper {
        left: 5%;
        gap: clamp(10px, 3vw, 30px);
    }
    
    .hero_main_text {
        font-size: clamp(3.5rem, 12vw, 5.5rem);
    }
    
    .hero_sub_text {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

/* スマホ版：760px以下 */
@media screen and (max-width: 760px) {
    .hero_catch_wrapper {
        left: 4%;
        top: 45%;
        gap: clamp(8px, 2.5vw, 20px);
    }
    
    .hero_main_text {
        font-size: clamp(3rem, 14vw, 5rem);
    }
    
    .hero_sub_text {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }
}

/* 小さいスマホ：480px以下 */
@media screen and (max-width: 480px) {
    .hero_catch_wrapper {
        left: 5%;
        top: 50%;
        gap: 0;
    }
    
    .hero_main_text {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }
    
    /* 未来への〜を非表示 */
    .hero_sub_text {
        display: none;
    }
}










/*==================================================
スライダーのためのcss
===================================*/
.slider img {
width:100%;/*スライダー内の画像を横幅100%に*/
height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
margin:0 0px;/*スライド左右の余白調整*/
}
/*==================================================
★★★スライダーのためのcss★★★
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
width:100%;
margin:0 auto;
background-color: #FFFFFF;
padding: 20px 0px 0px 0px;
}
.slider img {
width:100%;/*スライダー内の画像を横幅100%に*/
height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
margin:0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
position: absolute;/*絶対配置にする*/
top: 42%;
cursor: pointer;/*マウスカーソルを指マークに*/
outline: none;/*クリックをしたら出てくる枠線を消す*/
border-top: 2px solid #1E90FF;/*矢印の色*/
border-right: 2px solid #1E90FF;/*矢印の色*/
height: 15px;
width: 15px;
}
.slick-prev {/*戻る矢印の位置と形状*/
left: -1.5%;
transform: rotate(-135deg);
}
.slick-next {/*次へ矢印の位置と形状*/
right: -1.5%;
transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
/* ── Slick ドットナビゲーション ── */

.slick-dots {
    position: relative;
    bottom: auto;
    margin: 16px 0 0 0;
}

.slick-dots li {
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
}

.slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    background: #ddd !important;
    border-radius: 50% !important;
    border: none !important;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: #e60012 !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 50px !important;
}


/* =============================================
   ご挨拶セクション v3
   赤(#e60012)基調 × 斜めカットの写真構成 × 有澤オリジナル
   ============================================= */

.greet{
  position:relative;
  background:#fff;
  padding:0 0 100px;
  overflow:hidden;
}

/* ── ヒーロー部分：写真＋斜めカット＋キャッチコピー ── */
.greet_hero{
  position:relative;
  width:100%;
  height:520px;
  overflow:hidden;
}

.greet_hero_img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 25%;
}

/* 斜めカット：白の三角形を下に被せる */
.greet_hero::after{
  content:'';
  position:absolute;
  bottom:-1px;left:0;right:0;
  height:120px;
  background:#fff;
  clip-path:polygon(0 100%,100% 0,100% 100%);
}

/* 写真の上に赤い帯＋キャッチコピー */
.greet_catch{
  position:absolute;
  bottom:80px;
  left:0;
  z-index:3;
  display:flex;
  align-items:stretch;
}

.greet_catch_red{
  background:#e60012;
  padding:22px 36px 22px 6%;
  display:flex;
  align-items:center;
}

.greet_catch_text{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(20px,2.8vw,30px);
  font-weight:700;
  color:#fff;
  letter-spacing:.08em;
  white-space:nowrap;
  line-height:1.5;
}

.greet_catch_arrow{
  width:60px;
  background:#e60012;
  clip-path:polygon(0 0,0 100%,100% 50%);
  flex-shrink:0;
}

/* ── セクション見出し ── */
.greet_header{
  max-width:1040px;
  margin:0 auto;
  padding:50px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:50px;
}

.greet_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.greet_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.greet_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.greet_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

/* ── メインコンテンツ：2列 ── */
.greet_main{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns:1fr 300px;
  gap:60px;
  align-items:start;
}

/* 左：本文 */
.greet_article{
  font-size:15.5px;
  line-height:2.1;
  color:#444;
  letter-spacing:.01em;
}

.greet_article p{
  margin-bottom:26px;
}

.greet_article p:last-of-type{
  margin-bottom:0;
}

/* 強調テキスト — 赤い左ボーダー付きブロック */
.greet_highlight{
  background:#fdf5f5;
  border-left:4px solid #e60012;
  padding:20px 24px;
  margin:32px 0;
  font-size:16px;
  font-weight:500;
  color:#333;
  line-height:1.9;
}

.greet_article strong{
  font-weight:700;
  color:#222;
}

/* 右：プロフィールカード */
.greet_card{
  background:#f8f8f8;
  padding:0;
  position:sticky;
  top:100px;
}

.greet_card_photo{
  width:100%;
  height:340px;
  overflow:hidden;
}

.greet_card_photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 15%;
}

.greet_card_info{
  padding:24px 24px 28px;
  text-align:center;
}

.greet_card_kana{
  font-size:11px;
  color:#999;
  letter-spacing:.28em;
  margin-bottom:6px;
}

.greet_card_name{
  font-family:'Zen Old Mincho',serif;
  font-size:24px;
  font-weight:700;
  color:#222;
  letter-spacing:.1em;
  margin-bottom:14px;
}

.greet_card_pos{
  font-size:12px;
  font-weight:500;
  color:#888;
  line-height:1.7;
  margin-bottom:18px;
}

.greet_card_divider{
  width:30px;
  height:2px;
  background:#e60012;
  margin:0 auto 18px;
}

.greet_card_sig{
  width:140px;
  margin:0 auto;
  opacity:.8;
}

/* ── 下部の赤帯 ── */
.greet_bottom_bar{
  max-width:1040px;
  margin:60px auto 0;
  padding:0 5%;
}

.greet_bottom_bar_inner{
  height:4px;
  background:linear-gradient(90deg,#e60012 0%,#e60012 30%,#eee 30%,#eee 100%);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:960px){
  .greet_hero{height:420px;}
  .greet_hero::after{height:80px;}
  .greet_catch_red{padding:18px 28px 18px 5%;}
  .greet_catch_arrow{width:40px;}

  .greet_main{
    grid-template-columns:1fr 260px;
    gap:40px;
  }

  .greet_card_photo{height:300px;}
}

@media(max-width:760px){
  .greet_hero{height:320px;}
  .greet_hero::after{height:60px;}

  .greet_catch{bottom:50px;}
  .greet_catch_red{padding:14px 20px 14px 5%;}
  .greet_catch_arrow{width:30px;}

  .greet_header{
    padding:36px 5% 0;
    margin-bottom:36px;
    gap:14px;
  }
  .greet_header_num{font-size:48px;}

  .greet_main{
    display:flex;
    flex-direction:column;
    gap:0;
  }

  /* SP: カードを上に持ってくる */
  .greet_card{
    position:relative;
    top:0;
    order:-1;
    display:grid;
    grid-template-columns:120px 1fr;
    background:#f8f8f8;
    margin-bottom:32px;
  }

  .greet_card_photo{
    height:100%;
    min-height:160px;
  }

  .greet_card_info{
    padding:18px 20px;
    text-align:left;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .greet_card_name{font-size:20px;margin-bottom:10px;}
  .greet_card_divider{margin:0 0 12px;}
  .greet_card_sig{margin:0;width:110px;}

  .greet_article{font-size:15px;line-height:2;}
  .greet_article p{margin-bottom:20px;}
  .greet_highlight{padding:16px 18px;font-size:15px;}

  .greet_bottom_bar{margin-top:40px;}
}

/* =============================================
   アニメーション
   ============================================= */
.fi{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease,transform .6s ease;
}
.fi.v{opacity:1;transform:translateY(0);}
.fi-d1{transition-delay:.12s}
.fi-d2{transition-delay:.24s}
.fi-d3{transition-delay:.36s}














/* =============================================
   重点政策セクション
   v3テイスト統一 — 斜めカット・Zen Old Mincho・赤基調
   ============================================= */

.policy{
  position:relative;
  background:#f7f6f3;
  padding:0 0 0;
  overflow:hidden;
}

/* ── 上部の斜めカット（前セクションとの接続） ── */
.policy_slope{
  width:100%;
  height:80px;
  background:#fff;
  clip-path:polygon(0 0,100% 0,100% 0,0 100%);
}

/* ── セクション見出し ── */
.policy_header{
  max-width:1040px;
  margin:0 auto;
  padding:60px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:20px;
}

.policy_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.policy_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.policy_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.policy_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

/* リード文 */
.policy_lead{
  max-width:1040px;
  margin:0 auto 50px;
  padding:0 5%;
  font-size:15px;
  color:#666;
  line-height:1.8;
}

/* ── 政策カード 2列 ── */
.policy_cards{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.policy_card{
  background:#fff;
  overflow:hidden;
  position:relative;
  transition:transform .3s ease,box-shadow .3s ease;
}

.policy_card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.08);
}

/* カード画像 */
.policy_card_img{
  position:relative;
  height:240px;
  overflow:hidden;
}

.policy_card_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.policy_card:hover .policy_card_img img{
  transform:scale(1.04);
}

/* 番号ラベル */
.policy_card_num{
  position:absolute;
  top:0;left:0;
  background:#e60012;
  color:#fff;
  padding:10px 20px;
  z-index:2;
}

.policy_card_num .small{
  font-size:10px;
  letter-spacing:.15em;
  display:block;
  line-height:1;
}

.policy_card_num .big{
  font-family:'Zen Old Mincho',serif;
  font-size:32px;
  font-weight:900;
  line-height:1;
  margin-top:2px;
}

/* カード本文 */
.policy_card_body{
  padding:28px 28px 32px;
}

.policy_card_tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.1em;
  border:1px solid #e60012;
  padding:3px 12px;
  margin-bottom:14px;
}

.policy_card_title{
  font-family:'Zen Old Mincho',serif;
  font-size:22px;
  font-weight:700;
  color:#222;
  line-height:1.5;
  margin-bottom:16px;
}

.policy_card_desc{
  font-size:14px;
  line-height:1.9;
  color:#555;
  margin-bottom:24px;
}

/* ポイントリスト */
.policy_card_points{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:24px;
  padding-left:0;
}

.policy_card_point{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:#444;
  line-height:1.6;
  list-style:none;
}

.policy_card_point i{
  color:#e60012;
  margin-top:3px;
  flex-shrink:0;
  font-size:12px;
}

/* 詳しく見るリンク */
.policy_card_link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:#e60012;
  text-decoration:none;
  letter-spacing:.05em;
  transition:gap .3s ease;
}

.policy_card_link:hover{
  gap:14px;
}

.policy_card_link i{
  font-size:11px;
  transition:transform .3s ease;
}

/* ── 下部の赤帯 + 斜め ── */
.policy_bottom{
  margin-top:70px;
  position:relative;
}

.policy_red_bar{
  width:100%;
  height:60px;
  background:#e60012;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:960px){
  .policy_card_img{height:200px;}
  .policy_card_title{font-size:20px;}
}

@media(max-width:760px){
  .policy_slope{height:50px;}

  .policy_header{
    padding:40px 5% 0;
    margin-bottom:16px;
    gap:14px;
  }
  .policy_header_num{font-size:48px;}

  .policy_lead{margin-bottom:36px;}

  .policy_cards{
    grid-template-columns:1fr;
    gap:24px;
  }

  .policy_card_img{height:200px;}

  .policy_card_body{padding:22px 22px 28px;}

  .policy_card_title{font-size:19px;}

  .policy_card_desc{font-size:14px;}

  .policy_red_bar{height:40px;}
}















/* =============================================
   活動報告セクション
   v3テイスト統一
   ============================================= */

.activity{
  position:relative;
  background:#fff;
  padding:0 0 0;
  overflow:hidden;
}

/* ── セクション見出し ── */
.activity_header{
  max-width:1040px;
  margin:0 auto;
  padding:80px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:20px;
}

.activity_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.activity_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.activity_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.activity_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

.activity_lead{
  max-width:1040px;
  margin:0 auto 50px;
  padding:0 5%;
  font-size:15px;
  color:#666;
  line-height:1.8;
}

/* ── Googleマップバナー ── */
.activity_map{
  max-width:1040px;
  margin:0 auto 50px;
  padding:0 5%;
}

.activity_map_inner{
  background:#e60012;
  display:flex;
  align-items:center;
  gap:28px;
  padding:30px 36px;
}

.activity_map_icon{
  width:60px;
  height:60px;
  background:rgba(255,255,255,.15);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  flex-shrink:0;
}

.activity_map_text{
  flex:1;
  color:#fff;
}

.activity_map_text p{
  font-size:14px;
  line-height:1.6;
  margin:0;
}

.activity_map_text strong{
  font-size:17px;
}

.activity_map_btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:#e60012;
  padding:12px 28px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  transition:opacity .3s ease;
}

.activity_map_btn:hover{
  opacity:.85;
}

.activity_map_btn i{
  font-size:12px;
}

/* ── 実績カードグリッド ── */
.activity_grid{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:50px;
}

.activity_card{
  background:#f8f8f8;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition:transform .3s ease,box-shadow .3s ease;
}

.activity_card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.activity_card_thumb{
  height:180px;
  overflow:hidden;
  position:relative;
}

.activity_card_thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.activity_card:hover .activity_card_thumb img{
  transform:scale(1.05);
}

/* 地区タグ */
.activity_card_district{
  position:absolute;
  top:0;left:0;
  background:#e60012;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:6px 14px;
  letter-spacing:.05em;
}

/* 期数タグ */
.activity_card_term{
  position:absolute;
  top:0;right:0;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:6px 12px;
  letter-spacing:.05em;
}

.activity_card_body{
  padding:18px 20px 22px;
}

.activity_card_title{
  font-size:15px;
  font-weight:700;
  color:#222;
  line-height:1.6;
  margin-bottom:8px;
}

.activity_card_excerpt{
  font-size:13px;
  color:#888;
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ── もっと見るボタン ── */
.activity_more{
  text-align:center;
  padding:0 5% 80px;
}

.activity_more a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:#e60012;
  text-decoration:none;
  letter-spacing:.08em;
  padding:18px 50px;
  transition:all .3s ease;
}

.activity_more a:hover{
  background:#cc0010;
  transform:translateY(-2px);
}

.activity_more a i{
  font-size:13px;
  transition:transform .3s ease;
}

.activity_more a:hover i{
  transform:translateX(4px);
}

/* ── 下部の赤帯アクセント ── */
.activity_bottom_bar{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
}

.activity_bottom_bar_inner{
  height:4px;
  background:linear-gradient(90deg,#e60012 0%,#e60012 30%,#eee 30%,#eee 100%);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:960px){
  .activity_grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .activity_header{
    padding:60px 5% 0;
    margin-bottom:16px;
    gap:14px;
  }
  .activity_header_num{font-size:48px;}

  .activity_map_inner{
    flex-direction:column;
    text-align:center;
    padding:24px 20px;
    gap:16px;
  }

  .activity_map_btn{
    width:100%;
    justify-content:center;
    padding:14px 20px;
  }

  .activity_grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .activity_card_thumb{height:200px;}
}













/* =============================================
   ブログ新着情報セクション v3
   ============================================= */

.blog_sec{
  position:relative;
  background:#f7f6f3;
  padding:0 0 0;
  overflow:hidden;
}

/* 上部斜めカット */
.blog_slope{
  width:100%;
  height:80px;
  background:#fff;
  clip-path:polygon(0 0,100% 0,100% 0,0 100%);
}

/* セクション見出し */
.blog_header{
  max-width:1040px;
  margin:0 auto;
  padding:60px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:20px;
}

.blog_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.blog_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.blog_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.blog_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

.blog_lead{
  max-width:1040px;
  margin:0 auto 50px;
  padding:0 5%;
  font-size:15px;
  color:#666;
  line-height:1.8;
}

/* ブログカードグリッド */
.blog_grid{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:50px;
}

.blog_card{
  background:#fff;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition:transform .3s ease,box-shadow .3s ease;
}

.blog_card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.blog_card_thumb{
  height:180px;
  overflow:hidden;
  position:relative;
}

.blog_card_thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.blog_card:hover .blog_card_thumb img{
  transform:scale(1.05);
}

/* 投稿日タグ */
.blog_card_date{
  position:absolute;
  top:0;left:0;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:6px 14px;
  letter-spacing:.05em;
}

/* カテゴリタグ */
.blog_card_cat{
  position:absolute;
  bottom:0;right:0;
  background:#e60012;
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:5px 12px;
  letter-spacing:.08em;
}

.blog_card_body{
  padding:18px 20px 22px;
}

.blog_card_title{
  font-size:15px;
  font-weight:700;
  color:#222;
  line-height:1.6;
  margin-bottom:8px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.blog_card_excerpt{
  font-size:13px;
  color:#888;
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.no_posts{
  text-align:center;
  padding:40px 20px;
  color:#999;
  font-size:15px;
  grid-column:1 / -1;
}

/* もっと見るボタン */
.blog_more{
  text-align:center;
  padding:0 5% 80px;
}

.blog_more a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:700;
  color:#333;
  background:transparent;
  text-decoration:none;
  letter-spacing:.08em;
  padding:18px 50px;
  border:2px solid #333;
  transition:all .3s ease;
}

.blog_more a:hover{
  background:#e60012;
  border-color:#e60012;
  color:#fff;
}

.blog_more a i{
  font-size:13px;
  transition:transform .3s ease;
}

.blog_more a:hover i{
  transform:translateX(4px);
}

/* 下部赤帯 */
.blog_bottom{
  position:relative;
}

.blog_red_bar{
  width:100%;
  height:60px;
  background:#e60012;
}

/* レスポンシブ */
@media(max-width:960px){
  .blog_grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){
  .blog_slope{height:50px;}

  .blog_header{
    padding:40px 5% 0;
    margin-bottom:16px;
    gap:14px;
  }
  .blog_header_num{font-size:48px;}

  .blog_lead{margin-bottom:36px;}

  .blog_grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .blog_card_thumb{height:200px;}

  .blog_red_bar{height:40px;}
}

.blog_card_noimg {
    width: 100%;
    height: 100%;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
}

.blog_card_noimg i {
    font-size: 32px;
}

.blog_card_noimg span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}












/* =============================================
   プロフィールセクション v3
   ============================================= */

.prof{
  position:relative;
  background:#fff;
  overflow:hidden;
  padding:0 0 100px;
}

/* セクション見出し */
.prof_header{
  max-width:1040px;
  margin:0 auto;
  padding:80px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:50px;
}

.prof_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.prof_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.prof_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.prof_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

/* ── メインレイアウト：写真 + 情報 ── */
.prof_main{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:60px;
  align-items:start;
}

/* 左：写真カード */
.prof_photo{
  position:sticky;
  top:100px;
}

.prof_photo_img{
  width:100%;
  height:460px;
  overflow:hidden;
  margin-bottom:20px;
}

.prof_photo_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 10%;
}

.prof_photo_name{
  text-align:center;
}

.prof_photo_kana{
  font-size:11px;
  color:#999;
  letter-spacing:.3em;
  margin-bottom:4px;
}

.prof_photo_kanji{
  font-family:'Zen Old Mincho',serif;
  font-size:28px;
  font-weight:700;
  color:#222;
  letter-spacing:.1em;
  margin-bottom:10px;
}

.prof_photo_pos{
  font-size:13px;
  font-weight:500;
  color:#e60012;
  letter-spacing:.05em;
}

/* 右：プロフィール情報 */
.prof_info{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* 基本情報テーブル */
.prof_basic{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  border-top:2px solid #e60012;
}

.prof_basic_item{
  display:flex;
  flex-direction:column;
  padding:18px 0;
  border-bottom:1px solid #e0e0e0;
}

/* 奇数アイテムに右ボーダー */
.prof_basic_item:nth-child(odd){
  padding-right:20px;
  border-right:1px solid #e0e0e0;
}

.prof_basic_item:nth-child(even){
  padding-left:20px;
}

.prof_basic_label{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.1em;
  margin-bottom:6px;
}

.prof_basic_value{
  font-size:14px;
  color:#333;
  line-height:1.6;
}

/* 経歴ブロック */
.prof_block{
  border-top:2px solid #e60012;
  padding-top:20px;
}

.prof_block_title{
  font-family:'Zen Old Mincho',serif;
  font-size:20px;
  font-weight:700;
  color:#222;
  margin-bottom:20px;
  letter-spacing:.05em;
}

/* タイムライン */
.prof_timeline{
  display:flex;
  flex-direction:column;
  gap:0;
  padding-left:20px;
  border-left:2px solid #eee;
}

.prof_timeline_item{
  position:relative;
  padding:0 0 18px 20px;
}

.prof_timeline_item:last-child{
  padding-bottom:0;
}

/* ドット */
.prof_timeline_item::before{
  content:'';
  position:absolute;
  left:-27px;
  top:6px;
  width:12px;
  height:12px;
  background:#e60012;
  border-radius:50%;
  border:2px solid #fff;
  box-shadow:0 0 0 2px #e60012;
}

.prof_timeline_year{
  font-size:12px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.05em;
  margin-bottom:4px;
}

.prof_timeline_text{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* 現在の役職 */
.prof_current{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.prof_current_item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:#333;
  line-height:1.5;
}

.prof_current_item i{
  color:#e60012;
  font-size:10px;
  flex-shrink:0;
}

/* もっと見るボタン */
.prof_more{
  max-width:1040px;
  margin:50px auto 0;
  padding:0 5%;
  text-align:center;
}

.prof_more a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:#e60012;
  text-decoration:none;
  letter-spacing:.08em;
  padding:18px 50px;
  transition:all .3s ease;
}

.prof_more a:hover{
  background:#cc0010;
  transform:translateY(-2px);
}

.prof_more a i{
  font-size:13px;
  transition:transform .3s ease;
}

.prof_more a:hover i{
  transform:translateX(4px);
}

/* 下部アクセント */
.prof_bottom_bar{
  max-width:1040px;
  margin:60px auto 0;
  padding:0 5%;
}

.prof_bottom_bar_inner{
  height:4px;
  background:linear-gradient(90deg,#e60012 0%,#e60012 30%,#eee 30%,#eee 100%);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:960px){
  .prof_main{
    grid-template-columns:300px 1fr;
    gap:40px;
  }

  .prof_photo_img{height:400px;}
}

@media(max-width:760px){
  .prof_header{
    padding:60px 5% 0;
    margin-bottom:36px;
    gap:14px;
  }
  .prof_header_num{font-size:48px;}

  .prof_main{
    display:flex;
    flex-direction:column;
    gap:36px;
  }

  .prof_photo{
    position:relative;
    top:0;
    display:grid;
    grid-template-columns:140px 1fr;
    gap:20px;
    align-items:center;
  }

  .prof_photo_img{
    height:180px;
    margin-bottom:0;
  }

  .prof_photo_name{text-align:left;}
  .prof_photo_kanji{font-size:22px;}

  .prof_basic{
    grid-template-columns:1fr;
  }

  .prof_basic_item:nth-child(odd){
    padding-right:0;
    border-right:none;
  }

  .prof_basic_item:nth-child(even){
    padding-left:0;
  }
}


















/* =============================================
   応援メッセージセクション v3
   ============================================= */

.endorse{
  position:relative;
  background:#f7f6f3;
  overflow:hidden;
  padding:0 0 0;
}

/* 上部斜めカット */
.endorse_slope{
  width:100%;
  height:80px;
  background:#fff;
  clip-path:polygon(0 0,100% 0,100% 0,0 100%);
}

/* セクション見出し */
.endorse_header{
  max-width:1040px;
  margin:0 auto;
  padding:60px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:50px;
}

.endorse_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.endorse_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.endorse_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.endorse_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

/* ── メッセージカード ── */
.endorse_card{
  max-width:860px;
  margin:0 auto;
  padding:0 5%;
}

.endorse_card_inner{
  background:#fff;
  padding:50px 56px;
  position:relative;
}

/* 左上の大きなクォーテーション */
.endorse_card_inner::before{
  content:'\201C';
  font-family:'Zen Old Mincho',serif;
  font-size:120px;
  color:#e60012;
  opacity:.12;
  position:absolute;
  top:-10px;
  left:20px;
  line-height:1;
  pointer-events:none;
}

/* 上部の赤ライン */
.endorse_card_inner::after{
  content:'';
  position:absolute;
  top:0;left:0;
  width:80px;
  height:4px;
  background:#e60012;
}

.endorse_text{
  font-size:15.5px;
  line-height:2.1;
  color:#444;
  position:relative;
  z-index:1;
}

.endorse_text p{
  margin-bottom:24px;
}

.endorse_text p:last-child{
  margin-bottom:0;
}

/* 署名エリア */
.endorse_sign{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid #e8e8e8;
  position:relative;
  z-index:1;
}

.endorse_sign_icon{
  width:56px;
  height:56px;
  background:#e60012;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.endorse_sign_icon i{
  color:#fff;
  font-size:22px;
}

.endorse_sign_info{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.endorse_sign_title{
  font-size:12px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.1em;
}

.endorse_sign_name{
  font-family:'Zen Old Mincho',serif;
  font-size:22px;
  font-weight:700;
  color:#222;
  letter-spacing:.08em;
}

/* ── 後援会CTA ── */
.endorse_cta{
  max-width:860px;
  margin:40px auto 0;
  padding:0 5%;
}

.endorse_cta_inner{
  background:#e60012;
  padding:32px 40px;
  display:flex;
  align-items:center;
  gap:24px;
}

.endorse_cta_text{
  flex:1;
  color:#fff;
}

.endorse_cta_text p{
  font-size:15px;
  line-height:1.7;
  margin:0;
}

.endorse_cta_text strong{
  font-size:18px;
  display:block;
  margin-bottom:4px;
}

.endorse_cta_btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#e60012;
  padding:14px 32px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  letter-spacing:.05em;
  transition:opacity .3s ease;
}

.endorse_cta_btn:hover{
  opacity:.85;
}

.endorse_cta_btn i{
  font-size:12px;
}

/* 下部赤帯 */
.endorse_bottom{
  margin-top:80px;
}

.endorse_red_bar{
  width:100%;
  height:60px;
  background:#e60012;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:760px){
  .endorse_slope{height:50px;}

  .endorse_header{
    padding:40px 5% 0;
    margin-bottom:36px;
    gap:14px;
  }
  .endorse_header_num{font-size:48px;}

  .endorse_card_inner{
    padding:36px 28px;
  }

  .endorse_card_inner::before{
    font-size:80px;
    top:-5px;
    left:10px;
  }

  .endorse_text{
    font-size:15px;
    line-height:2;
  }

  .endorse_sign_name{font-size:19px;}

  .endorse_cta_inner{
    flex-direction:column;
    text-align:center;
    padding:28px 24px;
    gap:18px;
  }

  .endorse_cta_btn{
    width:100%;
    justify-content:center;
    padding:16px 24px;
  }

  .endorse_bottom{margin-top:60px;}
  .endorse_red_bar{height:40px;}
}


















/* =============================================
   活動の様子セクション v3
   ============================================= */

.gallery{
  position:relative;
  background:#fff;
  overflow:hidden;
  padding:0 0 80px;
}

/* セクション見出し */
.gallery_header{
  max-width:1040px;
  margin:0 auto;
  padding:80px 5% 0;
  display:flex;
  align-items:baseline;
  gap:20px;
  margin-bottom:20px;
}

.gallery_header_num{
  font-family:'Zen Old Mincho',serif;
  font-size:72px;
  font-weight:900;
  color:#e60012;
  line-height:1;
  opacity:.18;
  letter-spacing:-.02em;
}

.gallery_header_titles{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.gallery_header_en{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.25em;
  text-transform:uppercase;
}

.gallery_header_ja{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(24px,3.5vw,36px);
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

.gallery_lead{
  max-width:1040px;
  margin:0 auto 40px;
  padding:0 5%;
  font-size:15px;
  color:#666;
  line-height:1.8;
}

/* ── スライダー ── */
.gallery_slider_wrap{
  position:relative;
  padding:0 0 50px;
}

/* Swiperコンテナ：画面幅いっぱい */
.gallery_swiper{
  width:100%;
  overflow:hidden;
}

.gallery_swiper .swiper-slide{
  width:320px;
  height:220px;
  overflow:hidden;
}

.gallery_swiper .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.gallery_swiper .swiper-slide:hover img{
  transform:scale(1.05);
}

/* ナビゲーション矢印 */
.gallery_nav{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:28px;
}

.gallery_nav_btn{
  width:48px;
  height:48px;
  border:2px solid #e60012;
  background:transparent;
  color:#e60012;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
  transition:all .3s ease;
  flex-shrink:0;
}

.gallery_nav_btn:hover{
  background:#e60012;
  color:#fff;
}

/* プログレスバー */
.gallery_progress{
  flex:1;
  min-width:0;
  height:2px;
  background:#eee;
  position:relative;
  overflow:hidden;
}

.gallery_progress_bar{
  height:100%;
  background:#e60012;
  width:0%;
  transition:width .3s ease;
  max-width:100%;
}

/* 下部アクセント */
.gallery_bottom_bar{
  max-width:1040px;
  margin:0 auto;
  padding:0 5%;
}

.gallery_bottom_bar_inner{
  height:4px;
  background:linear-gradient(90deg,#e60012 0%,#e60012 30%,#eee 30%,#eee 100%);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:760px){
  .gallery_header{
    padding:60px 5% 0;
    margin-bottom:16px;
    gap:14px;
  }
  .gallery_header_num{font-size:48px;}

  .gallery_lead{margin-bottom:28px;}

  .gallery_swiper .swiper-slide{
    width:260px;
    height:180px;
  }

  .gallery_nav_btn{
    width:40px;
    height:40px;
    font-size:15px;
  }
}













.hero {
margin: 52px 0px 0px 0px;
overflow: hidden;
position: relative;
display: block;

}

@media (max-width: 480px) {
.hero {
overflow: hidden;
position: relative;
display: block;
height: 480px;
}
}

.hero__deco--pc {
display: block;
width: 24.9%;

}
@media (max-width: 900px) {
.hero__deco--pc {
display: none;
}
}
.hero__deco--sp {
display: none;
position: absolute;
width: 100%;
}
@media (max-width: 900px) {
.hero__deco--sp {
display: block;
z-index: 1;
}
}
.hero__slider {
overflow: hidden;
position: absolute;
height: 100%;
top: 0;
right: 0;
width: 100%;
z-index: -1;
}
@media (max-width: 900px) {
.hero__slider {
height: 164vw;
position: static;
width: 100%;
}
}
.hero__slider__item {
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: opacity 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
transition: opacity 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
transition: opacity 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
transition: opacity 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
width: 100%;
z-index: -1;
}
.hero__slider__item.is-visible {
opacity: 1;
-webkit-transform: scale(1.06);
transform: scale(1.06);
z-index: 0;
}
.hero__slider__item--laptop {
height: 100%;
width: 100%;
}
@media (max-width: 900px) {
.hero__slider__item--laptop {
display: none;
}
}
.hero__slider__item--mobile {
display: none;

width: 100%;
}
@media (max-width: 900px) {
.hero__slider__item--mobile {
display: block;
}
}
.hero__text {
position: absolute;
bottom: 50px;
left: 5%;
z-index: 10;
}
@media (max-width: 900px) {
.hero__text {
bottom: 180px;
}
}
@media (max-width: 480px) {
.hero__text {
bottom: 30px;
}
}



















/* =============================================
   ページヘッダー
   ============================================= */
.p_hero{
  position:relative;
  height:320px;
  overflow:hidden;
}

.p_hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.p_hero_overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.55) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 5% 40px;
}

.p_hero_en{
  font-size:12px;
  font-weight:700;
  color:#fff;
  letter-spacing:.25em;
  opacity:.7;
  margin-bottom:6px;
}

.p_hero_title{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
  color:#fff;
  letter-spacing:.05em;
}

/* 斜めカット */
.p_hero_slope{
  width:100%;
  height:50px;
  background:#fff;
  margin-top:-50px;
  position:relative;
  z-index:2;
  clip-path:polygon(0 100%,100% 0,100% 100%);
}

/* =============================================
   政策ナビ（目次）
   ============================================= */
.p_nav{
  max-width:860px;
  margin:40px auto 60px;
  padding:0 5%;
}

.p_nav_inner{
  background:#f7f6f3;
  padding:32px 36px;
  display:flex;
  gap:20px;
}

.p_nav_item{
  flex:1;
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  background:#fff;
  text-decoration:none;
  color:#222;
  transition:all .3s ease;
  border-left:4px solid #e60012;
}

.p_nav_item:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  text-decoration:none;
}

.p_nav_num{
  font-family:'Zen Old Mincho',serif;
  font-size:32px;
  font-weight:900;
  color:#e60012;
  opacity:.4;
  line-height:1;
  flex-shrink:0;
}

.p_nav_text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.p_nav_tag{
  font-size:10px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.1em;
}

.p_nav_label{
  font-size:15px;
  font-weight:700;
  line-height:1.4;
}

/* =============================================
   セクション共通
   ============================================= */
.p_section{
  max-width:860px;
  margin:0 auto 80px;
  padding:0 5%;
}

/* セクション見出し */
.p_sec_header{
  display:flex;
  align-items:baseline;
  gap:18px;
  margin-bottom:12px;
  padding-bottom:16px;
  border-bottom:3px solid #e60012;
}

.p_sec_num{
  font-family:'Zen Old Mincho',serif;
  font-size:56px;
  font-weight:900;
  color:#e60012;
  opacity:.2;
  line-height:1;
}

.p_sec_titles{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.p_sec_tag{
  font-size:11px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.15em;
}

.p_sec_title{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(22px,3vw,30px);
  font-weight:700;
  color:#222;
  letter-spacing:.03em;
  line-height:1.4;
}

.p_sec_subtitle{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-bottom:40px;
}

/* ── 本文 ── */
.p_body{
  font-size:15px;
  line-height:2;
  color:#444;
}

.p_body p{
  margin-bottom:20px;
}

/* 強調テキスト */
.p_highlight{
  background:#fdf5f5;
  border-left:4px solid #e60012;
  padding:20px 24px;
  margin:28px 0;
  font-size:15px;
  line-height:1.9;
  color:#333;
}

.p_highlight strong{
  color:#e60012;
}

/* 画像 */
.p_img{
  margin:32px 0;
}

.p_img img{
  width:100%;
}

.p_img_caption{
  font-size:12px;
  color:#999;
  margin-top:8px;
  line-height:1.5;
}

/* ── ポイントカード ── */
.p_points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:36px 0;
}

.p_point{
  background:#f8f8f8;
  padding:24px;
  border-top:3px solid #e60012;
}

.p_point_num{
  font-family:'Zen Old Mincho',serif;
  font-size:28px;
  font-weight:900;
  color:#e60012;
  opacity:.3;
  margin-bottom:8px;
  line-height:1;
}

.p_point_title{
  font-size:16px;
  font-weight:700;
  color:#222;
  margin-bottom:10px;
  line-height:1.5;
}

.p_point_desc{
  font-size:13px;
  color:#666;
  line-height:1.8;
}

/* フルワイド（ポイント4つの場合） */
.p_points.full{
  grid-template-columns:repeat(4,1fr);
}

/* ── 小見出し ── */
.p_h3{
  font-family:'Zen Old Mincho',serif;
  font-size:24px;
  font-weight:700;
  color:#222;
  margin:60px 0 16px;
  padding-left:16px;
  border-left:4px solid #e60012;
  line-height:1.5;
}

/* ── 注釈 ── */
.p_notes{
  background:#f8f8f8;
  padding:20px 24px;
  margin:28px 0;
  font-size:13px;
  color:#888;
  line-height:1.8;
}

.p_notes p{
  margin-bottom:6px;
}

.p_notes p:last-child{
  margin-bottom:0;
}

/* ── CTA ── */
.p_cta{
  max-width:860px;
  margin:0 auto 80px;
  padding:0 5%;
}

.p_cta_inner{
  background:#e60012;
  padding:40px;
  text-align:center;
  color:#fff;
}

.p_cta_title{
  font-family:'Zen Old Mincho',serif;
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
}

.p_cta_text{
  font-size:15px;
  line-height:1.8;
  margin-bottom:24px;
}

.p_cta_btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#e60012;
  padding:16px 40px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:opacity .3s ease;
}

.p_cta_btn:hover{
  opacity:.85;
  text-decoration:none;
}

/* WordPress自動挿入の空Pタグを非表示 */
.p_nav p:empty,
.p_nav_inner p:empty,
.p_nav_item p:empty {
  display: none;
}

.p_nav_inner > p {
  display: none !important;
}

.p_nav > p {
  display: none !important;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:760px){
  .p_hero{height:220px;}

  .p_nav_inner{
    flex-direction:column;
    gap:12px;
    padding:24px 20px;
  }

  .p_sec_num{font-size:40px;}

  .p_points{
    grid-template-columns:1fr;
  }

  .p_points.full{
    grid-template-columns:1fr 1fr;
  }

  .p_cta_inner{padding:28px 20px;}
}

@media(max-width:480px){
  .p_points.full{
    grid-template-columns:1fr;
  }
}
















/* =============================================
   プロフィールページヘッダー
   ============================================= */
.pf_hero{
  position:relative;
  height:340px;
  overflow:hidden;
  background:#1a1a1a;
}

.pf_hero_img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  opacity:.5;
}

.pf_hero_overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 5% 50px;
}

.pf_hero_en{
  font-size:12px;
  font-weight:700;
  color:#fff;
  letter-spacing:.25em;
  opacity:.7;
  margin-bottom:6px;
}

.pf_hero_title{
  font-family:'Zen Old Mincho',serif;
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
  color:#fff;
  letter-spacing:.05em;
}

.pf_hero_slope{
  width:100%;
  height:50px;
  background:#fff;
  margin-top:-50px;
  position:relative;
  z-index:2;
  clip-path:polygon(0 100%,100% 0,100% 100%);
}

/* =============================================
   メインプロフィール（名前＋写真＋基本情報）
   ============================================= */
.pf_main{
  max-width:960px;
  margin:40px auto 60px;
  padding:0 5%;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:50px;
  align-items:start;
}

/* 写真 */
.pf_photo{
  position:sticky;
  top:100px;
}

.pf_photo_img{
  width:100%;
  height:420px;
  overflow:hidden;
  margin-bottom:20px;
}

.pf_photo_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 10%;
}

.pf_photo_name{
  text-align:center;
}

.pf_photo_kana{
  font-size:11px;
  color:#999;
  letter-spacing:.3em;
  margin-bottom:4px;
}

.pf_photo_kanji{
  font-family:'Zen Old Mincho',serif;
  font-size:28px;
  font-weight:700;
  color:#222;
  letter-spacing:.1em;
  margin-bottom:8px;
}

.pf_photo_pos{
  font-size:13px;
  font-weight:500;
  color:#e60012;
  letter-spacing:.05em;
}

/* 基本情報 */
.pf_info{
  display:flex;
  flex-direction:column;
  gap:0;
}

.pf_basic{
  border-top:3px solid #e60012;
}

.pf_basic_row{
  display:grid;
  grid-template-columns:130px 1fr;
  border-bottom:1px solid #e8e8e8;
}

.pf_basic_label{
  font-size:13px;
  font-weight:700;
  color:#e60012;
  padding:16px 0;
  letter-spacing:.05em;
}

.pf_basic_value{
  font-size:15px;
  color:#333;
  padding:16px 0;
  line-height:1.6;
}

/* =============================================
   学歴・経歴・現在（交互レイアウト）
   ============================================= */
.pf_block{
  max-width:960px;
  margin:0 auto 70px;
  padding:0 5%;
}

.pf_block_inner{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
  align-items:start;
}

.pf_block_inner.reverse{
  grid-template-columns:340px 1fr;
}

.pf_block_inner.reverse .pf_block_content{
  order:2;
}

.pf_block_inner.reverse .pf_block_photo{
  order:1;
}

/* 見出し */
.pf_block_header{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom:24px;
  padding-bottom:12px;
  border-bottom:3px solid #e60012;
}

.pf_block_num{
  font-family:'Zen Old Mincho',serif;
  font-size:42px;
  font-weight:900;
  color:#e60012;
  opacity:.2;
  line-height:1;
}

.pf_block_title{
  font-family:'Zen Old Mincho',serif;
  font-size:24px;
  font-weight:700;
  color:#222;
  letter-spacing:.05em;
}

/* タイムライン */
.pf_timeline{
  display:flex;
  flex-direction:column;
  gap:0;
  padding-left:20px;
  border-left:2px solid #eee;
}

.pf_timeline_item{
  position:relative;
  padding:0 0 20px 20px;
}

.pf_timeline_item:last-child{
  padding-bottom:0;
}

.pf_timeline_item::before{
  content:'';
  position:absolute;
  left:-27px;
  top:6px;
  width:12px;
  height:12px;
  background:#e60012;
  border-radius:50%;
  border:2px solid #fff;
  box-shadow:0 0 0 2px #e60012;
}

.pf_timeline_year{
  font-size:12px;
  font-weight:700;
  color:#e60012;
  letter-spacing:.05em;
  margin-bottom:3px;
}

.pf_timeline_text{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* リスト（現在の役職） */
.pf_role_list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pf_role_item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:#333;
  line-height:1.5;
}

.pf_role_item i{
  color:#e60012;
  font-size:8px;
  flex-shrink:0;
}

/* 写真 */
.pf_block_photo{
  overflow:hidden;
  height:280px;
}

.pf_block_photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =============================================
   CTA
   ============================================= */
.pf_cta{
  max-width:960px;
  margin:0 auto 80px;
  padding:0 5%;
}

.pf_cta_inner{
  background:#e60012;
  padding:40px;
  text-align:center;
  color:#fff;
}

.pf_cta_title{
  font-family:'Zen Old Mincho',serif;
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
}

.pf_cta_text{
  font-size:15px;
  line-height:1.8;
  margin-bottom:24px;
}

.pf_cta_btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#e60012;
  padding:16px 40px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:opacity .3s ease;
}

.pf_cta_btn:hover{
  opacity:.85;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media(max-width:760px){
  .pf_hero{height:240px;}

  .pf_main{
    display:flex;
    flex-direction:column;
    gap:30px;
	  max-width: 100%;
  }

  .pf_photo{
    position:relative;
    top:0;
    display:grid;
    grid-template-columns:160px 1fr;
    gap:20px;
    align-items:center;
	  width: 100%;
  }

  .pf_photo_img{
    height:180px;
    margin-bottom:0;
  }

  .pf_photo_name{text-align:left;}
  .pf_photo_kanji{font-size:22px;}

  .pf_basic_row{
    grid-template-columns:110px 1fr;
  }

  .pf_block_inner,
  .pf_block_inner.reverse{
    display:flex;
    flex-direction:column;
    gap:24px;
  }

  .pf_block_inner.reverse .pf_block_content{order:1;}
  .pf_block_inner.reverse .pf_block_photo{order:2;}

  .pf_block_photo{height:220px;}

  .pf_cta_inner{padding:28px 20px;}
	
	.pf_block_content {
  width: 100%;
}
	
	.pf_info{
  width: 100%;
}
}
















/* =============================================
   活動報告ページ v3
   ============================================= */


/* =============================================
   ページヘッダー
   ============================================= */

.ac_hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}

.ac_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.ac_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.ac_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.ac_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

.ac_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* =============================================
   イントロ＋マップバナー
   ============================================= */

.ac_intro {
    max-width: 960px;
    margin: 40px auto 0;
    padding: 0 5%;
}

.ac_intro_text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.ac_map_banner {
    max-width: 960px;
    margin: 0 auto 50px;
    padding: 0 5%;
}

.ac_map_inner {
    background: #e60012;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
}

.ac_map_icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.ac_map_text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.ac_map_text strong {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.ac_map_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #e60012;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity .3s;
}

.ac_map_btn:hover {
    opacity: .85;
    text-decoration: none;
}


/* =============================================
   期タブ
   ============================================= */

.ac_tabs {
    max-width: 960px;
    margin: 0 auto 40px;
    padding: 0 5%;
    display: flex;
    gap: 0;
    border-bottom: 3px solid #e60012;
}

.ac_tab {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: all .3s;
    background: transparent;
    border: none;
    letter-spacing: .05em;
    position: relative;
}

.ac_tab:hover {
    color: #e60012;
}

.ac_tab.active {
    color: #e60012;
    background: #fdf5f5;
}

.ac_tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e60012;
}

.ac_tab_num {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

/* タブパネル */
.ac_panel {
    display: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 5%;
}

.ac_panel.active {
    display: block;
}

/* 期の説明 */
.ac_term_desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 36px;
    padding-left: 16px;
    border-left: 3px solid #eee;
}


/* =============================================
   実績カード
   ============================================= */

.ac_item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.ac_item:last-child {
    border-bottom: none;
}

/* カードヘッダー */
.ac_item_header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ac_item_district {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e60012;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    letter-spacing: .05em;
}

.ac_item_district i {
    font-size: 10px;
}

.ac_item_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin-bottom: 14px;
}

/* カード本文 */
.ac_item_body {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* 画像ギャラリー */
.ac_item_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.ac_item_gallery.col2 {
    grid-template-columns: repeat(2, 1fr);
}

.ac_item_gallery_img {
    height: 200px;
    overflow: hidden;
}

.ac_item_gallery_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.ac_item_gallery_img:hover img {
    transform: scale(1.04);
}

.ac_item_gallery_caption {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

/* マップリンク */
.ac_item_map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #e60012;
    text-decoration: none;
    letter-spacing: .03em;
    transition: gap .3s;
}

.ac_item_map:hover {
    gap: 12px;
    text-decoration: none;
}

.ac_item_map i {
    font-size: 11px;
}


/* =============================================
   CTA
   ============================================= */

.ac_cta {
    max-width: 960px;
    margin: 40px auto 80px;
    padding: 0 5%;
}

.ac_cta_inner {
    background: #e60012;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.ac_cta_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ac_cta_text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.ac_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e60012;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
}

.ac_cta_btn:hover {
    opacity: .85;
    text-decoration: none;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 760px) {

    .ac_hero {
        height: 220px;
    }

    .ac_tabs {
        flex-wrap: wrap;
    }

    .ac_tab {
        flex: 1 1 50%;
        font-size: 13px;
        padding: 12px 6px;
    }

    .ac_tab_num {
        font-size: 17px;
    }

    .ac_map_inner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 14px;
    }

    .ac_map_btn {
        width: 100%;
        justify-content: center;
    }

    .ac_item_title {
        font-size: 19px;
    }

    .ac_item_gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .ac_item_gallery.col2 {
        grid-template-columns: 1fr 1fr;
    }

    .ac_item_gallery_img {
        height: 160px;
    }

    .ac_cta_inner {
        padding: 28px 20px;
    }
}



















/* =============================================
   議会での一般質問ページ
   ============================================= */

.pa_hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}

.pa_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.pa_hero_bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa_hero_bg i {
    font-size: 120px;
    color: #fff;
    opacity: .06;
}

.pa_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.pa_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.pa_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

.pa_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* =============================================
   イントロ
   ============================================= */

.pa_intro {
    max-width: 860px;
    margin: 40px auto 50px;
    padding: 0 5%;
}

.pa_intro_text {
    font-size: 15px;
    line-height: 2;
    color: #555;
}


/* =============================================
   質問カード
   ============================================= */

.pa_list {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5%;
}

.pa_item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.pa_item:last-child {
    border-bottom: none;
}

/* 日付＋タイトル */
.pa_item_date {
    display: inline-block;
    background: #e60012;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    letter-spacing: .05em;
    margin-bottom: 14px;
}

.pa_item_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* 動画 */
.pa_item_video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 24px;
    background: #000;
}

.pa_item_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* QAブロック */
.pa_qa {
    margin-bottom: 20px;
}

.pa_qa_block {
    background: #f8f8f8;
    padding: 24px 28px;
    margin-bottom: 12px;
}

.pa_qa_label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 10px;
    letter-spacing: .08em;
}

.pa_qa_label.q {
    background: #e60012;
    color: #fff;
}

.pa_qa_label.a {
    background: #444;
    color: #fff;
}

.pa_qa_label.aim {
    background: transparent;
    color: #e60012;
    border: 1px solid #e60012;
}

.pa_qa_text {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
}

/* 複数動画の場合 */
.pa_item_sub {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 12px;
    margin-top: 24px;
}


/* =============================================
   CTA
   ============================================= */

.pa_cta {
    max-width: 860px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.pa_cta_inner {
    background: #e60012;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.pa_cta_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pa_cta_text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pa_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e60012;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
}

.pa_cta_btn:hover {
    opacity: .85;
    text-decoration: none;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 760px) {

    .pa_hero {
        height: 220px;
    }

    .pa_item_title {
        font-size: 19px;
    }

    .pa_qa_block {
        padding: 18px 20px;
    }

    .pa_cta_inner {
        padding: 28px 20px;
    }
}




















/* =============================================
   学校給食をオーガニックにページヘッダー
   ============================================= */

.pfi_hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}

.pfi_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.pfi_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.pfi_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.pfi_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
    line-height: 1.4;
}

.pfi_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* =============================================
   本文エリア
   ============================================= */

.pfi_content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5%;
}


/* =============================================
   リード
   ============================================= */

.pfi_lead {
    margin: 40px auto 50px;
}

.pfi_lead_highlight {
    background: #fdf5f5;
    border-left: 4px solid #e60012;
    padding: 24px 28px;
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
}

.pfi_lead_highlight strong {
    color: #e60012;
}

.pfi_lead_text {
    font-size: 15px;
    line-height: 2;
    color: #555;
}


/* =============================================
   セクション共通
   ============================================= */

.pfi_section {
    margin-bottom: 60px;
}

/* 小見出し */
.pfi_h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e60012;
}

.pfi_h2_num {
    font-family: 'Zen Old Mincho', serif;
    font-size: 42px;
    font-weight: 900;
    color: #e60012;
    opacity: .2;
    line-height: 1;
}

.pfi_h2_text {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #222;
    letter-spacing: .03em;
    line-height: 1.4;
}

.pfi_h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 36px 0 16px;
    padding-left: 16px;
    border-left: 4px solid #e60012;
    line-height: 1.5;
}

/* 本文 */
.pfi_body {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.pfi_body p {
    margin-bottom: 20px;
}

/* 画像 */
.pfi_img {
    margin: 28px 0;
}

.pfi_img_caption {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    line-height: 1.5;
}

/* ステップ（図解の流れ） */
.pfi_steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.pfi_step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.pfi_step.reverse {
    direction: rtl;
}

.pfi_step.reverse > * {
    direction: ltr;
}

.pfi_step_img img {
    width: 100%;
}

.pfi_step_text {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

.pfi_step_arrow {
    text-align: center;
    font-size: 24px;
    color: #e60012;
    opacity: .4;
}

/* 注釈 */
.pfi_notes {
    background: #f8f8f8;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}

.pfi_notes p {
    margin-bottom: 6px;
}

.pfi_notes p:last-child {
    margin-bottom: 0;
}

/* 強調ブロック */
.pfi_highlight {
    background: #fdf5f5;
    border-left: 4px solid #e60012;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

.pfi_highlight strong {
    color: #e60012;
}


/* =============================================
   4つの強みカード
   ============================================= */

.pfi_points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.pfi_point {
    background: #f8f8f8;
    padding: 24px;
    border-top: 3px solid #e60012;
}

.pfi_point_num {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: #e60012;
    opacity: .3;
    margin-bottom: 8px;
    line-height: 1;
}

.pfi_point_title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pfi_point_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}


/* =============================================
   CTA
   ============================================= */

.pfi_cta {
    max-width: 860px;
    margin: 20px auto 80px;
    padding: 0 5%;
}

.pfi_cta_inner {
    background: #e60012;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.pfi_cta_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pfi_cta_text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pfi_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e60012;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
}

.pfi_cta_btn:hover {
    opacity: .85;
    text-decoration: none;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 760px) {

    .pfi_hero {
        height: 240px;
    }

    .pfi_step {
        grid-template-columns: 1fr;
    }

    .pfi_step.reverse {
        direction: ltr;
    }

    .pfi_points {
        grid-template-columns: 1fr;
    }

    .pfi_cta_inner {
        padding: 28px 20px;
    }
}



















/* =============================================
   ダイエットページヘッダー
   ============================================= */

.dt_hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}

.dt_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.dt_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.dt_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.dt_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

.dt_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* =============================================
   本文エリア
   ============================================= */

.dt_content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5%;
}


/* =============================================
   リード
   ============================================= */

.dt_lead {
    margin: 40px auto 50px;
}

.dt_lead_highlight {
    background: #fdf5f5;
    border-left: 4px solid #e60012;
    padding: 24px 28px;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.dt_lead_highlight strong {
    color: #e60012;
}


/* =============================================
   数値バナー
   ============================================= */

.dt_result_banner {
    background: #e60012;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 24px;
    margin-bottom: 50px;
}

.dt_result_item {
    text-align: center;
    color: #fff;
}

.dt_result_num {
    font-family: 'Zen Old Mincho', serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.dt_result_num span {
    font-size: 24px;
}

.dt_result_label {
    font-size: 13px;
    font-weight: 700;
    opacity: .8;
    letter-spacing: .05em;
}

.dt_result_arrow {
    color: #fff;
    font-size: 28px;
    opacity: .5;
}


/* =============================================
   セクション共通
   ============================================= */

.dt_section {
    margin-bottom: 60px;
}

.dt_h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e60012;
}

.dt_h2_num {
    font-family: 'Zen Old Mincho', serif;
    font-size: 42px;
    font-weight: 900;
    color: #e60012;
    opacity: .2;
    line-height: 1;
	padding-bottom: -12px;
}

.dt_h2_text {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #222;
    letter-spacing: .03em;
    line-height: 1.4;
}

.dt_body {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.dt_body p {
    margin-bottom: 20px;
}

.dt_img {
    margin: 28px 0;
}

.dt_img_caption {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}


/* =============================================
   トレーナー紹介カード
   ============================================= */

.dt_trainer {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    background: #f8f8f8;
    padding: 30px;
    margin: 28px 0;
}

.dt_trainer_photo {
    height: 320px;
    overflow: hidden;
}

.dt_trainer_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt_trainer_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt_trainer_tag {
    display: inline-block;
    background: #e60012;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: .05em;
    width: fit-content;
}

.dt_trainer_name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.dt_trainer_company {
    font-size: 13px;
    color: #888;
}

.dt_trainer_desc {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

.dt_trainer_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #e60012;
    margin-top: 8px;
}


/* =============================================
   メニューテーブル
   ============================================= */

.dt_table_wrap {
    margin: 24px 0;
}

.dt_table_title {
    font-size: 14px;
    font-weight: 700;
    color: #e60012;
    margin-bottom: 10px;
    letter-spacing: .05em;
}

.dt_table {
    width: 100%;
    border-collapse: collapse;
}

.dt_table th,
.dt_table td {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dt_table th {
    font-weight: 700;
    color: #222;
    width: 40%;
    background: #f8f8f8;
}

.dt_table td {
    color: #555;
}

/* 注意書き */
.dt_caution {
    background: #fff9f0;
    border-left: 4px solid #f0a030;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 13px;
    color: #886622;
    line-height: 1.8;
}


/* =============================================
   フォトギャラリー
   ============================================= */

.dt_gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.dt_gallery_img {
    height: 240px;
    overflow: hidden;
}

.dt_gallery_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.dt_gallery_img:hover img {
    transform: scale(1.04);
}


/* =============================================
   メッセージ（締めくくり）
   ============================================= */

.dt_message {
    background: #fdf5f5;
    border-left: 4px solid #e60012;
    padding: 24px 28px;
    margin: 28px 0;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.dt_message strong {
    color: #e60012;
}


/* =============================================
   CTA
   ============================================= */

.dt_cta {
    max-width: 860px;
    margin: 20px auto 80px;
    padding: 0 5%;
}

.dt_cta_inner {
    background: #e60012;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.dt_cta_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dt_cta_text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.dt_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e60012;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s;
}

.dt_cta_btn:hover {
    opacity: .85;
    text-decoration: none;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 760px) {

    .dt_hero {
        height: 240px;
    }

    .dt_result_banner {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .dt_result_arrow {
        transform: rotate(90deg);
    }

    .dt_result_num {
        font-size: 40px;
    }

    .dt_trainer {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .dt_trainer_photo {
        height: 240px;
    }

    .dt_gallery_img {
        height: 180px;
    }

    .dt_cta_inner {
        padding: 28px 20px;
    }
	
.dt_content {
    padding: 0;
}
	
}








/* =============================================
   プライバシーポリシー ヒーロー
   ============================================= */
.pp_hero {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #1a1a1a;
}

.pp_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.pp_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.pp_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.pp_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

.pp_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.privacy-hero-section {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: flex-end;
}

.privacy-hero-inner {
    padding: 0 5% 50px;
}

.privacy-hero-label {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.privacy-hero-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

/* =============================================
   本文
   ============================================= */

.privacy-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 5% 80px;
}

.privacy-intro {
    font-size: 14px;
    line-height: 2;
    color: #555;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.privacy-item {
    margin-bottom: 36px;
}

.privacy-item-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
}

.privacy-number {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: #e60012;
    opacity: .3;
    line-height: 1;
}

.privacy-item p {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin-bottom: 14px;
}

.privacy-item p:last-child {
    margin-bottom: 0;
}

.privacy-item a {
    color: #e60012;
    font-weight: 700;
    text-decoration: none;
}

.privacy-item a:hover {
    text-decoration: underline;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.privacy-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.privacy-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #e60012;
    border-radius: 50%;
}

@media (max-width: 760px) {
    .privacy-hero-section {
        height: 180px;
    }

    .privacy-item-title {
        font-size: 16px;
    }

    .privacy-number {
        font-size: 24px;
    }
}















/* =============================================
    ギャラリーセクション
   ============================================= */
/* ギャラリーセクション */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ギャラリーラベル - 他セクションと統一 */
.gallery-label {
    font-size: 16px;
    color: #c62828;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c62828;
}

.gallery-title {
    font-size: 42px;
    color: #333;
    margin-top: 10px;
}

/* Swiper */
.gallery-swiper {
    max-width: 100%;
    padding: 0 0 50px;
}

.gallery-swiper .swiper-slide {
    text-align: center;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* 矢印の色 */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: #e60012;
}

/* ページネーションの色 */
.gallery-swiper .swiper-pagination-bullet-active {
    background: #e60012;
}

@media screen and (max-width: 760px) {
    .gallery-section {
        padding: 60px 0;
    }
	
    .gallery-title {
        font-size: 28px;
        color: #333;
        margin-top: 20px;
    }
    
    .gallery-swiper {
        padding: 0 20px 40px;
    }
    
    .gallery-swiper .swiper-slide img {
        height: 250px;
    }
    
    .gallery-swiper .swiper-button-prev,
    .gallery-swiper .swiper-button-next {
        display: flex;
        width: 45px;
        height: 45px;
        background: rgba(0, 91, 172, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-swiper .swiper-button-prev::after,
    .gallery-swiper .swiper-button-next::after {
        font-size: 18px;
        color: #fff;
        font-weight: bold;
    }
    
    .gallery-swiper .swiper-button-prev {
        left: 5px;
    }
    
    .gallery-swiper .swiper-button-next {
        right: 5px;
    }
}



/* =============================================
    黄色マーカー
   ============================================= */
.marker {
    background: linear-gradient(transparent 60%, rgba(255, 242, 0, 0.4) 60%);
    padding: 0 3px;
}









/* =============================================
   reCAPTCHAのバッジを非表示にする
   ============================================= */
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha-notice {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
	text-align: left;
}

.recaptcha-notice a {
    color: #666;
    text-decoration: underline;
}














/* =============================================
   お問い合わせ ページヘッダー
   ============================================= */

.ct_hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #1a1a1a;
}

.ct_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.ct_hero_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 50px;
}

.ct_hero_en {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .25em;
    opacity: .7;
    margin-bottom: 6px;
}

.ct_hero_title {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}

.ct_hero_slope {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* =============================================
   リード
   ============================================= */

.ct_lead {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 0 5%;
}

.ct_lead_inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: #fdf5f5;
    border-left: 4px solid #e60012;
}

.ct_lead_icon {
    width: 44px;
    height: 44px;
    background: #e60012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.ct_lead_text {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}


/* =============================================
   フォーム
   ============================================= */

.ct_form {
    max-width: 720px;
    margin: 40px auto 80px;
    padding: 0 5%;
}

.ct_form_inner {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
}

.ct_form_note {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}

.ct_req {
    color: #e60012;
    font-weight: 700;
}

/* ── Contact Form 7 カスタマイズ ── */

.ct_form .wpcf7-form p {
    margin-bottom: 20px;
}

.ct_form .wpcf7-form label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.ct_form .wpcf7-form input[type="text"],
.ct_form .wpcf7-form input[type="email"],
.ct_form .wpcf7-form input[type="tel"],
.ct_form .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: border-color .3s, background .3s;
    outline: none;
}

.ct_form .wpcf7-form input[type="text"]:focus,
.ct_form .wpcf7-form input[type="email"]:focus,
.ct_form .wpcf7-form input[type="tel"]:focus,
.ct_form .wpcf7-form textarea:focus {
    border-color: #e60012;
    background: #fff;
}

.ct_form .wpcf7-form textarea {
    min-height: 180px;
    resize: vertical;
}

.ct_form .wpcf7-form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 30px auto 0;
    padding: 16px 40px;
    background: #e60012;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    cursor: pointer;
    transition: opacity .3s;
    letter-spacing: .08em;
}

.ct_form .wpcf7-form input[type="submit"]:hover {
    opacity: .85;
}

/* バリデーションエラー */
.ct_form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e60012;
    margin-top: 4px;
}

.ct_form .wpcf7-response-output {
    border: 1px solid #e60012 !important;
    padding: 12px 16px;
    font-size: 14px;
    margin-top: 20px;
}


/* =============================================
   レスポンシブ
   ============================================= */

@media (max-width: 760px) {

    .ct_hero {
        height: 220px;
    }

    .ct_lead_inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .ct_form_inner {
        padding: 28px 20px;
    }
}