/*
Theme Name:     INAGAオリジナルテーマ
*/



/* =======================
   初期化・共通
======================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: sans-serif;
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =======================
   ヘッダー全体
======================= */

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* =======================
   ロゴ（左）
======================= */
.header-left h1 {
    font-size: 24px;
    font-weight: bold;
}

.header-left .accent {
    color: #d9731a;
}

/* =======================
   中央：ご相談と電話
======================= */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.center-left {
    font-size: 14px;
}

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

.center-right .tel {
    font-size: 18px;
    font-weight: bold;
    color: #d9731a;
}

.center-right .time {
    font-size: 13px;
}

.phone-icon {
    margin-right: 5px;
}

/* =======================
   ナビゲーション（右）
======================= */
.nav ul {
    display: flex;
    list-style: none;
    gap: 16px;
}

.nav a {
    font-weight: bold;
}

/* =======================
   ハンバーガー用
======================= */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* =======================
   レスポンシブ（スマホ対応）
======================= */
@media screen and (max-width: 768px) {
    .header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .header-left,
    .header-center,
    .header-right {
        flex: 1;
        min-width: fit-content;
    }

    .header-left h1 {
        font-size: 18px;
    }

    .header-center {
        display: none;
    }

    .center-right .tel {
        font-size: 16px;
        font-weight: bold;
        color: #d9731a;
    }

    .center-right .time {
        font-size: 12px;
    }

    .header-right {
        display: flex;
        justify-content: flex-end;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        border: 1px solid #ccc;
        width: 200px;
        padding: 10px;
        z-index: 10;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .nav-toggle:checked+.hamburger+.nav {
        display: block;
    }
}

.site-footer {
    background-color: #e66310;
    /* オレンジ背景 */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-family: sans-serif;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 100px;
    }
}

.footer-logo {
    width: 250px;
    margin: 0 auto 30px;
}

.footer-logo img {
    width: 100%;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-nav li {
    margin: 0 10px;
}

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

.footer-nav a:hover {
    opacity: 0.8;
}



/*******************************
************* 下層ページ 
*******************************/


.section-title-area {
    background-image: url('/wp-content/themes/inaga/images/page/bg-line.png');
    /* 斜線画像をここに指定 */
    background-repeat: no-repeat;
    background-size: auto;
    height: 140px;
    text-align: center;
    position: relative;
}

.section-title-area h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

@media screen and (max-width: 768px) {
    .section-title-area h2 {
        font-size: 30px;
        width: 100%;
    }
}

.section-heading {
    text-align: center;
    margin: 100px 0 40px;
}

.section-heading .sub-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-heading .main-title {
    font-size: 24px;
    font-weight: 800;
}


/* セクション全体 */
.flow-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: sans-serif;
}

.flow-section h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
}

.flow-subtitle {
    color: #E7670F;
    font-size: 14px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* グリッド配置 */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* 各アイテム */
.flow-item {
    text-align: center;
}

.flow-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.flow-number {
    position: relative;
    background: #E7670F;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    margin: 0 auto -20px;
}

.flow-item h3 {
    font-size: 20px;
    color: #E7670F;
    margin-bottom: 10px;
}

.flow-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.flow-item {
    position: relative;
}

/* デフォルトの右矢印 */
.flow-item::after {
    content: '▶';
    position: absolute;
    top: 43%;
    right: -25px;
    transform: translateY(-50%);
    color: #E7670F;
    font-size: 20px;
}

/* 3の倍数（3番・6番…）には矢印を非表示 */
.flow-item:nth-child(3n)::after {
    display: none;
}

.flow-item:last-child::after {
    display: none;
}

/* スマホでは矢印自体を非表示に（または変更） */
@media screen and (max-width: 640px) {
    .flow-item::after {
        display: none;
    }
}


.cta-banner {
    background: #e66410;
    position: relative;
    padding: 40px 20px 50px;
    text-align: center;
    color: #fff;
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #e66410;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.cta-badge {
    background: #fff;
    color: #e66410;
    font-weight: bold;
    font-size: 50px;
    padding: 30px;
    border-radius: 50%;
    transform: rotate(-20deg);
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-message p {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
}

.cta-message .highlight {
    color: #ff0;
    font-size: 50px;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.cta-buttons img {
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .cta-badge {
        font-size: 20px;
        width: 75px;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-message p {
        font-size: 20px;
    }

    .cta-message .highlight {
        font-size: 20px;
    }
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-tel {
    background: #e66410;
}

.btn-mail {
    background: #003bbb;
}

.btn-line {
    background: #06c755;
}

@media screen and (max-width: 768px) {
    .btn {
        width: 200px;
    }

}


.icon img {
    height: 20px;
    width: auto;
}

.arrow {
    margin-left: 4px;
}

.web-banner {
    margin: 50px 0;
}

.web-banner__inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}

.web-banner__image {
    width: 100%;
}

.web-banner__image img {
    width: 100%;
}


/* セクション全体 */
.pack-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 20px 100px;
    font-family: sans-serif;
    background: #fff;
}

.pack-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.pack-section .pack-desc {
    text-align: center;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* グリッド */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 各パックボックス */
.pack-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pack-box h3.pack-title {
    background: #E7670F;
    color: #fff;
    font-size: 28px;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 15px -20px;
    text-align: center;
}

.pack-box img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.pack-box p {
    margin-bottom: 10px;
}

.pack-box .bold {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.pack-label {
    display: inline-block;
    background: #E7670F;
    color: #fff;
    padding: 8px 16px;
    /* border-radius: 4px; */
    margin-right: 8px;
    font-size: 20px;
}

.pack-price {
    font-size: 40px;
    font-weight: bold;
    color: #e60012;
    margin-top: 10px;
    text-align: center;
}

.pack-price span {
    font-size: 24px;
}

/* 注意書き */
.pack-note {
    font-size: 13px;
    color: #666;
    text-align: left;
    margin-top: 40px;
    line-height: 1.6;
}



@media screen and (max-width: 768px) {
    .pack-section {
        padding: 30px 15px;
    }

    .pack-section h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .pack-box h3.pack-title {
        font-size: 18px;
    }

    .pack-section .pack-desc {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 30px;
    }

    .pack-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pack-box {
        width: 100%;
        border-radius: 10px;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .pack-box h3 {
        font-size: 16px;
        padding: 10px 0;
    }

    .pack-box img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .pack-box p {
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .pack-price {
        font-size: 30px;
        font-weight: bold;
        color: red;
        text-align: center;
        margin-top: 10px;
    }

    .pack-label {
        font-size: 16px;
    }
}

.area {
    max-width: 850px;
    width: 100%;
    margin: 100px auto;
    padding: 0 24px;
}

.area img {
    width: 100%;
}


.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: sans-serif;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {

    .faq-section h2 {
        font-size: 28px;
    }
}

.faq-subtitle {
    color: #E7670F;
    font-size: 14px;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 非表示チェックボックス */
.faq-item input[type="checkbox"] {
    display: none;
}

/* ラベル（質問） */
.faq-label {
    display: block;
    background: #0044cc;
    color: white;
    padding: 15px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.faq-label::after {
    content: '▼';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

/* 開いたときに矢印を回転 */
.faq-item input[type="checkbox"]:checked+.faq-label::after {
    transform: rotate(180deg);
}

/* 回答エリア */
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    color: #333;
    font-size: 14px;
    text-align: left;
    padding: 0 15px;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* チェックされたら表示 */
.faq-item input[type="checkbox"]:checked+.faq-label+.faq-content {
    max-height: 300px;
    /* 適宜調整可 */
    padding: 15px;
}


.service-list-section {
    text-align: center;
    padding: 60px 20px 100px;
}

.service-list-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.service-list-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 2px solid #f58c35;
    border-radius: 30px;
    color: #f58c35;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    width: 200px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #f58c35;
    color: #fff;
}

.service-btn .arrow {
    margin-left: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-list-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .service-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}


.breadcrumb {
    font-size: 14px;
    color: #E7670F;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 0;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0 24px;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;

}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 6px;
    color: black;
    font-size: 16px;
}

.breadcrumb a {
    color: #E7670F;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-icon {
    font-size: 16px;
}