@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* ===== カラー変数 ===== */
:root {
    --main-color: #FA8052;
    --sub-color: #fac889;
    --main-color-dark: #e8704a;
    --main-color-light: #ffab8a;
    --text-color: #333;
    --gray-light: #f9f9f9;
    --gray-border: #C6C6C6;
    --white: #fff;
}

/* ===== ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white) !important;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--main-color);
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style-position: inside;
    margin-bottom: 15px;
}

/* ===== フォント設定 ===== */
* {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.single * {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.fa {
    font: normal normal normal 14px / 1 FontAwesome !important;
}

/* ===== ヘッダー ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.header-in.wrap {
    width: auto;
}

.header-container {
    background-color: transparent;
}

.logo {
    font-size: 15px;
    line-height: 1.4;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 90px;
    height: auto !important;
}

#header h1 {
    font-size: 15px;
}

/* ===== ナビゲーション ===== */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    position: relative;
    font-size: 15px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-color);
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
}

.nav-link.active {
    color: var(--main-color);
}

.btn-contact {
    background-color: #E8394A;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin-left: 20px;
}

.btn-contact:hover {
    background-color: #d12c3f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* モバイルナビゲーション */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    color: var(--text-color) !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding-top: 70px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }
    
    .nav-link:after {
        left: 0;
        transform: translateX(0);
    }
    
    .nav-link:hover:after {
        width: 30%;
    }
    
    .btn-contact {
        margin: 15px 20px;
        text-align: center;
        display: block;
    }
    
    .logo-img {
        width: 70px;
        height: auto !important;
    }
}

/* ===== ヒーローセクション ===== */
.hero {
    position: relative;
    background-image: none;
    height: 650px;
    width: 100%;
    overflow: hidden;
    padding-top: 160px;
}

.fv-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero .container {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2%;
}

.fv-catch {
    width: 550px;
    margin-bottom: 40px;
}

.hero-title {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 800px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    max-width: 700px;
    padding: 20px 40px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: linear-gradient(to right, var(--main-color), var(--sub-color));
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(250, 128, 82, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(250, 128, 82, 0.4);
    background: linear-gradient(to right, var(--main-color-dark), var(--sub-color));
    color: white;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(250, 128, 82, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.btn-primary:hover::after {
    left: 130%;
}

/* ===== セクション共通 ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.35;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--main-color);
}

/* ===== 問題点セクション ===== */
.problems {
    padding: 80px 0 0 0;
    background-color: #FAFAF3;
}

.problems-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
}

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

.problem-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-icon {
    width: 100%;
    position: relative;
    margin-right: 0;
    text-align: center;
}

.problem-icon img {
    width: 80%;
}

.problem-text {
    padding: 0 1rem;
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-box {
    position: relative;
    padding: 30px 20px 40px;
    background-color: var(--main-color);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    color: white;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.solution-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: bold;
}

/* ===== 特徴セクション ===== */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #FAFAF3;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gray-border);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.08rem;
    margin-bottom: 4px;
}

.feature-text {
    color: var(--text-color);
}

.green {
    font-weight: bold;
	color: var(--main-color);
}

/* ===== メリットセクション ===== */
.benefits {
    padding: 80px 0;
    background-color: #FAFAF3;
}

.benefits .info-box {
    background-color: transparent;
    margin-bottom: 32px;
}

.benefits .info-box p {
    color: var(--text-color);
}

.benefits .section-title {
    margin-bottom: 32px;
}

.benefits-img {
    max-width: 1000px;
    margin: 0 auto;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.benefits-img img {
    width: 100%;
    filter: sepia(10%) saturate(120%) brightness(105%) contrast(95%);
}

.center-text {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.center-text h3 {
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.7rem;
    line-height: 1.5;
}

.benefits-img02 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    text-align: center;
    border: 2px solid var(--gray-border);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--main-color);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--main-color);
    line-height: 1.4;
    font-weight: 600;
}

.benefit-text {
    color: #666;
}

/* ===== モデルケースセクション ===== */
.model-cases {
    padding: 80px 0;
    background-color: #FAFAF3;
    padding-top: 0;
}

.cases-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.case-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: calc(65% - 20px);
    min-width: 300px;
    margin: 0 auto;
}

.case-header {
    background-color: transparent;
    padding-bottom: 0;
    padding-top: 20px;
    padding-left: 30px;
    font-size: 20px;
}

.case-header-heading {
    color: #1E1E1E;
    font-weight: 600;
    letter-spacing: 0.05rem;
    line-height: 1.5;
}

.case-title {
    font-size: 1rem;
}

.case-subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
}

.case-content {
    padding: 25px;
    padding-top: 20px;
}

.case-content-layout {
    display: flex;
    gap: 25px;
}

.case-profile-image {
    flex-shrink: 0;
    width: 120px;
}

.case-profile-image img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.case-details {
    flex: 1;
}

.case-section {
    margin-bottom: 20px;
}

.case-section:last-child {
    margin-bottom: 8px;
}

.case-section-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--main-color);
    margin-bottom: 4px;
}

.case-text {
    color: #666;
    margin-bottom: 15px;
    margin-bottom: 0;
}

/* ===== 情報セクション ===== */
.info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    background-color: #FAFAF3;
    padding: 30px;
    border-radius: 10px;
    box-shadow: none;
    width: calc(33.333% - 20px);
    min-width: 300px;
    border: 1px solid #D9D9D9;
    margin-bottom: 24px;
}

.info-item h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    line-height: 1.35;
}

.info-item p {
    line-height: 1.5;
}

.info-img-wrap {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

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

.info-box h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.info-cta {
    text-align: center;
}

.info-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* ===== FAQセクション ===== */
.faq {
    padding: 80px 0;
    background-color: #FAFAF3;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: bold;
}

.faq-answer {
    color: #666;
}

/* アコーディオンスタイル */
.accordion-004 {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border: 1px solid #d0d0d0;
    margin-bottom: 16px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.home .accordion-004 summary {
    background-color: var(--white);
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after,
.accordion-004 summary::before {
    content: '' !important;
    transform: rotate(45deg) !important;
    width: 10px !important;
    height: 10px !important;
    margin-left: 15px !important;
    border-bottom: 3px solid #333333b3 !important;
    border-right: 3px solid #333333b3 !important;
    border-top: none !important;
    border-left: none !important;
    background: transparent !important;
    background-color: transparent !important;
    transition: transform 0.3s ease !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.accordion-004 summary::before {
    display: none !important;
}

.accordion-004.opening summary::after,
.accordion-004[data-open="true"] summary::after {
    transform: rotate(225deg) !important;
}

.accordion-004[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-004 summary:hover {
    background-color: #e9e9e9;
}

.accordion-004 > div {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.accordion-004 .detail-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease;
    background: white;
}

.accordion-004.opening .detail-content,
.accordion-004[data-open="true"] .detail-content {
    opacity: 1;
    padding: 16px;
}

.accordion-004 .detail-content > *:first-child,
.accordion-004 .detail-content > p:first-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.accordion-004 p {
    padding-top: 1rem;
}

.accordion-004 h4 {
    padding-left: 1.5rem;
    color: var(--main-color);
}

/* ===== CTAセクション ===== */
.cta {
    padding: 80px 0;
    background-color: #e9f7ef;
    text-align: center;
    position: relative;
    background: url(/wp-content/themes/cocoon-child-master/images/cta-bg.webp) no-repeat;
	background-size: cover;
}

.cta .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--main-color);
    border: 2px solid transparent;
}

.cta .btn-primary::after {
    content: "→";
    margin-left: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover::after {
    transform: translateX(5px);
}

.cta .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== フッター ===== */
.footer {
    margin-top: 0;
    background-color: var(--white);
    padding: 0 !important;
}

.footer-bottom {
    border-top: none;
    padding-top: 0;
}

.footer-bottom-content {
    display: flex;
    float: none !important;
    text-align: left !important;
    background-color: var(--white);
    padding: 40px 0;
    clear: both;
    overflow: hidden;
    width: 100% !important;
    display: block !important;
}

.footer-bottom-content *,
.footer-bottom-content *:before,
.footer-bottom-content *:after {
    float: none !important;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    clear: both;
    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    clear: both;
}

.footer .section-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--main-color);
}

.footer-contact {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.contact-button {
    display: inline-block;
    background-color: var(--main-color);
    color: white;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    text-align: center;
    width: 350px;
    max-width: 100%;
}

.contact-button:hover {
    background-color: var(--main-color-dark);
    transform: translateY(-2px);
}

.footer-nav-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    float: none !important;
}

.footer-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 12px;
}

.footer-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s;
}

.footer-link a:hover {
    color: var(--main-color);
    transition: 0.25s !important;
}

.footer-link a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    width: 100% !important;
    float: none !important;
}

.copyright {
    font-size: 12px;
    color: #999;
}

.source-org {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

#footer .logo-img {
    width: 150px;
}

/* ===== ユーティリティクラス ===== */
.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

.text-primary {
    color: var(--main-color);
}

.text-accent {
    color: #ff6b6b;
}

.bg-light {
    background-color: var(--gray-light);
}

.bg-primary {
    background-color: var(--main-color);
    color: var(--white);
}

.transition-all {
    transition: all 0.3s ease;
}

.link-hover {
    opacity: 0.8;
}

.feature-card, .benefit-item, .case-card, .info-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 共通レイアウト ===== */
.wrap {
    width: 100%;
}

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

.main {
    padding: 0;
}

.breadcrumb {
    padding-left: 0.5rem;
}

.sub-header-span {
    font-size: 15px;
}

.go-to-top-button {
    width: 60px;
    transition: 0.35s;
}

.go-to-top-button:hover {
    transform: translateY(-8px);
}
.go-to-top {
	bottom: 6px;
}
/* ===== レスポンシブ対応 ===== */
@media screen and (min-width: 834px) {
    .pc-none {
        display: none;
    }
}

@media screen and (max-width: 834px) {
    #container {
        padding: 0;
    }
    
    .sp-none {
        display: none;
    }
    
    main.main {
        padding: 0 !important;
    }
    
    .wp-singular .main-content {
        padding: 0;
        margin-top: 56px !important;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        font-size: 1.5rem;
    }

    .feature-card, .benefit-item, .case-card {
        width: 100%;
    }

    .case-card {
        min-width: 250px;
    }
    
    .footer-column {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-link a {
        padding-left: 0;
    }
	.footer-link a:before {
        content: none;
    }
    .footer-link a:hover {
        padding-left: 0;
    }
    
    .footer-links {
        padding-left: 0 !important;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        height: 500px;
    }
    
    .fv-img {
        height: 200px;
        top: 4%;
    }
    
    .problem-icon {
        display: none;
    }
    
    .problems-list {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .problem-item {
        border-radius: 100px;
        margin-bottom: 0;
    }
    
    .problems-container {
        padding-top: 0;
    }
    
    .solution-title {
        font-size: 1.5rem;
        line-height: 1.4;
        padding-bottom: 4px;
    }
    
    .solution-box {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .model-cases {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .case-card {
        width: 100%;
    }
    
    .case-content-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .benefits-img {
        height: 30vw;
        margin-bottom: 0;
    }
    
    .benefits-img img {
        transform: scale(1.5) translateX(-10%);
    }
    
    .center-text, .benefits-list {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .info-section, .faq {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .info-grid {
        width: 100%;
        margin-bottom: 48px;
    }
    
    .info-item {
        width: 100%;
        margin-bottom: 0;
    }
    
    .faq h3 {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .accordion-004 ul {
        padding-left: 30px;
        padding-right: 20px;
    }
    
    .info-cta h3 {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta {
        background-position: 40% 0%;
        background-size: 230vw;
        padding: 2rem;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .cta .container {
        padding: 0;
    }
    
    .btn-primary {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .center-text h3 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .footer-contact {
        flex: 0 0 35%;
        max-width: 35%;
        margin-bottom: 0;
    }
    
    .footer-nav-wrapper {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

@media screen and (min-width: 480px) {
    .footer-column {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding-top: 210px;
        height: 550px;
    }
    
    .btn-primary {
        font-size: 18px;
        padding: 12px 24px;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .center-text h3 {
        font-size: 1.3rem;
    }
    
    .solution-box {
        padding: 15px 10px 30px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .solution-title {
        font-size: 1.1rem;
    }
}

/* ===== このサイトについてページ ===== */
.sub-header {
    background-color: #f8f8f2;
    padding: 30px 0;
    text-align: center;
}

.sub-header-english {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
    margin-bottom: 2px;
}

.sub-header-title {
    color: var(--main-color);
    font-size: 24px;
    font-weight: normal;
}

.sub-header-section {
    text-align: center;
    background-color: #FAFAF3;
    padding: 1.5rem 0;
}

.main-content {
    margin: 80px auto;
    padding: 0 20px;
}

.slogan-container {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.slogan-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--main-color);
    width: 250px;
}

.site-description {
    max-width: 600px;
    margin-left: auto;
    line-height: 2;
    margin-left: 0;
}

.description-paragraph {
    margin-bottom: 25px;
}

.image-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 60px auto;
}

.image-box {
    width: 48%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.pt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.operator-info {
    text-align: center;
    margin: 80px auto;
    margin-bottom: 0;
    background-color: #FAFAF3;
    padding-top: 80px;
}

.operator-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.operator-details {
    background-color: #f0f0f0;
    width: 70%;
    height: 450px;
    margin: 0 auto;
    border-radius: 10px;
}

.outline-wrap {
    max-width: 1200px;
    margin: 0 auto;
    max-width: 1000px;
}

.company-content {
    padding-top: 80px;
}

.outline-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 80px;
    background-color: var(--white);
}

.outline-table th,
.outline-table td {
    border-bottom: 1px solid #d6d6d6;
    padding: 2rem;
    text-align: left;
    vertical-align: top;
    background-color: transparent;
}

.outline-table th {
    font-weight: normal;
    width: 20%;
}

.outline-table td {
    width: 80%;
}

.outline-p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 0;
}

.outline-ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.outline-li {
    margin-bottom: 5px;
}

.outline-pdf {
    text-decoration: none;
    color: #df5a5d;
    font-weight: bold;
}

.outline-pdf:hover {
    text-decoration: underline !important;
}

.company table:not(.has-border-color) :where(th, td) {
    border: none;
    border-bottom: 1px solid #d6d6d6;
}

table tr:nth-of-type(2n+1) {
    background-color: transparent;
}

.google-map iframe {
    width: 100%;
}

.google-map {
    margin-bottom: -10px;
}

.page-id-14545 table:not(.has-border-color) :where(th, td) {
    border: none;
}

.page-id-14545 ul {
    padding-left: 0;
    list-style-type: none;
}

.page-id-14545 li {
    line-height: 1.7;
}

/* ===== 理学療法士の役割ページ ===== */
.houday-top-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 80px;
}

.intro-title {
    width: 250px;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.65;
    color: var(--main-color);
}

.intro-section-inner {
    display: flex;
}

.intro-text {
    margin-bottom: 30px;
    line-height: 1.8;
}

.intro-images {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.intro-image {
    width: 48%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.reasons-section {
    width: 100%;
    margin-top: 80px;
    background-color: #f8f8f2;
    padding: 80px 0;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reasons-title {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.reason-item {
    display: flex;
    margin-bottom: 50px;
    align-items: top;
}

.reason-image {
    width: 40%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 40px;
    margin-top: 8px;
}

.reason-content {
    flex: 1;
}

.reason-number {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 500;
}

.reason-title {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.reason-text {
    margin-bottom: 15px;
    line-height: 1.8;
}

.reason-examples {
    background-color: var(--white);
    padding: 15px;
    padding-left: 20px;
    border-radius: 2px;
}

.example-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.example-list {
    list-style: none;
    margin-bottom: 0;
}

.example-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.example-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* ===== FAQページ ===== */
.faq-index {
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin: 25px 0 35px 0;
    padding: 20px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.faq-index-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--main-color);
    text-align: center;
}

.faq-index-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 12px;
}

.faq-index-list li {
    position: relative;
    padding: 0;
    margin: 0;
}

.faq-index-link {
    color: var(--text-color);
    background-color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-index-link:hover {
    color: var(--white);
    background-color: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(250, 128, 82, 0.2);
}

.faq-index-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(250, 128, 82, 0.1);
}

.faq-index-link::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.faq-index-link:hover::after {
    border-color: var(--white);
    right: 12px;
}

html {
    scroll-behavior: smooth;
}

.faq-section {
    scroll-margin-top: 20px;
}

.faq-section-title {
    color: var(--main-color);
    text-align: center;
    margin-bottom: 16px;
}

.faq-container {
    padding-top: 48px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-main-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container h3 {
    font-size: 18px;
}

.faq-section:not(:last-child) {
    margin-bottom: 40px;
}

.direct-answer {
    background-color: rgba(250, 128, 82, 0.08);
    font-weight: 600;
    border-radius: 4px;
    color: var(--text-color);
}

.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 15px 0;
}

.comparison-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    margin: 0;
}

.comparison-table tr:first-child {
    background-color: #f2f2f2;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.comparison-table th {
    font-weight: bold;
}

.comparison-table .col-item {
    width: 20%;
}

.comparison-table .col-type1 {
    width: 30%;
}

.comparison-table .col-type2 {
    width: 50%;
    word-wrap: break-word;
    word-break: normal;
}

.comparison-table td {
    word-wrap: break-word;
    word-break: normal;
}

.comparison-table td:nth-child(3) {
    max-width: 280px;
    white-space: normal;
}

.accordion-004 .table-scroll-container {
    padding: 0 1rem;
}

/* ===== プライバシーポリシーページ ===== */
.privacy-container {
    padding: 40px 20px;
}

.privacy-header {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid var(--main-color);
    padding-bottom: 20px;
}

.privacy-title {
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.privacy-section {
    padding-bottom: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section-title {
    font-size: 20px;
    color: var(--text-color);
    border-left: 5px solid var(--main-color);
    padding-left: 15px;
    margin: 30px 0 20px;
}

.privacy-paragraph {
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-list {
    list-style-type: none;
    padding-left: 20px;
}

.privacy-list-item {
    margin-bottom: 10px;
    position: relative;
}

.privacy-sublist {
    list-style-type: none;
    padding-left: 20px;
    margin: 10px 0;
}

.privacy-sublist-item {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.privacy-sublist-item:before {
    content: "-";
    color: var(--main-color);
    position: absolute;
    left: 0;
}

.privacy-emphasis {
    font-weight: bold;
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--main-color);
    margin: 25px 0 15px;
}

.privacy-address {
    margin: 15px 0;
    padding: 15px;
    background-color: #f5f5f5;
    border-left: 3px solid var(--main-color);
}

.privacy-note {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.privacy-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ===== お問い合わせページ ===== */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 40px;
}

.contact-p {
    text-align: center;
    margin-bottom: 40px;
}

.inquiry {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-family: 'Noto Sans JP', sans-serif;
}

.inquiry th,
.inquiry td {
    padding: 16px;
    border: 1px solid #e0e0e0;
}

.inquiry th {
    background-color: #f7f7f7;
    width: 25%;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
    position: relative;
}

.inquiry td {
    background-color: var(--white);
}

.haveto,
.any {
    display: inline-block;
    font-size: 11px;
    color: var(--white);
    border-radius: 3px;
    padding: 2px 6px;
    margin-right: 8px;
    line-height: 1.4;
}

.haveto {
    background: var(--main-color);
}

.any {
    background: #999;
}

.inquiry input[type="text"],
.inquiry input[type="tel"],
.inquiry input[type="email"],
.inquiry textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s;
}

.inquiry input[type="text"]:focus,
.inquiry input[type="tel"]:focus,
.inquiry input[type="email"]:focus,
.inquiry textarea:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 5px rgba(250, 128, 82, 0.3);
    outline: none;
}

.inquiry textarea {
    height: 150px;
    resize: vertical;
}

.inquiry ::placeholder {
    color: #aaa;
    font-size: 14px;
}

.contact-accept {
    text-align: center;
    margin: 20px 0;
}

.accept-check input[type="checkbox"] {
    position: relative;
    transform: scale(1.2);
    margin-right: 8px;
    cursor: pointer;
}

.accept-check .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-link {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s;
}

.privacy-link:hover {
    opacity: 0.8;
}

#formbtn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 15px;
    background: var(--main-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

#formbtn:hover {
    background: var(--main-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#formbtn:active {
    transform: translateY(0);
}

#formbtn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: translateY(-50%) rotate(45deg);
}

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

.wpcf7-response-output {
    padding: 15px !important;
    border-radius: 4px !important;
    margin: 20px 0 !important;
    font-size: 14px;
    text-align: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 128, 82, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(250, 128, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 128, 82, 0); }
}

.sent-animation {
    animation: pulse 2s infinite;
}

/* ===== アーカイブページ ===== */
.category.no-sidebar .content,
.date.no-sidebar .content,
.search.no-sidebar .content {
    max-width: 1200px;
    margin: 0 auto;
}

.category.no-sidebar #sidebar,
.date.no-sidebar #sidebar,
.search.no-sidebar #sidebar {
    display: inline-block;
}

.category.no-sidebar .content-in,
.date.no-sidebar .content-in,
.search.no-sidebar .content-in {
    display: flex;
}

.category.no-sidebar .content .main,
.date.no-sidebar .content .main,
.search.no-sidebar .content .main {
    flex: 1;
}

.category .archive-title,
.date .archive-title,
.search .archive-title {
    padding-left: 16px;
    color: var(--main-color);
}

.category .admin-pv,
.date .admin-pv,
.search .admin-pv {
    display: none;
}

.category #main,
.date #main,
.search #main {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.search.no-sidebar .content {
    padding-top: 80px;
}

.category-career-change.no-sidebar #sidebar {
    display: none;
}

/* ===== 転職コラムページ ===== */
.category-4.no-sidebar .content {
    max-width: none;
}

.category-4.category #main {
    padding: 0 !important;
}

.category-4 #content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.category-4 .breadcrumb-category {
    display: none;
}

.category-4 .category-content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding: 0;
    margin-bottom: 0;
}

.category-4 .pt-latest-articles {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FAFAF3;
}

.category-4 #archive-title {
    display: none;
}

.category-4 .ect-entry-card {
    max-width: 1200px;
    margin: 0 auto;
}

.category-4 .sbp-main-bottom {
    margin: 0;
    padding-bottom: 0.5rem;
}

.category-4 .cat-label {
    display: none;
}

.category-header {
    margin-bottom: 30px;
}

.eye-catch-wrap {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.eye-catch-image {
    width: 100%;
    height: auto;
    display: block;
}

.pt-career-intro {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.pt-career-tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.pt-career-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.pt-section-title {
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 1rem !important;
    margin-bottom: 25px;
    text-align: center;
}

.pt-section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--main-color);
}

.pt-section-title span {
    position: relative;
    z-index: 1;
}

.pt-pickup-articles {
    padding-top: 40px;
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.pt-pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.pt-pickup-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pt-pickup-item:hover {
    transform: translateY(-5px);
}

.pt-pickup-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.pt-pickup-thumb {
    overflow: hidden;
    height: 180px;
}

.pt-pickup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pt-pickup-item:hover .pt-pickup-thumb img {
    transform: scale(1.05);
}

.pt-pickup-content {
    padding: 15px;
}

.pt-pickup-title {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.4;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 0 !important;
}

.pt-pickup-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.category-4 .article h2 {
    background-color: transparent;
}

.pt-concerns-articles {
    margin-bottom: 50px;
}

.pt-concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pt-concern-item {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pt-concern-item:hover {
    transform: translateY(-5px);
}

.pt-concern-item a {
    display: flex;
    padding: 15px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.pt-concern-icon {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.pt-concern-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pt-concern-content {
    flex: 1;
}

.pt-concern-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
}

.pt-concern-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.category-4 #list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    margin-bottom: 12px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.category-4 #list .entry-card-wrap {
    margin: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
}

.entry-card-thumb-image {
    transition: 0.3s;
}

.category-4 #list .entry-card-wrap:hover .entry-card-thumb-image {
    transform: scale(1.2);
    transition: 0.3s;
}

.category-4 #list .entry-card-thumb {
    float: none;
    width: 100%;
    margin: 0;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.category-4 #list img.entry-card-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-4 #list .entry-card-wrap:hover img.entry-card-thumb-image {
    filter: brightness(0.95) saturate(1.05);
}

.category-4 #list .entry-card-content {
    padding: 20px;
    position: relative;
    margin-top: -10px;
    z-index: 2;
    background-color: var(--white);
    border-radius: 12px 12px 0 0;
    margin-left: 0;
}

.category-4 #list .cat-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background-color: rgba(255,255,255,0.85);
    color: var(--text-color);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-4 #list .post-date,
.category-4 #list .post-update {
    font-size: 14px;
}

.category-4 #list .admin-pv {
    display: none;
}

.category-4 .entry-card-info.e-card-info {
    font-size: 1rem;
}

.category-4 #list .entry-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: #222;
    padding-top: 0;
}

.category-4 #list .entry-card-snippet {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    height: 4.9em;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.category-4 #list .entry-card-meta {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.category-4 #list .entry-read {
    text-align: right;
    margin-top: 10px;
}

.category-4 #list .entry-read a {
    display: inline-block;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s;
}

.category-4 #list .entry-read a::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.category-4 #list .entry-read a:hover {
    color: var(--main-color);
}

.category-4 #list .entry-read a:hover::after {
    transform: translate(3px, -50%);
}

.category-4 .pagination-next {
    display: none;
}

.category-4 .pagination .current {
    background-color: var(--main-color);
    color: var(--white);
}

.category-tag-container {
    margin-bottom: 40px;
}

.category-tag-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.category-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tag-item {
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.category-tag-item:hover {
    background-color: #ebebeb;
}

.category-tag-item a {
    color: var(--text-color);
    text-decoration: none;
}

.tag-container {
    margin-bottom: 40px;
}

.tag-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-item {
    background-color: var(--white);
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}

.tag-item:hover {
    background-color: #f9f9f9;
}

.tag-item a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tag-item a:before {
    content: "🏷️";
    margin-right: 5px;
}

/* ===== 通常コラムページ ===== */
.page-id-21740 .content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.page-id-21740 .content-in {
    gap: 30px;
}

.page-id-21740.no-sidebar .content .main {
    flex: 1;
    min-width: 0;
    max-width: 70%;
}

.sidebar {
    flex: 0 0 30%;
    width: 25%;
}

.page-id-21740 #container {
    background-color: #FAFAF3;
}

.page-id-21740 ul {
    padding-left: 0;
}

.page-id-21740 .main {
    padding-left: 2rem;
    padding-bottom: 80px;
}

.page-numbers {
    background-color: var(--white);
}

.page-id-21740 .main,
.page-id-21740 .sidebar {
    background-color: transparent !important;
}

.sidebar h2, .sidebar h3 {
    background-color: transparent;
    margin-bottom: 1rem;
    padding-left: 0;
    padding-bottom: 6px;
    border-bottom: 2px dotted;
}

.column-left-content {
    width: 100%;
    display: grid;
    gap: 25px;
}

.grid-2column .column-left-content {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3column .column-left-content {
    grid-template-columns: repeat(3, 1fr);
}

.entry-wrap {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    box-sizing: border-box;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.entry-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    flex-shrink: 0;
    order: 1;
}

.post-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.entry-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    order: 2;
    margin-left: 0;
}

.entry-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}

.entry-cat {
    margin-right: 10px;
}

.entry-cat a {
    display: inline-block;
    color: var(--sub-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-meta {
    color: #777;
    font-size: 0.8rem;
}

.entry-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    width: 100%;
}

.entry-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.entry-title a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.entry-bottom-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.entry-content {
    flex-grow: 1;
}

.entry-content a {
    text-decoration: none;
    color: #555;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.page-id-21740 .entry-content p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    color: #555;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.entry-lead {
    margin-top: 10px;
    text-align: right;
}

.entry-lead a {
    display: none;
}

.entry-lead a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.comma {
    color: #999;
    margin: 0 2px;
}

.more-btn {
    display: none;
}

/* ===== シングルページ ===== */
.single.no-sidebar #sidebar {
    display: inline-block;
}

#sidebar .card-title {
    font-size: 14px;
}

.single .sns-share {
    display: none;
}

.single .entry-header {
    display: block;
}

.eye-catch-wrap {
    width: 100% !important;
    margin-bottom: 0;
}

.eye-catch {
    width: 100%;
}

.single .content-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding-left: 1rem;
}

.single.no-sidebar .content .main {
    flex: 1;
}

.single .content {
    background-color: #FAFAF3;
    padding-bottom: 60px;
}

.sns-follow {
    display: none;
}

.footer-meta {
    display: none;
}

.single #main {
    padding: 2rem;
}

.single .entry-content p {
    font-size: 16px;
}

.single .entry-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--main-color);
}

.single .breadcrumb {
    padding-left: 0;
}

/* シングルページの見出しスタイル（オレンジ系に変更） */

/* H2見出し: 左ストライプ + シンプル背景（アクセントなし） */
.single .article h2 {
    margin-bottom: 1rem;
    margin-top: 3rem;
    padding: 15px 25px;
    background-color: #fef9f5;
    color: #e8704a;
    border-left: 6px solid #FA8052;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
}

/* H3見出し: アイコン + ライン */
.single .article h3 {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding: 12px 0 12px 40px;
    color: #e8704a;
    font-weight: 600;
    border-left: none;
    position: relative;
    border-bottom: 2px dotted #fac889;
}

.single .article h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #FA8052;
    font-size: 14px;
}

.single .size-full {
    margin-bottom: 1.5rem;
}

.single ul {
    padding-left: 1rem;
}

.single li {
    font-size: 16px;
}

.single #content img {
    width: 100%;
}

.bct-reference-link a {
    font-size: 14px;
    color: var(--main-color);
    display: inline;
    color: #a8a8a8;
}

.single .article strong {
    font-weight: 700 !important;
}

.single .entry-content ul {
    border: 1px solid #888;
    padding: 0.6rem;
    list-style: none;
}

.single .entry-content ul li {
    position: relative;
    line-height: 1.5;
}

.single .entry-content ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.single .entry-content ul li::before {
    content: "・";
    color: var(--sub-color);
}

.blogcard-thumbnail p:empty,
.internal-blogcard-thumbnail p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.blogcard-thumbnail p,
.internal-blogcard-thumbnail p {
    margin-bottom: 0;
}

.wp-singular .content {
    margin-top: 0;
}

.wp-singular .main-content {
    padding: 0;
}

/* ===== モバイル対応レスポンシブ ===== */
@media screen and (max-width: 834px) {
    .sub-header-section {
        padding-top: 68px;
    }
}

@media screen and (max-width: 780px) {
    .slogan-container {
        padding-top: 40px;
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .image-container {
        display: block;
        margin-top: 20px;
    }
    
    .image-box {
        width: 100%;
        height: auto;
    }
    
    .pt-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .slogan-title {
        margin-bottom: 28px;
    }
    
    .pt-pickup-articles {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    
    .pt-latest-articles {
        padding-top: 30px !important;
    }
    
    .category-4 .ect-entry-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-links {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .outline-wrap {
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .company tr {
        display: flex;
        flex-direction: column;
    }
    
    .company th,
    .company td {
        width: 100%;
        font-size: 1rem;
    }
    
    .company th {
        border-bottom: none !important;
        padding-bottom: 0;
    }
    
    .company td {
        margin-top: -20px;
    }
    
    .faq-container {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 40px;
    }
    
    .faq-main-title {
        margin-bottom: 40px;
    }
    
    .accordion-004 .table-scroll-container {
        padding: 0 0.5rem;
    }
    
    .comparison-table {
        min-width: 450px;
    }
    
    .comparison-table td:nth-child(3) {
        max-width: 150px;
    }
    
    .faq-index {
        padding: 15px;
    }
    
    .faq-index-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .faq-index-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .faq-index-link {
        padding: 10px;
        font-size: 14px;
    }
    
    .privacy-container {
        padding: 20px 15px;
    }
    
    .privacy-title {
        font-size: 24px;
    }
    
    .privacy-section-title {
        font-size: 18px;
    }
    
    .contact-p {
        text-align: left;
    }
    
    .inquiry th,
    .inquiry td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .inquiry th {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    #formbtn {
        max-width: 100%;
    }
    
    .category.no-sidebar #sidebar,
    .date.no-sidebar #sidebar,
    .search.no-sidebar #sidebar {
        flex: 1;
    }
    
    .archive.no-sidebar #sidebar {
        flex: 1;
    }
    
    .pt-pickup-grid,
    .pt-concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .pt-section-title {
        font-size: 1.4rem;
    }
    
    .pt-career-tagline {
        font-size: 1.3rem;
    }
    
    .intro-section-inner {
        flex-direction: column;
    }
    
    .intro-title {
        margin-left: -10px;
    }
    
    .reason-item {
        flex-direction: column;
    }
    
    .reason-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .reasons-title {
        font-size: 20px;
    }
    
    .page-id-21740.no-sidebar .content .main {
        flex: 1 0 100%;
        max-width: 100%;
    }
    
    .page-id-21740 .sidebar {
        flex: 1 0 100%;
        width: 100%;
    }
    
    .page-id-21740 .main {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .page-id-21740 .sub-header-section {
        padding: 0;
    }
    
    .grid-2column .column-left-content,
    .grid-3column .column-left-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-thumbnail {
        height: 160px;
    }
    
    .single #content-in {
        gap: 0;
    }
    
    .single .sidebar {
        margin-top: 0;
        margin-bottom: 0;
        flex: 1;
    }
    
    .single .content-in {
        padding-left: 0;
    }
    
    .single #main {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }
    
    .single .content {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .single .entry-content p {
        font-size: 15px;
        line-height: 1.75;
        font-weight: 400;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .faq-index-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pt-pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-section {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .intro-images {
        margin-top: 0;
    }
    
    .category-4 #list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .category-4 #list .entry-card-snippet {
        -webkit-line-clamp: 4;
        height: 6.6em;
    }
}

@media screen and (max-width: 991px) {
    .grid-2column .column-left-content,
    .grid-3column .column-left-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-thumbnail {
        height: 160px;
    }
}

@media screen and (max-width: 767px) {
    .page-id-14545 table, 
    .page-id-14545 thead, 
    .page-id-14545 tbody, 
    .page-id-14545 th, 
    .page-id-14545 td, 
    .page-id-14545 tr {
        display: block;
        width: 100%;
    }
    
    .page-id-14545 tr {
        margin-bottom: 0 !important;
        border-bottom: none !important;
        margin-bottom: 15px;
        border: 1px solid #ccc;
    }
    
    .page-id-14545 td {
        border-bottom: none;
        border-top: none;
    }
    
    .page-id-14545 .outline-table th {
        border-bottom: none !important;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .page-id-14545 .outline-table td {
        padding-top: 8px;
        padding-bottom: 1.5rem;
    }
    
    .outline-table {
        border-bottom: 1px solid #d6d6d6 !important;
    }
    
    .image-container {
        margin-bottom: 0 !important;
    }
    
    .operator-info {
        margin-top: 0;
        padding-top: 48px;
        margin-bottom: 0 !important;
    }
    
    .operator-title {
        margin-bottom: 12px;
    }
    
    .page-id-14545 table th, 
    .page-id-14545 table td {
        font-size: 15px;
    }
    
    .page-id-14545 iframe {
        height: 400px;
    }
    
    .grid-2column .column-left-content,
    .grid-3column .column-left-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-thumbnail {
        height: 180px;
    }
    
    .entry-title {
        font-size: 1.1rem;
    }
    
    .single .entry-title {
        padding-left: 0;
        padding-right: 0;
    }
    
    .category-4 #list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-4 #list .entry-card-thumb {
        height: 180px;
    }
    
    .category-4 #list .entry-card-content {
        margin-top: -50px;
    }
    
    .category-4 #list .entry-card-snippet {
        -webkit-line-clamp: 5;
        height: 8.5em;
    }
}

@media screen and (max-width: 576px) {
    .post-thumbnail {
        height: 160px;
    }
    
    .entry-title {
        font-size: 1rem;
    }
    
    .entry-lead a {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .entry-content p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .houday-top-wrap {
        padding-top: 40px;
    }
    
    .sp-none-houday {
        display: none;
    }
    
    .intro-images {
        flex-direction: column;
    }
    
    .intro-image {
        width: 100%;
        margin-bottom: 15px;
        height: auto;
    }
    
    .intro-title, .reasons-title {
        font-size: 18px;
    }
    
    .reasons-section {
        margin-top: 48px;
        padding-top: 48px;
        padding-bottom: 20px;
    }
    
    .reason-title {
        font-size: 16px;
    }
    
    .reason-image {
        height: 150px;
    }
    
    .example-list {
        padding-left: 0;
    }
    
    .intro-text, .reason-text {
        font-size: 14px;
    }
    
    .category-4 #list .entry-card-thumb {
        height: 160px;
    }
    
    .category-4 #list .entry-card-title {
        font-size: 16px;
    }
}

@media print {
    .faq-index {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .faq-index-list {
        display: block;
    }
    
    .faq-index-list li {
        margin-bottom: 8px;
    }
    
    .faq-index-link {
        border: 1px solid #ddd;
        padding: 5px 10px;
    }
    
    html {
        scroll-behavior: auto;
    }
}
/* ===================
 * 404-サンクスページ
 * ==================*/
.thanks-content {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.thanks-p01 {
	color: var(--main-color);
}
.thanks-p02 {
	margin-bottom: 20px;
}
.thanks-bottom {
margin-bottom: 3rem;	
}
.top-btn {
	display: flex;
	justify-content: center;
}
.top-btn-a {
	display: block;
	padding: 0.5rem 3rem;
	background-color: var(--main-color);
	color: #fff;
	max-width: 300px;
	border-radius: 50px;
}
.p404-content {
	text-align: center;	
	padding-top: 80px;
	padding-bottom: 80px;
}
.p404-p01 {
color: var(--main-color);
	font-size: 2rem;
	margin-bottom: 1rem!important;
}
@media screen and (max-width: 758px) {
	.thanks-content {
		padding-left: 20px;
		padding-right: 20px;
	}
	.thanks-p01 {
		font-size: 22px;
	}
	.p404-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}