@charset "utf-8";
/* -----------------
共通設定
--------------------*/
body {
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}
p {
    font-size: 16px;
}
.inner {
    max-width: 1000px;
    margin: 0 auto;
}
img {
    max-width: 100%;
}
.center {
    margin: 0 auto;
    text-align: center;
}
.spBlock {
    display: none;
}
.mt30 {
    margin-top: 30px;
}
.mb25 {
    margin-bottom: 25px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb55 {
    margin-bottom: 55px;
}
.mb65 {
    margin-bottom: 65px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb120 {
    margin-bottom: 120px;
}

.no1 .--ttl,
.no2 .--ttl,
.no3 .--ttl,
.no4 .--ttl {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.33;
    color: #001976;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 18px;
    margin-bottom: 80px;
}
.no1 .--ttl::after,
.no2 .--ttl::after,
.no3 .--ttl::after,
.no4 .--ttl::after {
    content: "01";
    font-size: 31px;
    font-family: 'Oswald', sans-serif;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.no1 .--ttl::before,
.no2 .--ttl::before,
.no3 .--ttl::before,
.no4 .--ttl::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #001976;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* ページトップへ */
.pagetop {
    width: 89px;
    height: 89px;
    background-color: #001976;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    z-index: 4;
}
.pagetop__arrow {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}
.pagetop__arrow::after {
    content: "";
    position: absolute;
    top: 36px;
    right: 13px;
    width: 43px;
    height: 36px;
    margin: 0 10px;
    clip-path: polygon(50% 0, 100% 50%, 85% 50%, 50% 15%, 15% 50%, 0% 50%);
    background-color: #fff;
}
.pagetop:hover {
    opacity: .7;
}
@media screen and (max-width:1024px) {
    /* ページトップへ */
    .pagetop {
        width: 70px;
        height: 70px;
    }
    .pagetop__arrow::after {
        top: 26px;
        right: 6px;
        width: 37px;
        height: 32px;
        }
    }
@media screen and (max-width:599px) {
    /* ページトップへ */
    .pagetop {
        width: 50px;
        height: 50px;
        bottom: 100px;
    }
    .pagetop__arrow::after {
        top: 19px;
        right: 2px;
        width: 24px;
        height: 22px;
        }
    }
/* -----------------
フェードイン
--------------------*/
.fadeUpTrigger {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* -----------------
ヘッダー
--------------------*/
.topline {
    width: 100vw;
    height: 10px;
    background-color: #001976;
    margin-bottom: 10px;
}
.l-header {
    width: 100vw;
    height: 100px;
    position: fixed;
    background-color: #fff;
    z-index: 3;
}
.header--btn {
    max-width: 246px;
    height: 40px;
    border: 1px solid #001976;
    color: #001976;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    font-weight: 500;
    padding: 10px 30px;
    margin-right: 15px;
}
.l-header .--flex {
    display: flex;
    align-items: center;
}
.betw {
    justify-content: space-between;
}
.square {
    max-width: 123px;
    height: 28px;
    border: 1px solid #DEDEDE;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    margin-right: 20px;
}
.square:last-of-type {
    margin-bottom: 0;
}
.l-header .--txt {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
}
.l-header .--num img {
    max-width: 20px;
    height: 25px;
}
.l-header .--num {
    display: flex;
    align-items: center;
    transition: .1s;
}
.l-header .--num:hover {
    opacity: .7;
}
.l-header .--num a {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 0.975;
    color: #EB471D;
    margin-left: 8px;
}
.l-header .--num span {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #EB471D;
    line-height: 1.31;
}
.l-header .left {
    width: 50%;
}
.l-header .right {
    width: 48%;
}
.l-header .sp__fiex {
    display: none;
}
@media screen and (max-width:1024px) {
/* ヘッダー */
    .l-header .right {
        display: none;
    }
    .l-header .left {
        width: 100%;
        justify-content: center;
    }
    .inner {
        padding: 0 15px;
    }
    .header--btn {
        margin-right: 20px;
    }
}
@media screen and (max-width:599px) {
/* ヘッダー */
.l-header {
    height: 63px;
}
.header--btn {
    font-size: 12px;
    height: 29px;
    padding: 6px 17px 7px;
    margin-right: 12px;
}
h1 {
    max-width: 143px;
}
.topline {
    height: 7px;
    margin-bottom: 6px;
}
.l-header .sp__fiex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    padding: 10px 15px;
    width: 100%;
    background-color: #fff;
    bottom: 0;
    z-index: 3;
    height: 88px;
    border: 1px solid #001976;
}
.sp__fiex .square {
    font-size: 10px;
    padding: 5px 8px;
    height: 26px;
    width: 80px;
    margin-right: 11px;
}
.sp__fiex .square:first-of-type {
    margin-bottom: 10px;
}
.sp__fiex .phone .--txt {
    margin-bottom: 10px;
}
.l-header .sp__fiex .--num a {
    font-size: 26px;
    margin-left: 3px;
} 
.l-header .sp__fiex .--num span {
    font-size: 12px;
}
.l-header .sp__fiex .--num img {
    width: 13px;
    height: 17px;
}
}
@media screen and (max-width:599px) {
    /* ヘッダー */
    .l-header .sp__fiex .--num a {
        font-size: 25px;
    }
    }
    
/* -----------------
メインビジュアル
--------------------*/
main,
footer {
    transform: translateY(100px);
}
.mainV {
    background-image: url(../img/mainV_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 56px 86px 0;
}
.mainV .spNone {
    display: block;
    margin: 0 0 0 auto;
}
@media screen and (max-width:1024px) {
    /* メインビジュアル */
        .mainV {
            padding: 35px 15px 0;
        }
    }
@media screen and (max-width:599px) {
    /* メインビジュアル */
        .mainV .spNone,
        .spNone {
            display: none;
        }
        .spBlock {
            display: block;
            width: 100%;
        }
        .mainV {
            padding: 0;
            background-image: none;
        }
        p {
            font-size: 14px;
        }
        .inner {
            padding: 0 23px;
        }
        main,
        footer {
            transform: translateY(63px);
        }
    }
/* -----------------
flower__bg
--------------------*/
.flower__bg {
    background-image: url(../img/flower_bg.png);
    background-position: right center;
    background-repeat: no-repeat;
    padding: 107px 30px 71px 0;
}
.flower__bg .--flex {
    display: flex;
    max-width: 1460px;
    justify-content: space-between;
    /* align-items: center; */
}
.flower__bg .left {
    width: 52%;
}
.flower__bg .right {
    padding-top: 20px;
    width: 40%;
}
.flower__bg .right h3 {
    font-size: 27px;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.74;
    letter-spacing: .1em;
    margin-bottom: 2vw;
}
.flower__bg .right p {
    font-size: 16px;
    line-height: 2;
}
.tabBlock {
    display: none;
}
@media screen and (max-width:1024px) {
    /* flower__bg */
    .tabNone {
        display: none;
    }
    .tabBlock {
        display: block;
    }
    .w450 {
        width: 450px;
        margin: 0 0 0 auto;
    }
    .flower__bg {
        padding: 50px 15px 71px;
        background-image: url(../img/flower_bg_sp.png);
        background-size: contain;
        background-position: 10% 10%;
    }
    .flower__bg .--flex {
        flex-direction: column;
    }
    .flower__bg .left,
    .flower__bg .right {
        width: 80%;
        margin: 0 auto;
        padding-left: 3%;
    }
    .flower__bg .right p {
        padding-right: 0;
    }
}
@media screen and (max-width:599px) {
    /* flower__bg */
    .flower__bg {
        background-position: 0% 0%;
        padding: 43px 23px 69px;
    }
    .w450 {
        max-width: 302px;
        margin: 0 0 0 auto;
    }
    .flower__bg .right {
        width: 100%;
    }
    .flower__bg .right h3 {
        font-size: 18px;
        margin-bottom: 22px;
        letter-spacing: 0;
    }
    .flower__bg .right p {
        font-size: 14px;
    }
    .flower__bg .left,
    .flower__bg .right {
        width: 100%;
        margin: 0 auto;
        padding-left: 0;
    }
}
/* -----------------
ページリンク
--------------------*/
.page__link {
    background-color: #F6E761;
    padding: 80px 0 90px;
}
.page__link h3 {
    font-size: 27px;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.74;
    text-align: center;
    margin-bottom: 35px;
}
.page__link .--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.page__link .--item {
    width: 49%;
    min-width: 480px;
    height: 81px;
    line-height: 81px;
    padding-left: 66px;
    background-color: #fff;
    position: relative;
}
.page__link .--item a::before {
    content: "";
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    right: 8%;
    border: 6px solid transparent;
    border-top: 7px solid #001976;
    transition: 300ms ease all;
}
.page__link .--item a:hover::before {
    top: 61%;
}
.page__link .--item a {
    font-size: 20px;
    color: #001976;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: block;
}
.page__link .--item a::after {
    content: "01";
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
}
.page__link .--item:nth-of-type(2) a::after {
    content: "02";
}
.page__link .--item:nth-of-type(3) a::after {
    content: "03";
}
.page__link .--item:nth-of-type(4) a::after {
    content: "04";
}
@media screen and (max-width:599px) {
    /* page__link */
    .page__link {
        padding: 27px 0 33px;
    }
    .page__link h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .page__link .--item {
        max-width: 328px;
        min-width: 300px;
        width: 100%;
        height: 52px;
    }
    .page__link .--item:nth-of-type(2) {
        height: 80px;
        padding-top: 18px;
    }
    .page__link .--item a{
        font-size: 18px;
        line-height: 52px;
    }
    .page__link .--item:nth-of-type(2) a {
        line-height: 1.2;
    }
    .page__link .--item a::after {
        font-size: 20px;
        left: -15%;
    }
}
/* -----------------
No1
--------------------*/
.no1 {
    padding: 80px 0 50px;
}
.no1 .--bg {
    background-image: url(../img/flower_01.png);
    height: 375px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    padding-top: 170px;
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 140px;
}
.no1 .--bg:nth-of-type(2) {
    background-image: url(../img/flower_02.png);
}
.white--box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 80px;
}
.white--box h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    background: linear-gradient(transparent 60%, #FBF093 30%);
    display: inline;
}
.white--box p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
}
@media screen and (max-width:1024px) {
    /* No1 */
    .no1 {
        margin-bottom: 170px;
    }
    .no1 .--bg {
        padding-left: 50px;
        padding-right: 50px;
    }
    .white--box {
        padding: 48px 64px;
    }

}
@media screen and (max-width:599px) {
    /* No1 */
    .no1 {
        padding: 27px 0 33px;
        margin-bottom: 23.8vh;
    }
    .no1 .--ttl,
    .no2 .--ttl,
    .no3 .--ttl,
    .no4 .--ttl {
        margin-bottom: 40px;
        font-size: 30px;
    }
    .no1 .--ttl::after,
    .no2 .--ttl::after,
    .no3 .--ttl::after,
    .no4 .--ttl::after {
        font-size: 24px;
        top: 15px;
    }
    .no1 .--bg {
        padding-left: 30px;
        padding-right: 30px;
    }
    .white--box {
        padding: 18px 24px;
        margin-bottom: 50px;
    }
    .white--box h4 {
        font-size: 20px;
    }
    .white--box p {
        margin-top: 13px;
    }
    .no1 .inner {
        padding: 0;
    }
    .smb70 {
        margin-bottom: 70px;
    }
    .white--box p {
        font-size: 14px;
    }
}
/* -----------------
No2
--------------------*/
.no2 {
    padding: 80px 0 120px;
    background-color: #F8F8F8;
}
.no2 .--ttl {
    margin-bottom: 40px;
}
.no2 .--ttl::after {
    content: "02";
}
.no2 .--txt {
    text-align: center;
    line-height: 1.875;
}
.no2 .--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.no2 .--item {
    width: 49%;
}
.no2 h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 20px;
}
.no2 .subtxt {
    line-height: 2;
    margin-top: 13px;
}
@media screen and (max-width:599px) {
    /* No2 */
    .no2 .--txt {
        font-size: 15px;
    }
}
@media screen and (max-width:599px) {
    /* No2 */
    .no2 {
        padding: 27px 0 33px;
    }
    .no2 .mb80 {
        margin-bottom: 50px;
    }
    .no2 .--flex {
        flex-direction: column;
    }
    .no2 .--item {
        width: 100%;
    }
    .no2 h5 {
        font-size: 18px;
    }
}
/* -----------------
No3
--------------------*/
.no3 {
    padding-top: 80px;
}
.no3 .--ttl {
    margin-bottom: 40px;
}
.no3 .--ttl::after {
    content: "03";
}
.no3 .--txt {
    text-align: center;
    line-height: 1.875;
}
.blue--box {
    margin-top: 120px;
    background-color: #444F91;
    padding: 70px 0 65px;
    color: #fff;
}
.phone--title {
    font-size: 24px;
    line-height: 1.375;
    text-align: center;
    font-weight: 500;
    margin-bottom: 35px;
}
.phone--title:last-of-type {
    margin-bottom: 0;
}
.phone--box {
    max-width: 900px;
    margin: 0 auto 33px;
    background-color: #fff;
    padding: 45px 30px 45px;
    color: #EB471D;
    text-align: center;
}
.h24 {
    width: 123px;
    border: 1px solid #001976;
    padding: 3px 25px 4px 26px;
    color: #001976;
    margin-right: 15px;
}
.phone--box--ttl {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 15px;
}
.phone--box .--num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    transition: .1s;
}
.phone--box .--num:hover {
    opacity: .7;
}
.phone--box .--num img {
    width: 33px;
    height: 43px;
}
.phone--box .--num a {
    font-family: 'Lato', sans-serif;
    font-size: 67px;
    font-weight: 700;
    line-height: 0.975;
    color: #EB471D;
    margin-left: 8px;
}
.phone--box .--num span {
    font-size: 26px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #EB471D;
    line-height: 1.31;
}
.tabBlock {
    display: none;
}
@media screen and (max-width:1024px) {
    /* No3 */
    .phone--box .--num a {
        font-size: 64px;
    }
    .tabBlock {
        display: block;
    }
}
@media screen and (max-width:599px) {
    /* No3 */
    .no3 {
        padding-top: 27px;
    }
    .no3 .mb80 {
        margin-bottom: 45px;
    }
    .no3 .--ttl {
        font-size: 29px;
    }
    .blue--box {
        margin-top: 80px;
        padding: 35px 0 35px;
    }
    .phone--title {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .phone--box {
        padding: 20px 10px 25px;
    }
    .phone--box--ttl {
        font-size: 14px;
    }
    .phone--box .--num a {
        font-size: 27px;
    }
    .phone--box .--num img {
        width: 14px;
        height: 18px;
    }
    .phone--box .--num span {
        font-size: 16px;
    }

}
/* -----------------
No4
--------------------*/
.no4 {
    padding: 80px 0 120px;
}
.no4 p {
    line-height: 2;
}
.no4 .--ttl {
    margin-bottom: 35px;
}
.no4 .--ttl::after {
    content: "04";
}
.no4 .bluetxt {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.41;
    color: #001976;
    margin-bottom: 20px;
}
.no4 .--flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.no4 .--item {
    width: 48%;
}
.no4 .subtxt {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
}
.no4 .subtxt span {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}
.no4 .col--box {
    background-color: #FAF6FE;
    padding: 50px 120px 95px;
    border-radius: 40px;
}
.col--box .bene--title {
    max-width: 338px;
    background-color: #fff;
    border: 1px solid #EB471D;
    margin: 0 auto 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 39px;
    padding: 17px 15px 18px;
    color: #EB471D;
    font-size: 32px;
    font-weight: 500;
}
.no4 .col--box .--flex {
    flex-wrap: wrap;
}
.no4 .col--box .--item {
    margin-bottom: 57px;
    text-align: center;
}
.no4 .bene--txt {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(transparent 60%, #FBF093 30%);
    display: inline;
    position: relative;
}

.no4 .bene--txt::after {
    content: "";
    width: 48px;
    height: 45px;
    background-image: url(../img/hukidashi_1.png);
    position: absolute;
    left: -52px;
    top: -22px;
}
.no4 .--item:nth-of-type(2) .bene--txt::after {
    background-image: url(../img/hukidashi_2.png);
}
.no4 .--item:nth-of-type(3) .bene--txt::after {
    background-image: url(../img/hukidashi_3.png);
}
.no4 .--item:nth-of-type(4) .bene--txt::after {
    background-image: url(../img/hukidashi_4.png);
    left: -22px;
}

@-moz-document url-prefix(){
    .no4 .bene--txt::after{
        left: -333px;
        top: 20px;
    }
    .no4 .--item:nth-of-type(2) .bene--txt::after {
        left: -377px;
    }
    .no4 .--item:nth-of-type(3) .bene--txt::after {
        left: -360px;
    }
    .no4 .--item:nth-of-type(4) .bene--txt::after {
        left: -22px;
        top: -22px;
    }
}
.no4 .bene--txt span {
    color: #EB471D;
}
.no4 .block {
    display: block;
    background: linear-gradient(transparent 80%, #FBF093 20%);
}
.no4 .gray {
    background-color: #F3F3F3;
    padding: 60px 60px 40px;
}
.no4 .gray h4 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}
.no4 .gray h4 .blue {
    font-size: 40px;
    color: #001976;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}
.no4 .gray h4 .bold {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
}
.no4 .gray .--flex {
    align-items: stretch;
}
.no4 .gray .--flex .--item {
    background-color: #fff;
    border: 4px solid #E6E4E4;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 10px;
}
.no4 .gray .--flex .--item h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.no4 .gray .--flex .--item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.no4 .gray--subtxt {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    margin-top: 7px;
    color: #EB471D;
    line-height: 1.5;
}
.no4 .borderb {
    padding-bottom: 37px;
    border-bottom: 1px solid #DEDEDE;
}
@media screen and (max-width:1024px) {
    /* No4 */
    .no4 .col--box .--flex {
        flex-direction: column;
    }
    .no4 .col--box .--item {
        width: 100%;
    }
    .bl {
        margin: 0 auto 30px;
        display: block;
    }
    .no4 .block {
        width: 350px;
        margin: 0 auto;
    }
    .no4 .--item:nth-of-type(4) .bene--txt::after {
        left: -30px;
    }
    .no4 .mb120 {
        margin-bottom: 40px;
    }
    .no4 .bene--txt::after {
        left: -52px;
        top: -22px;
    }
    @-moz-document url-prefix(){
        .no4 .--item:nth-of-type(2) .bene--txt::after {
            left: -50px;
        }
        .no4 .--item:nth-of-type(3) .bene--txt::after {
            left: -50px;
        }
    }
}
@media screen and (max-width:599px) {
    /* No4 */
    .no4 {
        padding: 27px 0 33px;
    }
    .no4 .--flex {
        flex-direction: column;
    }
    .no4 .--item {
        width: 100%;
    }
    .no4 .bluetxt {
        font-size: 20px;
    }
    .no4 p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .no4 .subtxt {
        font-size: 16px;
    }
    .no4 .subtxt span {
        font-size: 12px;
        letter-spacing: -0.02em;
    }
    .no4 .col--box {
        padding: 30px 30px 30px;
    }
    .col--box .bene--title {
        max-width: 200px;
        font-size: 20px;
        padding: 12px 15px 13px;
    }
    .bl {
        max-width: 230px;
        margin: 0 auto 13px;
    }
    .no4 .bene--txt::after {
        width: 35px;
        height: 34px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .no4 .bene--txt {
        font-size: 20px;
    }
    .no4 .col--box .--item {
        margin-bottom: 40px;
    }
    .no4 .bene--txt::after {
        left: -42px;
    }
    .no4 .gray--subtxt {
        font-size: 16px;
    }
    .no4 .--item:nth-of-type(4) .bene--txt::after {
        left: -22px;
    }
    @-moz-document url-prefix(){
        .no4 .--item:nth-of-type(2) .bene--txt::after {
            left: -40px;
        }
        .no4 .--item:nth-of-type(3) .bene--txt::after {
            left: -40px;
        }
    }
    .no4 .block {
        width: 250px;
    }
    .no4 .gray h4 {
        font-size: 24px;
    }
    .no4 .gray h4 .blue {
        font-size: 28px;
    }
    .no4 .gray h4 .bold {
        font-size: 16px;
    }
    .no4 .gray .--flex .--item h5 {
        font-size: 20px;
    }
    .no4 .gray .--flex .--item {
        padding: 35px 10px 15px;
    }
    .h24 {
        width: 100px;
        padding: 3px 10px 4px 10px;
        margin: 0 auto 8px;
        display: block;
    }
}
/* -----------------
access
--------------------*/
.access {
    border-top: 1px solid #001976;
    padding: 80px 0 140px;
}
.access .--ttl {
    font-size: 42px;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    color: #001976;
    text-align: center;
    margin-bottom: 50px;
}
.access .--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.access .--item {
    width: 48%;
}
.access .--item p {
    font-size: 30px;
    color: #001976;
    font-weight: 700;
    margin: 16px 0 24px;
}
.access .button {
    border: 1px solid #001976;
    text-align: center;
    height: 67px;
    line-height: 65px;
}
.access .button a {
    font-size: 20px;
    font-weight: 500;
    display: block;
    position: relative;
    background-color: #fff;
    color: #001976;
    transition: 300ms ease all;
}
.button a:hover {
    background-color: #001976;
    color: #fff;
}
.access .button a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #001976;
    border-right: 2px solid #001976;
    transform: rotate(45deg);
    position: absolute;
    right: 22px;
    top: calc(50% - 3px);
    transition: 300ms ease all;

}
.button a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media screen and (max-width:1024px) {
    /* access */
    .access .--item p {
        height: 40px;
        font-size: 28px;
    }
}
@media screen and (max-width:599px) {
    /* access */
    .access {
        padding: 27px 0 50px;
    }
    .access .--ttl {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .access .--flex {
        flex-direction: column;
    }
    .access .--item {
        width: 100%;
    }
    .access .--item p {
        font-size: 20px;
        height: 20px;
    }
    .access .--item:nth-of-type(3),
    .access .mb90 {
        margin-bottom: 60px;
    }
    .access .button a {
        font-size: 16px;
    }
}
/* -----------------
footer
--------------------*/
.l-footer {
    padding-bottom: 100px;
}
.l-footer .blue--box {
    margin-top: 0;
    margin-bottom: 58px;
}
.l-footer .--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.l-footer .--item {
    width: 48%;
}
.l-footer .serif {
    font-size: 30px;
    font-weight: 700;
    color: #001976;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.33;
}
.l-footer .sans {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    color: #001976;
}
.l-footer .button {
    border: 1px solid #001976;
    text-align: center;
    height: 67px;
    line-height: 65px;
}
.l-footer .button a {
    font-size: 20px;
    font-weight: 500;
    display: block;
    position: relative;
    background-color: #fff;
    color: #001976;
    transition: 300ms ease all;
}
.l-footer .button a:hover {
    background-color: #001976;
    color: #fff;
}
.l-footer .button a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #001976;
    border-right: 2px solid #001976;
    transform: rotate(45deg);
    position: absolute;
    right: 22px;
    top: calc(50% - 3px);
    transition: 300ms ease all;
}
.l-footer .button a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media screen and (max-width:1024px) {
    /* footer */
    .tabbl {
        flex-direction: column;
    }
    .l-footer .--flex {
        align-items: baseline;
    }
    .l-footer {
        padding-bottom: 60px;
    }
}
@media screen and (max-width:599px) {
    /* footer */
    .l-footer {
        padding-bottom: 105px;
    }
    .l-footer .--flex {
        flex-direction: column;
    }
    .l-footer .--item {
        width: 100%;
    }
    .l-footer .blue--box {
        margin-bottom: 35px;
    }
    .l-footer .--item:first-of-type {
        order: 2;
    }
    .l-footer .--item:nth-of-type(2) {
        order: 1;
        margin-bottom: 30px;
    }
    .l-footer .button a {
        font-size: 18px;
    }
    .l-footer .--item img {
        max-width: 75px;
    }
    .l-footer .serif {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .l-footer .sans {
        font-size: 18px;
        line-height: 1.2;
    }
}