@charset "utf-8";


/*-------------------------------------------------------------
共通
-------------------------------------------------------------*/
.sec_titile {
    width: auto;
    height: 180px;
    font-size: 4.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    padding-left: calc((100% - 1600px) / 2);
    padding-right: 5em;
    background: linear-gradient(90deg, #293187 10%, #54b4bf);
    display: inline-block;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: -1;
}

.sec_titile::after {
    content: "";
    width: 260px;
    aspect-ratio: 3 / 2;
    background-color: #fff;
    transform: rotate(50deg);
    position: absolute;
    right: -120px;
    bottom: 30%;
}

.sec_titile span {
    width: 100%;
    height: 100%;
    padding-left: 0.5em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
    .sec_titile {
        height: 15vw;
        font-size: 3.5vw;
    }

    .sec_titile::after {
        width: 25vw;
        right: -10vw;
    }

    .sec_titile span {
        padding-left: 1em;
    }
}

@media screen and (max-width: 768px) {
    .sec_titile {
        height: 80px;
        font-size: 22px;
    }

    .sec_titile::after {
        width: 260px;
        right: -120px;
        bottom: 30%;
    }

    .sec_titile span {
        padding-left: 5vw;
    }
}


/*-------------------------------------------------------------
mv
-------------------------------------------------------------*/
#top_mv {
    margin-bottom: 100px;
}

#top_mv .mv_inner {
    width: 100%;
    /* height: 75vh;
    height: 75dvh;
    min-height: 770px; */
    height: 770px;
    aspect-ratio: 1920 / 770;
    display: flex;
}

#mv_area {
    width: calc(100% - 430px);
    background: url("../img/top/mv_bg.jpg") no-repeat bottom right / cover;
    position: relative;
}

#mv_area .catch {
    color: var(--color-main);
    position: absolute;
    top: 7%;
    left: 9%;
}

#mv_area .catch_em_text {
    font-size: 6rem;
    line-height: 1.5em;
    font-weight: bold;
    letter-spacing: 0.14em;
    margin-bottom: 0.5em;
}

#mv_area .catch_text {
    font-size: 2.5rem;
    line-height: 2em;
    letter-spacing: 0.08em;
}

#mv_area .bg_text {
    font-size: 9.5rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 0.2em;
    bottom: 0;
}

#nav_area {
    width: 360px;
    background: linear-gradient(-45deg, #54b4bf 0%, #293187 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nav_area .site_logo {
    width: 80%;
    margin-top: 10%;
    margin-bottom: 26%;
}

@media screen and (max-width: 1900px) {
    #mv_area .bg_text {
        font-size: 8.5rem;
    }
}

@media screen and (max-width: 1600px) {
    #top_mv .mv_inner {
        /* min-height: 45vw; */
        height: 46vw;
    }

    #mv_area {
        width: calc(80% - 70px);
    }

    #mv_area .bg_text {
        font-size: 4.5vw;
    }

    #nav_area {
        width: 20%;
    }
}

@media screen and (max-width: 1200px) {
    #top_mv {
        margin-bottom: 8.3vw;
    }

    #top_mv .mv_inner {
        height: 47vw;
    }

    #mv_area {
        width: 75%;
    }

    #mv_area .catch_em_text {
        font-size: 4vw;
    }

    #mv_area .catch_text {
        font-size: 2vw;
    }

    #mv_area .bg_text {
        font-size: 5vw;
    }
}

@media screen and (max-width: 768px) {
    #top_mv {
        margin-top: 54px;
        margin-bottom: 50px;
    }

    #top_mv .mv_inner {
        height: 300px;
        min-height: 300px;
    }

    #mv_area {
        width: 100%;
    }

    #mv_area .catch {
        top: 7%;
    }

    #mv_area .catch_em_text {
        font-size: 25px;
    }

    #mv_area .catch_text {
        font-size: 14px;
        font-weight: 500;
        transition-delay: 1s;
    }

    #mv_area .bg_text {
        font-size: 27px;
    }

    #nav_area {
        display: none;
    }
}

/* ナビゲーション */
.nav {
    width: 74%;
    color: #fff;
}

.nav_list li:not(:first-child) a {
    margin-top: 1.4em;
}

.nav_list a {
    font-size: 2.1rem;
    padding-left: 1.4em;
    position: relative;
    color: transparent;
    background: linear-gradient(to right, var(--color-yellow) 50%, #fff 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}

.nav_list a::before {
    content: "";
    width: 1em;
    height: 1.2em;
    background: url("../img/icon_list.svg") no-repeat center center / contain;
    position: absolute;
    left: 0;
    top: -0.1em;
    filter: brightness(0) invert(1);
}

.nav_list a:hover {
    background-position: 0 100%;
}

.nav_sub_list {
    margin-top: 30%;
}

.nav_sub_list li:not(:first-child) a {
    margin-top: 1.5em;
}

.nav_sub_list a {
    font-size: 2.1rem;
}

.nav_sub_list a:hover {
    color: var(--color-yellow);
}

@media screen and (max-width: 1600px) {
    .nav_list a,
    .nav_sub_list a {
        font-size: 1.3vw;
    }
}


/*-------------------------------------------------------------
sp menu
-------------------------------------------------------------*/
#header {
    display: none;
    height: 0;
}

.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    #header {
        display: block;
        height: 54px;
    }

    .hamburger {
        display: block;
    }
}

/*-------------------------------------------------------------
lead
-------------------------------------------------------------*/
#lead {
    margin: 120px 0;
}

.lead_inner {
    width: var(--cont-max-md);
}

.lead_txt {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: center;
}
.lead_txt p > span {
    display: inline-block;
}

@media screen and (max-width: 1200px) {
    #lead {
        margin: 10vw 0;
    }

    .lead_txt {
        font-size: 2.16vw;
    }
}

@media screen and (max-width: 768px) {
    .lead_txt {
        font-size: 15px;
    }

    #lead {
        margin: 50px 0;
    }
}

/*-------------------------------------------------------------
news
-------------------------------------------------------------*/
#news {
    margin-bottom: 120px;
}

.news_inner {
    width: var(--cont-max-md);
    /* border-top: 1px solid var(--color-main); */
    border-bottom: 1px solid var(--color-main);
    display: flex;
    align-items: center;
}

.news_titile_area {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_titile_area .title {
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--color-main);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1em;
    /* margin-top: 50px; */
}

.news_titile_area .news_btn {
    width: 160px;
    max-width: 90%;
    aspect-ratio: 160 / 36;
    margin-top: auto;
    margin-bottom: 50px;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    background-color: var(--color-main);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_titile_area .news_btn:hover {
    background-color: var(--color-blue3);
}

.news_list_area {
    width: 100%;
    flex: 1;
}

.news_list li {
    font-size: 1.6rem;
    margin-bottom: 1em;
    display: flex;
}

/* .news_list li:first-child {
    margin-top: 3em;
} */

.news_list li:last-child {
    margin-bottom: 3em;
}

.news_list li .news_date,
.news_list li .news_text {
    font-size: 1.6rem;
    line-height: 1.5em;
    letter-spacing: 0.06em;
}

.news_list li .news_date {
    width: 12em;
    padding-left: 3em;
}

.news_list li .news_text {
    width: 100%;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    max-height: calc(1.5em * 1);
}

.news_list li a.news_text:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    #news {
        margin-bottom: 10vw;
    }

    .news_titile_area {
        width: 20%;
    }

    .news_titile_area .title {
        font-size: 3.8vw;
        /* margin-bottom: 4.16vw;
        margin-top: 4.16vw; */
    }

    .news_titile_area .news_btn {
        width: 13.3vw;
        margin-bottom: 4.2vw;
        font-size: 1.6vw;
    }

    .news_list li {
        font-size: 1.6vw;
    }

    .news_list li .news_date,
    .news_list li .news_text {
        font-size: 1.6vw;
    }
}

@media screen and (max-width: 768px) {
    #news {
        margin-bottom: 50px;
    }

    .news_inner {
        flex-direction: column;
        /* padding-top: 25px; */
    }

    .news_titile_area {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .news_titile_area .title {
        font-size: 25px;
        margin-bottom: 0;
        /* margin-top: 0; */
    }

    .news_titile_area .news_btn {
        width: 100px;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 12px;
    }

    .news_list li {
        font-size: 14px;
        margin-bottom: 1em;
    }

    /* .news_list li:first-child {
        margin-top: 0;
    } */

    .news_list li:last-child {
        margin-bottom: 2em;
    }

    .news_list li .news_date,
    .news_list li .news_text {
        font-size: 14px;
        font-weight: 500;
    }

    .news_list li .news_date {
        width: 9em;
        padding-left: 1em;
    }
}


/*-------------------------------------------------------------
group
-------------------------------------------------------------*/
#group {
    margin-bottom: 120px;
}

.group_title,
.service_title {
    width: 100%;
    height: 180px;
    margin-bottom: 100px;
    position: relative;
}

.group_title {
    margin-bottom: 0;
}

.group_lead,
.service_lead {
    width: var(--cont-max-lg);
    max-width: 100%;
    padding-left: 600px;
    padding-right: 6em;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.group_lead .lead_em,
.service_lead .lead_em {
    font-size: 2.5rem;
    line-height: 1.5em;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: var(--color-main);
    margin-bottom: 0.8em;
}

.group_lead .lead,
.service_lead .lead {
    font-size: 1.8rem;
    line-height: 2em;
    letter-spacing: 0.06em;
}

.group_cont {
    width: 100%;
    background-color: var(--color-grey);
    padding: 100px 0;
}

.group_cont .inner {
    width: var(--cont-max-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#group .cont_title {
    margin-bottom: 80px;
}

#group .cont_title .title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    margin-bottom: 0.7em;
}

#group .cont_title .lead {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.06em;
}

.group_logo,
.group_main {
    width: 1000px;
    max-width: var(--cont-md);
}

.group_logo a {
    transition: 0.2s;
}
.group_logo a:hover {
    opacity: 0.8;
}

.group_main .note {
    width: 100%;
    font-size: 1.8rem;
    text-align: right;
    margin-bottom: 1em;
}

.group_list_title {
    width: 100%;
    height: 90px;
    border-radius: 15px 15px 0 0;
    font-size: 3.5rem;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group_list_title.green {
    background: linear-gradient(45deg, var(--color-blue) 56%, var(--color-grey));
}

.group_list_title.blue {
    background: linear-gradient(45deg, var(--color-blue3) 56%, var(--color-grey));
}

.group_list + .group_list_title {
    margin-top: 30px;
}

.group_list {
    width: 100%;
}

.group_list li {
    width: 100%;
    margin-top: 10px;
}

.group_list li a {
    width: 100%;
    height: 90px;
    background-color: #fff;
    padding: 5px;
    position: relative;
    bottom: 0;
    box-shadow: 3px 3px 4px rgba(0,0,0,0.15);
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.group_list li a:hover {
    bottom: -2px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

.group_list li a .company_name {
    width: 40%;
    height: 100%;
    background-color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
}

.group_list li a .company_work {
    /*display: flex;*/
    /* width: 47%; */
    align-items: center;
    padding: 0 1em 0 2em;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.group_list li a .company_work small{
    display: inline-block;
    margin-top: 0.5em;
}

@media screen and (max-width: 1600px) {
    .group_list_title {
        font-size: 3.5rem;
    }

    /* .group_list li a .company_name {
        font-size: 3rem;
    } */

    /* .group_list li a .company_work {
        font-size: 1.8rem;
    } */
}

@media screen and (max-width: 1200px) {
    #group {
        margin-bottom: 12.5vw;
    }

    .group_title,
    .service_title {
        height: 15vw;
    }

    .service_title {
        margin-bottom: 8.3vw;
    }

    .group_lead,
    .service_lead {
        padding-left: 50vw;
    }

    .group_lead .lead_em,
    .service_lead .lead_em {
        font-size: 2vw;
    }

    .group_lead .lead,
    .service_lead .lead {
        font-size: 1.8vw;
        max-width: 47vw;
    }

    .group_lead .nopc {
        display: block;
    }

    .group_lead .nosp {
        display: none;
    }

    .group_cont {
        padding: 8.3vw 0;
    }

    .group_cont .inner {
        gap: 1.7vw;
    }

    #group .cont_title {
        margin-bottom: 6.7vw;
    }

    #group .cont_title .title {
        font-size: 3.3vw;
    }

    #group .cont_title .lead {
        font-size: 1.8vw;
    }

    .group_logo {
        max-width: var(--cont-md);
    }

    .group_main .note {
        font-size: 1.7vw;
    }

    .group_list_title {
        height: 7.5vw;
        border-radius: 1.3vw 1.3vw 0 0;
        font-size: 3vw;
    }

    .group_list + .group_list_title {
        margin-top: 2.5vw;
    }

    .group_list li {
        margin-top: 0.8vw;
    }

    .group_list li a {
        height: 7.5vw;
        padding: 0.4vw;
    }

    .group_list li a .company_name {
        font-size: 2.16vw;
    }

    .group_list li a .company_work {
        font-size: 2vw;
        flex: 1;
        line-height: 1.4em;
        padding: 0 1em;
    }
}

@media screen and (max-width: 768px) {
    #group {
        margin-bottom: 45px;
    }

    .group_title,
    .service_title {
        height: auto;
    }

    .service_title {
        margin-bottom: 60px;
    }

    .group_lead,
    .service_lead {
        width: 90%;
        padding-left: 0;
        padding-right: 0;
        position: relative;
        margin: 20px auto;
    }

    .group_lead .lead_em,
    .service_lead .lead_em {
        font-size: 21px;
    }

    .group_lead .lead,
    .service_lead .lead {
        max-width: 100%;
        font-size: 14px;
    }

    .group_cont {
        padding: 60px 0;
    }

    .group_cont .inner {
        gap: 13px;
    }

    #group .cont_title {
        margin-bottom: 40px;
    }

    #group .cont_title .title {
        font-size: 22px;
    }

    #group .cont_title .lead {
        font-size: 13px;
    }

    .group_logo {
        max-width: 100%;
    }

    .group_main img {
        min-width: 800px;
    }

    .group_main .note {
        font-size: 12px;
    }

    .group_list_title {
        height: 40px;
        border-radius: 5px 5px 0 0;
        font-size: 18px;
    }

    .group_list + .group_list_title {
        margin-top: 25px;
    }

    .group_list li {
        margin-top: 5px;
    }

    .group_list li a {
        /*height: 90px;*/
        height: auto;
        padding: 5px;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.15);
        flex-direction: column;
    }

    .group_list li a .company_name {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }

    .group_list li a .company_work {
        flex: 1;
        width: 100%;
        height: 100%;
        /*padding: 0;*/
        padding: 0.6em 0 0;
        font-size: 14px;
    }
}

/* ハイライトアニメーション */
@keyframes flashBackground {
    0% { background-color: #fff; }
    30% { background-color: var(--color-yellow); }
    100% { background-color: #fff; }
}

.highlight {
    animation: flashBackground 1s ease;
}

@media screen and (max-width: 768px) {
    .highlight {
        animation: none;
    }
}


/*-------------------------------------------------------------
service
-------------------------------------------------------------*/
#service {
    margin-bottom: 100px;
}

.service_inner {
    width: var(--cont-max-lg);
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.service_cont_wrap {
    width: 100%;
    min-height: 970px;
    position: relative;
}

.service_cont_wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/top/service_bg.svg") no-repeat top left / contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.service_cont_wrap.associates::before {
    background: none;
    background-color: #f4e8ec;
    -webkit-mask-image: url("../img/top/service_bg.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top left;
    -webkit-mask-size: contain;
    mask-image: url("../img/top/service_bg.svg");
    mask-repeat: no-repeat;
    mask-position: top left;
    mask-size: contain;
}

.service_cont {
    width: var(--cont-max-md);
}

.service_cont .cont_title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    margin: 1.5em 0;
    color: var(--color-main);
}

.associates .service_cont .cont_title {
    color: var(--color-red);
}

.service_box_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.associates .service_box_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service_box_list > li {
    background-color: #fff;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.15);
    padding: 35px 0 50px;
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}

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

.service_box_list > li .service_name p {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    color: var(--color-main);
    margin-bottom: 0.4em;
}

.associates .service_box_list > li .service_name p {
    color: var(--color-red);
    margin-top: 0.5em;
}

.service_name_s {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    color: var(--color-main);
}

.associates .service_name_s {
    color: var(--color-red);
}

.service_list {
    width: 80%;
    margin: 0 auto 10px;
}

.service_list li:not(:first-child) {
    margin-top: 0.5em;
}

.service_list li {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    line-height: 1.8em;
    padding-left: 1.4em;
    position: relative;
}

.service_list li::before {
    content: "";
    width: 1em;
    height: 1.2em;
    background: url("../img/icon_list.svg") no-repeat center center / contain;
    position: absolute;
    left: 0;
    top: 0.3em;
}

.associates .service_list li::before {
    background: none;
    background-color: var(--color-red);
    -webkit-mask-image: url("../img/icon_list.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    mask-image: url("../img/icon_list.svg");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
}

.service_btn_area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.service_btn {
    width: 74%;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(90deg, #293187, #54b4bf);
    position: relative;
    overflow: hidden;
}

.service_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #54b4bf, #293187);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

span.service_btn::before {
    content: none;
}

.associates .service_btn {
    background: linear-gradient(90deg, #911d46, #feddb6);
}

.associates .service_btn::before {
    background: linear-gradient(90deg, #feddb6, #911d46);
}

.associates span.service_btn {
    background: transparent;
}

.service_btn:hover::before {
    opacity: 1;
}

.service_btn span {
    position: relative;
    z-index: 2;
}

.service_btn::after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    margin: auto;
    transform: rotate(45deg);
    z-index: 3;
}

.service_cont .note {
    font-size: 1.4rem;
    line-height: 2em;
    letter-spacing: 0.02em;
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 2em;
}

.service_cont .note + .note {
    margin-top: 0;
}

@media screen and (max-width: 1600px) {
    .service_cont_wrap {
        min-height: 60vw;
    }
}

@media screen and (max-width: 1200px) {
    #service {
        margin-bottom: 12.5vw;
    }

    .service_inner {
        margin-top: 8.3vw;
        gap: 8.3vw;
    }

    .service_cont .cont_title {
        font-size: 2.9vw;
    }

    .service_box_list,
    .associates .service_box_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.7vw;
    }

    .service_box_list > li {
        padding: 3.5vw 0 4.2vw;
    }

    .service_box_list > li .service_name p {
        font-size: 2.5vw;
    }

    .service_name_s {
        font-size: 1.5vw;
    }

    .service_list {
        margin: 0 auto 0.83vw;
    }

    .service_list li {
        font-size: 1.8vw;
    }

    .service_btn {
        font-size: 1.5vw;
    }

    .service_cont .note {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 768px) {
    #service {
        margin-bottom: 80px;
    }

    .service_inner {
        margin-top: 20px;
        gap: 50px;
    }

    .service_cont_wrap {
        min-height: 0;
    }

    .service_cont .cont_title {
        font-size: 19px;
        margin: 1.8em 0;
    }

    .service_box_list,
    .associates .service_box_list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .service_box_list > li {
        width: 100%;
        padding: 30px 0 30px;
    }

    .service_box_list > li .service_name p {
        font-size: 18px;
        margin-bottom: 1em;
    }

    .associates .service_box_list > li .service_name p {
        margin-top: 0;
    }

    .service_name_s {
        font-size: 15px;
    }

    .service_list {
        width: 80%;
        margin: 0 auto 40px;
    }

    .service_list li:not(:first-child) {
        margin-top: 1em;
    }

    .service_list li {
        font-size: 15px;
    }

    .service_btn {
        height: 35px;
        font-size: 13px;
    }

    .service_cont .note {
        font-size: 12px;
    }
}


/*-------------------------------------------------------------
support
-------------------------------------------------------------*/
#support {
    width: 100%;
    background: url("../img/top/support_bg.jpg") no-repeat center center / cover;
    margin-bottom: 150px;
    position: relative;
}

#support::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
}

.support_inner {
    width: var(--cont-max-lg);
    padding: 150px 0 100px;
}

.support_inner .title_en {
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0.2em;
}

.support_inner .title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-main);
    letter-spacing: 0.2em;
    text-align: center;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.15);
}

.support_inner .title > span {
    width: 100%;
    display: inline-block;
    padding: 0.2em 1.5em;
    background-color: #fff;
}

.support_inner .title br {
    font-size: 0;
}

.support_inner .lead {
    font-size: 1.8rem;
    line-height: 2em;
}

.support_cont_list {
    width: 100%;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.support_cont_list li {
    background-color: #fff;
    padding: 3em;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    row-gap: 20px;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.15);
}

.support_img {
    width: 100%;
    aspect-ratio: 480 / 350;
}

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

.support_title {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--color-main);
    line-height: 1.4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support_text {
    font-size: 1.6rem;
    line-height: 2em;
}

.support_caption{
    width: 65%;
    margin: 2em auto 0;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.0;
    letter-spacing: 0.2em;
    background: rgba(255,255,255,0.8);
    padding: 1.4em;
    box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1420px) {
    .support_title {
        font-size: 1.76vw;
    }
    .support_text {
        font-size: 1.13vw;
    }
}
@media screen and (max-width: 1200px) {
    #support {
        margin-bottom: 12.5vw;
    }

    .support_inner {
        padding-top: 10vw;
    }

    .support_inner .title_en {
        font-size: 4.2vw;
    }

    .support_inner .title {
        font-size: 3.3vw;
    }

    .support_inner .lead {
        font-size: 1.8vw;
    }

    .support_cont_list {
        margin: 8vw auto 0;
    }

.support_caption{
    width: 80%;
    margin: 2em auto 0;
    font-size: 1.8rem;
    padding: 1.2em;
}

}

@media screen and (max-width: 768px) {
    #support {
        margin-bottom: 50px;
    }

    .support_inner {
        padding: 50px 0;
    }

    .support_inner .title_en {
        font-size: 38px;
        line-height: 1.2;
        letter-spacing: 0.1em;
        display: flex;
        flex-direction: column;
        margin-bottom: 0.5em;
    }

    .support_inner .title {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        font-size: 21px;
        letter-spacing: 0.06em;
    }

    .support_inner .title > span {
        width: 100%;
        padding: 0.5em 0.2em;
    }

    .support_inner .lead {
        font-size: 14px;
    }

    .support_cont_list {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 15px 0;
        margin: 40px auto 0;
    }

    .support_cont_list li {
        width: 100%;
        max-width: 480px;
    }

    .support_title {
        font-size: 17px;
    }

    .support_text {
        font-size: 13px;
    }

    .support_caption{
        width: 100%;
        margin: 2em auto 0;
        font-size: 14px;
        padding: 18px 14px;
        text-align: left;
    }

}




/*-------------------------------------------------------------
print
-------------------------------------------------------------*/
@media print {
    .js-fadeup {
        opacity: 1;
        transform: translateY(0);
    }
    .dp_intro.is-visible,
    .js-fadein {
        opacity: 1;
    }
    #fix_link {
        position: absolute;
    }
}