@charset "utf-8";

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

html {
    background-color: #eaeae8;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    box-sizing: border-box;
    line-height: 1.8;
}
main {
    margin: 0 auto;
    background-color: #fff;
}
img {
    width: 100%;
}
ul {
    list-style: none;
}
h2 {
    text-align: center;
    font-weight: bold;
    font-size: min(9vw, 67.5px);
    line-height: 1.8;
    position: relative;
    margin-bottom: 15%;
}

p {
    font-size: min(4vw, 30px);
}

a {
    text-decoration: none;
}
.pc {display: none;}
.sp {display: block;}
.content__inner {
    padding: 0 4%;
}

/* フェイドイン */

.fadeinKv {
    opacity : 0;
    transform : translate(0, 100px);
    transition : all 1s;
  }
   
.fadeinKv.active{
    opacity : 1;
    transform : translate(0, 0);
}

/* header */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    max-width: 1200px;
}
header .header__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2% 4%;
    position: relative;
}

header .header__inner .h_logo {
    width: 52.8vw;
    max-width: 396px;
}
header .header__inner p {
    font-size: min(3.2vw, 24px);
}
header .header__inner .h_left {
    line-height: 1;
}
header .header__inner .h_right {
    width: 23.6vw;
    max-width: 177px;
    position: absolute;
    right: -3%;
    top: -26%;
}



/* main */
main {
    line-height: 0;
}
/* left */
.main-left {
    display: none;
}

/* right */
.main-right {
    margin-top: 3.6%;
}

/* kv */
#kv {
    padding-bottom: 4.67%;
    background-color: #fff;
}
#kv .section__inner p {
    text-align: right;
    font-size: min(2.13vw, 16px);
    line-height: 1.8;
    padding-right: 1em;
    margin-top: 0.5em;
}

/* member */
#member {
    padding-bottom: 12.37%;
    background-color: #fff;
}
#member .content__inner {
    display: flex;
    flex-direction: column;
    gap: 5.33vw;
}
#member .content__inner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* footer */
footer {
    color: #fff;
    background-color: #03236e;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
footer .f_inner {
    width: 100%;
    z-index: 1;
    max-width: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.3% 0;
    margin: 0 auto;
}
footer .f_inner > div {
    width: 50%;
    text-align: center;
}
footer .f_inner > div img {
    max-width: 203px;
    width: 27vw;
    margin: 0 auto;
}


footer p  {
    width: 50%;
    font-size: min(2.4vw, 18px);
}

/* タブレット */
@media (min-width:768px) and (max-width:1199px) {
    .pc {display: block;}
    .sp {display: none;}

    /* header */
    header {
        height: 80px;
    }
    header .header__inner {
        padding: 7.35px 4%;
    }

    /* main */
    main {
        display: flex;
        width: 100%;
        background-color: #eaeae8;
    }
    /* left */
    .main-left {
        display: block;
        width: 37.5%;
        max-width: 450px;
        position: sticky;
        height: 100vh;
        top: 0;
        background-color: #5FC1FE;
        line-height: 1.8;
    }
    .main-left__inner {
        position: relative;
        margin-top: 80px;
    }
    .main-left__inner.fadeinKv.active {
        margin-top: 80px;
    }

    .main-left__inner .split_box {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    .main-left__inner .split_box a:first-child img {
        margin-bottom: 10px;
    }
    .main-left__inner .split_box a:first-child {
        position: relative;
        /* margin-bottom: 20px; */
    }
    .main-left__inner .split_box a:first-child::after {
        content: "";
        width: 5.2vw;
        height: 5.2vw;
        max-width: 52px;
        max-height: 52px;
        display: block;
        background-image: url(../img/icon_plus.png);
        background-size: cover;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .main-left__inner .split_box >p {
        font-size: min(2.5vw, 23px);
        font-weight: bold;
        text-align: center;
    }
    /* right */
    .main-right {
        width: 60.83%;
        max-width: 730px;
        margin-right: 0;
        margin-left: auto;
        margin-top: auto;
        margin-top: 80px;
    }
    /* header */
    header .header__inner .h_right  {
        margin-left: 0;
    }


}


@media (min-width:1200px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
    }
    .pc {display: block;}
    .sp {display: none;}

    /* header */
    header {
        height: 80px;
    }
    header .header__inner {
        padding: 7.35px 4%;
        justify-content: center;
        height: 100%;
    }
    header .header__inner .h_left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    header .header__inner .h_right  {
        margin-left: 0;
        max-width: 124px;
        right: 15px;
        top: 5px;
    }


    /* main */
    main {
        display: flex;
        width: 100%;
        background-color: #eaeae8;
    }
    /* left */
    .main-left {
        display: block;
        width: 37.5%;
        max-width: 450px;
        position: sticky;
        height: 100vh;
        top: 0;
        line-height: 1.8;
    }
    .main-left__inner {
        position: relative;
        margin-top: 80px;
        height: 80%;

    }
    .main-left__inner .split_box {
        position: absolute;
        bottom: -75px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    .main-left__inner .split_box a {
        width: 346px;
        display: block;
    }
    .main-left__inner .split_box a:first-child {
        position: relative;
        /* margin-bottom: 20px; */
    }
    .main-left__inner .split_box a:first-child::after {
        content: "";
        width: 52px;
        height: 52px;
        display: block;
        background-image: url(../img/icon_plus.png);
        background-size: cover;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .main-left__inner .split_box >p {
        font-size: 23px;
        font-weight: bold;
        text-align: center;
    }

    /* right */
    .main-right {
        width: 60.83%;
        max-width: 730px;
        margin-right: 0;
        margin-left: auto;
        margin-top: auto;
        margin-top: 80px;
    }
    #kv {
        padding-bottom: 35px;
    }
    #web {
        background-color: #8acaf8;
    }
    #backoffice {
        background-color: #e5f2fa;
    }

    /* member */
    #member {
        padding-bottom: 95px;
    }
    #member .content__inner {
        gap: 40px;
    }


    /* footer */
    footer .f_inner {
        padding: 25px 0;
    }
}