@charset "UTF-8";

body {
    background-color: #f0eee5;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* トップページ用の背景画像 */
body.homepage {
    position: relative;
}

body.homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mv-bg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    z-index: -1;
    pointer-events: none;
}

/* サブページ用の背景色 */
body.subpage {
    position: relative;
}

body.subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 645px;
    background-color: #defcff;
    z-index: -1;
}

/* メインコンテンツ幅設定 */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションごとに適用できる幅設定 */
.content-width {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    height: 91px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* スクロール時のヘッダースタイル */
header.scrolled nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
    margin-left: 20px;
}

.logo img {
    max-width: 162px;
    height: auto;
}

nav {
    background-color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 70px 0 90px;
    border-bottom-left-radius: 50px;
    transition: box-shadow 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* 1024px以下の画面でcontact-rightの幅を調整 */
@media (max-width: 1024px) {
    .contact-right {
        min-width: 480px;
        padding: 30px;
    }

    .contact-phone {
        font-size: 38px;
    }

    .phone-icon {
        height: 38px;
    }
}

/* PC時のホバー効果 */
@media (min-width: 769px) {
    nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #32a028;
        transition: width 0.3s ease;
    }
    
    nav a:hover::after {
        width: 80%;
    }
}

/* メインビジュアル */
.main-visual {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-message {
    width: 498px;
    max-width: 100%;
    height: auto;
}

.mv-lifeplan {
    width: 200px;
    max-width: 100%;
    height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .mv-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .mv-top-block {
        padding-top: 80px;
    }
    
    .mv-bottom-block {
        margin-top: 40px;
        padding-bottom: 60px;
    }
    
    .mv-container {
        flex-direction: column;
    }
    
    .mv-top-block .mv-left {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .mv-left-inner {
        flex-direction: column;
    }
    
    .mv-copy-column {
        width: 100%;
    }
    
    .mv-copy-text {
        width: auto;
        max-width: 250px;
    }
    
    .mv-english-text {
        font-size: 20px;
    }
    
    .mv-family-column {
        display: flex;
        justify-content: center;
    }
    
    .mv-family-image {
        width: auto;
        max-width: 100px;
    }
    
    .mv-top-block .mv-right {
        width: 100%;
        border-radius: 20px;
        padding: 30px 20px;
    }
    
    .mv-top-block .mv-right::after {
        display: none;
    }
    
    .mv-tagline {
        font-size: 18px;
    }
    
    .mv-company-name {
        width: auto;
        max-width: 180px;
    }
    
    /* 下ブロックレスポンシブ */
    .mv-bottom-block .mv-left {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }
    
    .mv-bottom-block .mv-left-inner {
        flex-direction: column;
    }
    
    .mv-text-column {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .mv-headline {
        font-size: 20px;
    }
    
    .mv-description {
        font-size: 15px;
    }
    
    .mv-bottom-block .mv-right {
        width: 100%;
        border-radius: 20px;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mv-home-family {
        width: auto;
        max-width: 140px;
        margin: 0 auto;
    }
    
    .mv-bottom-block .mv-right::after {
        display: none;
    }
    
    .mv-info-link {
        font-size: 20px;
    }
    
    .mv-info-label {
        font-size: 14px;
    }
}

/* Our Concept セクション */
.our-concept {
    position: relative;
    margin-top: 50px;
}

.concept-bg {
    background-color: #ffffff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-right: 56px;
    padding: 90px 0 147px;
}

/* セクションリード部分 */
.section-lead {
    display: flex;
    gap: 76px;
    margin-bottom: 37px;
}

.section-title {
    flex-shrink: 0;
    white-space: nowrap;
}

.title-en {
    font-size: 55px;
    color: #32a028;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}

.title-ja {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    margin: 10px 0 0 0;
}

.section-lead-content {
    flex-grow: 1;
}

.lead-heading {
    font-size: 30px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.lead-text {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0;
}

/* 2つ目の説明リード */
.concept-second-lead {
    margin-top: 60px;
}

/* 1つ目の説明本文 */
.concept-explanation {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
    justify-content: flex-end;
}

.explanation-image {
    flex-shrink: 0;
}

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

.explanation-text {
    width: 458px;
    flex-shrink: 0;
    border-top: 4px dotted #e6c8b4;
    border-bottom: 4px dotted #e6c8b4;
    padding: 32px 20px;
}

.explanation-text p {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
}

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

/* 2つ目の説明本文（順序逆） */
.concept-explanation-reverse {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
    justify-content: flex-start;
}

.concept-explanation-reverse .explanation-text {
    order: 1;
}

.concept-explanation-reverse .explanation-image {
    order: 2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-visual {
        padding: 60px 0;
    }

    .mv-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mv-lifeplan {
        order: 1;
        width: 200px;
    }

    .mv-message {
        order: 2;
        width: 100%;
        max-width: 500px;
    }

    .our-concept {
        margin-top: 30px;
    }
    
    .concept-bg {
        margin-right: 20px;
        border-radius: 20px;
        padding: 60px 0 80px;
    }
    
    .section-lead {
        flex-direction: column;
        gap: 30px;
    }
    
    .title-en {
        font-size: 40px;
    }
    
    .title-ja {
        font-size: 18px;
    }
    
    .lead-heading {
        font-size: 24px;
    }
    
    .lead-text {
        font-size: 14px;
    }
    
    .concept-second-lead {
        margin-top: 40px;
    }
    
    .concept-explanation {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .explanation-text {
        width: 100%;
        padding: 25px 15px;
    }
    
    .explanation-text p {
        font-size: 14px;
    }
    
    .concept-explanation-reverse {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .concept-explanation-reverse .explanation-text {
        order: 1;
    }
    
    .concept-explanation-reverse .explanation-image {
        order: 2;
    }
}

/* Story セクション */
.story-section {
    margin-top: 100px;
    position: relative;
}

.story-bg-wrapper {
    background-image: url('../images/story-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 300px;
}

.story-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.story-title-en {
    font-size: 55px;
    color: #32a028;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

.story-title-ja {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    margin-top: 10px;
}

.story-description {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0;
    max-width: 450px;
}

/* ストーリーアイテム */
.story-items {
    margin-top: 160px;
}

.story-items-wrapper {
    display: flex;
    gap: 60px;
    position: relative;
}

.story-column {
    width: 466px;
    flex-shrink: 0;
    position: relative;
}

.story-column-left {
    padding-right: 30px;
}

.story-column-left .story-item-content {
    justify-content: flex-end;
}

.story-column-right {
    padding-left: 30px;
}

/* ストーリーアイテム */
.story-item {
    position: relative;
    padding: 30px 0;
    min-height: 100px;
}

.story-item-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.story-item-image {
    flex-shrink: 0;
    width: 200px;
}

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

.story-item-text {
    width: 266px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
}

/* ストーリーコピー */
.story-copy {
    background-color: #e6c8b4;
    color: #ffffff;
    font-size: 22px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 15px 20px;
    margin: 0;
    border-radius: 15px;
    width: 266px;
    height: 150px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    position: relative;
}

/* 吹き出しの尻尾（直角三角形） */
.story-copy::before {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 37px; /* 150pxの1/4 = 37.5px */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #e6c8b4 transparent;
}

/* ストーリー名 */
.story-name {
    background-color: #32a028;
    color: #ffffff;
    font-size: 16px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 23px 40px 23px 20px;
    margin: 0;
    border-radius: 50px;
    width: 210px;
    box-sizing: border-box;
    position: relative;
}

/* ストーリー名の矢印アイコン */
.story-name::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url('../images/story-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ストーリー名のクリック可能スタイル */
.story-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-clickable:hover {
    background-color: #2a8523;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(50, 160, 40, 0.3);
}

/* 左カラムのボーダー */
.story-column-left .story-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: -9999px;
    border-bottom: 3px dotted #808080;
}

/* 右カラムのボーダー */
.story-column-right .story-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30px;
    right: -9999px;
    border-bottom: 3px dotted #808080;
}

/* 最後のアイテムはボーダーなし */
.story-column-left .story-item:last-child::after,
.story-column-right .story-item:last-child::after {
    display: none;
}

/* START/GOALラベル */
.story-label {
    font-size: 24px;
    color: #e0cab0;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    padding: 44px 0;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    margin-left: -30px;
}

/* ラベルを右端まで伸ばす */
.story-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 9999px;
    bottom: 0;
    background-color: #ffffff;
}

.story-start {
    margin-bottom: 56px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.story-goal {
    margin-top: 56px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #333;
    transition: 0.3s;
}

.hamburger-menu span:nth-child(1) {
    top: 6px;
}

.hamburger-menu span:nth-child(2) {
    top: 14px;
}

.hamburger-menu span:nth-child(3) {
    bottom: 6px;
}

/* ハンバーガーメニューのアニメーション */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 14px;
}

/* メッセージセクション */
.message-section {
    background-color: #ffffff;
    padding-bottom: 230px;
}

/* 背景切り替え画像 */
.message-bg-transition {
    height: 270px;
    background-image: url('../images/message-bg-transition.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
}

.message-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 130px;
}

.message-text {
    flex: 1;
    font-size: 20px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Shippori Mincho", "Noto Serif JP", serif;
    font-weight: 500;
    line-height: 1.8;
}

.message-heading {
    font-size: 20px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Shippori Mincho", "Noto Serif JP", serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.message-lead {
    font-size: 20px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Shippori Mincho", "Noto Serif JP", serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.8;
}

.message-description {
    font-size: 20px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Shippori Mincho", "Noto Serif JP", serif;
    font-weight: 500;
    margin: 0;
    line-height: 1.8;
}

.message-image {
    flex-shrink: 0;
    width: 170px;
}

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

/* コンタクトセクション */

.contact-bg {
    padding: 57px 0 70px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.contact-left {
    flex: 1;
    padding-top: 0;
}

.contact-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-title-en {
    font-size: 55px;
    color: #32a028;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

.contact-title-ja {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    margin-top: 10px;
}

.contact-text {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: normal;
    margin: 0;
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f0eee5;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 30px 40px;
    position: relative;
    min-width: 520px;
}

/* 右カラムの背景を右端まで伸ばす */
.contact-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 9999px;
    bottom: 0;
    background-color: #f0eee5;
}

.contact-info {
    text-align: left;
}

.contact-phone {
    font-size: 42px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.phone-icon {
    width: auto;
    height: 42px;
    display: block;
    flex-shrink: 0;
}

.contact-hours {
    font-size: 14px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.5;
    white-space: nowrap;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link-text {
    font-size: 20px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #333;
}

.contact-arrow {
    color: #32a028;
    font-size: 16px;
}

.contact-button {
    display: inline-block;
    transition: opacity 0.3s;
}

.contact-button img {
    height: 28px;
    width: auto;
    display: block;
}

.contact-button:hover {
    opacity: 0.8;
}

/* お客様本位の業務運営セクション */
.customer-oriented-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.customer-oriented-title {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
}

.customer-oriented-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.customer-oriented-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #ffffff;
    border: 2px solid #32a028;
    border-radius: 50px;
    text-decoration: none;
    color: #32a028;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.customer-oriented-link:hover {
    background-color: #32a028;
    color: #ffffff;
}

.customer-oriented-link .link-text {
    display: inline-block;
}

.customer-oriented-link .link-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.customer-oriented-link:hover .link-arrow {
    transform: translateX(5px);
}

/* 取り扱い保険会社セクション */
.insurance-section {
    background-color: #ffffff;
    padding: 0 0 40px 0;
}

/* companyページでの保険会社セクション */
.page-template-page-company-php .insurance-section {
    padding: 40px 0 40px 0 !important;
}

.insurance-title {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.insurance-logo {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.insurance-logo:hover {
    opacity: 0.8;
}

/* Companyページ専用スタイル */
.company-section {
    margin-top: 100px;
    margin-bottom: 27px;
}

.company-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-lead-text {
    flex-grow: 1;
}

.company-lead-line {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0;
}

.company-lead-line:first-child {
    margin-bottom: 10px;
}

/* タイトル下の余白 */
.company-section .section-lead {
    margin-bottom: 88px;
}

/* Companyセクション下部のpadding調整 */
.company-section .concept-bg {
    padding-bottom: 27px;
}

/* 代表挨拶セクション */
.president-message {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
    position: relative;
}

.president-photo {
    width: calc(50% + (100vw - 1000px) / 2);
    margin-left: calc(-1 * (100vw - 1000px) / 2 - 20px);
    margin-right: 22px;
    position: relative;
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.president-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 22px;
    flex: 1;
}

.president-text p {
    margin: 0 0 20px 0;
}

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

/* 明るい未来セクション */
.bright-future {
    display: flex;
    gap: 44px;
    align-items: center;
    margin-top: 80px;
}

.bright-future-text {
    width: 546px;
    flex-shrink: 0;
}

.bright-future-heading {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.bright-future-heading:last-of-type {
    margin-bottom: 30px;
}

.bright-future-text p:not(.bright-future-heading) {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.bright-future-text p:last-child {
    margin-bottom: 0;
}

.bright-future-image {
    flex: 1;
}

.bright-future-image img {
    width: 100%;
    height: auto;
}

/* Missionセクション */
.mission-section {
    background-color: #ffffff;
    width: 100%;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mission-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

/* Missionリード部分 */
.mission-lead {
    text-align: center;
    margin-bottom: 50px;
}

.mission-lead-heading {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.mission-lead-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Mission本文部分 */
.mission-body {
    max-width: 927px;
    margin: 0 auto;
    border-top: 4px dotted #e6c8b4;
    border-bottom: 4px dotted #e6c8b4;
    padding: 32px 20px;
    position: relative;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mission-list li {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.mission-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #32a028;
}

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

/* Missionロゴ */
.mission-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.mission-logo img {
    width: 158px;
    height: auto;
}

/* Missionセクション下パディング */
.mission-section {
    padding-bottom: 126px;
}

/* Company Infoセクション */
.company-info-section {
    background-color: #ffffff;
    width: 100%;
    padding-bottom: 136px;
}

/* Memberセクション */
.member-section {
    background-color: #f0eee5;
    width: 100%;
    padding-bottom: 40px;
}

/* Member下部背景トランジション（フッターへ） */
.member-bottom-bg-transition {
    background-image: url('../images/message-bg-transition.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 270px;
    width: 100%;
    background-color: #ffffff;
    padding-top: 270px;
    padding-bottom: 160px;
}

/* Member背景トランジション */
.member-bg-transition {
    height: 270px;
    background-image: url('../images/message-bg-transition2.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    width: 100%;
}

.member-content {
    padding: 60px 0;
}

.member-content .section-title {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: left;
}

/* メンバーリスト */
.member-list {
    width: 100%;
}

/* メンバーアイテム共通 */
.member-item {
    margin-bottom: 60px;
}

.member-item:last-child {
    margin-bottom: 0;
}

/* 奇数メンバー（右にアール） */
.member-item-odd {
    background-color: #ffffff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-right: 56px;
    margin-left: 0;
}

.member-item-odd .member-item-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 偶数メンバー（左にアール） */
.member-item-even {
    background-color: #ffffff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-left: 56px;
    margin-right: 0;
}

.member-item-even .member-item-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* メンバー内部レイアウト */
.member-inner {
    display: flex;
    gap: 42px;
    align-items: stretch;
}

/* 偶数番目は写真を右側に */
.member-item-even .member-inner {
    flex-direction: row-reverse;
}

.member-photo {
    width: 340px;
    flex-shrink: 0;
}

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

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-message {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 20px;
    color: #32a028;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.member-position {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.member-name {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.member-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.company-info-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 0;
}

.company-info-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

/* 会社情報テーブル */
.company-info-table {
    max-width: 697px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #cccccc;
}

.info-row:first-child {
    padding-top: 0;
}

.info-label {
    width: 140px;
    flex-shrink: 0;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #32a028;
    line-height: 1.8;
}

.info-value {
    flex: 1;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

/* フッター */
.site-footer {
    background-color: #ffffff;
    border-top: 6px solid #e6e6e6;
    padding-top: 33px;
    padding-bottom: 50px;
}

.footer-inner {
    padding: 0 40px;
}

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

/* フッターロゴ */
.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 126px;
    height: auto;
    display: block;
}

/* フッター会社情報 */
.footer-company {
    flex: 1;
    padding: 0 40px;
}

.footer-company-name,
.footer-address {
    font-size: 15px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    color: #333;
}

.footer-company-name {
    margin-bottom: 5px;
}

/* フッターリンク */
.footer-links-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-links a {
    font-size: 13px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-separator {
    font-size: 13px;
    color: #333;
}


/* ソーシャルメディアリンク */
.footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 30px;
    height: 30px;
    color: #1877f2;
}

/* タブレット以下のレスポンシブ */
@media (max-width: 768px) {
    /* Story セクション */
    .story-section {
        margin-top: 50px;
    }
    
    .story-bg-wrapper {
        padding: 50px 0;
    }
    
    .story-content {
        min-height: 200px;
    }
    
    .story-title-en {
        font-size: 40px;
    }
    
    .story-title-ja {
        font-size: 18px;
    }
    
    .story-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* ストーリーアイテムのレスポンシブ */
    .story-items {
        margin-top: 80px;
    }
    
    .story-items-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .story-column {
        width: 100%;
    }
    
    .story-column-left,
    .story-column-right {
        padding: 0;
    }
    
    .story-item {
        padding: 20px 0;
        min-height: auto;
    }
    
    .story-item-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .story-item-image {
        width: 100%;
        max-width: 206px;
    }
    
    .story-item-text {
        gap: 15px;
        width: 100%;
    }
    
    .story-copy {
        font-size: 18px;
        padding: 12px 15px;
        border-radius: 10px;
        width: 100%;
        max-width: 266px;
        height: auto;
        min-height: 100px;
    }
    
    /* モバイルでは吹き出しの尻尾を非表示 */
    .story-copy::before {
        display: none;
    }
    
    .story-name {
        font-size: 14px;
        padding: 18px 35px 18px 15px;
        border-radius: 40px;
        width: 100%;
        max-width: 210px;
    }
    
    .story-name::after {
        width: 12px;
        height: 12px;
        right: 10px;
    }
    
    /* モバイルではボーダーは画面幅いっぱい */
    .story-column-left .story-item::after,
    .story-column-right .story-item::after {
        left: -20px;
        right: -20px;
    }
    
    /* START/GOALの配置調整 */
    .story-label {
        font-size: 20px;
        padding: 30px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 20px;
    }
    
    .story-label::after {
        display: none;
    }
    
    .story-start {
        margin-bottom: 30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .story-goal {
        margin-top: 30px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    /* メッセージセクション */
    .message-section {
        padding-bottom: 100px;
    }
    
    .message-bg-transition {
        height: 150px;
    }
    
    .message-content {
        flex-direction: column;
        gap: 30px;
        padding-top: 60px;
    }
    
    .message-heading,
    .message-lead,
    .message-description {
        font-size: 18px;
    }
    
    .message-heading,
    .message-lead {
        margin-bottom: 15px;
    }
    
    .message-image {
        width: 140px;
    }
    
    /* コンタクトセクション */
    
    .contact-bg {
        padding: 40px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-title-en {
        font-size: 40px;
    }
    
    .contact-title-ja {
        font-size: 18px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-right {
        background-color: #f0eee5;
        border-radius: 20px;
        padding: 30px;
        justify-content: center;
    }
    
    .contact-right::after {
        display: none;
    }
    
    .contact-info {
        text-align: center;
    }

    .contact-phone {
        font-size: 32px;
        margin-bottom: 10px;
        justify-content: center;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .phone-icon {
        height: 32px;
    }

    .contact-links {
        align-items: center;
    }
    
    .contact-link-text {
        font-size: 16px;
    }
    
    .contact-button img {
        height: 24px;
    }
    
    .phone-icon {
        height: 36px;
    }

    .contact-hours {
        font-size: 13px;
        margin-bottom: 20px;
        white-space: normal;
        text-align: center;
    }

    .contact-link {
        font-size: 16px;
    }
    
    /* お客様本位の業務運営セクション */
    .customer-oriented-section {
        padding: 50px 0;
    }
    
    .customer-oriented-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .customer-oriented-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .customer-oriented-link {
        width: 90%;
        max-width: 350px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .customer-oriented-link .link-arrow {
        width: 18px;
        height: 18px;
    }
    
    /* 取り扱い保険会社セクション */
    .insurance-section {
        padding: 50px 0;
    }
    
    .insurance-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .insurance-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* フッター */
    .site-footer {
        padding-top: 25px;
        padding-bottom: 40px;
    }
    
    .footer-inner {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-company {
        padding: 0;
        text-align: center;
    }
    
    .footer-company-name,
    .footer-address {
        font-size: 14px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-separator {
        display: none;
    }


    .footer-social {
        margin-top: 15px;
        justify-content: center;
    }

    /* コピーライトセクションのレスポンシブ */
    .footer-copyright-inner {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-copyright .footer-banner-img {
        height: 50px;
    }
    
    header {
        position: relative;
    }
    
    .hamburger-menu {
        display: block;
        z-index: 1001;
    }
    
    nav {
        position: absolute;
        top: 91px;
        right: -100%;
        width: 100%;
        height: auto;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 0;
        transition: right 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Companyページのレスポンシブ対応 */
    .company-section {
        margin-top: 60px;
    }
    
    .company-section .section-lead {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .company-lead-line {
        font-size: 22px;
    }
    
    .president-message {
        flex-direction: column;
        gap: 30px;
    }
    
    .president-photo {
        flex: none;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    
    .president-photo img {
        border-radius: 0;
    }
    
    /* 明るい未来セクションのレスポンシブ */
    .bright-future {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }
    
    .bright-future-text {
        width: 100%;
    }
    
    .bright-future-heading {
        font-size: 24px;
    }
    
    /* Missionセクションのレスポンシブ */
    .mission-lead-heading {
        font-size: 24px;
    }
    
    .mission-lead-text {
        font-size: 16px;
    }
    
    .mission-body {
        max-width: 100%;
        padding: 25px 15px 60px;
    }
    
    .mission-logo {
        position: static;
        text-align: right;
        margin-top: 30px;
    }
    
    .mission-section {
        padding-bottom: 80px;
    }
    
    /* Company Infoセクションのレスポンシブ */
    .company-info-section {
        padding-bottom: 80px;
    }
    
    .company-info-table {
        max-width: 100%;
    }
    
    .info-row {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    /* Memberセクションのレスポンシブ */
    .member-content {
        padding: 40px 0;
    }
    
    /* Member下部背景トランジション */
    .member-bottom-bg-transition {
        background-size: 100% 150px;
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .member-item {
        margin-bottom: 40px;
    }
    
    .member-item-odd,
    .member-item-even {
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 20px;
    }
    
    .member-item-odd .member-item-content,
    .member-item-even .member-item-content {
        padding: 40px 20px;
    }
    
    .member-inner {
        flex-direction: column;
        gap: 30px;
    }
    
    /* レスポンシブ時は偶数メンバーも同じ順序で表示 */
    .member-item-even .member-inner {
        flex-direction: column;
    }
    
    .member-photo {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .member-message {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

/* Contactセクション */
.contact-section {
    margin-top: 100px;
    margin-bottom: 27px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact リード部分 */
.contact-lead-content {
    max-width: 782px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 43px;
}

.contact-lead-heading {
    font-size: 18px;
    font-weight: bold;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    color: #333;
    margin: 0 0 43px 0;
    line-height: 1.6;
}

.contact-lead-text {
    text-align: left;
}

.contact-lead-text p {
    font-size: 15px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Contact フォーム */
.contact-form-wrapper {
    max-width: 782px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #cccccc;
}

.form-row:first-child {
    padding-top: 0;
}

.form-label {
    width: 182px;
    flex-shrink: 0;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
    white-space: nowrap;
}

.required-mark {
    color: #ff0000;
    font-size: 10px;
    margin-right: 5px;
    vertical-align: top;
}

.label-text {
    color: #32a028;
}

.form-value {
    flex: 1;
}

.form-input,
.form-textarea {
    padding: 0 10px;
    border: 1px solid #b3b3b3;
    border-radius: 0;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    box-sizing: border-box;
}

.form-input {
    height: 28px;
    width: 312px;
}

.form-input[name="email"] {
    width: 100%;
}

/* 住所入力エリア */
.address-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input-postal {
    width: 143px !important;
}

.form-input[name="address1"],
.form-input[name="address2"] {
    width: 100%;
}

.form-textarea {
    width: 100%;
    padding: 5px 10px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #b3b3b3;
}

/* 送信ボタン */
.form-submit-wrapper {
    margin-top: 72px;
    text-align: center;
}

.form-submit-button {
    background-color: #32a028;
    color: #ffffff;
    font-size: 16px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 23px 40px 23px 20px;
    margin: 0;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: opacity 0.3s;
}

.form-submit-button:hover {
    opacity: 0.8;
}

/* 送信ボタンの矢印アイコン */
.form-submit-button::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url('../images/story-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Contactセクションのレスポンシブ */
@media (max-width: 768px) {
    .contact-right {
        min-width: auto;
        padding: 30px;
    }

    .contact-hours {
        white-space: normal;
    }

    .contact-section {
        margin-top: 60px;
    }

    .contact-section .section-lead {
        flex-direction: column;
        gap: 30px;
    }

    .contact-lead-content {
        padding-bottom: 30px;
    }

    .contact-lead-heading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-lead-text p {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .form-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .form-input {
        width: 100%;
    }
    
    .form-input-postal {
        width: 100% !important;
    }
    
    .form-submit-wrapper {
        margin-top: 50px;
    }
    
    .form-submit-button {
        font-size: 14px;
        padding: 18px 35px 18px 15px;
        border-radius: 40px;
    }
    
    .form-submit-button::after {
        width: 12px;
        height: 12px;
        right: 10px;
    }
}

/* Recruitセクション */
.recruit-section {
    margin-top: 100px;
    margin-bottom: 27px;
    padding-bottom: 64px;
}

.recruit-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruit-lead-text {
    flex-grow: 1;
}

.recruit-lead-line {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0;
}

/* Recruit 2カラムコンテンツ */
.recruit-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.recruit-content-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.recruit-content-left img {
    width: 299px;
    height: auto;
    display: block;
}

.recruit-content-right {
    width: 50%;
}

.recruit-message p {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #333;
    margin: 0 0 30px 0;
}

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

/* Recruitセクションのレスポンシブ */
@media (max-width: 768px) {
    .recruit-section {
        margin-top: 60px;
    }
    
    .recruit-section .section-lead {
        flex-direction: column;
        gap: 30px;
    }
    
    .recruit-lead-line {
        font-size: 24px;
    }
    
    .recruit-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .recruit-content-left,
    .recruit-content-right {
        width: 100%;
    }
    
    .recruit-content-left img {
        width: 100%;
        max-width: 299px;
    }
    
    .recruit-message p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Guidelinesセクション */
.guidelines-section {
    background-color: #ffffff;
    padding: 100px 0;
    margin-bottom: 64px;
}

.guidelines-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 募集要項テーブル */
.guidelines-table {
    margin-top: 60px;
}

.guidelines-row {
    display: flex;
    border-bottom: 1px solid #cccccc;
}

.guidelines-label {
    width: 176px;
    flex-shrink: 0;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    background-color: rgba(50, 160, 40, 0.11);
    padding: 24px 16px;
}

.guidelines-value {
    flex: 1;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    padding: 24px 16px;
}

/* Guidelinesセクションのレスポンシブ */
@media (max-width: 768px) {
    .guidelines-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .guidelines-table {
        margin-top: 40px;
    }
    
    .guidelines-row {
        flex-direction: column;
    }
    
    .guidelines-label {
        width: 100%;
        padding: 20px 16px;
    }
    
    .guidelines-value {
        padding: 20px 16px;
    }
}

/* Entryセクション */
.entry-section {
    background-color: #ffffff;
    padding: 100px 0;
    margin-bottom: 64px;
}

.entry-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Entry注意事項 */
.entry-notice {
    margin-top: 30px;
    margin-bottom: 43px;
    text-align: left;
}

.entry-notice p {
    font-size: 15px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Entryフォーム */
.entry-form-wrapper {
    max-width: 782px;
    margin: 0 auto;
}

/* Entryセクションのレスポンシブ */
@media (max-width: 768px) {
    .entry-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .entry-notice {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .entry-notice p {
        font-size: 14px;
    }
}

/* Serviceセクション */
.service-section {
    margin-top: 100px;
    margin-bottom: 27px;
    padding-bottom: 80px;
}

.service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-lead-text {
    flex-grow: 1;
}

.service-lead-line {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0;
}

/* 共通のリードテキストスタイル */
.service-lead-text,
.consulting-lead-text,
.company-lead-text,
.recruit-lead-text,
.contact-lead-text,
.news-lead-text {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0;
}

/* mission-lead-textは個別スタイル */
.mission-lead-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Serviceセクションのレスポンシブ */
@media (max-width: 768px) {
    .service-section {
        margin-top: 60px;
    }
    
    .service-section .section-lead {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-lead-line {
        font-size: 24px;
    }

}

/* 共通の通常テキストスタイル（本文用） */
.president-text,
.bright-future-text,
.consulting-text,
.recruit-message,
.entry-notice,
.contact-lead-text,
.guidelines-value,
.service-item-description,
.corporate-item-subtitle,
.flow-description,
.member-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* 共通リードテキストのレスポンシブ */
@media (max-width: 768px) {
    .service-lead-text,
    .consulting-lead-text,
    .company-lead-text,
    .recruit-lead-text,
    .contact-lead-text,
    .news-lead-text {
        font-size: 24px;
    }

    /* mission-lead-textは個別 */
    .mission-lead-text {
        font-size: 16px;
    }
}

/* フォーム確認画面スタイル */
.confirmation-screen {
    padding: 40px 0;
}

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

.confirmation-table {
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.confirmation-label {
    width: 200px;
    font-weight: bold;
    color: #333;
}

.confirmation-value {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.form-button-back {
    padding: 15px 30px;
    background-color: #999;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button-back:hover {
    background-color: #777;
}

.form-input.error {
    border-color: #ff0000;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .confirmation-row {
        flex-direction: column;
    }

    .confirmation-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .confirmation-buttons {
        flex-direction: column;
    }
}

/* サービス一覧 */
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 60px;
    margin-top: 60px;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: center;
    width: 250px;
    position: relative;
    transition: transform 0.3s ease;
}

/* サービスアイテムのクリック可能スタイル */
.service-clickable {
    cursor: pointer;
}

.service-clickable::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-clickable:hover::before {
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-clickable:hover {
    transform: translateY(-8px);
}

.service-clickable:hover .service-item-title {
    background-color: #ddbca6;
}

.service-item-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

.service-item-title {
    font-size: 18px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #ffffff;
    background-color: #e6c8b4;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 10px 20px;
    margin: 0 0 10px 0;
    line-height: 1.6;
    position: relative;
    transition: background-color 0.3s ease;
}

.service-item-title::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: #ffffff;
}

.service-item-text {
    font-size: 15px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    color: #666;
    margin: 0;
    line-height: 1.8;
    text-align: left;
}

.service-item-text::first-letter {
    color: #32a028;
}

/* サービス一覧のレスポンシブ */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        margin-top: 40px;
    }
    
    .service-item {
        width: 100%;
    }
    
    .service-item-title {
        font-size: 16px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    .service-item-text {
        font-size: 14px;
    }
}

/* Consultingセクション */
.consulting-section {
    margin-top: 0;
    margin-bottom: 42px;
    padding-bottom: 80px;
}

.concept-bg-left {
    margin-left: 100px;
    margin-right: 0;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.consulting-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.consulting-lead-text {
    flex-grow: 1;
}

.consulting-lead-line {
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    color: #32a028;
    line-height: 1.6;
    margin: 0;
}

/* コンサルティングコンテンツ */
.consulting-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.consulting-image {
    flex-shrink: 0;
}

.consulting-image img {
    width: 320px;
    height: auto;
    display: block;
}

.consulting-text {
    flex-grow: 1;
    border-top: 4px dotted #e6c8b4;
    border-bottom: 4px dotted #e6c8b4;
    padding: 32px 20px;
}

.consulting-text p {
    font-size: 15px;
    line-height: 1.8;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
}

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

/* 取り扱い制度セクション */
.systems-section {
    background-color: #ffffff;
    padding: 20px 0 80px 0;
}

.systems-title {
    font-size: 22px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
}

.systems-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.system-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.system-logo {
    width: 150px;
    height: auto;
    display: block;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.system-logo:hover {
    opacity: 0.7;
}

.system-text {
    font-size: 16px;
    color: #333;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 500;
}

/* 取り扱い制度セクションのレスポンシブ */
@media (max-width: 768px) {
    .systems-section {
        padding: 60px 0;
    }

    .systems-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .systems-logos {
        gap: 20px;
        padding: 0 20px;
    }

    .system-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .system-logo {
        width: 120px;
    }

    .system-text {
        font-size: 14px;
    }
}

/* Consultingセクションのレスポンシブ */
@media (max-width: 768px) {
    .consulting-section {
        margin-top: 60px;
    }

    .concept-bg-left {
        margin-left: 0;
        margin-right: 0;
    }

    .consulting-section .section-lead {
        flex-direction: column;
        gap: 30px;
    }
    
    .consulting-lead-line {
        font-size: 24px;
    }
    
    .consulting-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .consulting-image img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .consulting-text {
        padding: 25px 15px;
    }
    
    .consulting-text p {
        font-size: 14px;
    }
}

/* Business Cycleセクション */
.business-cycle-section {
    padding: 80px 0;
    background-image: url('../images/business-cycle-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.business-cycle-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.business-cycle-section .section-title {
    border-left: 3px solid #32a028;
    padding-left: 16px;
}

.business-cycle-section .title-en {
    font-size: 40px;
}

.business-cycle-section .title-ja {
    font-size: 18px;
}

.business-cycle-lead {
    margin-top: 40px;
}

.business-cycle-lead p {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: left;
    margin: 0;
}

/* ビジネスサイクルアイテム */
.business-cycle-items {
    margin-top: 60px;
}

.business-cycle-item {
    background-color: #e6c8b4;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 42px;
    padding: 14px;
    padding-left: 120px;
    position: relative;
    overflow: hidden;
}

.business-cycle-item:last-child {
    margin-bottom: 0;
}

.business-cycle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 103px 103px 0 0;
    border-color: #e1b394 transparent transparent transparent;
}

.cycle-header {
    position: absolute;
    top: 12px;
    left: 15px;
    z-index: 1;
}

.cycle-number {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 37px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.cycle-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 5px;
}

.cycle-content {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cycle-image {
    flex-shrink: 0;
}

.cycle-image img {
    width: 259px;
    height: auto;
    display: block;
}

.cycle-bubble {
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px 20px;
    position: relative;
}

.cycle-bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #ffffff transparent transparent;
}

.bubble-content {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.bubble-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 4px 0;
}

.bubble-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Business Cycleセクションのレスポンシブ */
@media (max-width: 768px) {
    .business-cycle-section {
        padding: 60px 0;
    }
    
    .business-cycle-lead {
        margin-top: 30px;
    }
    
    .business-cycle-lead p {
        font-size: 14px;
    }
    
    .business-cycle-items {
        margin-top: 40px;
    }
    
    .business-cycle-item {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .business-cycle-item::before {
        border-width: 60px 60px 0 0;
    }
    
    .cycle-header {
        top: 10px;
        left: 12px;
    }
    
    .cycle-number {
        font-size: 28px;
    }
    
    .cycle-title {
        font-size: 10px;
        margin-top: 3px;
    }
    
    .cycle-content {
        padding-left: 15px;
        padding-top: 40px;
        flex-direction: column;
        gap: 20px;
    }
    
    .cycle-image img {
        width: 120px;
    }
    
    .cycle-bubble {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }
    
    .cycle-bubble::before {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #ffffff transparent;
    }
    
    .bubble-content {
        font-size: 13px;
    }
}

/* Corporate Serviceセクション */
.corporate-service-section {
    padding: 80px 0 110px;
}

.corporate-service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.corporate-service-section .section-title {
    border-left: 3px solid #32a028;
    padding-left: 16px;
}

.corporate-service-section .title-en {
    font-size: 40px;
}

.corporate-service-section .title-ja {
    font-size: 18px;
}

.corporate-service-content {
    margin-top: 40px;
}

.corporate-service-lead {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.corporate-service-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Corporate Service Items */
.corporate-service-items {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.corporate-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    gap: 0;
}

.service-item-text-wrapper {
    width: calc(1000px - 358px);
    background-color: #ffffff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 40px 40px 40px 0;
    position: relative;
}

.service-item-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    bottom: 0;
    width: 100vw;
    background-color: #ffffff;
}

.service-item-text-wrapper-right {
    border-radius: 0;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 40px 0 40px 40px;
}

.service-item-text-wrapper-right::before {
    left: auto;
    right: -100vw;
}

.service-item-text-content {
    position: relative;
    z-index: 1;
}

.corporate-service-item .service-item-image {
    flex-shrink: 0;
    width: 358px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corporate-service-item .service-item-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.corporate-service-item-reverse {
    flex-direction: row;
}

.corporate-item-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #32a028;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.corporate-item-subtitle {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.service-item-description {
    margin: 0 0 40px 0;
}

.service-item-description-right {
    text-align: right;
}

.service-item-description p {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Corporate Serviceセクションのレスポンシブ */
@media (max-width: 768px) {
    .corporate-service-section {
        padding: 60px 0;
    }
    
    .corporate-service-content {
        margin-top: 30px;
    }
    
    .corporate-service-lead {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .corporate-service-text {
        font-size: 14px;
    }
    
    .corporate-service-items {
        margin-top: 40px;
    }
    
    .corporate-service-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .corporate-service-item-reverse {
        flex-direction: column;
    }
    
    .service-item-text-wrapper,
    .service-item-text-wrapper-right {
        margin: 0;
        padding: 30px 20px;
        max-width: 100%;
        border-radius: 20px;
        margin-top: 20px;
        width: 100%;
    }
    
    /* レスポンシブ時は背景の伸ばしを無効化 */
    .service-item-text-wrapper::before,
    .service-item-text-wrapper-right::before {
        display: none;
    }
    
    .corporate-service-item .service-item-image {
        width: 100%;
        max-width: 358px;
        margin: 0 auto;
    }
    
    .corporate-item-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .corporate-item-subtitle {
        font-size: 14px;
    }
    
    .service-item-description {
        margin: 15px auto 40px;
        text-align: left;
    }
    
    .service-item-description-right {
        text-align: left;
    }
    
    .service-item-description p {
        font-size: 14px;
    }
}

/* Contract Flowセクション */
.contract-flow-section {
    margin-top: 0;
    margin-bottom: 27px;
}

.contract-flow-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contract-flow-section .section-title {
    border-left: 3px solid #32a028;
    padding-left: 16px;
}

.contract-flow-section .title-en {
    font-size: 40px;
}

.contract-flow-section .title-ja {
    font-size: 18px;
}

/* 契約の流れコンテンツ */
.contract-flow-content {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: flex-start;
}

.flow-left {
    flex: 1;
    display: flex;
    gap: 40px;
}

.flow-column {
    flex: 1;
}

.flow-item {
    display: flex;
    gap: 15px;
    margin-bottom: 33px;
    position: relative;
}

.flow-item:last-child {
    margin-bottom: 0;
}

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

.flow-number {
    width: 40px;
    height: 30px;
    background-color: #32a028;
    color: #ffffff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
}

.flow-text {
    flex: 1;
}

.flow-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.flow-description {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.flow-arrow {
    position: absolute;
    top: 43px;
    left: 13px;
    width: 14px;
}

.flow-arrow img {
    width: 14px;
    height: auto;
    display: block;
}

/* レスポンシブ時のみ表示する矢印（PC時は非表示） */
.flow-arrow-responsive {
    display: none;
}

.flow-right {
    width: 206px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.flow-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contract Flowセクションのレスポンシブ */
@media (max-width: 768px) {
    .contract-flow-section {
        margin-top: 60px;
    }
    
    .contract-flow-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .flow-left {
        flex-direction: column;
        gap: 30px;
    }
    
    /* レスポンシブ時は03の矢印を表示 */
    .flow-arrow-responsive {
        display: block !important;
        position: absolute;
        top: 40px;
        left: 10px;
        width: 14px;
    }
    
    .flow-arrow-responsive img {
        width: 14px;
        height: auto;
        display: block;
    }
    
    .flow-number {
        width: 35px;
        height: 28px;
        font-size: 18px;
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
    }
    
    .flow-title {
        font-size: 18px;
    }
    
    .flow-description {
        font-size: 13px;
    }
    
    .flow-right {
        width: 100%;
        max-width: 206px;
        margin: 0 auto;
    }
}

/* Footer Copyright */
.footer-copyright {
    background-color: #02665a;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 15px 0;
    margin-top: 40px;
}

.footer-copyright-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

.footer-copyright .footer-banner-img {
    height: 65px;
    width: auto;
    display: block;
}

.footer-copyright .footer-banner-text {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, sans-serif;
    transition: opacity 0.3s;
}

.footer-copyright .footer-banner-link:hover .footer-banner-img,
.footer-copyright .footer-banner-text:hover {
    opacity: 0.8;
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* 画像用のアニメーション（遅延あり） */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

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

/* NEWSページスタイル */
.news-section {
    margin-top: 100px;
    margin-bottom: 27px;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-lead-text {
    flex-grow: 1;
}

/* カテゴリボタン */
.news-categories {
    display: flex;
    gap: 15px;
    margin: 50px 0;
    justify-content: center;
}

.category-btn {
    padding: 10px 30px;
    background-color: #ffffff;
    border: 2px solid #e6c8b4;
    border-radius: 25px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: #f8f6f2;
}

.category-btn.active {
    background-color: #32a028;
    border-color: #32a028;
    color: #ffffff;
}

/* ニュース一覧 */
.news-list {
    margin-bottom: 60px;
}

.news-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
    transition: opacity 0.3s ease;
}

.news-item:first-child {
    padding-top: 0;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.news-link:hover {
    opacity: 0.7;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-date time {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #999;
}

.news-category-label {
    padding: 4px 15px;
    background-color: #e6c8b4;
    color: #ffffff;
    border-radius: 15px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.news-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.news-excerpt {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ページネーション */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.page-btn {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #666;
    text-decoration: none;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover:not(.disabled) {
    background-color: #f8f6f2;
}

.page-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: #f8f6f2;
}

.page-number.active {
    background-color: #32a028;
    border-color: #32a028;
    color: #ffffff;
}

/* NEWS詳細ページスタイル */
.news-detail-section {
    margin-top: 100px;
    margin-bottom: 27px;
}

.news-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
}

.breadcrumb a {
    color: #32a028;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

/* 記事ヘッダー */
.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e6c8b4;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-date {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #666;
}

.article-category {
    padding: 5px 20px;
    background-color: #e6c8b4;
    color: #ffffff;
    border-radius: 20px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.article-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* 記事本文 */
.article-content {
    margin-bottom: 60px;
}

.article-lead {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f6f2;
    border-radius: 10px;
}

.article-body {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-body h2 {
    font-size: 24px;
    font-weight: bold;
    color: #32a028;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6c8b4;
}

.article-body h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #32a028;
}

.article-body p {
    margin: 0 0 20px 0;
}

.article-body ul {
    margin: 0 0 20px 0;
    padding-left: 25px;
}

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

/* イベント情報 */
.event-info {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f6f2;
    border-radius: 10px;
}

.event-info dt {
    font-weight: bold;
    color: #32a028;
    margin-bottom: 5px;
}

.event-info dd {
    margin: 0 0 15px 20px;
    color: #333;
}

.event-info dd:last-child {
    margin-bottom: 0;
}

/* セミナー内容リスト */
.seminar-contents {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.seminar-contents li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.seminar-contents li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32a028;
    font-weight: bold;
}

/* 申し込み方法 */
.apply-methods {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.apply-methods li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.apply-methods li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #32a028;
    font-size: 10px;
    top: 8px;
}

.tel-link,
.line-link,
.mail-link {
    color: #32a028;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.tel-link:hover,
.line-link:hover,
.mail-link:hover {
    opacity: 0.7;
}

/* 注意事項ボックス */
.notice-box {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff9f0;
    border: 2px solid #e6c8b4;
    border-radius: 10px;
}

.notice-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
}

.notice-box ul {
    margin: 0;
    padding-left: 25px;
}

.notice-box li {
    margin-bottom: 8px;
    color: #666;
}

/* 記事ナビゲーション */
.article-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.article-nav-item {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-item:hover {
    background-color: #f8f6f2;
    border-color: #32a028;
}

.article-nav-item.prev,
.article-nav-item.next {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-nav-item.list {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #32a028;
    color: #ffffff;
    border-color: #32a028;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.article-nav-item.list:hover {
    background-color: #2a8020;
}

.nav-label {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #999;
}

.nav-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* NEWSページレスポンシブ */
@media (max-width: 768px) {
    .news-section {
        margin-top: 50px;
    }
    
    .news-categories {
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px 0;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .news-item {
        padding: 20px 0;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 14px;
    }
    
    .news-pagination {
        gap: 15px;
    }
    
    .page-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    /* 詳細ページ */
    .news-detail-section {
        margin-top: 50px;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-lead {
        font-size: 16px;
        padding: 15px;
    }
    
    .article-body {
        font-size: 15px;
    }
    
    .article-body h2 {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }
    
    .article-body h3 {
        font-size: 18px;
        margin: 25px 0 12px 0;
    }
    
    .article-nav {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .article-nav-item {
        padding: 15px;
    }
}
/* Story Modal Styles */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-modal.show {
    opacity: 1;
}

.story-modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.story-modal.show .story-modal-content {
    transform: scale(1);
}

.story-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.story-modal-close:hover {
    background-color: #32a028;
    border-color: #32a028;
}

.story-modal-close::before,
.story-modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.story-modal-close:hover::before,
.story-modal-close:hover::after {
    background-color: #ffffff;
}

.story-modal-close::before {
    transform: rotate(45deg);
}

.story-modal-close::after {
    transform: rotate(-45deg);
}

.story-modal-image {
    flex: 0 0 40%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.story-modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.story-modal-body {
    flex: 1;
    padding: 50px 40px;
    overflow-y: auto;
    position: relative;
}

.story-modal-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #32a028;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6c8b4;
}

.story-modal-description {
    margin-bottom: 30px;
}

.story-modal-description p {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.story-modal-description p:last-child {
    margin-bottom: 0;
}

.story-modal-comment {
    background-color: #f9f9f9;
    border-left: 4px solid #32a028;
    padding: 20px 25px;
    border-radius: 5px;
}

.story-modal-comment-title {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #32a028;
    margin: 0 0 10px 0;
}

.story-modal-comment-text {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Story Modal Responsive */
@media (max-width: 768px) {
    .story-modal-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 90vh;
    }
    
    .story-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .story-modal-close::before,
    .story-modal-close::after {
        width: 18px;
    }
    
    .story-modal-image {
        flex: 0 0 auto;
        height: 200px;
        padding: 20px;
    }
    
    .story-modal-body {
        padding: 30px 20px;
    }
    
    .story-modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .story-modal-description p {
        font-size: 14px;
    }
    
    .story-modal-comment {
        padding: 15px 20px;
    }
    
    .story-modal-comment-title {
        font-size: 15px;
    }
    
    .story-modal-comment-text {
        font-size: 13px;
    }
}

/* Footer 小画面対応 (400px以下) */
@media (max-width: 400px) {
    .contact-phone {
        font-size: 26px;
        gap: 8px;
    }

    .phone-icon {
        height: 26px;
    }

    .contact-hours {
        font-size: 11px;
        line-height: 1.4;
        white-space: normal;
    }
    
    .contact-link-text {
        font-size: 13px;
    }
    
    .contact-button img {
        height: 18px;
    }
    
    .contact-right {
        padding: 15px;
        border-radius: 15px;
    }
    
    .contact-link-item {
        gap: 5px;
    }
    
    .contact-arrow {
        font-size: 12px;
    }
}

/* Footer 超小画面対応 (360px以下) */
@media (max-width: 360px) {
    .contact-phone {
        font-size: 22px;
        gap: 6px;
    }

    .phone-icon {
        height: 22px;
    }

    .contact-hours {
        font-size: 10px;
        white-space: normal;
    }
}

/* ページトップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 0;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
}

.back-to-top:hover img {
    filter: brightness(1.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

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

.privacy-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 24px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #32a028;
}

.privacy-section h3 {
    font-size: 20px;
    color: #333333;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #32a028;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.privacy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #32a028;
    font-weight: bold;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* プライバシーポリシーのレスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-content {
        padding: 50px 20px;
    }
    
    .privacy-section {
        margin-bottom: 40px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* サブページ共通スタイル */
.subpage-hero {
    padding: 100px 0 60px 0;
    background-color: #defcff;
}

.subpage-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.subpage-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.subpage-title .title-en {
    font-size: 48px;
    color: #32a028;
    font-family: "FOT-砧iroha 22momi StdN R", "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
}

.subpage-title .title-ja {
    font-size: 20px;
    color: #32a028;
    font-family: "FOT-筑紫A丸ゴシック Std", "筑紫A丸ゴシック", "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    margin: 0;
}

/* パンくずリスト修正 - 元のスタイルを上書き */
.breadcrumb {
    background-color: #ffffff;
    padding: 20px 0;
    display: block;
    margin-bottom: 0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

/* サブページレスポンシブ対応 */
@media (max-width: 768px) {
    .subpage-hero {
        padding: 80px 0 40px 0;
    }
    
    .subpage-hero-inner {
        padding: 0 20px;
    }
    
    .subpage-title .title-en {
        font-size: 36px;
    }
    
    .subpage-title .title-ja {
        font-size: 18px;
    }
    
    .breadcrumb {
        padding: 15px 0;
    }
    
    .breadcrumb .container {
        padding: 0 20px;
    }
}
