/* リセットCSS */
* {
    box-sizing: border-box;
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

html {
    font-size: 16px;
}

/* 共通スタイル */
img {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
}

                                                /* ========================================
                                                                ヘッダー
                                                ======================================== */
.header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1000;
}

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

/* SP版ヘッダーはデフォルトで非表示 */
.header_sp {
    display: none;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .header__container {
        padding: 20px 40px;
    }
    
    .header__logo {
        width: 180px;
    }
    
    .header__nav {
        display: block;
    }
    
    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 30px;
        list-style: none;
    }
    
    .header__nav-link {
        text-decoration: none;
        color: black;
        font-size: 15px;
    }
    
    .header__nav-item-phone a {
        display: flex;
        padding: 8px 20px;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: white;
        text-align: center;
        gap: 3px;
        border-radius: 8px;
        background: #46A9EB;
    }
    
    .header__nav-item-phone a span {
        font-size: 16px;
        font-weight: bold;
    }
    
    .header__nav-item-contact a {
        display: flex;
        padding: 8px 20px;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        color: white;
        border-radius: 25px;
        background: #2A6EBB;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header__container {
        display: none;
    }
    
    .header_sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        position: relative;
    }
    
    .header_sp .header__logo {
        width: 160px;
        z-index: 1000;
    }
    
    .header_sp_humburger {
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        background: none;
        border: none;
        z-index: 1002;
    }
    
    .header_sp_humburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s;
        left: 0;
    }
    
    .header_sp_humburger span:nth-child(1) {
        top: 6px;
    }
    
    .header_sp_humburger span:nth-child(2) {
        top: 14px;
    }
    
    .header_sp_humburger span:nth-child(3) {
        top: 22px;
    }
    
    .header_sp_humburger.is-active span:nth-child(1) {
        top: 14px;
        transform: rotate(45deg);
    }
    
    .header_sp_humburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .header_sp_humburger.is-active span:nth-child(3) {
        top: 14px;
        transform: rotate(-45deg);
    }
    
    .header_sp_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #46A9EB;
        transition: right 0.3s;
        overflow-y: auto;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1001;
        padding-top: 0;
        display: flex;
        align-items: center;
    }
    
    .header_sp_nav.is-active {
        right: 0;
    }
    
    .header_sp_nav_item {
        list-style: none;
        padding: 20px;
        width: 100%;
    }
    
    .header_sp_nav_item .header__nav-item {
        margin-bottom: 20px;
    }
    
    .header_sp_nav_item .header__nav-link {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: white;
        font-size: 15px;
        border-bottom: 1px solid white;
    }
    
    .header_sp__nav-item-contact a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: white;
        font-size: 15px;
        border-bottom: 1px solid white;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .header__container {
        display: none;
    }
    
    .header_sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        position: relative;
    }
    
    .header_sp .header__logo {
        width: 120px;
        z-index: 1000;
    }
    
    .header_sp_humburger {
        width: 25px;
        height: 25px;
        cursor: pointer;
        position: relative;
        background: none;
        border: none;
        z-index: 1002;
    }
    
    .header_sp_humburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: all 0.3s;
        left: 0;
    }
    
    .header_sp_humburger span:nth-child(1) {
        top: 5px;
    }
    
    .header_sp_humburger span:nth-child(2) {
        top: 11px;
    }
    
    .header_sp_humburger span:nth-child(3) {
        top: 17px;
    }
    
    .header_sp_humburger.is-active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    
    .header_sp_humburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .header_sp_humburger.is-active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }
    
    .header_sp_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #46A9EB;
        transition: right 0.3s;
        overflow-y: auto;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1001;
        padding-top: 0;
        display: flex;
        align-items: center;
    }
    
    .header_sp_nav.is-active {
        right: 0;
    }
    
    .header_sp_nav_item {
        list-style: none;
        padding: 15px;
        width: 100%;
    }
    
    .header_sp_nav_item .header__nav-item {
        margin-bottom: 15px;
    }
    
    .header_sp_nav_item .header__nav-link {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: white;
        font-size: 15px;
        border-bottom: 1px solid white;
    }
    
    .header_sp__nav-item-contact a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: white;
        font-size: 15px;
        border-bottom: 1px solid white;
    }
}

/* メニューオープン時のbody制御 */
body.menu-open {
    overflow: hidden;
}

                                                    /* ========================================
                                                                    ヒーローセクション
                                                    ======================================== */
.hero {
    width: 100%;
    background-image: url(../img/hero_section.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__container {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .hero {
        height: 80vh;
        max-height: 700px;
    }
    
    .hero__container {
        padding: 0 40px;
    }
    
    .hero__title {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px;
        font-size: 38px;
        color: #46A9EB;
        text-align: center;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 0.05em;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero__services {
        max-width: 700px;
        margin: 30px auto 0;
        padding: 15px 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: #000;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero {
        height: 70vh;
        max-height: 600px;
    }
    
    .hero__container {
        padding: 0 30px;
    }
    
    .hero__title {
        max-width: 700px;
        margin: 0 auto;
        padding: 25px;
        font-size: 32px;
        color: #46A9EB;
        text-align: center;
        font-weight: 600;
        line-height: 1.4;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero__services {
        max-width: 600px;
        margin: 25px auto 0;
        padding: 12px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        font-size: 15px;
        color: #000;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero__container {
        padding: 0 15px;
    }
    
    .hero__title {
        margin: 0 auto;
        padding: 20px;
        font-size: 24px;
        color: #46A9EB;
        text-align: center;
        font-weight: 600;
        line-height: 1.4;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero__services {
        margin: 20px auto 0;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        font-size: 13px;
        color: #000;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
    }
}

                                                /* ========================================
                                                                アバウトセクション
                                                ======================================== */
.about {
    width: 100%;
}

.about__container {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.about__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .about {
        padding: 80px 0;
    }
    
    .about__container {
        padding: 0 40px;
        gap: 40px;
    }
    
    .about__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about__content {
        width: 70%;
        max-width: 1050px;
    }
    
    .about__text {
        font-size: 16px;
        line-height: 1.8;
        color: #000;
    }
    
    .about__image {
        max-width: 800px;
        margin-top: 30px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .about {
        padding: 60px 0;
    }
    
    .about__container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .about__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .about__content {
        width: 85%;
    }
    
    .about__text {
        font-size: 15px;
        line-height: 1.8;
        color: #000;
    }
    
    .about__image {
        max-width: 600px;
        margin-top: 25px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .about {
        padding: 50px 0;
    }
    
    .about__container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .about__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about__content {
        width: 100%;
    }
    
    .about__text {
        font-size: 14px;
        line-height: 1.7;
        color: #000;
    }
    
    .about__image {
        margin-top: 20px;
    }
}

                                                    /* ========================================
                                                                    お知らせセクション
                                                    ======================================== */
.news {
    width: 100%;
}

.news__container {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.news__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.news__list {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.news__list ul {
    list-style: none;
}

.news__item {
    text-decoration: none;
    transition: opacity 0.3s;
}

.news__item:hover {
    opacity: 0.8;
}

.news__more-link {
    display: inline-block;
    border: 2px solid #46A9EB;
    color: #46A9EB;
    text-decoration: none;
    transition: all 0.3s;
}

.news__more-link:hover {
    background: #46A9EB;
    color: #FFF;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .news {
        padding: 80px 0;
    }
    
    .news__container {
        padding: 0 40px;
        gap: 40px;
    }
    
    .news__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .news__list {
        gap: 15px;
    }
    
    .news__item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #3A8DDE;
    }
    
    .news__category {
        width: 100px;
        padding: 5px 15px;
        background: #46A9EB;
        color: #FFF;
        font-size: 14px;
        text-align: center;
    }
    
    .news__date {
        color: #666;
        font-size: 15px;
    }
    
    .news__text {
        color: #000;
        font-size: 16px;
    }
    
    .news__more {
        margin-top: 30px;
    }
    
    .news__more-link {
        padding: 10px 30px;
        border-radius: 25px;
        font-size: 16px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .news {
        padding: 60px 0;
    }
    
    .news__container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .news__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .news__list {
        gap: 12px;
    }
    
    .news__item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #3A8DDE;
    }
    
    .news__category {
        width: 90px;
        padding: 5px 10px;
        background: #46A9EB;
        color: #FFF;
        font-size: 13px;
        text-align: center;
    }
    
    .news__date {
        color: #666;
        font-size: 14px;
    }
    
    .news__text {
        color: #000;
        font-size: 15px;
    }
    
    .news__more {
        margin-top: 25px;
    }
    
    .news__more-link {
        padding: 10px 25px;
        border-radius: 25px;
        font-size: 15px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .news {
        padding: 50px 0;
    }
    
    .news__container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .news__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .news__list {
        gap: 10px;
    }
    
    .news__item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #3A8DDE;
    }
    
    .news__category {
        padding: 4px 12px;
        background: #46A9EB;
        color: #FFF;
        font-size: 12px;
    }
    
    .news__date {
        color: #666;
        font-size: 13px;
    }
    
    .news__text {
        color: #000;
        font-size: 14px;
    }
    
    .news__more {
        margin-top: 20px;
    }
    
    .news__more-link {
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 14px;
    }
}

                                                    /* ========================================
                                                                サービス内容セクション
                                                    ======================================== */
.services {
    width: 100%;
}

.services__container {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.services__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.services__grid {
    width: 100%;
    max-width: 1050px;
    display: grid;
}

.service-card {
    border-radius: 15px;
    border: 3px solid rgba(70, 169, 235, 0.30);
    background: #FFF;
}

.service-card__mainservice-item{
    list-style: none;
}

.service__more-link {
    display: inline-block;
    border: 2px solid #46A9EB;
    color: #46A9EB;
    text-decoration: none;
    transition: all 0.3s;
}

.service__more-link:hover {
    background: #46A9EB;
    color: #FFF;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .services {
        padding: 80px 0;
    }
    
    .services__container {
        padding: 0 40px;
        gap: 40px;
    }
    
    .services__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card__title {
        font-size: 22px;
        color: #46A9EB;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .service-card__age {
        max-width: 250px;
        margin: 15px auto;
        padding: 8px 20px;
        border-radius: 20px;
        background: #FCE38A;
        color: #FFF;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }
    
    .service-card__description {
        font-size: 15px;
        line-height: 1.6;
        padding: 15px 0;
        border-bottom: 1px solid #2A6EBB;
    }
    
    .service-card__mainservice {
        font-size: 16px;
        color: #46A9EB;
        text-align: center;
        margin: 15px 0 10px;
    }
    
    .service-card__mainservice-item {
        font-size: 15px;
        line-height: 2;
    }
    
    .service__more {
        margin-top: 30px;
    }
    
    .service__more-link {
        padding: 10px 30px;
        border-radius: 25px;
        font-size: 16px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .services {
        padding: 60px 0;
    }
    
    .services__container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .services__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card__title {
        font-size: 20px;
        color: #46A9EB;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .service-card__age {
        max-width: 220px;
        margin: 12px auto;
        padding: 7px 18px;
        border-radius: 18px;
        background: #FCE38A;
        color: #FFF;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }
    
    .service-card__description {
        font-size: 14px;
        line-height: 1.6;
        padding: 12px 0;
        border-bottom: 1px solid #2A6EBB;
    }
    
    .service-card__mainservice {
        font-size: 15px;
        color: #46A9EB;
        text-align: center;
        margin: 12px 0 8px;
    }
    
    .service-card__mainservice-item {
        font-size: 14px;
        line-height: 2;
    }
    
    .service__more {
        margin-top: 25px;
    }
    
    .service__more-link {
        padding: 10px 25px;
        border-radius: 25px;
        font-size: 15px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .services {
        padding: 50px 0;
    }
    
    .services__container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .services__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .services__grid {
        display: flex;
        flex-direction: column;  /* 追加 */
        align-items: center;     /* 追加：中央揃え */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        width: 90%;
        padding: 15px;
    }
    
    .service-card__title {
        font-size: 18px;
        color: #46A9EB;
        font-weight: 600;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .service-card__age {
        width: 200px;
        margin: 10px auto;
        padding: 6px 15px;
        border-radius: 15px;
        background: #FCE38A;
        color: #FFF;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }
    
    .service-card__description {
        font-size: 13px;
        line-height: 1.6;
        padding: 10px 0;
        border-bottom: 1px solid #2A6EBB;
    }
    
    .service-card__mainservice {
        font-size: 14px;
        color: #46A9EB;
        text-align: center;
        margin: 10px 0 5px;
    }
    
    .service-card__mainservice-item {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .service__more {
        margin-top: 20px;
    }
    
    .service__more-link {
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 14px;
    }
}

                                                    /* ========================================
                                                                事業所情報セクション
                                                    ======================================== */
.office-info {
    width: 100%;
    background: #EEF6FB;
}

.office-info__container {
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-info__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.office-info__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.office-info__grid {
    width: 100%;
    display: grid;
}

.office-info__section {
    background: #FFF;
    border-radius: 15px;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .office-info {
        padding: 80px 0;
    }
    
    .office-info__container {
        padding: 0 40px;
        gap: 50px;
    }
    
    .office-info__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .office-info__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .office-info__section {
        padding: 25px;

    }
    
    .office-info__section-title {
        padding: 20px 10px;
        border-bottom: 3px solid #2A6EBB;
        color: #2A6EBB;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
    }

    .office-info__table{
        width: 100%;
        margin-top: 15px;
    }
    
    .office-info__row {
        display: flex;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #C9C9C9;
        align-items: center;
    }
    
    .office-info__label {
        width: 40%;
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }
    
    .office-info__value {
        width: 60%;
        text-align: center;
        font-size: 14px;
        color: #000;
    }
    
    .office-info__text {
        padding: 12px;
        margin-top: 15px;
        border-radius: 8px;
        background: #EEF6FB;
        color: #46A9EB;
        text-align: center;
        font-size: 14px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .office-info {
        padding: 60px 0;
    }
    
    .office-info__container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .office-info__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .office-info__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .office-info__section {
        padding: 20px;
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .office-info__section-title {
        padding: 15px 10px;
        border-bottom: 3px solid #2A6EBB;
        color: #2A6EBB;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
    }

    .office-info__table{
        width: 100%;
        margin-top: 15px;
    }
    
    .office-info__row {
        display: flex;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #C9C9C9;
        align-items: center;
    }
    
    .office-info__label {
        width: 40%;
        font-size: 13px;
        font-weight: 600;
        color: #000;
    }
    
    .office-info__value {
        width: 60%;
        font-size: 13px;
        color: #000;
        text-align: center;
    }
    
    .office-info__text {
        padding: 10px;
        margin-top: 12px;
        border-radius: 8px;
        background: #EEF6FB;
        color: #46A9EB;
        text-align: center;
        font-size: 13px;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .office-info {
        padding: 50px 0;
    }
    
    .office-info__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .office-info__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .office-info__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-info__section {
        width: 85%;
        margin: 0 auto;
        padding: 15px;
    }
    
    .office-info__section-title {
        padding: 12px 8px;
        border-bottom: 2px solid #2A6EBB;
        color: #2A6EBB;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
    }

    .office-info__table{
        width: 100%;
        margin-top: 15px;
    }
    
    .office-info__row {
        display: flex;
        padding: 8px 0;
        border-bottom: 1px solid #C9C9C9;
        align-items: center;
    }
    
    .office-info__label {
        width: 40%;
        font-size: 12px;
        font-weight: 600;
        color: #000;
    }
    
    .office-info__value {
        width: 60%;
        font-size: 12px;
        color: #000;
        text-align: center;
    }
    
    .office-info__text {
        padding: 8px;
        margin-top: 10px;
        border-radius: 6px;
        background: #EEF6FB;
        color: #46A9EB;
        text-align: center;
        font-size: 12px;
    }
}

                                                    /* ========================================
                                                                    アクセスセクション
                                                    ======================================== */
.access {
    width: 100%;
}

.access__container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access__title {
    color: #46A9EB;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.access__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.access__content {
    width: 100%;
    display: flex;
}

.access__info {
    border: 2px solid #46A9EB;
    background: #EEF6FB;
    border-radius: 15px;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .access {
        padding: 80px 0;
    }
    
    .access__container {
        padding: 0 40px;
        gap: 50px;
    }
    
    .access__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .access__content {
        flex-direction: row;
        gap: 40px;
        align-items: stretch;
    }
    
    .access__map {
        width: 65%;

    }
    
    .access__map iframe {
        width: 100%;
        height: 400px;
        border-radius: 10px;
    }
    
    .access__info {
        flex: 1;
        width: 35%;
        height: auto;
        padding: 30px;
    }
    
    .access__info-title {
        padding: 20px 10px;
        color: #2A6EBB;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
    }

    .access-info__table{
        width: 100%;
        margin-top: 20px;
    }
    
    .access-info__row {
        display: flex;
        padding: 12px 0;
        border-bottom: 1px solid #C9C9C9;
    }
    
    .access-info__label {
        width: 35%;
        font-size: 14px;
        font-weight: 600;
    }
    
    .access-info__value {
        width: 65%;
        font-size: 14px;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .access {
        padding: 60px 0;
    }
    
    .access__container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .access__title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .access__content {
        flex-direction: column;
        gap: 30px;
    }

    .access__map{
        width: 70%;
        margin: 0 auto;
    }
    
    .access__map iframe {
        width: 100%;
        height: 350px;
        border-radius: 10px;
    }
    
    .access__info {
        padding: 25px;
        width: 60%;
        margin: 0 auto;
    }
    
    .access__info-title {
        padding: 15px 10px;
        color: #2A6EBB;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }

    .access-info__table{
        width: 100%;
        margin-top: 20px;
    }
    
    .access-info__row {
        display: flex;
        padding: 10px 0;
        border-bottom: 1px solid #C9C9C9;
        align-items: center;
    }
    
    .access-info__label {
        width: 35%;
        font-size: 13px;
        font-weight: 600;
        
    }
    
    .access-info__value {
        width: 65%;
        font-size: 13px;
        
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .access {
        padding: 50px 0;
    }
    
    .access__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .access__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .access__content {
        flex-direction: column;
        gap: 25px;
    }
    
    .access__map iframe {
        width: 100%;
        height: 300px;
        border-radius: 8px;
    }
    
    .access__info {
        padding: 20px;
        width: 80%;
        margin: 0 auto;
    }
    
    .access__info-title {
        padding: 12px 8px;
        color: #2A6EBB;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
    }

    .access-info__table{
        width: 100%;
        margin-top: 20px;
    }
    
    .access-info__row {
        display: flex;
        padding: 8px 0;
        border-bottom: 1px solid #C9C9C9;
        align-items: center;
    }
    
    .access-info__label {
        width: 35%;
        font-size: 12px;
        font-weight: 600;
    }
    
    .access-info__value {
        width: 65%;
        font-size: 12px;
    }
}

/* ========================================
    問い合わせCTAセクション
======================================== */
.contact-cta {
    width: 100%;
    background: #3A8DDE;
}

.contact-cta__container {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-cta__box {
    width: 100%;
    max-width: 900px;
    display: flex;
}

.contact-cta__form,
.contact-cta__phone {
    background: #FFF;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .contact-cta {
        padding: 50px 0;
    }
    
    .contact-cta__container {
        padding: 0 40px;
        gap: 30px;
    }
    
    .contact-cta__title {
        font-size: 28px;
        color: #FFF;
        font-weight: 600;
    }
    
    .contact-cta__text {
        font-size: 16px;
        color: #FFF;
        text-align: center;
        line-height: 1.6;
        max-width: 800px;
    }
    
    .contact-cta__box {
        flex-direction: row;
        gap: 30px;
    }
    
    .contact-cta__form,
    .contact-cta__phone {
        flex: 1;
        padding: 25px 30px;
        gap: 15px;
    }
    
    .contact-cta__form-title,
    .contact-cta__phone-title {
        font-size: 18px;
        color: #46A9EB;
        font-weight: 600;
    }
    
    .contact-cta__form-time,
    .contact-cta__phone-time {
        font-size: 14px;
        color: #000;
        text-align: center;
        line-height: 1.4;
    }
    
    .contact-cta__form-btn,
    .contact-cta__phone-btn {
        padding: 12px 30px;
        background: #46A9EB;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .contact-cta {
        padding: 40px 0;
    }
    
    .contact-cta__container {
        padding: 0 30px;
        gap: 25px;
    }
    
    .contact-cta__title {
        font-size: 26px;
        color: #FFF;
        font-weight: 600;
    }
    
    .contact-cta__text {
        font-size: 15px;
        color: #FFF;
        text-align: center;
        line-height: 1.6;
    }
    
    .contact-cta__box {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-cta__form,
    .contact-cta__phone {
        padding: 20px 25px;
        gap: 12px;
    }
    
    .contact-cta__form-title,
    .contact-cta__phone-title {
        font-size: 17px;
        color: #46A9EB;
        font-weight: 600;
    }
    
    .contact-cta__form-time,
    .contact-cta__phone-time {
        font-size: 13px;
        color: #000;
        text-align: center;
        line-height: 1.4;
    }
    
    .contact-cta__form-btn,
    .contact-cta__phone-btn {
        padding: 10px 25px;
        background: #46A9EB;
        color: #FFF;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .contact-cta {
        padding: 35px 0;
    }
    
    .contact-cta__container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .contact-cta__title {
        font-size: 24px;
        color: #FFF;
        font-weight: 600;
    }
    
    .contact-cta__text {
        font-size: 14px;
        color: #FFF;
        text-align: center;
        line-height: 1.5;
    }
    
    .contact-cta__box {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-cta__form,
    .contact-cta__phone {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .contact-cta__form-title,
    .contact-cta__phone-title {
        font-size: 16px;
        color: #46A9EB;
        font-weight: 600;
    }
    
    .contact-cta__form-time,
    .contact-cta__phone-time {
        font-size: 12px;
        color: #000;
        text-align: center;
        line-height: 1.4;
    }
    
    .contact-cta__form-btn,
    .contact-cta__phone-btn {
        padding: 8px 20px;
        background: #46A9EB;
        color: #FFF;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
    }
}

/* ========================================
    フッターセクション
======================================== */
.footer {
    width: 100%;
    background: #46A9EB;
}

.footer__container {
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

/* PC版 */
@media screen and (min-width: 1024px) {
    .footer {
        padding: 40px 0;
    }
    
    .footer__container {
        padding: 0 40px;
        gap: 30px;
    }
    
    .footer__logo {
        width: 220px;
    }
    
    .footer__nav-list {
        gap: 40px;
    }
    
    .footer__nav-link {
        color: #FFF;
        font-size: 15px;
        text-decoration: none;
    }
    
    .footer__privacy-link {
        color: #FFF;
        font-size: 14px;
        text-decoration: none;
    }
    
    .footer__copyright-text {
        color: #FFF;
        font-size: 13px;
        text-align: center;
    }
}

/* タブレット版 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footer {
        padding: 35px 0;
    }
    
    .footer__container {
        padding: 0 30px;
        gap: 25px;
    }
    
    .footer__logo {
        width: 200px;
    }
    
    .footer__nav-list {
        gap: 30px;
    }
    
    .footer__nav-link {
        color: #FFF;
        font-size: 14px;
        text-decoration: none;
    }
    
    .footer__privacy-link {
        color: #FFF;
        font-size: 13px;
        text-decoration: none;
    }
    
    .footer__copyright-text {
        color: #FFF;
        font-size: 12px;
        text-align: center;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer__container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer__logo {
        width: 160px;
    }
    
    .footer__nav-list {
        gap: 15px;
    }
    
    .footer__nav-link {
        color: #FFF;
        font-size: 13px;
        text-decoration: none;
    }
    
    .footer__privacy-link {
        color: #FFF;
        font-size: 12px;
        text-decoration: none;
    }
    
    .footer__copyright-text {
        color: #FFF;
        font-size: 11px;
        text-align: center;
    }
}