@charset "UTF-8";

body {
    color: #333;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    overflow-x: hidden;
}

.wrapper {
    margin: 0 auto;
    max-width: calc(100% - 40px);
    position: relative;
    width: 1200px;
}

a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: .2s;
}

a:before,
a:after {
    transition: .2s;
}

p>a {
    display: inline-block;
    text-decoration: underline;
}

.font_open {
    font-family: "Open Sans", sans-serif;
    line-height: 1;
}

.font_serif {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    line-height: 1.5;
}

.normal_hl {
    text-align: center;
    font-weight: 700;
    margin-bottom: 6rem;
}

.normal_hl .main {
    font-family: "Open Sans", sans-serif;
    font-size: 8rem;
    line-height: 0.625;
    display: block;
    margin-bottom: .25em;
}

.normal_hl:not(.white) .main::first-letter {
    color: #084ea1;
}

.normal_hl .sub {
    font-size: 3rem;
    line-height: 1.67;
    display: block;
}

.normal_hl:not(.white) .sub {
    color: #084ea1;
}

.normal_hl.white {
    color: #fff;
}

@media (max-width: 767px) {
    .normal_hl {
        margin-bottom: 4rem;
    }

    .normal_hl .main {
        font-size: 4rem;
    }

    .normal_hl .sub {
        font-size: 1.8rem;
    }
}



/* header
***************************************/
.container {
    padding: 10rem 0 0;
}

#header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 10rem;
    background-color: #fff;
    z-index: 99999;
}

#header.fixed {
    position: fixed;
}

#header .h_wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 5.4rem 0 2.6rem;
}

#header .h_logo {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 2.2rem;
}

#header .h_logo img {
    width: 43rem;
}

#header .h_nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 auto;
    column-gap: 5.5rem;
}

#header .h_nav .item {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    position: relative;
}

@media (min-width: 768px) {
    #header .h_nav .item:after {
        content: "";
        position: absolute;
        right: 51%;
        left: 51%;
        bottom: -1rem;
        height: .3rem;
        background-color: #084ea1;
        transition: .2s;
    }

    #header .h_nav .item:hover {
        color: #084ea1;
    }

    #header .h_nav .item:hover:after {
        right: calc(50% - 2rem);
        left: calc(50% - 2rem);
    }

    #header .h_logo img {
        max-width: 30vw;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 6rem 0 0;
    }

    #header {
        height: 6rem;
    }

    #header .h_wrap {
        padding: 0 0 0 1.5rem;
    }

    #header .h_logo {
        font-size: 0;
        column-gap: 0;
    }

    #header .h_logo img {
        width: 26rem;
        max-width: 70vw;
    }

    #header .h_nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: calc(100dvh - 8rem);
        overflow-x: hidden;
        overflow-y: hidden;
        transition: .4s;
        opacity: 0;
        visibility: hidden;
    }

    #header .h_nav.active {
        opacity: 1;
        visibility: visible;
    }

    #header .h_nav .item {
        min-height: 6rem;
        line-height: 6rem;
        color: #333;
        background-color: #fff;
        border-top: 1px solid #084ea1;
        width: 100%;
        text-align: center;
        font-size: 1.6rem;
    }

    #header .h_nav .item:hover {
        background-color: #b5d9ff;
    }

    #header .h_btn {
        width: 6rem;
        height: 6rem;
        position: relative;
        margin: 0 0 0 auto;
        cursor: pointer;
    }

    #header .h_btn span {
        background-color: #333;
        display: inline-block;
        height: .3rem;
        position: absolute;
        right: 1.5rem;
        left: 1.5rem;
        transition: .3s;
        border-radius: 10px;
    }

    #header .h_btn span:nth-of-type(1) {
        top: 2.1rem;
    }

    #header .h_btn span:nth-of-type(2) {
        top: 2.9rem;
    }

    #header .h_btn span:nth-of-type(3) {
        top: 3.7rem;
    }

    #header .h_btn.active span:nth-of-type(1) {
        transform: rotate(225deg);
        top: 3rem;
    }

    #header .h_btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    #header .h_btn.active span:nth-of-type(3) {
        transform: rotate(-225deg);
        top: 3rem;
    }

    .h_nav_bg {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99998;
        background-color: #000;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }

    .h_nav_bg.active {
        opacity: .4;
        visibility: visible;
    }
}



/* MV
***************************************/
#mv {
    width: 100%;
    height: calc(100vh - 10rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.3rem;
    position: relative;
    overflow: hidden;
    z-index: +3;
}

#mv .mv_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1);
    animation: zoomIn 10s ease-out forwards;
}

#mv .mv_catch {
    font-size: 7rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.43;
    color: #fff;
    min-height: 2.86em;
}

#mv .mv_catch * {
    animation-delay: .3s;
}

#mv .mv_subttl {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    color: rgba(255, 255, 255, .5);
    min-height: 1.5;
}

#mv .mv_subttl * {
    animation-delay: .8s;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@media (max-width: 767px) {
    #mv {
        height: 38rem;
    }

    #mv .mv_catch {
        font-size: 3rem;
    }

    #mv .mv_subttl {
        font-size: 2.4rem;
        text-align: center;
    }
}



/* MV下
***************************************/
#sec_copy {
    padding: 14.6rem 0;
    background-image: url(../img/top/copy_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}

#sec_copy p {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 767px) {
    #sec_copy {
        padding: 8rem 0;
    }

    #sec_copy p {
        font-size: 2rem;
    }

    #sec_copy p span {
        display: inline-block;
    }
}



/* Information
***************************************/
#sec_info {
    background-image: url(../img/top/info_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec_info .wrapper {
    padding: 6rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 2rem;
}

#sec_info h2 .en {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

#sec_info h2 .jp {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 2;
}

#sec_info .menu_list {
    background-color: #fff;
    width: calc(100% - 39rem);
    padding: 1.7rem 3rem;
    font-size: 1.8rem;
    line-height: 2;
}

#sec_info .menu_list dl {
    display: flex;
    column-gap: 1em;
}

#sec_info .menu_list dt {
    font-weight: 700;
    white-space: nowrap;
}

#sec_info .menu_list dl+dl {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
}

@media (max-width: 767px) {
    #sec_info .menu_list {
        width: 100%;
        font-size: 1.6rem;
    }

    #sec_info h2 .en {
        font-size: 3.4rem;
    }

    #sec_info h2 .jp {
        font-size: 1.8rem;
    }

    #sec_info .wrapper {
        padding: 4rem 0;
    }

    #sec_info .menu_list dl {
        flex-wrap: wrap;
    }

    #sec_info .menu_list dt {
        width: 100%;
    }
}



/* Service
***************************************/
#sec_service {
    padding: 10rem 0 8rem;
    position: relative;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #eee calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #eee calc(100% - 1px));
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center;
}

#sec_service .flex {
    display: flex;
    column-gap: 4rem;
    align-items: start;
    position: relative;
    z-index: +2;
}

#sec_service .flex .item {
    width: calc((100% - 8rem) / 3);
    color: #fff;
}

#sec_service .flex .item img {
    margin-bottom: 3.8rem;
}

#sec_service .flex .item h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.56;
    margin: 0 auto 2rem;
    text-align: center;
    max-width: calc(100% - 20px);
}

#sec_service .flex .item h3 span {
    display: inline-block;
}

#sec_service .flex .item p {
    font-size: 2rem;
    line-height: 2;
    width: 43.2rem;
    max-width: calc(100% - 20px);
    margin: 0 auto;
}

#sec_service:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    top: 55%;
    z-index: +1;
    width: 100%;
    background: linear-gradient(120deg, rgba(50, 123, 211, 1) 5%, rgba(8, 78, 161, 1) 100%);
}

@media (max-width: 767px) {
    #sec_service {
        padding: 6rem 0 8rem;
    }

    #sec_service .flex {
        flex-wrap: wrap;
        row-gap: 5rem;
    }

    #sec_service .flex .item {
        width: 100%;
    }

    #sec_service:before {
        top: 25rem;
    }

    #sec_service .flex .item img {
        margin-bottom: 2.8rem;
    }

    #sec_service .flex .item h3 {
        font-size: 2rem;
        max-width: calc(100% - 30px);
        margin: 0 auto 1.6rem;
    }

    #sec_service .flex .item p {
        font-size: 1.6rem;
        max-width: calc(100% - 30px);
    }
}



/* Board member
***************************************/
#sec_member {
    padding: 10rem 0;
    background-color: #e6f2ff;
}

#sec_member .member_wrap+.member_wrap {
    margin-top: 10rem;
}

#sec_member .member_flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#sec_member .member_wrap:nth-of-type(even) .member_flex {
    flex-direction: row-reverse;
}

#sec_member .member_img {
    width: 50vw;
    margin-left: calc(50% - 50vw);
}

#sec_member .member_wrap:nth-of-type(even) .member_img {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
}

#sec_member .member_info {
    background-color: #fff;
    padding: 5.3rem 7rem;
    margin-top: 9rem;
    width: 58%;
    margin-left: -8%;
    position: relative;
    z-index: +2;
}

#sec_member .member_info:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 22rem;
    height: 22rem;
    max-width: 100%;
    max-height: 100%;
    top: -1rem;
    right: -1rem;
    border-top: 1rem solid #084ea1;
    border-right: 1rem solid #084ea1;
}

#sec_member .member_wrap:nth-of-type(even) .member_info:before {
    right: auto;
    left: -1rem;
    border-right: none;
    border-left: 1rem solid #084ea1;
}

#sec_member .member_info .name {
    display: flex;
    column-gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #000;
    margin-bottom: 3rem;
}

#sec_member .member_info .name .post {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
}

#sec_member .member_info .name .font_serif {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

#sec_member .member_info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 1.5rem;
}

#sec_member .member_info .biography {
    line-height: 2.25;
}

#sec_member .member_info .biography div {
    display: flex;
    align-items: start;
}

#sec_member .member_info .biography dt {
    min-width: 11rem;
    font-weight: 700;
    color: #084ea1;
}

#sec_member .member_comment {
    margin-top: 8rem;
    background-color: #fff;
    padding: 6.3rem 6rem 5rem;
    border-top: 5px solid #084ea1;
}

#sec_member .member_comment h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #084ea1;
    margin-bottom: 3rem;
}

#sec_member .member_comment p {
    font-size: 1.8rem;
    line-height: 2;
}

#sec_member .member_comment p+p {
    margin-top: 2em;
}

@media (max-width: 767px) {
    #sec_member {
        padding: 6rem 0 8rem;
    }

    #sec_member .member_flex {
        flex-wrap: wrap;
    }

    #sec_member .member_img {
        margin-left: 0;
        width: 95%;
    }

    #sec_member .member_wrap:nth-of-type(even) .member_img {
        margin-right: 0;
    }

    #sec_member .member_info {
        margin: 0;
        width: 100%;
        padding: 3rem 2rem;
    }

    #sec_member .member_info .name .post {
        font-size: 2rem;
    }

    #sec_member .member_info .name .font_serif {
        font-size: 3rem;
    }

    #sec_member .member_info h3 {
        font-size: 2rem;
    }

    #sec_member .member_info .biography div {
        flex-wrap: wrap;
    }

    #sec_member .member_info .biography div+div {
        margin-top: 1rem;
    }

    #sec_member .member_info .biography dt {
        width: 100%;
    }

    #sec_member .member_comment {
        margin-top: 5rem;
        padding: 4rem 2rem;
    }

    #sec_member .member_comment h3 {
        font-size: 2rem;
    }

    #sec_member .member_comment p {
        font-size: 1.6rem;
    }

    #sec_member .member_wrap+.member_wrap {
        margin-top: 6rem;
    }

    #sec_member .member_comment .overflow {
        overflow: hidden;
        display: block;
        max-height: 30rem;
        position: relative;
        transition: max-height .3s;
    }

    #sec_member .member_comment .more_btn {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 2;
        color: #fff;
        width: 26rem;
        max-width: 100%;
        margin: 0 auto;
        background: linear-gradient(110deg, rgba(50, 123, 211, 1) 5%, rgba(8, 78, 161, 1) 100%);
        padding: .5rem 2rem;
        text-align: center;
        display: block;
        border: none;
        cursor: pointer;
        position: relative;
    }

    #sec_member .member_comment .more_btn:after {
        content: "";
        border-style: solid;
        border-width: 10px 7px 0;
        border-color: #fff transparent transparent transparent;
        position: absolute;
        right: 0;
        top: calc(50% - 5px);
        right: 8px;
    }

    #sec_member .member_comment .overflow:after {
        content: "";
        position: absolute;
        right: -1px;
        bottom: -1px;
        left: -1px;
        height: 12rem;
        z-index: +1;
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
        opacity: 1;
        transition: opacity .3s;
    }

    #sec_member .member_comment .overflow.open {
        max-height: 300rem;
    }

    #sec_member .member_comment .overflow.open:after {
        opacity: 0;
    }

    #sec_member .member_comment .overflow.open+.more_btn {
        display: none;
    }
}



/* Office
***************************************/
#sec_office {
    padding: 10rem 0;
    background-image: url(../img/top/office_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

#sec_office .office_box {
    position: relative;
}

#sec_office .office_box+.office_box {
    margin-top: 6rem;
}

#sec_office .office_img {
    object-fit: cover;
    width: 45%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#sec_office .office_info {
    width: 55%;
    background-color: #fff;
    padding: 5.7rem;
    margin-left: 45%;
}

#sec_office .office_info .logo {
    width: 50rem;
    max-width: 100%;
    margin-bottom: 4rem;
}

#sec_office .office_info h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #084ea1;
    line-height: 1.56;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #084ea1;
    margin-bottom: 2rem;
}

#sec_office .office_info p {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 2.7rem;
}

#sec_office .office_info h4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2;
    color: #084ea1;
    padding-left: 2.16em;
    position: relative;
    margin-bottom: 15px;
}

#sec_office .office_info h4:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 1.6em;
    height: 1.6em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#sec_office .office_info h4.train:before {
    background-image: url(../img/top/train.svg);
}

#sec_office .office_info h4.car:before {
    background-image: url(../img/top/car.svg);
}

#sec_office .office_info li {
    line-height: 2;
    padding-left: 1em;
    font-size: 1.8rem;
    position: relative;
}

#sec_office .office_info li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #084ea1;
    left: 0;
    top: calc(1em - 4px);
}

#sec_office .office_info ul+h4 {
    margin-top: 2rem;
}

@media (max-width: 767px) {
    #sec_office {
        padding: 6rem 0 8rem;
    }

    #sec_office .office_img {
        position: initial;
        width: 100%;
    }

    #sec_office .office_info {
        margin-left: 0;
        width: 100%;
        padding: 3rem 2rem;
    }

    #sec_office .office_info h3 {
        font-size: 2.4rem;
    }

    #sec_office .office_info p {
        font-size: 1.6rem;
    }

    #sec_office .office_info h4 {
        font-size: 2rem;
    }

    #sec_office .office_info li {
        font-size: 1.6rem;
    }
}



/* Group
***************************************/
#sec_group {
    padding: 10rem 0;
    background-image: url(../img/top/group_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec_group .group_box {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

#sec_group .group_box+.group_box {
    margin-top: 10rem;
}

#sec_group .group_info {
    padding: 4.4rem 6rem 10rem;
}

#sec_group .group_info .hl {
    font-size: 3.2rem;
    font-weight: 700;
    color: #084ea1;
    line-height: 1.56;
    padding-bottom: 1.7rem;
    border-bottom: 1px solid #084ea1;
    margin-bottom: 3.3rem;
}

#sec_group .group_info .hl span {
    display: inline-block;
}

#sec_group .group_info .listwrap {
    display: flex;
    gap: 4rem;
    align-items: start;
}

#sec_group .group_info .listwrap .wrap_l {
    width: calc(55% - 2rem);
}

#sec_group .group_info .listwrap .wrap_r {
    width: calc(45% - 2rem);
}

#sec_group .group_info h4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2;
    padding-left: .8em;
    position: relative;
    margin-bottom: 2rem;
}

#sec_group .group_info h4:before {
    content: "";
    position: absolute;
    top: .4em;
    bottom: .4em;
    left: 0;
    width: .5rem;
    background-color: #084ea1;
}

#sec_group .group_info ul li {
    font-size: 1.6rem;
    line-height: 2.5;
    padding-left: 1.19em;
    position: relative;
}

#sec_group .group_info ul li:before {
    content: "";
    position: absolute;
    width: .8rem;
    height: .8rem;
    top: calc(1.25em - .4rem);
    left: 0;
    background-color: #084ea1;
    border-radius: 50%;
}

#sec_group .base_wrap {
    padding: 7rem 3.5rem 4.2rem;
    background: linear-gradient(130deg, rgba(239, 246, 255, 1) 10%, rgba(208, 231, 255, 1) 100%);
    margin-top: 9rem;
    position: relative;
    display: flex;
    align-items: start;
    column-gap: 2rem;
    row-gap: 3rem;
}

#sec_group .base_wrap .lead {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2;
    padding: 5px 20px;
    text-align: center;
    width: 58rem;
    max-width: 100%;
    color: #084ea1;
    background-color: #fff;
    border: 1px solid #084ea1;
    border-radius: 100px;
    position: absolute;
    top: calc(-1em - 5px);
    right: 0;
    left: 0;
    margin: 0 auto;
}

#sec_group .base_wrap .group_clip {
    width: calc(42% - 1rem);
}

#sec_group .base_wrap .base_flex {
    width: calc(58% - 1rem);
    display: flex;
    column-gap: 2rem;
}

#sec_group .base_wrap .base_flex .item {
    width: calc((100% - 4rem) / 3);
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    background-color: #fff;
}

#sec_group .base_wrap .base_flex .item p {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.875;
    color: #084ea1;
    text-align: center;
    padding: 5px 1rem;
}

#sec_group .group_info .site_btn {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    color: #fff;
    width: 53rem;
    max-width: 100%;
    margin: 5rem auto 0;
    background: linear-gradient(110deg, rgba(50, 123, 211, 1) 5%, rgba(8, 78, 161, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.5rem;
    padding: 1.7rem 1rem;
    position: relative;
    overflow: hidden;
}

#sec_group .group_info .site_btn:after {
    content: "";
    display: block;
    min-width: 0.89em;
    min-height: 0.89em;
    background-image: url(../img/common/tab_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#sec_group .group_info .site_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 70%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

#sec_group .group_info .site_btn:hover:before {
    animation: shine 0.7s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media (max-width: 767px) {
    #sec_group {
        padding: 6rem 0 8rem;
    }

    #sec_group .group_info {
        padding: 4rem 2rem;
    }

    #sec_group .group_info .hl {
        font-size: 2.4rem;
    }

    #sec_group .group_info .listwrap {
        flex-wrap: wrap;
    }

    #sec_group .group_info .listwrap .wrap_l,
    #sec_group .group_info .listwrap .wrap_r {
        width: 100%;
    }

    #sec_group .group_info h4 {
        font-size: 2.2rem;
    }

    #sec_group .base_wrap {
        padding: 7rem 2rem 4rem;
        flex-wrap: wrap;
    }

    #sec_group .base_wrap .lead {
        font-size: 1.8rem;
        line-height: 1.6;
        top: calc(-1.6em - 5px);
    }

    #sec_group .base_wrap .group_clip {
        width: 100%;
    }

    #sec_group .base_wrap .base_flex {
        width: 100%;
        flex-wrap: wrap;
        row-gap: 2rem;
    }

    #sec_group .base_wrap .base_flex .item {
        width: 100%;
    }

    #sec_group .group_info .site_btn {
        font-size: 1.6rem;
        margin-top: 3rem;
        column-gap: .8rem;
    }

    #sec_group .group_box+.group_box {
        margin-top: 6rem;
    }

    #sec_group .base_wrap .base_flex .item p {
        font-size: 1.8rem;
        padding: 1.5rem 1rem;
    }
}



/* Company
***************************************/
#sec_company {
    padding: 10rem 0;
    background-image: url(../img/top/company_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#sec_company .table_box {
    background-color: #fff;
    padding: 8rem 6rem;
}

#sec_company .table_box table {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2;
}

#sec_company .table_box tr {
    display: flex;
    column-gap: 1.6rem;
}

#sec_company .table_box th {
    width: calc(17.4% - .8rem);
    border-bottom: 2px solid #084ea1;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.7rem 0 2rem;
}

#sec_company .table_box td {
    width: calc(82.6% - .8rem);
    border-bottom: 2px solid #ccc;
    padding: 1.7rem 1.5rem 2rem;
}

#sec_company .table_box em {
    font-weight: 700;
    color: #084ea1;
}

#sec_company .table_box ul li {
    padding-left: 1em;
    position: relative;
}

#sec_company .table_box ul li:before {
    content: "\30FB";
    position: absolute;
    top: 0;
    left: 0;
}

#sec_company .table_box dl {
    display: flex;
}

#sec_company .table_box dt {
    min-width: 5.4em;
}

@media (max-width: 767px) {
    #sec_company {
        padding: 6rem 0 8rem;
    }

    #sec_company .table_box {
        padding: 4rem 2rem;
    }

    #sec_company .table_box table {
        font-size: 1.6rem;
    }

    #sec_company .table_box tr {
        flex-wrap: wrap;
    }

    #sec_company .table_box tr+tr {
        margin-top: 1rem;
    }

    #sec_company .table_box th,
    #sec_company .table_box td {
        width: 100%;
        padding: 1.5rem 0;
    }

    #sec_company .table_box dl {
        flex-wrap: wrap;
    }

    #sec_company .table_box dd {
        width: 100%;
        padding-left: .5em;
    }
}



/* footer
***************************************/
#footer .wrapper {
    padding: 5rem 0;
}

#footer .f_logo {
    width: 40rem;
    max-width: 90%;
    margin-bottom: 2.5rem;
}

#footer .f_address {
    font-size: 1.6rem;
    line-height: 2;
}

#footer .copyright {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    padding: 4px 5px;
    color: #fff;
    background-color: #084ea1;
}

#page-top {
    width: 8rem;
    height: 8rem;
    cursor: pointer;
    background-color: #fff;
    position: fixed;
    bottom: 7rem;
    right: 4rem;
    border: 1px solid #084ea1;
    z-index: 9000;
    transition: background-color .3s, opacity .3s, border .3s;
}

#page-top:before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 0 12.5px 14px 12.5px;
    border-color: transparent transparent #084ea1 transparent;
    left: calc(50% - 12.5px);
    bottom: 62%;
    transition: border-color .3s;
}

#page-top:after {
    content: "TOP";
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 47%;
    transition: color .3s;
}

@media (min-width: 768px) {
    #page-top:hover {
        background-color: #084ea1;
        border: 1px solid #fff;
    }

    #page-top:hover:before {
        border-color: transparent transparent #fff transparent;
    }

    #page-top:hover:after {
        color: #fff;
    }
}

@media (max-width: 767px) {
    #page-top {
        width: 6rem;
        height: 6rem;
        right: 2rem;
        bottom: 5rem;
    }

    #page-top:before {
        border-width: 0 10px 10px 10px;
        left: calc(50% - 10px);
    }

    #page-top:after {
        font-size: 1.6rem;
    }
}





/* fade
***************************************/
.slide-in {
    overflow: hidden;
    display: block;
}

.slide-in_inner {
    display: block;
}

/* 上下のアニメーション*/
.downAnime {
    opacity: 0;
    /* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
    animation-name: slideTextY100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);
        /* 要素を上の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateY(0);
        /* 要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeUpDown {
    animation-name: slideTextY-100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);
        /* 要素を下の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateY(0);
        /* 要素を元の位置に移動*/
        opacity: 1;
    }
}