
body {
    font-family:"游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    position: relative;
}
/* ヘッダー */
.header{
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #eee;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px 0px 15px;
    @media screen and (max-width:1010px){
        margin-top: 10px;
    }
    @media screen and (max-width:570px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        margin-top: 0px;
    }
}

.header_logo{

}

.header_content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 80px;
    @media screen and (max-width:1010px){
        display: block;
        align-items: center;
        height: auto;
    }
    @media screen and (max-width:570px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
}

.header_nav_list{
    display: flex;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    display: flex;
    gap: 20px;
    @media screen and (max-width:1010px){
        font-size: 12px;
        gap: 10px;
        margin-top: 10px;
    }
    @media screen and (max-width:570px){
        margin-top: 5px;
    }
}

.header_nav_item{
    font-weight: bold;
}

.header_nav_info_btn{
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 15px;
    @media screen and (max-width:1010px){
        gap: 10px;
        margin-top: 0px;
        display: block;
    }
    @media screen and (max-width:570px){
        display: flex;
        gap: 20px;
        margin-top: 5px;
    }
}

.btn_document,.btn_contact {
    /* transition: opacity 0.3s ease; 0.3秒かけて変化させる */
    /* opacity: 0.7; 70%の濃さにする */
    /* cursor: pointer; マウスカーソルを指の形にする */
}

.btn_document,.btn_contact:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}


.header_nav_info{
    text-align: right;
    @media screen and (max-width:1010px){
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: right;
    }
        @media screen and (max-width:570px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
}

.header_time{
    font-size: 10px;
}

.header_tel_content{
    display: flex;
    margin-top: 10px;
    @media screen and (max-width:1010px){
        margin-top: 0px;
    }
}

.header_tel{
    font-weight: bold;
    font-size: 18px;
    @media screen and (max-width:1010px){
        font-style: 14px;
    }
        @media screen and (max-width:570px){
            font-size: 14px;
    }
}

.header_btns{
    display: flex;
    align-items: center;
    gap: 10px;
    @media screen and (max-width:1010px){
        justify-content: flex-end;
        margin-top: 10px;
    }
    @media screen and (max-width:570px){
        gap: 5px;
        margin-top: 0px;
    }
}

.btn{
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: YuGothic;
    font-size: 14px;
    width: 142px;
    height: 50px;
}

.btn_document{
    justify-content: center;
    background: #F5A623;
    border-radius: 5px;
        @media screen and (max-width:1010px){
        width: 100px;
        height: 40px;
        font-size: 12px;
    }
    @media screen and (max-width:570px){
        width: 80px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
}

.btn_document:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}

.btn_contact{
    justify-content: center;
    background: #1B224C;
    border-radius: 5px;
    @media screen and (max-width:1010px){
        width: 100px;
        height: 40px;
        font-size: 12px;
    }
    @media screen and (max-width:570px){
        width: 80px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
}
.header_nav_item a:hover {
    color: #F5A623;
    /* transition: color 0.3s ease; */
}

/* メインビジュアル */
.main{
    width: 100%;
    height: 556px;
    /* padding-top: 80px; */
    /* height: 476px; */
    background: url(../img/mv.jpg) no-repeat center center/ cover;
}

.main_content{
    margin-top: 50px;
}

.main-title{
    color: #FFF;
    text-align: center;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    font-family: YuGothic;
    font-size: 48px;
    padding-top: 116px;
        @media screen and (max-width:570px){
            font-size: 28px;
    }
}

.main-subtitle{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 18px;
    padding: 37px;
        @media screen and (max-width:570px){
        font-size: 14px;
    }
}

.main_btn_document{
    width: 260px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5A623;
    border-radius: 31px;
    color: #FFF;
    margin: 0 auto;
        @media screen and (max-width:570px){
        width: 200px;
        height: 40px;
    }
}

.main_btn_document:hover {
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}


.main_btn_contact{
    display: flex;
    justify-content: center;
    color: #FFF;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    text-decoration-line: underline;
    text-decoration-style: solid;
    margin: 0 auto;
    padding-top: 22px;
    @media screen and (max-width:570px){
        font-size: 14px;
    }
}

.main_btn_contact:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}

.problem{
    width: 100%;
    height: 604px;
    background: #1B224C;
}


.problem_inner{

}

.problem_title{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    padding-top: 63px;
    @media screen and (max-width:1010px){
        font-size: 28px;
    }
    @media screen and (max-width:570px){
    font-size: 18px;
    }
}

.problem_list{
    display: flex;
    justify-content: center;
    padding-top: 57px;
    gap: 30px;
        @media screen and (max-width:570px){
        gap: 20px;
    }
}

.problem_item{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
        @media screen and (max-width:570px){
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
    }
}

.problem_outline {
    max-width: 920px;
    margin: 0 auto;
    padding: 20px;
    background: #FFF;
    margin-top: 76px;
        @media screen and (max-width:1010px){
        width: 80%;
    }
}

.problem_box {
    width: 100%;
    border: 5px solid #1B224C;
    text-align: center;
}

.problem_box_title{
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
        @media screen and (max-width:1010px){
        font-size: 28px;
    }
        @media screen and (max-width:570px){
            font-size: 18px;
    }
}

.problem_box_title span {
    background: linear-gradient(transparent 60%, #f7a03c 60%);
    font-weight: bold;
}

.problem_box_text{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-top: 28px;
    margin-bottom: 30px;
            @media screen and (max-width:1010px){
        font-size: 14px;
    }
        @media screen and (max-width:570px){
            font-size: 12px;
    }
}

.features{}

.features_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.features_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 63px;
        @media screen and (max-width:1010px){
        font-size: 28px;
    }
        @media screen and (max-width:570px){
        font-size: 18px;
    }
}

.features_item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
    gap: 50px;
    @media screen and (max-width:1010px){
        gap: 20px;
    }
        @media screen and (max-width:767px){
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }
}

.features_item_reverse{
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row-reverse; */
    margin-top: 55px;
    gap: 50px;
    @media screen and (max-width:1010px){
        gap: 20px;
    }
        @media screen and (max-width:700px){
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


.features_content {
    @media screen and (max-width:767px){
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
}

.features_label{
    width: 91px;
    height: 30px;
    color: #FFF;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    background: rgb(245, 166, 35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features_subtitle{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 37px;
            @media screen and (max-width:1010px){
        font-size: 18px;
    }
     @media screen and (max-width:767px){
        margin-top: 10px;
    }

}

.features_desc{
    width: 500px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 37px;
    @media screen and (max-width:1010px){
        width: 300px;
        font-size: 14px;
    }
    @media screen and (max-width:767px){
        margin-top: 10px;
    }
}

.features_figure{
}

.features_cta{
    width: 906px;
    height: 217px;
    background: url(../img/price.jpg) no-repeat center center/cover;
    margin-top: 93px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.features_cta_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features_cta_title{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    @media screen and (max-width:767px){
        font-size: 20px;
    }
}

.features_cta_btn{
    width: 200px;
    height: 50px;
    color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    border-radius: 30px;
    border: 1px solid #FFF;
    /* background: rgba(245, 166, 35, 0.00); */
    margin-top: 27px;
    @media screen and (max-width:767px){
        width: 130px;
        font-size: 14px;
    }
}


.features_cta_btn:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}

.case{
    width: 100%;
    height: auto;
    background: #1B224C;
    margin-top: 39px;
    @media screen and (max-width:1010px){
        height: 100%;
    }
}

.case_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.case_title{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    padding-top: 63px;
    @media screen and (max-width:767px){
        font-size: 28px;
    }
}

.case_contents{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 129px;
    padding-bottom: 60px;
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    @media screen and (max-width: 1010px) {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}

.case_list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    @media screen and (max-width:1010px){
        width: 90%;
    }
        @media screen and (max-width:767px){
        margin: 0 auto;
    }
}

.case_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    @media screen and (max-width:1010px){
        width: 80%;
    }
}

.case_item_title{
    width: 100%;
    max-width: 280px;
    width: 280px;
    height: 49px;
    color: #FFF;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    @media screen and (max-width:1010px){
        text-align: center;
    }
    @media screen and (max-width:767px){
        width: 200px;
        font-size: 14px;
    }
}

.case_img{
    width: 100%;
    max-width: 280px;
    width: 280px;
    height: 171px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    @media screen and (max-width:1010px){
        margin-top: 30px;
    }
}

.case_info{
    width: 283px;
    display: flex;
    margin-top: 16px;
    gap: 8px;
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
    }
}

.case_occupation{
    background: #F8F8F8;
    padding: 8px 39px 8px 10px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    @media screen and (max-width:1010px){
        font-size: 14px;
        padding: 8px 5px;
        text-align: center;
    }
}

.case_name{
    background: #F8F8F8;
    padding: 8px 49px 8px 10px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    @media screen and (max-width:1010px){
        font-size: 14px;
        padding: 8px 5px;
    }
}

.case_result{
    width: 100%;
    max-width: 280px;
    background: #F8F8F8;
    margin-top: 10px;
    width: 280px;
    height: 32px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.flow{
    
}

.flow_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.flow_title{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-top: 63px;
    @media screen and (max-width:1010px){
        font-size: 28px;
    }
}

.flow_list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
        @media screen and (max-width:767px){
            width: 100%;
    }
}

.flow_item{
    width: 900px;
    height: 64px;
    display: flex;
    align-items: center;
    background: #F8F8F8;
    margin-bottom: 8px;
    @media screen and (max-width:1010px){
        width: 90%;
        height: auto;
    }
        @media screen and (max-width:767px){
    }
}

.flow_num{
    width: 64px;
    height: 64px;
    color: #FFF;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    background: #F5A623;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    @media screen and (max-width:767px){
        font-size: 12px;
    }
}

.flow_name{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    margin-left: 20px;
    width: 180px;
    border-right: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
    height: 32px;
    @media screen and (max-width:1010px){
        font-size: 16px;
    }
        @media screen and (max-width:767px){
        font-size: 12px;
        margin-left: 10px;
    }
}

.flow_text{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    margin-left: 50px;
        @media screen and (max-width:1010px){
        font-size: 14px;
    }
        @media screen and (max-width:767px){
        font-size: 12px;
        margin-right: 20px;
        margin-left: 10px;
    }
}


.faq_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq_title {
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 59px;
    margin-bottom: 48px;
}

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

.faq_list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #1B224C;
    @media screen and (max-width:1010px){
        width: 90%;
    }
}

.faq_item {
    border-bottom: 1px solid #1B224C;
}

.faq_q {
    font-family: YuGothic;
    position: relative;
    width: 100%;
    padding: 24px 60px 24px 0;
    color: #1B224C;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
}

/* 回答エリアは最初非表示にする */
.faq_a {
    width: 900px;
    height: 65px;
    font-family: YuGothic;
    display: none;
    margin-bottom: 24px;
    line-height: 1.6;
    background: #F8F8F8;
    padding: 19px 0px;
    padding-left: 20px;
}

/* 矢印（縦線：プラスを作る用） */
.faq_q::before {
    background: #1B224C;
    content: "";
    height: 2px;
    width: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg); /* 縦にする */
    transition: transform .3s ease-in-out;
}

/* 矢印（横線） */
.faq_q::after {
    background: #1B224C;
    content: "";
    height: 2px;
    width: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease-in-out;
}

/* オープン時の動き */
.faq_q.open::before {
    transform: translateY(-50%) rotate(180deg); /* 縦線を横にする */
}

.faq_q.open::after {
    opacity: 0; /* 横線を消す、または重ねる */
}

.news{
    margin-top: 92px;
}

.news_inner{
    display: flex;
    align-items: flex-start;
    /* align-items: center; */
    justify-content: center;
    max-width: 900px;
    width: 100%;
    gap: 67px;
    margin: 0 auto;
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
        @media screen and (max-width:767px){
    }
}

.blog{
    @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }
    @media screen and (max-width:767px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }
}

.blog_main_title{
    /* width: 430px; */
    color: #1B224C;
    font-family: YuGothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
        @media screen and (max-width:1010px){
        font-size: 28px;
        text-align: center;
    }
        @media screen and (max-width:767px){
    }
}

.info{
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }
    @media screen and (max-width:767px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }
}

.info_main_title{
    /* width: 430px; */
    color: #1B224C;
    font-family: YuGothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }
}

.blog_list{
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.blog_item{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
        @media screen and (max-width:767px){
        flex-direction: column;
        align-items: center;
    }
}

.blog_img{
    flex-shrink: 0;
    width: 200px;
    position: relative;
}

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

.blog_category{
    width: 78px;
    height: 23px;
    color: #FFF;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    border: 1px solid #707070;
    background: #1B224C;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #1B224C;
}

.blog_content{
    width: 246px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.blog_title{
    color: #1B224C;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 15px 0;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}

.blog_date{
    display: block;
    color: #1B224C;
    font-size: 14px;
}

.info_list{
    margin-top: 30px;
    @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* margin: 0 auto; */
        text-align: center;
        margin-top: 40px;
    }
        @media screen and (max-width:767px){
        /* width: 60%; */
    }
}

.info_item{
    margin-bottom: 47px;
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
}

.info_date{}

.info_title{
    margin-top: 13px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}


.cta{
    height: 260px;
    background:url(../img/cta.png) no-repeat center center/cover;
    margin-top: 119px;
        @media screen and (max-width:767px){
            width: 100%;
    }
}

.cta_inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    /* width: 100%; */
    /* max-width: 1280px; */
}

.cta_title{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    padding-top: 70px;
        @media screen and (max-width:1010px){
        font-size: 25px;
    }
}

.cta_btn{
    width: 280px;
    height: 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    background: #F5A623;
    border-radius: 25px;
    /* margin: 0 auto; */
    margin-top: 13px;
        @media screen and (max-width:1010px){
        width: 200px;
        height: 35px;
        font-size: 14px;
    }
}

.cta_btn:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}

.cta_link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 17px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
        @media screen and (max-width:1010px){
        font-size: 14px;
    }
}

.cta_link:hover{
    transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
    opacity: 0.7; /* 70%の濃さにする */
    cursor: pointer; /* マウスカーソルを指の形にする */
}


.footer{}

.footer_contact{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_contact_text{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
        @media screen and (max-width:1010px){
        font-size: 14px;
    }
}

.footer_tel{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.footer_time{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
        @media screen and (max-width:1010px){
        font-size: 14px;
    }
}

.footer_main{}

.footer_content{
    height: 229px;
    background: #1B224C;
}

.footer_inner{
    width: 900px;
    max-width: calc(350 / 375 * 100vh);
    margin: 0 auto;
        @media screen and (max-width:1010px){
            width: 80%;
    }
}

.footer_contact{
}

.footer_contact_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 22px 0 22px 0;
    gap: 20px;
        @media screen and (max-width:767px){
        display: block;
        text-align: center;
        padding: 10px 0px;
    }
}

.footer_contact_text{}

.footer_contact_tel{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
        @media screen and (max-width:1010px){
        font-size: 20px;
    }
}

.footer_contact_time{}

.footer_nav_inner{
    margin: 0 auto;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1280px;
    width: 100%;
    background: #1B224C;
        @media screen and (max-width:1010px){
        flex-direction: column;
        align-items: center;
        gap: 30px;
        /* padding-bottom: 40px */
    }
}

.footer_nav{
}

.footer_nav_list{
    display: flex;
    color: #F8F8F8;
    align-items: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    /* gap: 42px; */
    padding-top: 46px;
        @media screen and (max-width:1010px){
        font-size: 14px;
    }
}

.footer_nav_item{
    border-left: 1px solid #FFF;
    margin-left: 20px;
    padding-left: 20px;
    @media screen and (max-width:767px){
        padding-left: 5px;
        margin-left: 5px;
    }
}

.footer_info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 34px;
        @media screen and (max-width:1010px){
        align-items: center;
        padding-top: 0px;
        gap: 10px;
    }
}

.footer_logo{
    width: 197px;
    height: 58px;
    border: 1px solid #707070;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
        @media screen and (max-width:1010px){
        width: 150px;
    }
}

.footer_contact_info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-top: 27px;
        @media screen and (max-width:1010px){
        flex-direction: row;
        gap: 10px;
        margin-top: 0px;
    }
        @media screen and (max-width:767px){
        display: block;
        align-items: center;
    }
}

.footer_logo_tel_content{
    display: flex;
        @media screen and (max-width:767px){
            gap: 10px;
    }
}

.footer_logo_tel{
    color: #FFF;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    @media screen and (max-width:767px){
        font-size: 14px;
    }
}

.footer_logo_time{
    color: #FFF;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    margin-top: 13px;
        @media screen and (max-width:767px){
        margin-top: 10px;
    }
}

.footer_copyright_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.footer_copyright{
    background: #FFF;
    text-align: right;
}

.footer_nav_item a {
    display: inline-block;
    transition: all 0.3s ease;
}

/* ホバーした時：オレンジ色にふわっと変える */
.footer_nav_item a:hover {
    color: #F5A623;
    opacity: 0.8;
}

/* コース・料金 */

.price-mv{
    height: 221px;
    background: url('../img/plan.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.price-mv_inner

.price-mv_title{
    color: #FFF;
    font-family: YuGothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    @media screen and (max-width:767px){
        font-size: 24px;
}
}

.breadcrumb{
    background-color: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb_inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.4rem;
}

.breadcrumb_span{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.breadcrumb_span a{
    border-bottom:1px solid #1B224C;
}

.breadcrumb_home{

}


.breadcrumb_inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #1B224C;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.breadcrumb_span{
}

.breadcrumb_home{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.price-system{
    padding: 58px 0px 90px 0px;
}

.price-system_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.price-system_title{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    @media screen and (max-width:767px){
        font-size: 24px;
}
}

.price-system_boxes{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* ボックス間の隙間 */
    margin-top: 60px;
    @media screen and (max-width:767px){
        font-size: 14px;
        gap: 10px;
}
}

.price-system_box{
    background-color: #1B224C;
    color: #fff;
    padding: 30px;
    width: 300px;
    text-align: center;
    width: 40%;
    @media screen and (max-width:767px){
    padding: 20px;
}
}

.price-system_plus{
    font-size: 3rem;
    color: #1B224C;
    font-weight: bold;
}

.price-system_text{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    margin-top: 45px;
    font-size: 16px;
    @media screen and (max-width:767px){
        font-size: 14px;
}
}


.price-plan{

}

.price-plan_inner{

}

.price-plan_title{
}

.price-plan_list{

}

.price-plan_cards{
    display: grid;
    margin-top: 70px;
    gap: 7px;
    align-items: flex-end;
    justify-content: center;
    grid-template-columns: repeat(4,1fr);
    @media screen and (max-width:1010px){
        grid-template-columns: repeat(auto-fit,220px);
        gap: 40px;
}
    @media screen and (max-width:767px){
        gap: 50px;
}
}

.price-plan_card{
    width: 220px;
    height: 474px;
    border: 0.5px solid #1B224C;
}

.price-plan_card-highlighted{
    width: 220px;
    height: 504px;
}

.price-plan_card_header{
    background: #1B224C;
}

.price-plan_card_title{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    padding: 22px 20px;
}


.price-plan_card_body{

}

.price-plan_card_price{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 29px;
}

.price-plan_card-highlight-money{
    color: #F5A623;
    text-align: center;
    font-family: YuGothic;
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 29px;
}

.price-plan_card_price_sub{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

.price-plan_card_list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 46px;
}

.price-plan_card_item{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 11px;
    justify-content: center;
    padding: 0px 25px;
}

.price-plan_card-highlight{
    background:  #F5A623;
}

.price-plan_card_label{
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-top: 22px;
}

.price-plan_card_note{
    
}


.blog-mv{
    background: url(../img/blog.png)no-repeat center center/cover;
}

.blog-mv_inner{

}

.blog-mv_title{
    color: #FFF;
    font-family: YuGothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    padding: 95px;
    @media screen and (max-width:767px){
        font-size: 24px;
}
}


.breadcrumb{
    background-color: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb_inner{
}

.archive-blog{

}

.archive-blog_span{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.4rem;
}

.archive-blog_home{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.archive-blog_inner{
    justify-content: center;
    max-width:  900px;
    width: 100%;
    gap: 60px;
    margin: 0 auto;
        @media screen and (max-width:1010px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60%;
    }
        @media screen and (max-width:767px){
    }
}

.archive-blog_title{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 58px;
    @media screen and (max-width:1010px){
        font-size: 24px;
}
    @media screen and (max-width:767px){
        font-size: 24px;
}
}

.archive-blog_list{
    margin-top: 60px;
    margin-bottom: 210px;
}

.archive-blog_item{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
    @media screen and (max-width:1010px){
        flex-direction: column;
}
}

.archive-blog_link{
    display: flex;
    gap: 50px;
    @media screen and (max-width:1010px){
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
}
}

.archive-blog_img-wrap{
    width: 240px;
    height: 179px;
    position: relative;
    z-index: 300;
    @media screen and (max-width:1010px){
        width: 100%;
}
}

.archive-blog_img{
    width: 240px;
    height: 179px;
}

.archive-blog_category{
    width: 90px;
    height: 32px;
    color: #FFF;
    text-align: center;
    font-family: YuGothic;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    background: #1B224C;
    /* padding: 8px 12px; */
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-blog_content{
    max-width: 610px;
    width: 100%;
    padding-top: 15px;
}

.archive-blog_date{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.archive-blog_item-title{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    @media screen and (max-width:1010px){
        font-size: 18px;
}
}

.archive-blog_text{
    margin-top: 20px;
}

.archive-blog_excerpt{}

.pagination{}

.pagination_list{}

.pagination_item{}


/* contact */
.contact{}

.contact-mv{}

.contact-mv_inner{}

.contact-mv_title{
}

.breadcrumb{}

.breadcrumb_inner{}

.breadcrumb_span{}

.contact-content{}

.contact-content_inner{}

.contact-content_message{
    color: #1B224C;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 83px;
}

.contact-content_link-wrap{
    text-align: center;
    margin-top: 85px;
    color: #1B224C;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 82px;
}

.contact-content_link{}


/* page-contact-home.php */

.contact-home{
    margin-top: 40px;
}

.contact-home_inner{
    /* max-width: 900px; */
    width: 100%;
    /* margin: 0 auto; */
}

.contact-home-mv{
    width: 100%;
    height: 220px;
    background: url(../img/cta.png) no-repeat center center/cover;
}

.contact-home-mv_inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.contact-home-mv_title{
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    @media screen and (max-width:767px){
        font-size: 24px;
}
}

.contact-home_title{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1B224C;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 63px;
        @media screen and (max-width:1010px){
        font-size: 28px;
    }
}

.contact-home_text{
    color: #1B224C;
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    font-weight: 500;
    line-height: 180%;
    margin-top: 27px;
        @media screen and (max-width:1010px){
        font-size: 14px;
        }
    }

.btn{}

.btn_contact-home{
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-home-breadcrumb{
    height: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    background: #F8F8F8;
}

.contact-home-breadcrumb a{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.contact-home-breadcrumb_inner{
    max-width: 1100px;
    padding: 0 20px;
    font-size: 1.4rem;
}

.contact-home-breadcrumb-span{
    color: #1B224C;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.contact-home-form{}

.contact-home-form_inner{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.contact-home-form_lead{
    margin-top: 58px;
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    @media screen and (max-width:767px){
        font-size: 14px;
}
}

/* お問い合わせホーム */
/* ---------------------------------------------------------
お問い合わせフォーム全体
--------------------------------------------------------- */
.contact-home-form {
    padding: 60px 0 100px;
    background-color: #fff;
}

.contact-home-form_inner {
    max-width: 900px; /* 画像の幅に合わせる */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-home-form_lead {
    color: #1B224C;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: left;
}

/* 各フォームアイテムの縦余白 */
.contact-home-form_item {
    margin-bottom: 30px;
}

/* 項目名ラベル */
.contact-home-form_label {
    display: block;
    color: #1B224C;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

/* 必須バッジ */
.contact-home-form_label-required {
    color: #1b224c;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* 入力欄（テキスト・メール・電話） */
.contact-home-form_input,
.contact-home-form_textarea {
    width: 100%;
    border: 1px solid #DEDEDE;
    padding: 15px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.contact-home-form_input:focus,
.contact-home-form_textarea:focus {
    border-color: #1B224C;
}

/* お問い合わせ内容（textarea）の高さ */
.contact-home-form_textarea {
    height: 240px;
}

/* ラジオボタン・チェックボックスの並び */
.wpcf7-list-item {
    display: block;
    margin-bottom: 12px;
    position: relative;
}

.wpcf7-list-item input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
    margin: 0;
}

.wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    display: inline-block;
    color: #1B224C;
    z-index: 1;
}

.wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #1B224C;
    border-radius: 50%;
    background: #fff;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before {
    background: #1B224C;
    box-shadow: inset 0 0 0 4px #fff;
}

/* プライバシーポリシーエリア */
.contact-home-form_privacy {
    text-align: center;
    margin: 60px 0 40px;
}

.contact-home-form_privacy-link a {
    color: #F5A623;
    text-decoration: underline;
}

.contact-home-form_checkbox span {
    color: #1B224C;
    font-weight: bold;
}

/* 送信ボタン */
.contact-home-form_submit-wrap {
    text-align: center;
}

.contact-home-form_submit {
    border-radius: 5px;
    background: #1B224C;
    color: #fff;
    width: 280px;
    height: 53px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-home-form_submit:hover {
    opacity: 0.8;
}

/* スマホ用調整
@media screen and (max-width: 767px) {
    .contact-home-form_submit {
        width: 100%;
    }
} */

.radio-test {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.archive-blogform-control-wrap{
}

.from-control-radio{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-control .wpcf7-list-item-label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 5px;
    cursor: pointer;
}

.radio-label-span{
    width: 20px;
    height: 20px;
}

.form-control .wpcf7-list-item-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.radio-test:checked + .radio-label-span::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
}

.radio-test:focus + .radio-label-span::before {
    outline: 2px solid #3498db;
}


/* 1. チェックボックスと文字を横並びにする */
.contact-home-form_privacy .wpcf7-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 27px;
}

/* 2. チェックボックス本体の見た目 */
.contact-home-form_privacy input[type="checkbox"] {
    width: 30px;
    height: 30px;
    margin: 0 15px 0 0; /* 右側に15pxの余白 */
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid #707070;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

/* 3. ラベル文字の調整 */
.contact-home-form_privacy .wpcf7-list-item-label {
    font-size: 18px;
    font-weight: bold;
    color: #1B224C;
}

/* 4. 自動で入る不要な改行を消す */
.contact-home-form_privacy br {
}

/* ここからお知らせ */
.news{

}
.news-content_inner{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    @media screen and (max-width:767px){
    margin: 0 auto;
}
}

.news-content_title{
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 95px 20px; */
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    height: 221px;
    background: url(../img/news.jpg) no-repeat center center/cover;
}
.breadcrumb
.breadcrumb_inner{
    max-width: 900px; /* 画像の幅に合わせる */
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb_span

.page-news

.page-news_inner{
    width: 60%;
    /* max-width: 900px; */
    margin: 0 auto;
}

.page-news_list-title{
    color: #1B224C;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 58px;
}

.page-news_list-inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    @media screen and (max-width:767px){
}
}

.page-news_list{
    margin-top: 67px;
    border-top: 1px solid #D5D5D5;
    margin-bottom: 210px;
}

.page-news_item{
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #D5D5D5;
    /* gap: 50px; */
    @media screen and (max-width:900px){
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        justify-content: center;
        margin-top: 10px;
}
}

.page-news_link{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding:21px ;
    text-decoration: none !important;
    @media screen and (max-width:767px){
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
}
}

.page-news_date{
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    /* margin-top: 34px; */
    @media screen and (max-width:782px){
        margin-left: 20px;
        font-size: 14px;
}
}

.page-news_item-title{
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    /* border-bottom: 1px solid #1b224c; */
    display: inline;
    font-size: 16px;
    font-weight: 500;
    color: #1B224C;
    line-height: 1.5;
    /* 下線の設定 */
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 4px;
    @media screen and (max-width:767px){
        font-size: 14px;
        width: 100%;
}
}

.news-pagination{

}

.navigation{

}

.pagination{

}

.nav-links{

}

.page-numbers{

}

.current{

}

/* ブログ一覧 */
.blog-detail_inner {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: flex-start; */
    /* max-width: 900px; */
    width: 100%;
    margin: 0 auto;
    /* padding: 60px 20px; */
    @media screen and (max-width: 1010px) {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center;    /* 中央寄せ（必要に応じて） */
    }
}

.blog-detail_main {
    width: 70%; /* メインの幅 */
}

.blog-detail_sidebar {
    width: 30%; /* サイドバーの幅 */
}

/* スマホでは縦に並べる */
@media screen and (max-width: 768px) {
    .blog-detail_inner {
        flex-direction: column;
    }
    .blog-detail_main,
    .blog-detail_sidebar {
        width: 100%;
    }
}

/* ブログ詳細 */
.blog-detail{
    color: #1B224C;
    font-family: YuGothic;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 60px;
}

.blog-detail_container{
    margin-top: 60px;
    @media screen and (max-width:1010px){
}
}

.blog-detail_inner{
    /* max-width: 900px; */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-detail_main{
    
}

.blog-detail_header{}

.blog-detail_category{
    width: 110px;
    height: 31px;
    color: #FFF;
    background: #1B224C;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-detail_title{
    color: #1B224C;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 30px;
}

.blog-detail_meta{}

.blog-detail_sns{}

.blog-detail_date{
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-detail_thumbnail{
    width: 100%;
    max-width: 590px;
    height: auto;
    margin: 0 auto;
}

.blog-detail_thumbnail img{
    width: 100% !important;
    height: auto !important;
    @media screen and (max-width:678px){
}
}

.blog-detail_content a{
    color: #F5A623;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.entry-content{}

.recommend-posts{}

.recommend-posts_title{
    color: #1B224C;
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 60px;
}

.recommend-posts_list{
    max-width: 590px;
    width: 100%;
}

.blog-detail_sidebar{
    width: 100%;
    max-width: 270px;
    height: auto;
    @media screen and (max-width:678px){
        width: 100%;
        max-width: 100%;
}
}

.sidebar-widget{
    gap: 370px;
    margin-left: 36px;
    margin-top: 70px;
    @media screen and (max-width:768px){
        margin-left: 0px;
}
}

.sidebar-widget_title{
    width: 269px;
    height: 63px;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    background: #1B224C;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width:678px){
        text-align: center;
}
}

.sidebar-widget_title-article{
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    background: #1B224C;
    padding: 21px 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-widget_list{
}

.sidebar-widget_categories{
    margin-top: 31px;
}


.sidebar-widget_categories-list{
    color:#1B224C;
    font-family: YuGothic;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-top: 11px;
}

.single-blog_item{
    display: flex;
    align-items: center;
    /* position: relative; */
    margin-top: 28px;
        @media screen and (max-width:678px){
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
}
}

.single-blog_link{
    
}
.single-blog_img-wrap{
}
.single-blog_img{
    width: 210px;
    height: 128px;
    position: relative;
}

.single-blog_category{
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 28px;
    background: #1B224C;
    display: flex;
    justify-content: center;
    align-items: center;
    @media screen and (max-width:678px){
        /* left: 190px; */
}
}

.single-blog_category span{
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
}

.single-blog_content{
    margin-left: 62px;
}

.single-blog_date{
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
}
.single-blog_item-title{
    color: #1B224C;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.single-article-blog_item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-top: 30px;
}

.single-article-blog_link

.single-article-blog_img-wrap

.single-article-blog_img{
    width: 100px;
    height: 70px;
}

.single-article-article-blog_img

.single-article-article-article-blog_category{

}

.single-article-blog_content{
    font-size: 12px;
    font-weight: 500;
    line-height: 200%;
}

.single-article-blog_date

.single-article-blog_item-title h3{
    color: #1B224C;
    font-size: 12px;
    font-weight: 500;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.single-article-blog_text

.single-blog_text{
    color: #1B224C;
    font-size: 12px;
    font-weight: 500;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* お知らせページ詳細 */

.page-news_inner{
    max-width: 900px; /* 記事が広がりすぎないように制限 */
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px; /* 上下と左右に余白を作る */
    box-sizing: border-box;
}

.page-news_detail-title{
    color: #1B224C;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 60px;
    @media screen and (max-width:768px){
        font-size: 20px;
}
}

.page-news_date{
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    /* margin: 0 auto; */
    text-align: right;
}

.page-news_content h2{
    color: #1B224C;
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin: 0 auto;
    margin-top: 43px;
}

h3.wp-block-heading{
    color: #1B224C;
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
    margin: 0 auto;
    margin-top: 27px;
    border-left: 4px solid #1B224C;
}

.entry__text{
    /* width: 900px;
    height: 60px; */
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 auto;
    margin-top: 30px;
}

.quote-text{
    /* width: 900px;
    height: 104px; */
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    background-color: #F8F8F8;
    margin: 0 auto;
    text-align: center;
    padding: 27px 26px 17px 74px;
    margin-top: 30px;
}


.wp-block-image{
    margin-top: 30px;
}

.wp-block-list{
    margin-top: 30px;
    margin-bottom: 30px;
}

.wp-block-list li {
    position: relative;
    padding-left: 21px;
    color: #1B224C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.wp-block-list li::before{
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #F5A623;
    position: absolute;
    top: 0;
    left: 0;
}

.page-news_content a{
    color: #F5A623;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%; /* 24px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}


/* ページネーション */
.wp-pagenavi{
    display: flex;
    justify-content: center;
    align-items: center;
}

.smaller{
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1B224C;
}

.current{
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1B224C;
}

.larger{
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1B224C;
}


