@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: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
    font-size: 18px;
}

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: 20px;
    line-height: 1.6em;
    margin: 6px 15px 20px 15px;
}
@media screen and (max-width: 760px) {
    p {
        font-size: 19px;
    }
}

/* =============================================
   レイアウト
   ============================================= */
.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;
    }
}

/* 
.imgBox {
    margin: 50px 0;
}
@media screen and (max-width: 480px) {
    .imgBox {
        margin: 10px 0;
    }
}

.imgBox img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
 */

/* =============================================
   アニメーション
   ============================================= */
/* 
.fadeIn {
    opacity: 0;
    transition: 0.8s;
}
.fadeIn.is-show {
    opacity: 1;
}

.fadeIn_up {
    opacity: 0;
    transform: translate(0, 200px);
    transition: 0.8s;
}
.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_left {
    opacity: 0;
    transform: translate(-200px, 0);
    transition: 0.8s;
}
.fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_right {
    opacity: 0;
    transform: translate(200px, 0);
    transition: 0.8s;
}
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
 */


/* =============================================
   ヘッダー
   ============================================= */
#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: transparent; /* 透明に変更 */
    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: transparent;
    }	
	
    /* スクロール時は白背景 */
    .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: #005BAC;
    }
	
    .header.scrolled .header_position {
        color: #333;
    }
	
    /* ハンバーガーボタン - 初期状態 */
    .header .hamburger {
        background: rgba(255, 255, 255, 0.9);
    }
	
    .header .hamburger_border {
        background-color: #0068b7;
    }

    .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: #005BAC;
        transition: 0.2s;
    }
    .nav_item a:hover::after {
        width: 100%;
    }
}

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

.header.scrolled .header_name {
    color: #005BAC;
}

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

@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: #005BAC;
        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: #003d7a;
    }
    .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: 20px;
        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: #0068b7;
        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: calc(100vh - 180px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 50px;
    }
	
    /* メニューが開いている時、背景のスクロールを止める */
    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: #0068b7;
        transition: all 0.3s ease;
    }

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

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

    /* お問い合わせボタン - 幅を調整 */
    .header .nav_item_contact a {
        background: #0068b7;
        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: #005a9e;
        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;
    }

    .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: #0068b7;
        background: #f8f9fa;
    }

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

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

    /* ハンバーガーボタン */
    .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: #0068b7;
        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: #005BAC !important;
}

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

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

/* トップページのみ（白ロゴ・透明背景） */
body[data-page="home"] .header .header_name {
    color: #fff !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

body[data-page="home"] .header .header_position {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* トップページ：スクロール時（背景白に） */
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: #005BAC !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: #005BAC !important;
    }
    
    body[data-page="home"] .header .header_position {
        color: #333 !important;
    }
    
    /* スクロール後も青のまま */
    body[data-page="home"] .header.scrolled .header_name {
        color: #005BAC !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: #003d7a !important;
}


/* =============================================
   フローティングSNSボタン（右下固定）
   ============================================= */
.sns-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(100, 149, 237, 0.85);
  padding: 50px 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: #5a8fd8;
}

.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; }

/* スマホで非表示 */
@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: 0;
    bottom: 0;
    z-index: 1000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  }
  
  .pagetop-sp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
    .pagetop-sp img {
        width: 80px;
        height: auto;
        filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.3));
    }
}





/* =============================================
   タイトル・見出し
   ============================================= */
/* 
h1.single_title {
    font-size: 28px;
    padding: 0.6em 0.7em;
    color: #494949;
    background: #f4f4f4;
    border-left: solid 8px #FF0000;
    border-bottom: solid 3px #d7d7d7;
    font-weight: bold;
    margin: 89px 0 30px 0;
    letter-spacing: 0.10em;
    line-height: 40px;
}
@media only screen and (max-width: 480px) {
    h1.single_title {
        font-size: 21px;
        padding: 18px 10px 18px 8px;
        margin: 89px 5px 20px 5px;
        letter-spacing: 0.06em;
    }
}

p.single_title {
    font-size: 28px;
    padding: 0.6em 0.7em;
    color: #494949;
    background: #f4f4f4;
    border-left: solid 8px #FF0000;
    border-bottom: solid 3px #d7d7d7;
    width: 100%;
    font-weight: bold;
    margin: 89px 0 30px 0;
    letter-spacing: 0.10em;
}
@media screen and (max-width: 480px) {
    p.single_title {
        margin: 29px 0 30px 0;
    }
}

h2.single_title_001 {
    font-size: 28px;
    color: #494949;
    background: #f4f4f4;
    border-left: solid 8px #FF0000;
    border-bottom: solid 3px #d7d7d7;
    font-weight: bold;
    padding: 18px 10px 18px 8px;
    margin: 39px 10px 20px 0;
    letter-spacing: 0.10em;
    line-height: 40px;
}
@media screen and (max-width: 480px) {
    h2.single_title_001 {
        font-size: 21px;
        margin: 39px 7px 20px 7px;
    }
}

h3.ent {
    text-align: center;
    margin: 60px 0 0 0;
    font-size: 43px;
}
@media screen and (max-width: 480px) {
    h3.ent {
        margin: 55px 0 20px 0;
        font-size: 28px;
    }
}

h3.single_title_001 {
    font-size: 28px;
    padding: 0.6em 0.7em;
    color: #494949;
    background: #f4f4f4;
    border-left: solid 8px #FF0000;
    border-bottom: solid 3px #d7d7d7;
    font-weight: bold;
    margin: 39px 0 30px 0;
    letter-spacing: 0.10em;
    line-height: 40px;
}
@media screen and (max-width: 480px) {
    h3.single_title_001 {
        font-size: 21px;
        padding: 12px 10px 16px 8px;
        margin: 12px 7px 17px 7px;
        letter-spacing: 0.06em;
    }
}
 */

/* =============================================
   テーブル
   ============================================= */
/* 
#table01 {
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
}
@media screen and (max-width: 960px) {
    #table01 {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

#table01 tr {
    border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
    padding: 24px 0;
    border: none;
    padding: 20px 10px;
    vertical-align: middle;
}

#table01 th {
    width: 30%;
    background-color: #fff;
    text-align: left;
}

@media only screen and (max-width: 760px) {
    #table01 th,
    #table01 td {
        width: 100%;
        display: block;
        font-size: 1.0em;
    }

    #table01 th {
        width: 100%;
        background-color: #F5F5F5;
    }

    #table01 td {
        padding-top: 10px;
    }

    #table01 tr {
        border-bottom: none;
    }
}
 */

/* =============================================
   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;
}

/* =============================================
   フッター上部のスタイル（青テーマ）
   ============================================= */
.footer-top {
    background: #f5f5f5;
    color: #333;
    padding: 60px 0 40px;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* 左側：事務所名と連絡先 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-name {
    display: block;
    font-size: 28px;
    color: #0068b7;
}

.footer-ruby {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #666;
    letter-spacing: 2px;
    padding-bottom: 15px;
    border-bottom: none;
    position: relative;
}

.footer-ruby::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 2px;
    background-color: #0068b7;
}

.footer-office {
    font-size: 16px;
    color: #333;
    margin: 15px 0 0 0;
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    width: 20px;
    text-align: center;
    color: #0068b7;
}

/* ソーシャルアイコン */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #0068b7;
    border-radius: 50%;
    color: #0068b7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0068b7;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 104, 183, 0.3);
}

/* リンクリスト（見出しなし） */
.footer-links,
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.footer-services li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before,
.footer-services li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0068b7;
	top: -3px;
}

.footer-links li a:hover,
.footer-services li a:hover {
    color: #0068b7;
    padding-left: 20px;
}


/* 既存の青フッター */
.foot {
    background-color: #0068b7;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

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

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-center,
    .footer-right {
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .footer-links,
    .footer-services {
        align-items: center;
    }
    
    .footer-links li a,
    .footer-services li {
        padding-left: 0;
    }
    
    .footer-links li a::before,
    .footer-services li::before {
    left: -15px;
	top: -3px;  
    }
}

@media screen and (max-width: 760px) {
	.footer-ruby::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 2px;
    background-color: #0066b7;
}
}	
@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 100% !important;
    }
	
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-name {
        font-size: 24px;
    }
    
    .footer-info p {
        font-size: 13px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
	
    .footer-ruby::after {
        width: 100%;
    }
}

/* =============================================
   フッター SNSアイコン 小画面対応
   ============================================= */
@media screen and (max-width: 320px) {
    .footer-social {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
}


/* フッター プライバシーポリシーリンク */
.footer-policy-link {
  margin-top: 9px;
}

.footer-policy-link a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-policy-link a:hover {
  text-decoration: underline;
}



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

/* ヒーローセクション */
.contact-hero-section {
  background: #e4f3f9;
  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: #005BAC;
  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: #005BAC;
}

.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: #005BAC;
  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: #005BAC;
  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: #e4f3f9;
  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: #005BAC;
  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;
  }
}






/* ▼▼▼パソコンとスマホでスライドショーの表示内容を切り替え（スマホ　760px）▼▼▼ */
/* 
.pc_display {
	display:block;
	margin:0;
}
.sp_display {
	display:none;
}
@media only screen and (max-width : 760px){
.pc_display {
	display:none;
}
.sp_display {
	display:block;
}
}
 */
/* ▲▲▲パソコンとスマホでスライドショーの表示内容を切り替え（スマホ　760px）▲▲▲ */


/* ▼▼▼パソコンとスマホでスライドショーの表示内容を切り替え（スマホ　960px）▼▼▼ */
/* 
.pc_display_01 {
	display:block;
	margin:0;
}
.sp_display_01 {
	display:none;
}
@media only screen and (max-width : 960px){
.pc_display_01 {
	display:none;
}
.sp_display_01 {
	display:block;
}
}
 */
/* ▲▲▲パソコンとスマホでスライドショーの表示内容を切り替え（スマホ　960px）▲▲▲ */






/* =============================================
   ニュース一覧ページ
   ============================================= */
.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: #0066cc;
    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: #0066cc;
}

.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: #0066cc;
    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: #0066cc;
}

.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: #0066cc; /* ブログ：青 */
}

.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: #005BAC;
  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: #005BAC;
}

.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: #e4f3f9;
}

.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: #005BAC;
  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: #005BAC;
  border-color: #005BAC;
  color: #fff;
}

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

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

.category-pagination .prev:hover,
.category-pagination .next:hover {
  background: #e4f3f9;
  color: #005BAC;
}

/* 投稿なし */
.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, #005BAC 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: #005BAC;
  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: #005BAC;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #005BAC;
}

.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 #005BAC;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
}

.single-body a {
  color: #005BAC;
  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 #005BAC;
}

.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: #005BAC;
  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: #e4f3f9;
}

.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: #e4f3f9;
  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: #005BAC;
  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: #005BAC;
  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: #005BAC;
  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: #005BAC;
  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: #005BAC;
  color: #fff;
  border: 2px solid #005BAC;
}

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

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

.hero-buttons .btn-outline:hover {
  background: #005BAC;
  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: #005BAC;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

/* 「と」は白 + 影を強く */
.hero_main_text .text-white {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

/* フェードインアニメーション */
@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;
    }
}



/* =============================================
   私の決意セクション
   ============================================= */
.message_section {
    padding: 40px 0 100px; /* 下の余白を追加 */
    background-color: #fff;
    position: relative;
}

.message_inner {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

/* 背景画像（上も下もズレる） */
.message_inner::before {
    content: '';
    position: absolute;
    top: 60px; /* 上に60px下がる（飛び出さない） */
    left: 0;
    width: 100%;
    height: calc(100% + 60px); /* 下に60pxはみ出す */
    background-image: url('https://tadokoro-yusuke.com/wp-content/uploads/message-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* 左側：テキストコンテンツ */
.message_left {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    z-index: 2;
	margin-top: 150px; /* 下にずらす */
}

.message_content {
    padding: 60px 50px;
    background-color: rgba(255, 255, 255, 0.7); /* 白の90%不透明 */
    position: relative;
}

.message_label {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.message_label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

.message_title {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin: 20px 0 30px;
    line-height: 1.3;
}

.message_subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.message_text {
    margin-bottom: 40px;
}

.message_text p {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin: 0 0 20px 0;
}

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

/* ボタン */
.message_btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.message_btn:hover {
    opacity: 0.7;
}

.message_btn_line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #0066cc;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.message_btn:hover .message_btn_line {
    transform: scaleX(1.7);
}

/* 右側：写真 */
.message_image {
    flex: 0 0 55%;
    width: 55%;
    margin-left: -5%;
    margin-top: -50px; /* 上にずらす */
    position: relative;
    z-index: 1;
}

.message_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   レスポンシブ対応
   ============================================= */
@media screen and (max-width: 960px) {
    .message_section {
        padding: 60px 0;
    }
    
    .message_inner {
        flex-direction: column;
        padding: 0 20px;
        align-items: stretch;
    }
    
    .message_left {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .message_content {
        padding: 40px 30px;
    }
    
    .message_image {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
        order: 2;
    }
    
    .message_title {
        font-size: 36px;
    }
}

@media screen and (max-width: 760px) {
    .message_section {
        padding: 40px 0;
    }
    
    .message_inner {
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
	
    .message_left {
        display: flex;
        justify-content: center;  /* 追加：中央揃え */
    }
	
    .message_content {
        padding: 30px 20px;
        width: 100%;  /* 追加：幅を100%に */
        max-width: 400px;  /* 追加：最大幅を制限 */
        margin: 0 auto;  /* 追加：中央配置 */
    }
    
    .message_content {
        padding: 30px 20px;
    }
    
    .message_label {
        font-size: 14px;
    }
    
    .message_title {
        font-size: 32px;
        margin: 15px 0 25px;
    }
    
    .message_text p {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 480px) {
    .message_title {
        font-size: 28px;
    }
}










/* =============================================
   6つの約束セクション
   ============================================= */
.policy-section {
    width: 100%;
	margin: 150px 0 0 0;
    padding: 100px 0 80px; /* 上の余白を追加 */
    background-image: url('https://tadokoro-yusuke.com/wp-content/uploads/policy-bg.png');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* スマホ用背景（PC非表示） */
.policy-bg-sp {
    display: none;
}

.policy-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* ヘッダー */
.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.policy-header .policy-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.policy-label {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

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

/* 政策セクション もっと見るボタン */
.policy_more_wrapper {
    margin-top: 40px;
}

.policy_more_btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
}

.policy_more_btn:hover {
    opacity: 0.7;
}

.policy_more_line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #0066cc;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.policy_more_btn:hover .policy_more_line {
    transform: scaleX(1.7);
}

/* PC版：全体を白+影、6は青（影なし） */
.policy-title {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 20px 0 30px;
    line-height: 1.4;
}

/* 番号とサブタイトルを横並び */
.policy-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* 空のpタグを非表示 */
.policy-title-row p:empty {
    display: none;
    margin: 0;
    padding: 0;
}


.policy-number-accent {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    color: #005BAC;
    text-shadow: none;
    position: relative;
    top: 5px;  /* 下にずらす（数値を増やすと更に下へ） */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.policy-lead {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin: 0;
	font-weight: 500;
}

/* 政策カード（3列グリッド） */
.policy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
	max-width: 1300px;
    margin: 0 auto;
	margin-left: 40px; /* 左寄せ */
    padding: 0 40px;
}

/* 下段（4,5,6番目）を左寄せ */
.policy-card:nth-child(4),
.policy-card:nth-child(5),
.policy-card:nth-child(6) {
    transform: translateX(-80px); /* 左にずらす */
}

.policy-card {
    position: relative;
}

/* 背景画像 */
.policy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.policy-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.policy-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 25px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 280px;
}

/* 番号 */
.policy-number-large {
    font-size: 64px;
    font-weight: 900;
    color: #0066cc;
    line-height: 1;
    flex-shrink: 0;
}

/* タイトル */
.policy-card-title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.4;
}

/* サブタイトル（青い帯） */
.policy-card-subtitle {
    display: inline-flex;
    align-items: center;
    background-color: #0066cc;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 3px;
    margin: 0;
}

.policy-card-subtitle i {
    margin-right: 12px;
    font-size: 16px;
    color: #fff;
}

/* 説明文 */
.policy-description {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Clickボタン（右下の青い三角形） */
.policy-click-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #0066cc;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 8px;
}

.policy-click-btn span {
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    transform: rotate(-45deg) translate(5px, 22px);
    white-space: nowrap;
}

.policy-click-btn:hover {
    background-color: #0055aa;
}

/* 下部の青い帯 */
.policy-blue-bar {
    width: 100%;
    height: 60px;
    background-color: #0066cc;
    margin-top: 0;
}

/* =============================================
   レスポンシブ対応
   ============================================= */
/* 1400px以下で中央寄せに切り替え */
@media screen and (max-width: 1400px) {
    .policy-section {
        padding-bottom: 600px;  /* 追加：下に余白を作って田所さんを見せる */
    }
	
    .policy-cards {
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
        max-width: 1000px;
        gap: 0px;
    }
    
    /* 下段の左ズレも解除 */
    .policy-card:nth-child(4),
    .policy-card:nth-child(5),
    .policy-card:nth-child(6) {
        transform: translateX(0);
    }
	
	.policy-number-accent {
        color: #fff;
    }
	
	.policy-header .policy-subtitle {
        color: #fff;
    }
	
	.policy-lead {
        color: #fff;
    }
	
	.policy-label {
        color: #fff;
    }
	
	.policy-label::after {
        background-color: #fff;
    }
	
	.policy_more_btn {
        color: #fff;
    }

	.policy_more_line {
        background-color: #fff;
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 1300px) {
    .policy-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
}

/* 1080px以下 */
@media screen and (max-width: 1080px) {
.policy-section {
    /* グラデーション + 画像を複数背景で指定 */
    background-image: 
    linear-gradient(to bottom, 
        #e1efff 0%, 
        #c5dbf5 20%,
        #a5c8f0 35%, 
        #7ba8d8 50%,
        #5a8ed0 60%, 
        #3867bf 100%),
    url('https://tadokoro-yusuke.com/wp-content/uploads/policy-bg-sp.jpg');
    background-size: 100% 55%, 100% auto;  /* cover → 100% auto に変更 */
    background-position: top, center bottom;
    background-repeat: no-repeat, no-repeat;
    padding: 100px 0 450px;
}
    
    /* 別要素の画像は非表示に */
    .policy-bg-sp {
        display: none;
    }
    
    /* flexboxで2列 */
    .policy-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 750px;
        padding: 0 20px;
    }
    
    /* 各カードを50%幅に */
    .policy-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    /* 全カードの高さを統一 */
    .policy-box {
        min-height: 280px;
    }
    
    .policy-header {
        margin-bottom: 40px;
    }
    
    .policy-title {
        font-size: 36px;
        color: #333;
        text-shadow: none;
    }

	.policy-header .policy-subtitle {
        color: #0066cc;
    }
	
	.policy-label {
        color: #0066cc;
    }
	
	.policy-label::after {
        background-color: #0066cc;
    }
    
    .policy-number-accent {
        font-size: 70px;
        text-shadow: none;
		color: #005BAC;
    }
    
    .policy-lead {
        font-size: 16px;
		color: #333;
    }
    
    .policy-lead br {
        display: none;
    }
	
	.policy_more_btn {
        color: #0066cc;
    }

	.policy_more_line {
        background-color: #0066cc;
    }
}

/* =============================================
   レスポンシブ対応960px
   ============================================= */
/* 960px以下 */
@media screen and (max-width: 960px) {
    .policy-section {
        background-size: 100% 60%, 100% auto;  /* グラデーション範囲を調整 */
        padding: 80px 0 500px;
    }
    
    .policy-cards {
        max-width: 700px;  /* カード幅を少し狭く */
        gap: 15px;
    }
    
    .policy-box {
        min-height: 260px;
        padding: 25px 20px 20px;
    }
	
.policy-content {
    padding: 30px 15px;
}
    
    .policy-number-large {

    }
    
    .policy-card-title {

    }
    
    .policy-card-subtitle {

    }
    
    .policy-description {

    }
    
    .policy-click-btn {

    }
    
    .policy-click-btn span {

        transform: rotate(-45deg) translate(5px, 15px);
    }
}

/* =============================================
   レスポンシブ対応760px
   ============================================= */
/* 760px以下：1列表示 */
@media screen and (max-width: 760px) {
    .policy-section {
        background-size: 100% 80%, 100% auto;
        padding: 60px 0 350px;
    }
    
    .policy-cards {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
        gap: 15px;
		width: auto !important; 
    }
    
    .policy-card {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .policy-box {
        min-height: 240px;
        padding: 20px;
    }
    
    .policy-number-large {
        font-size: 48px;
    }
    
    .policy-card-title {

    }
    
    .policy-card-subtitle {

    }
    
    .policy-description {

    }
    
    .policy-click-btn {

    }
    
    .policy-click-btn span {

    }
}




@media screen and (max-width: 500px) {
    .policy-section {
        background-size: 100% 90%, 100% auto;
        padding: 60px 0 350px;
    }
	    .policy-box {
        min-height: 320px;
    }
}





/* =============================================
   お知らせセクション（横3列レイアウト）
   ============================================= */
.news_section {
    padding: 80px 0;
    background-color: #fff;
}

.news_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* 左：タイトルエリア */
.news_header {
    flex-shrink: 0;
    text-align: left;
    padding: 0;
    margin: 0;
}

.news_subtitle {
    font-size: 16px;
    color: #0066cc; /* 赤→青に変更 */
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news_subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc; /* 黒→青に変更 */
}

.news_title {
    font-size: 36px;
    font-weight: 900;
    color: #333;
    margin: 15px 0 0;
    line-height: 1.4;
}

/* 中央：記事リスト */
.news_list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0e0e0; /* 追加：上の線 */
    border-bottom: 1px solid #e0e0e0; /* 追加：下の線 */
}

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

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

.news_item:hover {
    background-color: #f8f8f8;
}

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

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

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

.news_section .news_category.cat-blog {
    background-color: #0066cc; /* ブログ：青 */
}

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

.news_category.cat-news {
    background-color: #e60012;
}

.news_category.cat-event {
    background-color: #0066cc;
}

.news_category.cat-report {
    background-color: #00aa00;
}

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

/* 矢印を青に */
.news_section .news_arrow {
    flex-shrink: 0;
    font-size: 16px;
    color: #0066cc;
}

.news_section .news_arrow i {
    transition: transform 0.3s ease;
}

.news_item:hover .news_arrow i {
    transform: translateX(5px);
}

.news_section .news_item:hover .news_arrow i {
    transform: translateX(5px);
}

.no_news {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

/* 右：もっと見るボタン */
.news_more_wrapper {
    flex-shrink: 0;
}

.news_more_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
}

.news_more_btn:hover {
    opacity: 0.7;
}

.news_more_line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #0066cc;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.news_more_btn:hover .news_more_line {
    transform: scaleX(1.7);
}

/* =============================================
   レスポンシブ対応
   ============================================= */
@media screen and (max-width: 960px) {
    .news_inner {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    
    .news_header {
        text-align: center;
    }
    
    .news_subtitle {
        display: inline-block;
    }
    
    .news_list {
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
    
    .news_more_wrapper {
        text-align: center;
    }
}

@media screen and (max-width: 760px) {
    .news_section {
        padding: 60px 0;
    }
    
    .news_inner {
        padding: 0 20px;
        gap: 30px;
    }
    
    .news_title {
        font-size: 28px;
    }
    
    .news_section .news_list .news_item {
        display: flex !important;
        flex-wrap: wrap !important;
        position: relative;
        padding: 15px 40px 15px 20px;
        gap: 10px;
    }
    
    .news_section .news_list .news_date {
        font-size: 13px;
        order: 1 !important;
        flex-shrink: 0;
    }
    
    .news_section .news_list .news_category {
		padding: 0px 12px;
        font-size: 11px;
        min-width: auto;
        order: 2 !important;
        flex-shrink: 0;
    }
    
    .news_section .news_list .news_item_title {
        flex-basis: 100% !important;
        width: 100% !important;
        order: 4 !important;
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .news_section .news_list .news_arrow {
        position: absolute !important;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }
    
    .news_item {
        position: relative;
    }
    
    .news_more_btn {
        justify-content: center;
    }
}










/* =============================================
   プロフィールセクション（全幅）
   ============================================= */
.profile-section {
    padding: 80px 0 0;
    background-color: #fff; /* 灰色→白に変更 */
}

/* ヘッダー */
.profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-label {
    font-size: 16px;
    color: #0066cc;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

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

.profile-title {
    font-size: 42px;
    font-weight: 900;
    color: #333;
    margin: 20px 0 0;
    line-height: 1.4;
}

.profile-lead {
    font-size: 17px;
    color: #333;
    line-height: 2;
    margin: 25px 10px 0 10px;
}

/* メインコンテンツ - 全幅 */
.profile-main {
    display: flex;
    align-items: center; /* 上下中央 */
    width: 100%;
    position: relative;
}


/* 左：写真 */
.profile-image {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2; /* 灰色背景より上 */
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    width: 50%;
    padding: 60px 80px;
    position: relative;
}

.profile-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -180px;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: 0;
}

/* テキスト要素を上に */
.profile-name-area,
.profile-career,
.profile-detail-btn {
    position: relative;
    z-index: 1;
}

.profile-name-area {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0066cc;
}

.profile-name {
    font-size: 36px;
    font-weight: 900;
    color: #0066cc;
    margin: 0 0 10px;
    line-height: 1.4;
}

.profile-ruby {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 15px;
}

.profile-birth {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* プロフィール紹介文 - 具体的セレクタ */
.profile-section .profile-info p.profile-intro {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 6px 0px 25px 0px;
    padding: 15px;
    background: #e4f3f9;
    border-radius: 8px;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 趣味 */
.profile-hobby {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 25px;
}
.profile-hobby-label {
    background: #005BAC;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
}
.profile-hobby-text {
    font-size: 14px;
    color: #666;
}

.profile-career {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.profile-career li {
    font-size: 17px;
    color: #333;
    line-height: 2.2;
    padding-left: 0;
}

/* プロフィール詳細ボタン */
.profile-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
}

.profile-detail-btn:hover {
    opacity: 0.7;
}

.profile-detail-line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #0066cc;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.profile-detail-btn:hover .profile-detail-line {
    transform: scaleX(1.7);
}

/* 下部：地域活動 */
.profile-local {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.profile-local-title {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 0 20px;
}

.profile-local-text {
    font-size: 15px;
    color: #333;
    line-height: 2;
    margin: 0;
}


/* =============================================
   レスポンシブ対応
   ============================================= */
@media screen and (max-width: 960px) {
    .profile-main {
        flex-direction: column;
    }
    
    .profile-image {
        width: 100%;
    }
    
    .profile-info {
        width: 100%;
        padding: 40px 30px;
        text-align: center;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .profile-ruby {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .profile-career {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .profile-detail-btn {
        justify-content: center;
    }
}

@media screen and (max-width: 760px) {
    .profile-section {
        padding: 60px 0 0;
    }
    
    .profile-header {
        margin-bottom: 40px;
    }
    
    .profile-title {
        font-size: 28px;
    }
    
    .profile-section .profile-info {
        padding: 30px 20px !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-career li {
        font-size: 14px;
    }
    
    .profile-local {
        padding: 40px 20px;
    }
    
    .profile-local-title {
        font-size: 18px;
    }
    
    .profile-local-text {
        font-size: 14px;
    }
    
    .profile-local-text br {
        display: none;
    }
	
	.profile-hobby-text {
    text-align: left;
    }
	
	.profile-section .profile-info p.profile-intro {
    text-align: left;
    }
}







/* 活動エリアセクション */
.area-section {
    background: #fff;
    padding: 80px 20px 80px;
	overflow: hidden;
}
.area-inner {
    max-width: 1200px;
    margin: 0 auto;
}
/* ヘッダー（プロフィールと統一） */
.area-header {
    text-align: center;
    margin-bottom: 60px;
}
.area-label {
    font-size: 16px;
    color: #0066cc;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.area-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}
.area-title {
    font-size: 42px;
    font-weight: 900;
    color: #333;
    margin: 20px 0 0;
    line-height: 1.4;
}
.area-lead {
    font-size: 17px;
    color: #333;
    line-height: 2;
    margin: 25px 0 0;
}
.area-map-wrapper {
    width: 100%;
    overflow: hidden;
}
.area-maps {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.area-map-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.area-map-prefecture {
    flex: 1.5;
    min-width: 400px;
    max-width: 650px;
}
.area-map-city {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}
.area-map-title {
    font-size: 15px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.area-map-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.area-map-img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.area-map-hint {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}
.area-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
}
.area-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.area-legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}
.area-legend-color.ku1 {
    background: #a3d9ef;
}
.area-legend-color.ku2 {
    background: #e0e0e0;
}
.area-legend-text {
    font-size: 14px;
    color: #555;
}
/* モーダル */
.map-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.map-modal.active {
    opacity: 1;
    visibility: visible;
}
.map-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.map-modal.active .map-modal-content {
    transform: scale(1);
}
.map-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.map-modal-close:hover {
    color: #ccc;
}

@media screen and (max-width: 900px) {
    .area-maps {
        flex-direction: column;
        align-items: center;
    }
    .area-map-prefecture,
    .area-map-city {
        min-width: 0;
        width: 100%;
        max-width: 500px;
		box-sizing: border-box; 
    }
}
@media screen and (max-width: 768px) {
    .area-section {
        padding: 60px 15px;
    }
    .area-title {
        font-size: 28px;
    }
    .area-lead {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .area-maps {
        gap: 25px;
    }
    .area-map-item {
        padding: 20px;
    }
    .area-map-prefecture {
        min-width: 0;
    }
    .area-legend {
        gap: 25px;
        margin-top: 30px;
    }
	.area-map-prefecture,
    .area-map-city {
        min-width: auto;  /* 100% → auto に変更 */
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .area-section {
        padding: 50px 15px;
    }
    .area-title {

    }
    .area-lead {
        font-size: 14px;
    }
    .area-map-title {
        font-size: 14px;
    }
    .area-map-item {
        padding: 15px;
    }
    .area-legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}






/* =====================================================
   SNSセクション
===================================================== */
.sns-section {
    padding: 100px 20px;
    background: url('https://tadokoro-yusuke.com/wp-content/uploads/sns-bg.png') center center / cover no-repeat;
    position: relative;
}

.sns-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sns-header {
    margin-bottom: 50px;
}

.sns-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.sns-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255,0.8);
}

.sns-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sns-icons > p {
    display: none;
}

.sns-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 30px 35px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* SNSアイコン内の自動挿入pタグを非表示 */
.sns-icon > p {
    display: none !important;
}

.sns-icon:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,0.22);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sns-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}


.sns-icon-circle svg {
    width: 28px;
    height: 28px;
}

.sns-icon-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
}


/* SNS個別カラー */
.sns-x .sns-icon-circle { background: #000; }
.sns-x .sns-icon-circle svg { fill: #fff; }

.sns-facebook .sns-icon-circle { background: #1877f2; }
.sns-facebook .sns-icon-circle svg { fill: #fff; }

.sns-instagram .sns-icon-circle { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sns-instagram .sns-icon-circle svg { fill: #fff; }

.sns-line .sns-icon-circle { background: #00b900; }
.sns-line .sns-icon-circle svg { fill: #fff; }

/* =====================================================
   YouTubeセクション
===================================================== */
.youtube-section {
    padding: 100px 20px;
    background: #fff;
}

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

.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.youtube-title-area {
    text-align: left;
}

.youtube-label {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

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

.youtube-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

.youtube-title span {
    display: block;
    font-size: 24px;
    color: #555;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
	border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.youtube-channel-btn:hover {
        background: #e60000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* ホバー時も控えめ */
        transform: translateY(-2px);
}

.youtube-channel-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.youtube-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.youtube-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.youtube-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 8px;
}

.youtube-badge svg {
    width: 22px;
    height: 16px;
    fill: #ff0000;
}

.youtube-badge span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.youtube-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-video-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.youtube-play-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255,0,0,0.5);
    position: relative;
}

.youtube-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,0,0,0.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.youtube-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(255,0,0,0.6);
}

.youtube-play-btn svg {
    width: 35px;
    height: 35px;
    margin-left: 5px;
    fill: #fff;
}

.youtube-placeholder-text {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-top: 25px;
    font-weight: 500;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
    .sns-section {
        padding: 70px 15px;
    }

    .sns-title {
        font-size: 24px;
    }

    .sns-header {
        margin-bottom: 35px;
    }

    .sns-icons {
        gap: 12px;
    }

    .sns-icon {
        padding: 22px 28px;
        border-radius: 16px;
    }

    .sns-icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .sns-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .sns-icon-name {
        font-size: 11px;
    }

    .youtube-section {
        padding: 70px 15px;
    }

    .youtube-header {
        flex-direction: column;
        gap: 25px;
		text-align: center;
    }

    .youtube-title {
        font-size: 24px;
    }

    .youtube-title span {
        font-size: 18px;
    }

    .youtube-channel-btn {
        display: inline-flex;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); /* 影を控えめに */
    }
	
    .youtube-video-wrapper {
        border-radius: 16px;
    }

    .youtube-play-btn {
        width: 70px;
        height: 70px;
    }

    .youtube-play-btn svg {
        width: 28px;
        height: 28px;
    }
}



/* ============================================
   CTA Section - お問い合わせ・後援会バナー
============================================ */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.cta-card {
  flex: 1;
  max-width: 450px;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.cta-card.is-visible {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 英語ラベル */
.cta-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
}

/* ラベル下の線 */
.cta-label-line {
  width: 30px;
  height: 2px;
  margin: 0 auto 20px;
}

/* お問い合わせカード */
.cta-contact {
  background: #ffffff;
  border: 2px solid #005BAC;
}

.cta-contact .cta-label {
  color: #005BAC;
}

.cta-contact .cta-label-line {
  background: #005BAC;
}

.cta-contact .cta-title {
  color: #333;
}

.cta-contact .cta-text {
  color: #555;
}

.cta-contact .cta-button {
  background: #005BAC;
  color: #fff;
}

.cta-contact:hover .cta-button {
  background: #004a8c;
}

/* 後援会カード */
.cta-supporter {
  background: linear-gradient(135deg, #005BAC 0%, #0073d1 100%);
  border: 2px solid #005BAC;
}

.cta-supporter .cta-label {
  color: rgba(255, 255, 255, 0.8);
}

.cta-supporter .cta-label-line {
  background: rgba(255, 255, 255, 0.6);
}

.cta-supporter .cta-title {
  color: #fff;
}

.cta-supporter .cta-text {
  color: rgba(255, 255, 255, 0.9);
}

.cta-supporter .cta-button {
  background: #fff;
  color: #005BAC;
}

.cta-supporter:hover .cta-button {
  background: #f0f0f0;
}

/* 共通スタイル */
.cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .cta-section {
    padding: 60px 15px;
  }
  
  .cta-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-card {
    max-width: 100%;
    padding: 40px 25px;
  }
  
  .cta-label {
    font-size: 13px;
  }
  
  .cta-title {
    font-size: 22px;
  }
  
  .cta-text {
    font-size: 14px;
  }
  
  .cta-button {
    padding: 12px 35px;
    font-size: 15px;
  }
  
  .pc-only {
    display: none;
  }
}




















/* 活動実績セクション */
.achievements_section {
    padding: 80px 0;
    background-color: #fff;
}

/* タイトルエリア */
.achievements_header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.achievements_subtitle {
    font-size: 20px;
    color: #e60012;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

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

.achievements_title {
    font-size: 42px;
    font-weight: 900;
    color: #333;
    margin: 20px 0 0;
    line-height: 1.4;
}

/* イントロテキスト */
.achievements_intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.achievements_intro p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

/* グーグルマップバナー - 赤背景を中央寄せ */
.achievements_map_banner {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.achievements_map_inner {
    background-color: #e60012;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;  /* 追加：中央寄せ */
    gap: 40px;
}

.map_icon {
    flex-shrink: 0;
    font-size: 80px;
    color: #fff;
}

.map_text {
    flex: 0 1 auto;  /* flex: 1 → flex: 0 1 auto に変更 */
}

.map_text p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.map_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #e60012;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.map_btn:hover {
    opacity: 0.8;
}

.map_btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.map_btn:hover i {
    transform: translateX(5px);
}

/* 実績カードリスト */
.achievements_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievements_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.achievement_card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.achievement_card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.achievement_thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.achievement_content {
    padding: 20px;
}

.achievement_district {
    background-color: #e60012;
    color: #fff;
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.achievement_title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.achievement_excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.no_achievements {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* 詳細を見るボタン */
.achievements_more_wrapper {
    text-align: center;
}

.achievements_more_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 60px;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.achievements_more_btn:hover {
    background-color: #cc0010;
}

.achievements_more_btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.achievements_more_btn:hover i {
    transform: translateX(5px);
}

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

    .achievements_map_inner {
        padding: 30px 40px;
        gap: 25px;
    }
    
    .map_icon {
        font-size: 60px;
    }
}

@media screen and (max-width: 760px) {
    .achievements_section {
        padding: 60px 0;
    }
    
    .achievements_subtitle {
        font-size: 16px;
    }
    
    .achievements_title {
        font-size: 28px;
    }
    
    .achievements_map_banner {
        padding: 0 15px;
    }
    
    .achievements_map_inner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .map_icon {
        font-size: 50px;
    }
    
    .map_text {
        text-align: center;
    }
    
    .map_btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}


































/* ギャラリースライダーセクション */
.gallery_slider_section {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.gallery_slider {
    max-width: 100%;
    margin: 0 auto;
}

.slider_item {
    padding: 0 10px;
}

.slider_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Slickスライダーのカスタマイズ */
.slick-slide {
    transition: none !important;
}

.slick-track {
    display: flex !important;
    align-items: center;
}

.slick-list {
    overflow: hidden;
}

/* レスポンシブ対応 */
@media screen and (max-width: 760px) {
    .gallery_slider_section {
        padding: 60px 0;
    }
    
    .slider_item img {
        height: 200px;
    }
}







/* =============================================
   プライバシーポリシーページ
   ============================================= */

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

.privacy-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.privacy-hero-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}

/* コンテンツセクション */
.privacy-section {
  background: #fff;
  padding: 60px 20px 80px;
}

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

.privacy-intro {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.privacy-item {
  margin-bottom: 40px;
}

.privacy-item-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #005BAC;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
}

.privacy-item p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 15px;
}

.privacy-item ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: none;
}

.privacy-item li {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.privacy-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #005BAC;
  border-radius: 50%;
}

.privacy-item a {
  color: #005BAC;
  text-decoration: underline;
}

.privacy-item a:hover {
  text-decoration: none;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .privacy-hero-section {
    margin-top: -70px;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .privacy-hero-title {
    font-size: 28px;
  }
  
  .privacy-section {
    padding: 40px 20px 60px;
  }
  
  .privacy-intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  .privacy-item-title {
    font-size: 17px;
  }
  
  .privacy-number {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .privacy-item p,
  .privacy-item li {
    font-size: 14px;
  }
}













/* =============================================
   プロフィールページ メインセクション
   ============================================= */
.profile-page-section {
  background: url('https://tadokoro-yusuke.com/wp-content/uploads/profile-page-bg.png') no-repeat center center;
  background-size: cover;
  padding: 80px 20px 0;
  overflow: visible;  /* はみ出しを許可 */
  position: relative;
}

.profile-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.profile-page-label-en {
  display: inline-block;
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.profile-page-label-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #005BAC;
}

.profile-page-title {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  margin-top: 10px;
}

.profile-page-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-top: 25px;
}

.profile-page-content {
  display: flex;
  justify-content: flex-start;  /* center → flex-start に変更 */
  align-items: flex-end;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 50px;  /* 左側の余白 */
}

/* プロフィールカード */
.profile-page-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  margin-top: 80px;
  margin-bottom: -80px;  /* 追加：下にはみ出す */
}

.profile-page-ruby {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.3em;
}

.profile-page-name {
  font-size: 32px;
  color: #005BAC;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.profile-page-position {
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1.8;
}

.profile-page-divider {
  width: 80%;
  height: 1px;
  background: #ddd;
  margin: 25px auto;
}

.profile-page-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile-page-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.profile-page-info-label {
  display: inline-block;
  background: #005BAC;
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.profile-page-info-value {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* プロフィール写真 */
.profile-page-photo {
  flex-shrink: 0;
  margin-left: -50px;
  margin-bottom: -80px;  /* 追加：下にはみ出す */
  position: relative;
  z-index: 10;
}

.profile-page-photo img {
  width: 450px;
  height: auto;
  display: block;
}

/* スマホ用写真（PC版では非表示） */
.profile-page-photo-mobile {
    display: none;
}

/* =============================================
   レスポンシブ（タブレット→1085px以下で適用）
   ============================================= */
@media screen and (max-width: 1085px) {
    .profile-page-content {
        justify-content: center;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
  
    .profile-page-card {
        width: 90%;
        max-width: 400px;
        margin-bottom: 0;
    }
  
    .profile-page-photo {
        display: none;  /* PC用写真を非表示 */
    }

    .profile-page-section {
        background: #e4f3f9;
        padding: 100px 15px 0;
        overflow-x: hidden;
    }
  
    .profile-page-content {
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
	
    .profile-page-title {
        font-size: 28px;
    }
  
    .profile-page-card {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: #fff;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
    }
	
    .profile-page-info {
        align-items: center;
    }
	
    .profile-page-photo-mobile {
        display: block;
        text-align: center;
        margin-top: 30px;
    }
	
    .profile-page-photo-mobile img {
        max-width: 100%;
        height: auto;
    }
  
    .profile-page-name {
        font-size: 26px;
    }
  
    .profile-page-position {
        font-size: 14px;
    }
  
    .profile-page-info-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
  
    .profile-page-info-label {
        align-self: center;
    }
	
    .profile-page-info-value {
        text-align: center;
    }
}

/* =============================================
   経歴セクション（タイムライン）
   ============================================= */
.profile-history-section {
  background: #fff;
  padding: 180px 20px 80px;  /* 上部にカードはみ出し分の余白 */
}

.profile-history-inner {
  max-width: 800px;
  margin: 0 auto;
}

.profile-history-title {
  font-size: 32px;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}

.profile-history-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #005BAC;
  margin: 15px auto 0;
}

/* タイムライン */
.profile-timeline {
  position: relative;
  padding-left: 30px;
}

/* 縦線 */
.profile-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: #005BAC;
}

/* 各項目 */
.profile-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 25px 0;
  position: relative;
}

/* 丸い点 */
.profile-timeline-dot {
  position: absolute;
  left: -30px;
  top: 28px;
  width: 15px;
  height: 15px;
  background: #005BAC;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 年 */
.profile-timeline-year {
  font-size: 22px;
  font-weight: bold;
  color: #005BAC;
  flex-shrink: 0;
  width: 100px;
}

/* 内容 */
.profile-timeline-content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  padding-top: 3px;
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .profile-history-section {
    padding: 100px 20px 60px;
  }
  
  .profile-history-title {
    font-size: 26px;
  }
  
  .profile-timeline {
    padding-left: 25px;
  }
  
  .profile-timeline::before {
    left: 5px;
    width: 2px;
  }
  
  .profile-timeline-item {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
  
  .profile-timeline-dot {
    left: -25px;
    top: 24px;
    width: 12px;
    height: 12px;
  }
  
  .profile-timeline-year {
    font-size: 18px;
    width: auto;
  }
  
  .profile-timeline-content {
    font-size: 15px;
  }
}


/* =============================================
   趣味・プライベートセクション
   ============================================= */
.profile-hobby-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.profile-hobby-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.profile-hobby-title {
  font-size: 32px;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}

.profile-hobby-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #005BAC;
  margin: 15px auto 0;
}

.profile-hobby-lead {
  font-size: 16px;
  color: #555;
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
}

/* グリッドレイアウト */
.profile-hobby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 各趣味アイテム */
.profile-hobby-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.profile-hobby-photo {
  width: 100%;
  height: 2400px;
  overflow: hidden;
}

.profile-hobby-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}



.profile-hobby-info {
  padding: 20px 25px 25px;
}

.profile-hobby-name {
  font-size: 20px;
  color: #005BAC;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile-hobby-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 768px) {
  .profile-hobby-section {
    padding: 60px 15px;
  }
  
  .profile-hobby-title {
    font-size: 26px;
  }
  
  .profile-hobby-lead {
    font-size: 15px;
    text-align: left;
  }
  
  .profile-hobby-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .profile-hobby-photo {
    height: 180px;
  }
  
  .profile-hobby-name {
    font-size: 18px;
  }
}

/* =============================================
   活動セクション
   ============================================= */
.profile-activity-section {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.profile-activity-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile-activity-title {
  font-size: 32px;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
  position: relative;
}

.profile-activity-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #005BAC;
  margin: 15px auto 0;
}

/* 各ブロック */
.profile-activity-block {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  margin-left: calc((100vw - 1100px) / -2);
  margin-right: calc((100vw - 1100px) / -2);
  padding-left: calc((100vw - 1100px) / 2);
}

.profile-activity-block:last-child {
  margin-bottom: 0;
}

/* reverse：写真が左、テキストが右 */
.profile-activity-block.reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: calc((100vw - 1100px) / 2);
}

/* テキスト部分 */
.profile-activity-text {
  flex: 0 0 450px;
  padding-right: 60px;
}

.profile-activity-block.reverse .profile-activity-text {
  padding-right: 0;
  padding-left: 60px;
}

.profile-activity-subtitle {
  font-size: 24px;
  color: #005BAC;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #005BAC;
}

.profile-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-activity-list li {
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.profile-activity-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #333;
}

/* 写真部分 - 画面端まで広げる */
.profile-activity-photo {
  flex: 1;
}

.profile-activity-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 活動の説明文 */
.profile-activity-desc {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 25px;
}

/* 役職リストを控えめに */
.profile-activity-list {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 0;
}

.profile-activity-list li {
  font-size: 14px;
  color: #666;
  padding: 6px 0 6px 20px;
}

/* 活動セクションのリード文 */
.profile-activity-lead {
  font-size: 16px;
  color: #555;
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 760px) {
  .profile-activity-lead {
    font-size: 15px;
    text-align: left;
    margin-bottom: 40px;
  }
}


/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 1140px) {
  .profile-activity-block {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
  }
  
  .profile-activity-block.reverse {
    padding-left: 0;
    padding-right: 20px;
  }
}

@media screen and (max-width: 960px) {
  .profile-activity-block {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .profile-activity-block.reverse {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .profile-activity-text {
    flex: none;
    width: 100%;
    padding: 0;
  }
  
  .profile-activity-block.reverse .profile-activity-text {
    padding: 0;
  }
  
  .profile-activity-photo {
    width: 100%;
    max-width: 500px;
    order: -1;
  }
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
    .profile-activity-section {
        padding: 40px 0;
    }
	
    .profile-activity-inner {
        padding: 0 15px;
        max-width: 100%;
    }
	
  .profile-activity-title {
    font-size: 26px;
    margin-bottom: 50px;
  }
  
    .profile-activity-block {
        flex-direction: column;
        gap: 30px;
    }
	
    .profile-activity-photo {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .profile-activity-photo img {
        width: 100%;
        height: auto;
    }
  
  .profile-activity-subtitle {
    font-size: 20px;
  }
  
  .profile-activity-list li {
    font-size: 14px;
    padding: 8px 0 8px 20px;
  }
}
























/* =============================================
   政策ページ ヒーローセクション
   ============================================= */
.policy-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/policy-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 165px 20px 80px 20px;
  margin-top: -85px;
  text-align: center;
}

.policy-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

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

.policy-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 50px;
}

/* 目次ナビ */
/* 
.policy-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.policy-nav-item {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s;
  width: 100px;
}

.policy-nav-item:hover {
  transform: translateY(-5px);
}

.policy-nav-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto 35px;
}

.policy-nav-circle i {
  font-size: 28px;
  color: #005BAC;
}

.policy-nav-circle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #005BAC;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.policy-nav-text {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}
 */

/* =============================================
   政策詳細セクション
   ============================================= */
.policy-detail-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.policy-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 各ブロック */
.policy-block {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  margin-left: calc((100vw - 1100px) / -2);
  margin-right: calc((100vw - 1100px) / -2);
  padding-left: calc((100vw - 1100px) / 2);
}

.policy-block:last-child {
  margin-bottom: 0;
}

/* reverse：写真が左、テキストが右 */
.policy-block.reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: calc((100vw - 1100px) / 2);
}

/* テキスト部分 */
.policy-block-text {
  flex: 0 0 500px;
  padding-right: 60px;
}

.policy-block.reverse .policy-block-text {
  padding-right: 0;
  padding-left: 60px;
}

.policy-block-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.policy-block-header > p {
  display: contents;
}

.policy-block-number {
    font-size: 72px;
    font-weight: 900;
    color: #005BAC;
    line-height: 1;
}

.policy-block-title {
    font-size: 36px;
    font-weight: 900;
  color: #333;
  margin-bottom: 8px;
	letter-spacing: 2px;
}

.policy-block-subtitle {
  font-size: 26px;
  color: #005BAC;
  font-weight: bold;
  margin-top: 10px;
}

.policy-block-text > .policy-block-header + ul {
  border-top: 3px solid #005BAC;
  padding-top: 25px;
}

.policy-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 3px solid #005BAC;
  padding-top: 25px;
}

.policy-block-list li {
  font-size: 18px;
  color: #333;
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.policy-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #005BAC;
  font-weight: bold;
}

/* 写真部分 */
.policy-block-photo {
  flex: 1;
}

.policy-block-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 1140px) {
  .policy-block {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
  }
  
  .policy-block.reverse {
    padding-left: 0;
    padding-right: 20px;
  }
}

@media screen and (max-width: 960px) {
/* 
  .policy-nav {
    gap: 20px;
  }
  
  .policy-nav-circle {
    width: 70px;
    height: 70px;
  }
  
  .policy-nav-circle i {
    font-size: 24px;
  }
 */
	
  .policy-block {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .policy-block.reverse {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .policy-block-text {
    flex: none;
    width: 100%;
    padding: 0;
  }
  
  .policy-block.reverse .policy-block-text {
    padding: 0;
  }
  
  .policy-block-photo {
    width: 100%;
    max-width: 600px;
    order: -1;
  }
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .policy-hero-section {
	margin-top: -70px;
    padding: 150px 20px 60px 20px;
	background-position: 30% center;
  }
  
  .policy-hero-title {
    font-size: 32px;
  }
  
  .policy-hero-message {
    font-size: 14px;
    margin-bottom: 40px;
  }
/* 
  .policy-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .policy-nav-item {
    width: 100%;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 91, 172, 0.3);
    touch-action: manipulation;
    padding: 10px 5px;
  }
	
  .policy-nav-circle {
    width: 60px;
    height: 60px;
    pointer-events: none;
  }
  
  .policy-nav-circle i {
    font-size: 20px;
    pointer-events: none;
  }
  
  .policy-nav-circle::after {
    font-size: 10px;
    bottom: -18px;
    pointer-events: none;
  }
  
  .policy-nav-text {
    font-size: 12px;
    margin-top: 12px;
    pointer-events: none;
  }
 */  
  .policy-detail-section {
    padding: 60px 0;
  }
  
  .policy-block {
    margin-bottom: 70px;
	padding: 0;
  }
	
  .policy-block.reverse {
    padding: 0;
  }
	
  .policy-block-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
  }
  
  .policy-block-number {
    font-size: 50px;
  }
  
  .policy-block-title {
    font-size: 30px;
    line-height: 1.5;
  }
  
  .policy-block-subtitle {
    font-size: 23px;
  }
}

/* =============================================
   レスポンシブ（小さいスマホ）
   ============================================= */
@media screen and (max-width: 480px) {
/* 
  .policy-nav {
    gap: 15px 10px;
    max-width: 240px;
  }
	
  .policy-nav-item {
    padding: 8px 3px;
  }
  
  .policy-nav-circle {
    width: 50px;
    height: 50px;
  }
  
  .policy-nav-circle i {
    font-size: 18px;
  }
  
  .policy-nav-text {
    font-size: 11px;
  }
 */
}














/* =============================================
   実績ページ ヒーローセクション
   ============================================= */
.results-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/results-hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 165px 20px 80px 20px;
  margin-top: -85px;
  text-align: center;
}

.results-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

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

.results-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 50px;
}

/* 目次ナビ */
/* 
.results-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.results-nav > p {
  display: contents;
}

.results-nav-item {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s;
  width: 100px;
}

.results-nav-item:hover {
  transform: translateY(-5px);
}

.results-nav-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto 35px;
}

.results-nav-circle i {
  font-size: 28px;
  color: #005BAC;
}

.results-nav-circle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: #005BAC;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.results-nav-text {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}
 */

/* =============================================
   実績ページ アコーディオン（シンプル版）
   ============================================= */
.results-accordion-section {
  background: #fff;
  padding: 80px 20px;
}

.results-accordion-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* 追加：ラベルとタイトルを中央揃え */
}

.results-accordion-item {
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.results-accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
  text-align: left;
}

/* ヘッダー */
.results-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  background: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.results-accordion-header:hover {
  background: #f8f9fa;
}

.results-accordion-header-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.results-accordion-number {
  font-size: 40px;
  font-weight: bold;
  color: #005BAC;
  line-height: 1;
  min-width: 45px;
}

.results-accordion-info {
  flex: 1;
}

.results-accordion-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.results-accordion-desc {
  font-size: 17px;
  color: #777;
  line-height: 1.6;
}

.results-accordion-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results-accordion-toggle i {
  font-size: 18px;
  color: #005BAC;
  transition: transform 0.3s;
}

/* コンテンツ */
.results-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.results-accordion-body {
  padding: 10px 20px 40px 85px;
}

/* 実績アイテム */
.results-item {
  padding: 20px 0;
  border-bottom: 1px dashed #e0e0e0;
}

.results-item:last-child {
  border-bottom: none;
}

.results-item-title {
  font-size: 20px;
  font-weight: bold;
  color: #005BAC;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 4px solid #005BAC;
}

.results-item-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 960px) {
/* 
  .results-nav {
    gap: 20px;
  }
  
  .results-nav-circle {
    width: 70px;
    height: 70px;
  }
  
  .results-nav-circle i {
    font-size: 24px;
  }
 */
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
    .results-hero-section {
        padding-top: 170px !important;
        margin-top: -85px !important;
		background-position: 45% center;
    }
  
  .results-hero-title {
    font-size: 32px;
  }
  
  .results-hero-message {
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  /* 目次ナビ */
/* 
  .results-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 100;
  }
  
  .results-nav-item {
    width: 80px;
    position: relative;
    z-index: 101;
    pointer-events: auto !important;
  }
	
  .results-nav-item:hover {
    opacity: 1;
    transform: none;
  }
  
  .results-nav-circle i {
    font-size: 20px;
  }
	
  .results-nav-circle {
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
  }
  
  .results-nav-circle::after {
    font-size: 10px;
    bottom: -18px;
  }
	
  .results-hero-section::before,
  .results-hero-section::after {
    pointer-events: none;
  }
  
  .results-nav-text {
    font-size: 11px;
    margin-top: 12px;
  }
	
  .results-hero-inner {
    position: relative;
    z-index: 50;
  }
 */
}

/* =============================================
   レスポンシブ
   ============================================= */
@media screen and (max-width: 760px) {
  .results-accordion-section {
    padding: 60px 15px;
  }
  
  .results-accordion-header {
    padding: 20px 15px;
  }
  
  .results-accordion-header-left {
    gap: 15px;
  }
  
  .results-accordion-number {
    font-size: 22px;
    min-width: 35px;
  }
  
  .results-accordion-title {
    font-size: 17px;
    margin-bottom: 5px;
  }
  
  .results-accordion-desc {
    font-size: 13px;
  }
  
  .results-accordion-body {
    padding: 10px 15px 30px 50px;
  }
  
  .results-item-title {
    font-size: 15px;
  }
  
  .results-item-text {
    font-size: 14px;
  }
}


/* =============================================
   レスポンシブ（小さいスマホ）
   ============================================= */
@media screen and (max-width: 480px) {
/*   .results-nav {
    gap: 15px 10px;
    max-width: 240px;
  }
  
  .results-nav-circle {
    width: 50px;
    height: 50px;
  }
  
  .results-nav-circle i {
    font-size: 18px;
  }
  
  .results-nav-text {
    font-size: 10px;
  }
 */
  
  .results-accordion-number {
    font-size: 20px;
    min-width: 30px;
  }
  
  .results-accordion-title {
    font-size: 16px;
  }
  
  .results-accordion-desc {
    font-size: 12px;
  }
  
  .results-accordion-body {
    padding: 10px 15px 30px 15px;
  }
}


/* 実績ページ シンプル目次 */
.results-nav-simple {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.results-nav-simple a {
  display: inline-block;
  padding: 12px 20px;
  background: #fff;
  color: #005BAC;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s;
}

.results-nav-simple a::after {
  content: ' ›';
  margin-left: 5px;
}

.results-nav-simple a:hover {
  background: #005BAC;
  color: #fff;
}

@media screen and (max-width: 760px) {
  .results-nav-simple {
    gap: 8px 10px;
  }
  
  .results-nav-simple a {
    padding: 10px 15px;
    font-size: 12px;
  }
}


/* =============================================
   数字で見る6年間（白背景・カード型）
   ============================================= */
.results-summary {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.results-summary-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* TRACK RECORD */
.results-summary-label {
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.results-summary-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}

.results-summary-title {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin-bottom: 40px;
}

.results-summary-photo {
  margin-bottom: 40px;
  text-align: center;
}

.results-summary-photo img {
  max-width: 700px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.results-summary-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.summary-card {
  background: #005BAC;
  border-radius: 15px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,91,172,0.2);
  transition: transform 0.3s;
}


.summary-number {
  display: block;
  font-size: 56px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  font-family: 'Josefin Sans', sans-serif;
}

.summary-unit {
  font-size: 24px;
}

.summary-label {
  display: block;
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-top: 10px;
}

/* =============================================
   主な実現した政策（ピックアップ）
   ============================================= */
.results-pickup {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.results-pickup-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* PICK UP */
.results-pickup-label {
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.results-pickup-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}

.results-pickup-title {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin-bottom: 50px;
}

/* カテゴリブロック */
.pickup-category {
  margin-bottom: 50px;
  text-align: left;
}

.pickup-category-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 60px 0 25px 0;
  padding-left: 15px;
  border-left: 4px solid #005BAC;
  text-align: left;
}

.pickup-category-title span {
  background: linear-gradient(transparent 60%, rgba(0,91,172,0.15) 60%);
}

/* グリッドレイアウト */
.pickup-category-grid {
  display: grid;
  gap: 25px;
}

.pickup-category-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pickup-category-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* カード */
.pickup-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}



.pickup-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.pickup-number {
  display: block;
  font-size: 42px;
  font-weight: bold;
  color: #005BAC;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
}

.pickup-unit {
  font-size: 18px;
}

.pickup-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.pickup-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* 議会写真 */
.pickup-photo {
  margin-top: 50px;
  text-align: center;
}

.pickup-photo img {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pickup-photo-caption {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

/* カテゴリ画像 */
.pickup-category-photo {
  margin-bottom: 25px;
  text-align: center;
}

.pickup-category-photo img {
  max-width: 100%;
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .results-pickup {
    padding: 60px 15px;
  }
  
  .results-pickup-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .pickup-category {
    margin-bottom: 40px;
  }
  
  .pickup-category-title {
    font-size: 22px;
    margin: 60px 0 20px 0;
  }
  
  .pickup-category-grid.col-2,
  .pickup-category-grid.col-3 {
    grid-template-columns: 1fr;
  }
  
  .pickup-card {
    padding: 25px 20px;
  }
  
  .pickup-number {
    font-size: 36px;
  }
  
  .pickup-photo {
    margin-top: 30px;
  }
  
  .pickup-photo img {
    border-radius: 10px;
  }
	
  .pickup-category-photo {
    margin-bottom: 20px;
  }
  
  .pickup-category-photo img {
    max-height: 180px;
    border-radius: 10px;
  }
}



/* ================================
   進行中のテーマセクション
================================ */
.progress-theme-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.progress-theme-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 英語ラベル（IN PROGRESS） */
.progress-theme-label {
  font-family: 'Josefin Sans', sans-serif;
  font-style: italic;
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.progress-theme-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}

/* 日本語タイトル */
.progress-theme-title {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin-bottom: 40px;
}

.progress-theme-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 50px;
}

/* ブロック（交互レイアウト） */
.progress-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.progress-block.reverse {
  flex-direction: row-reverse;
}

.progress-block-text {
  flex: 1;
  text-align: left;  /* ← 左寄せ */
}

.progress-block-photo {
  flex: 0 0 280px;
}

.progress-block-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* バッジ・カテゴリ */
.progress-badge {
  display: inline-block;
  background: #e8f4fd;
  color: #005BAC;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 10px;
}

.progress-category {
  display: inline-block;
  font-size: 0.8rem;
  color: #888;
  border: 1px solid #ddd;
  padding: 3px 10px;
  border-radius: 4px;
}

.progress-block-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 15px 0 10px;
  text-align: left;  /* ← 左寄せ */
}

.progress-block-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  text-align: left;  /* ← 左寄せ */
  margin: 6px 0px 20px 0px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .progress-theme-section {
    padding: 60px 15px;
  }
  
  .progress-block,
  .progress-block.reverse {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }
  
  .progress-block-photo {
    flex: none;
    width: 100%;
  }
  
  .progress-block-photo img {
    height: 180px;
  }
  
  .progress-theme-title {
  font-size: 30px;
  margin: 10px 0 30px 0;
  }
  
  .progress-block-title {
    font-size: 1.15rem;
  }
	
/* バッジ・カテゴリ */
.progress-badge {
  margin: 0 10px 10px 0;
}

.progress-category {
  margin: 10px 0 0 0;
}
}


/* ================================
   進行中の主な取り組み（カード型）
================================ */
.progress-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.progress-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.progress-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.progress-card-badge {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
}

.progress-card-category {
  display: inline-block;
  font-size: 11px;
  color: #888;
  border: 1px solid #ddd;
  padding: 3px 10px;
  border-radius: 4px;
}

.progress-card-number {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #005BAC;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
}

.progress-card-unit {
  font-size: 16px;
}

.progress-card-name {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.progress-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

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

/* レスポンシブ（スマホ） */
@media screen and (max-width: 760px) {
  .progress-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .progress-card {
    padding: 25px 20px;
  }
  
  .progress-card-number {
    font-size: 32px;
  }
  
  .progress-card-name {
    font-size: 16px;
  }
  
  .progress-card-desc {
    font-size: 14px;
  }
}


/* =============================================
   アコーディオン セクションタイトル
   ============================================= */
/* DETAILS */
.results-accordion-label {
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;

}
.results-accordion-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}

.results-accordion-main-title {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

/* =============================================
   アコーディオン ヘッダーサムネイル
   ============================================= */
.results-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.results-accordion-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.results-accordion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アコーディオンヘッダーのサムネイル画像を非表示 */
.results-accordion-thumb {
  display: none;
}

/* =============================================
   実績バッジ
   ============================================= */
.results-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.results-badge.realized {
  background: #e8f5e9;
  color: #2e7d32;
}

.results-badge.progress {
  background: #fff3e0;
  color: #e65100;
}

.results-badge.proposal {
  background: #e3f2fd;
  color: #1565c0;
}

/* =============================================
   アコーディオン内 写真付き実績アイテム
   ============================================= */
.results-item.has-photo {
  display: flex;
  gap: 25px;
  align-items: center;  
}

.results-item-photo {
  width: 200px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.results-item-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.results-item-content {
  flex: 1;
}

/* =============================================
   ビフォーアフター フロー
   ============================================= */
.results-flow {
  margin-top: 15px;
}

.flow-step {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 5px;
}

.flow-step p {
  margin: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.flow-step.highlight {
  background: #e3f2fd;
  border-left: 4px solid #005BAC;
}

.flow-step.highlight p {
  color: #333;
}

.flow-step.highlight strong {
  color: #005BAC;
  font-size: 15px;
}

.flow-label {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #005BAC;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}

/* 課題（青） */
.flow-step.kadai .flow-label {
  background: #005BAC;
}

/* 提言（緑） */
.flow-step.teigen .flow-label {
  background: #2e7d32;
}

/* 成果（赤） */
.flow-step.seika .flow-label {
  background: #c62828;
}

/* 成果の背景も赤系に変更 */
.flow-step.seika {
  background: #ffebee;
  border: 1px solid #c62828;
}

.flow-step.seika strong {
  color: #c62828;
  font-size: 16px;
}

.flow-arrow {
  text-align: center;
  padding: 5px 0;
  color: #005BAC;
  font-size: 14px;
}

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 960px) {
  .summary-card {
    padding: 30px 40px;
  }
  
  .summary-number {
    font-size: 48px;
  }
  
  .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-accordion-thumb {
    width: 50px;
    height: 50px;
  }
  
  .results-item.has-photo {
    flex-direction: column;
  }
  
  .results-item-photo {
    width: 100%;
    max-width: 300px;
  }
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .results-summary {
    padding: 60px 20px;
  }
	
  .results-summary-inner {
    width: 100%;
    max-width: 100%;
  }
  
  .results-summary-title {
    font-size: 30px;
    margin: 10px 0 30px 0;
  }
  
  .results-summary-photo {
    margin-bottom: 30px;
  }
  
  .results-summary-photo img {
    border-radius: 10px;
  }
  
  .results-summary-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;  /* 追加 */
  }
  
  .summary-card {
    padding: 25px 40px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    box-sizing: border-box;  /* 追加 */
  }
  
  .summary-number {
    font-size: 40px;
  }
  
  .summary-unit {
    font-size: 18px;
  }
  
  .results-pickup {
    padding: 60px 15px;
  }
  
  .results-pickup-title {
    font-size: 30px;
    margin: 10px 0 30px 0;
  }
    
  .results-accordion-main-title {
    font-size: 30px;
    margin: 10px 0 30px 0;
  }
  
  .results-accordion-thumb {
    width: 45px;
    height: 45px;
    border-radius: 8px;
  }
  
  .flow-step {
    padding: 12px 15px;
  }
  
  .flow-step p {
    font-size: 13px;
  }
}

/* =============================================
   レスポンシブ（小さいスマホ）
   ============================================= */
@media screen and (max-width: 480px) {
  .summary-number {
    font-size: 36px;
  }
}
















/* =============================================
   決意ページ ヘッダー初期状態から白
   ============================================= */
body.page-id-1152 .header {
  background-color: #fff !important;
}

body.page-id-1152 .header .header_name {
  color: #005BAC !important;
}

body.page-id-1152 .header .header_position {
  color: #333 !important;
}

body.page-id-1152 .header .nav_list li a {
  color: #333 !important;
}



/* =============================================
   決意ページ ヒーローセクション
   ============================================= */
.message-hero-section {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 80px,
    #005BAC 150px,
    #005BAC 100%
  );
  padding: 180px 20px 100px;
  margin-top: -85px;
  text-align: center;
}

/* =============================================
   決意ページ ヘッダー初期状態から白
   ============================================= */
body.page-message .header {
  background-color: #fff;
}

body.page-message .header .header_name {
  color: #005BAC !important;
}

body.page-message .header .header_position {
  color: #333 !important;
}

/* ヒーローセクションは単色の青 */
.message-hero-section {
  background: none;
  padding: 180px 20px 100px;
  margin-top: -85px;
  text-align: center;
}

.message-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.message-hero-title {
  font-size: 42px;
  color: #005BAC;
  font-weight: bold;
  margin: 25px 0 25px;
}

/* 決意ページ 写真 */
.message-photo {
  margin: 50px 0;
  text-align: center;
}

.message-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =============================================
   決意ページ 本文セクション
   ============================================= */
.message-content-section {
  background: #fff;
  padding: 80px 20px 100px;
}

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

.message-block {
  margin-bottom: 60px;
}

.message-heading {
  font-size: 24px;
  font-weight: bold;
  color: #005BAC;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid #005BAC;
}

.message-block p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 1.5em;
}

.message-highlight {
  font-size: 18px !important;
  font-weight: bold;
  color: #005BAC !important;
  background: #e4f3f9;
  padding: 20px 25px;
  border-radius: 5px;
}

/* 結論部分 */
.message-conclusion {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.message-conclusion p {
  font-size: 17px;
  line-height: 2;
  color: #333;
  margin-bottom: 1.5em;
}

.message-slogan {
  font-size: 24px !important;
  font-weight: bold;
  color: #005BAC !important;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}

/* 決意ページ 全幅画像バナー */
.message-photo-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.message-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .message-hero-section {
    margin-top: -70px;
    padding: 150px 20px 70px;
  }
  
  .message-hero-title {
    font-size: 32px;
  }
  
  .message-hero-subtitle {
    font-size: 15px;
  }
  
  .message-content-section {
    padding: 50px 20px 70px;
  }
  
  .message-heading {
    font-size: 20px;
  }
  
  .message-block p {
    font-size: 15px;
  }
  
  .message-conclusion {
    padding: 30px 20px;
  }
  
  .message-slogan {
    font-size: 20px !important;
  }
	
  .message-photo-banner {
    height: 220px;
  }
}














/* =============================================
    ギャラリーセクション
   ============================================= */
/* ギャラリーセクション */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ギャラリーラベル - 他セクションと統一 */
.gallery-label {
    font-size: 16px;
    color: #0066cc;
    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: #0066cc;
}

.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: #005BAC;
}

/* ページネーションの色 */
.gallery-swiper .swiper-pagination-bullet-active {
    background: #005BAC;
}

@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;
}





/* バナーセクション */
.banner-section {
    background: #f5f5f5;
    padding: 40px 20px;
}
.banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.banner-link {
    flex: 1;
    max-width: 520px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.banner-img {
    width: 100%;
    height: auto;
    display: block;
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
    .banner-section {
        padding: 30px 15px;
    }
    .banner-inner {
        flex-direction: column;
        align-items: center;
    }
    .banner-link {
        width: 100%;
        max-width: 400px;
    }
}










/* =============================================
   後援会ページ
   ============================================= */
/* ヒーローセクション */
.supporter-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/support-img.jpg');
  background-size: cover;
  background-position: 70% 30%;  /* right → 70% */
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
  margin-top: -85px;
  padding-top: 165px;
}
.supporter-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.supporter-hero-label {
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.supporter-hero-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}
.supporter-hero-title {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 25px;
}
.supporter-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

/* 後援会ページ - 後援会について */
.kouenkai-info {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.kouenkai-info-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.kouenkai-info-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.kouenkai-info-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.kouenkai-info-note {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

@media screen and (max-width: 760px) {
    .kouenkai-info {
        padding: 40px 15px;
    }
    
    .kouenkai-info-title {
        font-size: 20px;
    }
    
    .kouenkai-info-text,
    .kouenkai-info-note {
        font-size: 14px;
    }
}

/* 入会フォーム */
.supporter-form-section {
  background: #f8f9fa;
  padding: 80px 20px;
}
.supporter-form-inner {
  max-width: 700px;
  margin: 0 auto;
}
.supporter-form-title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.supporter-form-note {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.supporter-form-note .required {
  color: #e60012;
}
.supporter-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 注意事項 */
.supporter-notice-section {
  background: #fff;
  padding: 40px 20px 80px;
}
.supporter-notice-inner {
  max-width: 700px;
  margin: 0 auto;
}
.supporter-notice-text {
  font-size: 13px;
  color: #888;
  line-height: 2;
  text-align: center;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .supporter-hero-title {
    font-size: 32px;
  }
  .supporter-hero-message {
    font-size: 15px;
  }
  .supporter-about-title {
    font-size: 24px;
  }
  .supporter-info-box {
    gap: 30px;
  }
  .supporter-info-value {
    font-size: 26px;
  }
  .supporter-form-box {
    padding: 30px 20px;
  }
}


/* =============================================
   後援会フォーム スタイル
   ============================================= */
.supporter-form-box .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.supporter-form-box .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.supporter-form-box .form-group label {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.supporter-form-box .form-group .required {
  color: #e60012;
  margin-left: 5px;
}

.supporter-form-box input[type="text"],
.supporter-form-box input[type="email"],
.supporter-form-box input[type="tel"],
.supporter-form-box textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.supporter-form-box input[type="text"]:focus,
.supporter-form-box input[type="email"]:focus,
.supporter-form-box input[type="tel"]:focus,
.supporter-form-box textarea:focus {
  outline: none;
  border-color: #005BAC;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}

.supporter-form-box textarea {
  min-height: 150px;
  resize: vertical;
}

/* 郵便番号の補足テキスト */
.supporter-form-box .zip-note {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* 住所欄を横並び（PC） */
.supporter-form-box .form-group-row {
  display: flex;
  gap: 15px;
}

.supporter-form-box .form-group-row .form-group {
  flex: 1;
}

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

.supporter-form-box input[type="submit"] {
  background: linear-gradient(135deg, #005BAC 0%, #0073cc 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 91, 172, 0.3);
}

.supporter-form-box input[type="submit"]:hover {
  background: linear-gradient(135deg, #004a8c 0%, #005BAC 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 172, 0.4);
}

/* エラーメッセージ */
.supporter-form-box .wpcf7-not-valid-tip {
  color: #e60012;
  font-size: 13px;
  margin-top: 5px;
}

.supporter-form-box .wpcf7-response-output {
  border: none !important;
  padding: 15px !important;
  text-align: center;
  border-radius: 5px;
}

.supporter-form-box .wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
}

.supporter-form-box .wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .supporter-form-box .form-group-row {
    flex-direction: column;
    gap: 25px;
  }
  
  .supporter-form-box input[type="submit"] {
    width: 100%;
    padding: 16px 20px;
  }
}









/* ============================================
   英語ラベル共通 - Josefin Sans イタリック
============================================ */
.message_label,
.policy-label,
.profile-label,
.area-label,
.gallery-label,
.sns-label,
.youtube-label,
.cta-label,
.contact-hero-label,
.privacy-hero-label,
.profile-page-label-en,
.results-hero-label,
.policy-hero-label,
.message-hero-label,
.category-hero-label,
.results-summary-label,
.results-pickup-label,
.results-accordion-label,
.supporter-hero-label,
.news_subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.1em;
}








/* =============================================
   スクロールアニメーション（シュッと版）
   ============================================= */

/* 基本のフェードイン */
.fade-in {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fade-in.is-visible {
    opacity: 1;
}

/* 下から上にシュッと */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 左からシュッと */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 右からシュッと */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 拡大しながらシュッと */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* 遅延クラス */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.2s; }
.delay-4 { transition-delay: 0.25s; }
.delay-5 { transition-delay: 0.3s; }
.delay-6 { transition-delay: 0.35s; }

/* スマホ：移動距離を少し抑える */
@media screen and (max-width: 760px) {
    .fade-in-up {
        transform: translateY(30px);
    }
    .fade-in-left {
        transform: translateX(-30px);
    }
    .fade-in-right {
        transform: translateX(30px);
    }
}
























/* =============================================
   政策詳細ページ - 完全版
   ============================================= */
/* 
.policy-detail-page {
    width: 100%;
    margin-top: 85px;
}
 */
/* =============================================
   ヒーローセクション
   ============================================= */
/* 
.policy-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e60012;
}

.policy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.9), rgba(230, 0, 18, 0.7));
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.policy-hero-number {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.policy-hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.policy-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
}
 */

/* =============================================
   ビジョンセクション
   ============================================= */
/* 
.policy-vision {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-text {
    flex: 1;
}

.vision-title {
    font-size: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 25px;
}

.vision-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.vision-images {
    flex: 1;
    position: relative;
}

.vision-img {
    width: 100%;
    border-radius: 10px;

    display: block;
    max-width: 100%;
    height: auto;
}

.vision-img-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
 */

/* =============================================
   メインコンテンツエリア
   ============================================= */
/* 
.policy-detail-content {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.policy-detail-container {

    margin: 0 auto;
    padding: 0 20px;
}
 */

/* =============================================
   導入文（通常版）
   ============================================= */
/* 
.policy-intro-box {
    background-color: #fff;
    padding: 50px;
    margin-bottom: 60px;
    border-left: 5px solid #e60012;
}

.policy-intro-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin-bottom: 25px;
}

.policy-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}
 */

/* =============================================
   導入文（ビジュアル版）
   ============================================= */
/* 
.policy-intro-visual {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    padding: 60px;
    margin-bottom: 80px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.intro-illustration {
    flex-shrink: 0;
}

.intro-illustration img {
    width: 400px;
    height: auto;
}

.intro-content {
    flex: 1;
}

.intro-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
}

.point-item i {
    font-size: 20px;
    color: #4ECDC4;
}
 */

/* =============================================
   セクションタイトル共通
   ============================================= */
/* 
.policy-section-title {
    display: flex;
    align-items: center;
    justify-content: center;  
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;  
}

.policy-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;  
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #e60012;
}

.title-number {
    font-size: 48px;
    font-weight: 900;
    color: #e60012;
    opacity: 0.3;
    line-height: 1;
}

.title-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}
 */





/* =============================================
   4つの柱セクション
   ============================================= */
/* 
.policy-pillars {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-bottom: 80px;
}

.pillar-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.pillar-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pillar-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.pillar-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #e60012;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
}

.pillar-content {
    padding: 30px;
}

.pillar-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.pillar-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.pillar-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
}
*/

/* =============================================
   具体的施策セクション
   ============================================= */
/* 
.policy-measures {
    margin-bottom: 80px;
}

.measure-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.measure-card {
    background-color: #fff;
    padding: 40px;
    transition: box-shadow 0.3s ease;
}

.measure-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.measure-icon {
    font-size: 48px;
    color: #e60012;
    margin-bottom: 20px;
}

.measure-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.measure-list {
    list-style: none;
    padding: 0;
}

.measure-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.measure-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #e60012;
    font-weight: bold;
}
 */

/* =============================================
   成功事例ギャラリー
   ============================================= */
/* 
.success-gallery {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    margin: 0;
}
 */

/* =============================================
   インフォグラフィック
   ============================================= */
/* 
.policy-infographic {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.infographic-container {
    margin-bottom: 50px;
}

.infographic-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.number-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.number-card:hover {
    transform: translateY(-5px);
}

.number-icon {
    font-size: 40px;
    color: #e60012;
    margin-bottom: 20px;
}

.number-value {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.number-value span {
    font-size: 24px;
    font-weight: normal;
}

.number-label {
    font-size: 16px;
    color: #666;
    margin: 0;
}
 */

/* =============================================
   期待される効果
   ============================================= */
/* 
.policy-effects {
    margin-bottom: 80px;
}

.effect-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.effect-box {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    border-top: 5px solid #e60012;
}

.effect-number {
    font-size: 64px;
    font-weight: 900;
    color: #e60012;
    line-height: 1;
}

.effect-unit {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.effect-text {
    font-size: 16px;
    color: #666;
}
 */

/* =============================================
   支援制度
   ============================================= */
/* 
.policy-support {
    margin-bottom: 80px;
}

.support-list {
    background-color: #fff;
    padding: 50px;
    margin-bottom: 60px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.support-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.support-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5f5;
    border-radius: 50%;
    font-size: 28px;
    color: #e60012;
}

.support-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.support-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}
 */

/* =============================================
   CTAセクション
   ============================================= */
/* 
.policy-cta {
    text-align: center;
    margin-bottom: 60px;
}

.policy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 60px;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.policy-cta-btn:hover {
    background-color: #cc0010;
}

.policy-cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.policy-cta-btn:hover i {
    transform: translateX(5px);
}
 */

/* =============================================
   CTAビジュアル版
   ============================================= */
/* 
.policy-cta-visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 80px;
}

.cta-bg-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 600px;
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
 */

/* =============================================
   レスポンシブ対応
   ============================================= */
/* 
@media screen and (max-width: 960px) {
    .vision-container {
        flex-direction: column;
    }
    
    .vision-img-small {
        width: 150px;
        height: 100px;
        bottom: -20px;
        left: -20px;
    }
    
    .policy-intro-visual {
        flex-direction: column;
    }
    
    .intro-illustration img {
        width: 100%;
        max-width: 400px;
    }
    
    .policy-section-title {
        flex-direction: column;
        align-items: center; 
        gap: 10px;
    }
    
    .title-number {
        font-size: 40px;
    }
    
    .title-text {
        font-size: 24px;
    }
    
    .pillar-cards {
        grid-template-columns: 1fr;
    }
    
    .measure-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .number-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .effect-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 760px) {
    .policy-detail-page {
        margin-top: 60px;
    }
    
    .policy-hero {
        height: 300px;
    }
    
    .policy-hero-title {
        font-size: 32px;
    }
    
    .policy-hero-subtitle {
        font-size: 16px;
    }
    
    .policy-vision {
        padding: 60px 0;
    }
    
    .vision-container {
        gap: 40px;
    }
    
    .vision-title {
        font-size: 28px;
    }
    
    .vision-description {
        font-size: 16px;
    }
    
    .vision-img-small {
        display: none;
    }
    
    .policy-detail-content {
        padding: 60px 0;
    }
    
    .policy-intro-box {
        padding: 30px 20px;
    }
    
    .policy-intro-visual {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .intro-illustration img {
        width: 100%;
    }
    
    .policy-intro-title {
        font-size: 24px;
    }
    
    .policy-intro-text {
        font-size: 16px;
    }
    
    .policy-section-title {
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .title-number {
        font-size: 32px;
    }
    
    .title-text {
        font-size: 20px;
    }
    
    .policy-section-title::after {
        width: 60px;
    }
    
    .pillar-image {
        height: 200px;
    }
    
    .pillar-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        left: 15px;
    }
    
    .pillar-content {
        padding: 20px;
    }
    
    .pillar-title {
        font-size: 20px;
    }
    
    .measure-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .policy-infographic {
        padding: 30px 20px;
    }
    
    .number-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .number-card {
        padding: 20px;
    }
    
    .number-value {
        font-size: 36px;
    }
    
    .support-list {
        padding: 30px 20px;
    }
    
    .support-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-bg-image {
        height: 300px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .policy-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .policy-hero-title {
        font-size: 28px;
    }
    
    .policy-hero-subtitle {
        font-size: 14px;
    }
    
    .vision-title {
        font-size: 24px;
    }
    
    .title-number {
        font-size: 28px;
    }
    
    .title-text {
        font-size: 18px;
    }
}
 */






/* =============================================
   子育て・教育ページ専用スタイル
   ============================================= */

/* 支援制度ビジュアルグリッド */
/* 
.support-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-visual-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;

    transition: transform 0.3s ease;
}

.support-visual-card:hover {

}

.support-visual-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.support-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-visual-content {
    padding: 30px;
}

.support-visual-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.support-visual-content h3 i {
    color: #4ECDC4;
    margin-right: 10px;
}

.support-visual-content ul {
    list-style: none;
    padding: 0;
}

.support-visual-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.support-visual-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
}

.policy-timeline {
    margin: 80px 0;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4ECDC4, #FFB6C1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #4ECDC4;
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    flex: 1;
    text-align: right;
    padding-right: 60px;
    font-size: 24px;
    font-weight: 900;
    color: #4ECDC4;
}

.timeline-content {
    flex: 1;
    padding-left: 60px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.timeline-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}


@media screen and (max-width: 960px) {
    .support-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-year {
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .timeline-content {
        padding-left: 0;
    }
}

@media screen and (max-width: 760px) {
    .support-visual-image {
        height: 150px;
    }
    
    .support-visual-content {
        padding: 20px;
    }
    
    .timeline-container {
        padding: 20px 0;
    }
    
    .timeline-item {
        padding-left: 40px;
        margin-bottom: 40px;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: 15px;
        width: 15px;
        height: 15px;
    }
}
 */

/* =============================================
   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;
}






/* =============================================
   ブログ記事のタグ
   ============================================= */
/* サブタイトル */
.post-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    color: #005BAC;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #005BAC;
}

/* 画像ブロック */
.post-image {
    margin: 40px 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* キャプション */
.post-image figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
}

/* 締めの言葉 */
.post-closing {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    color: #005BAC;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .post-subtitle {
        font-size: 1.1rem;
    }
    
    .post-image {
        margin: 30px 0;
    }
    
    .post-image figcaption {
        font-size: 0.85rem;
    }
}



/* 画像2枚並び */
.post-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 40px 0 10px;
}

.post-image-grid .post-image {
    margin: 0;
}

/* グリッド下のキャプション */
.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 40px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .post-image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* 番号付きリスト */
.process-list {
    background: #f8f9fa;
    padding: 25px 25px 25px 45px;
    margin: 30px 0;
    border-left: 4px solid #005BAC;
}

.process-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.process-list li:last-child {
    margin-bottom: 0;
}

/* 議論トピックス */
.discussion-topics {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.discussion-topics h4 {
    color: #005BAC;
    font-size: 1rem;
    margin: 20px 0 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.discussion-topics h4:first-child {
    margin-top: 0;
}

.discussion-topics p {
    margin: 0 0 15px;
    padding-left: 15px;
    font-size: 0.95rem;
}

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


/* 情報ボックス */
.info-box {
    background: #f0f7fc;
    border-left: 4px solid #005BAC;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: #005BAC;
    font-size: 1rem;
    margin: 0 0 15px 0;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-box li:last-child {
    margin-bottom: 0;
}


/* 視察リスト */
.visit-list {
    background: #f8f9fa;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #005BAC;
}

.visit-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.visit-list li:last-child {
    margin-bottom: 0;
}