@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/

/* スライドイン */
.slideConts {
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    /**/
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.slideContsL {
    transform: translate(-100%, 0);
}
.slideContsR {
    transform: translate(100%, 0);
}
.slideContsL.show {
    transform: translate(0, 0) !important;
}
.slideContsR.show {
    transform: translate(0, 0) !important;
}
/*-----------------------------------
	swiper
-----------------------------------*/
.swiper-container,
.swiper-slide {
    width: 100% !important;
}
/*
.slide-img:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 5%);
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
*/
.slide-img {
    width: 100%;
    height: calc(100vh - 90px) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
}
.slide-text {
    position: absolute;
    z-index: 1000;
    right: 10%;
    top: 30%;
}
.slide-text p {
    font-size: 48px;
    font-weight: 500;
    text-align: left;
    line-height: 180%;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(34 40 50 / 90%);
    letter-spacing: 0.15em;
    position: relative;
    z-index: 10;
}
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

@media screen and (max-width: 640px) {
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 22px !important;
    }
    .slide-img {
        height: calc(66vh - 78px) !important;
        background-position-x: center;
    }
    .slide-text {
        right: 0;
        top: 34%;
        left: 10%;
    }
    .swiper-slide img {
        width: 60% !important;
    }
    .slide-text p {
        font-size: 24px;
        line-height: 200%;
    }
    .slide-text p .big_text {
        font-size: 26px;
    }
    .slide-text p .small_text {
        font-size: 20px;
    }
}

@-webkit-keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

@keyframes zoomUp {
    /* 1.15倍させる指定 */
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

.swiper-slide {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    /* 12秒かけて拡大させる */
    -webkit-animation: zoomUp 12s linear 0s;
    animation: zoomUp 12s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*-----------------------------------

	infomation

-----------------------------------*/
.infomation {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(29 31 34 / 80%);
    color: #fff;
    width: 100%;
    padding: 10px 0 15px;
    z-index: 999;
}
.infomation h2 {
    float: left;
    margin-right: 20px;
    font-size: 18px;
    padding-top: 8px;
}
.infomation ul li a {
    color: #fff !important;
    font-size: 18px;
}
.infomation ul li .cat {
    background: #03357c;
    padding: 3px 11px;
    line-height: 1;
    font-size: 12px;
    margin-right: 20px;
}
.infomation ul li .date {
    margin-right: 20px;
}
.infomation ul li p {
    display: inline-block;
    margin-top: 10px;
}
@media screen and (max-width: 840px) {
    #mainvisual #text p {
        font-size: 42px;
    }
}
@media screen and (max-width: 640px) {
    #mainvisual #text p {
        font-size: 6vw;
    }
    #mainvisual .infomation {
        position: static;
    }
    #mainvisual .infomation h2 {
        float: none;
        margin-right: 0;
        margin-bottom: 15px;
    }
    #mainvisual .infomation ul li a {
        font-size: 12px;
    }
    #mainvisual .infomation ul li .cat {
        font-size: 10px;
        margin-right: 10px;
    }
    #mainvisual .infomation ul li .date {
        margin-right: 10px;
    }
    #mainvisual .infomation ul li p {
    }
}
/*-----------------------------------

	about_block

-----------------------------------*/
#about_block {
    padding: 110px 0;
    position: relative;
}
#about_block .about_inner {
    width: 1100px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#about_block::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25vw 33vw 0 0;
    border-color: #ffffff transparent transparent transparent;
    top: 0;
    left: 0;
}
#about_block .left_box {
    width: 38%;
    position: relative;
    padding-top: 20px;
}
#about_block .left_box h2 {
    font-size: 45px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 35px;
}
#about_block .left_box h2 span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 30px;
}
#about_block .left_box h2::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #011c43;
    bottom: 0;
    left: 0;
}
#about_block .left_box p {
    font-size: 16px;
    line-height: 230%;
    letter-spacing: 0.05em;
}
#about_block .movie_box {
    width: 56%;
    position: relative;
}
#about_block .movie_box a {
    display: block;
}
#about_block .movie_box a:hover {
    opacity: 0.8;
}
#about_block .movie_box a img {
    width: 100%;
}
#about_block .row_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*モーダルウィンドウ
--------------------------*/
#modal-1 {
    display: none;
}
#modal-1.is-open {
    display: block;
}
#modal-1[aria-hidden='false'] .bl_modal_body {
    animation: fadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
#modal-1[aria-hidden='true'] .bl_modal_body {
    animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.bl_modal_close {
    margin-top: 40px;
    display: block;
    padding: 15px 0;
    text-align: center;
    background: #033a8b;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: ease 0.2s;
    border-radius: 5px;
    outline: none;
}
.bl_modal_close:hover {
    color: #fff;
    background-color: #000;
}
/*閉じるボタンを中央に*/
.bl_modal_btn[data-micromodal-close] {
    margin: 30px auto 0;
    display: block;
}
/*モーダルウィンドウ
--------------------------*/
.bl_modal_overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.bl_modal_body {
    width: 1000px;
    border-radius: 4px;
    overflow-y: auto;
    line-height: 1.5;
    max-width: 90%;
}
.bl_modal_body video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@media screen and (max-width: 1000px) {
    #about_block {
        padding: 80px 0;
    }
    #about_block .left_box p br {
        display: none;
    }
    #about_block .left_box {
        width: 100%;
        float: none !important;
        order: -1;
    }
    #about_block::before {
        border-width: 300px 300px 0 0;
    }
    #about_block .movie_box {
        width: 100%;
        margin-top: 30px;
    }
    .bl_modal_body {
        width: 90%;
    }
}
@media screen and (max-width: 840px) {
    #about_block .left_box p {
        font-size: 16px;
        line-height: 2.6;
    }
}
@media screen and (max-width: 640px) {
    #about_block {
        padding: 50px 0;
        position: relative;
    }
    #about_block::before {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 200px 200px 0 0;
        border-color: #ffffff transparent transparent transparent;
        top: 0;
        left: 0;
    }
    #about_block .left_box {
        float: none !important;
        width: 100%;
        margin-bottom: 0;
    }
    #about_block .left_box h2 {
        font-size: 36px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    #about_block .left_box h2 span {
        font-size: 16px;
        margin-top: 20px;
    }
    #about_block .left_box p {
        font-size: 14px;
        line-height: 2;
    }
    #about_block .right {
        float: none !important;
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
    .bl_modal_close {
        margin-top: 20px;
        padding: 10px 0;
        font-size: 13px;
    }
}
/*-----------------------------------

	business_block

-----------------------------------*/
#business_block {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: #d8dfe8;
}
#business_block h2 {
    font-size: 45px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
#business_block h2 span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 30px;
}
#business_block h2::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #011c43;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.bg_border {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    padding: 0 80px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -10;
}
.bg_border .bg_border_item {
    width: 1px;
    height: 100%;
    background: #ccd8e7;
}

#business_block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}
#business_block .more_btn_wrap a.more_btn:not(:last-child) {
    margin-bottom: 20px;
}
#business_block .more_btn_wrap a.more_btn {
    display: block;
    width: 360px;
    max-width: 100%;
    background: #000000;
    color: #fff;
    font-size: 18px;
    padding: 20px 0;
    margin: 0 auto;
    line-height: 1;
    position: relative;
}
#business_block .more_btn_wrap a.more_btn:last-of-type {
    background-color: #033a8b;
}
#business_block .more_btn_wrap a.more_btn::after {
    position: absolute;
    content: '';
    background: url(../img/index/business_icon.png) no-repeat;
    background-size: cover;
    width: 19px;
    height: 19px;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
#business_block .more_btn_wrap a.more_btn:hover {
    opacity: 0.6;
}
#business_block .more_btn_wrap a.more_btn.pdf::after {
    background: url(../img/business/note_icon.svg) no-repeat;
    width: 23px;
    height: 23px;
    right: 18px;
}

/* business_list */
#business_block ul.business_list li a {
    display: block;
}
#business_block ul.business_list li {
    width: 31%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    transition: 0.2s;
}
#business_block ul.business_list li:hover {
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 40%);
}
#business_block ul.business_list li img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}
#business_block ul.business_list li h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}
#business_block ul.business_list li p {
    text-align: center;
    line-height: 140%;
}
#business_block ul.business_list li .text_box {
    padding: 20px 5px;
    box-shadow: none;
}

@media screen and (max-width: 840px) {
}

@media screen and (max-width: 640px) {
    #business_block {
        padding: 70px 0 50px;
    }
    #business_block h2 {
        font-size: 36px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    #business_block h2 span {
        font-size: 16px;
        margin-top: 20px;
    }

    /* business_list */
    #business_block ul.business_list li {
        width: 100%;
        margin: 0 3%;
    }
    #business_block ul.business_list li:not(:last-child) {
        margin-bottom: 40px;
    }
    #business_block ul.business_list li img {
        height: auto;
        max-height: 300px;
    }

    #business_block .more_btn_wrap a.more_btn {
        width: 300px;
        font-size: 16px;
    }
}
@media screen and (max-width: 440px) {
    #business_block ul.business_list li:not(:last-child) {
        margin-bottom: 30px;
    }
}

/*-----------------------------------

	performance_block

-----------------------------------*/
#performance_block {
    padding: 80px 0;
    text-align: center;
    background: url(../img/index/performance_bg.jpg) no-repeat center;
    background-size: cover;
    background-position: top;
    /*background: #cfd8e4;*/
}
/*.performance_bg {
	background:#cfd8e4;
	padding:40px 80px;
}*/
#performance_block h2 {
    font-size: 28px;
    position: relative;
    margin-bottom: 50px;
}
#performance_block h2 span {
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

#performance_block .tab_wrap {
}
#performance_block input[type='radio'] {
    display: none;
}
#performance_block .tab_area {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#performance_block .tab_area label {
    width: 48%;
    display: inline-block;
    padding: 20px 0;
    color: #fff;
    background: #000;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    transition: ease 0.2s opacity;
}
#performance_block .panel_area {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    text-align: left;
}
#performance_block .tab_panel {
    width: 100%;
    padding: 40px;
    display: none;
}
#performance_block .tab_panel ul li {
    padding: 20px 10px;
    border-bottom: 1px dotted #000;
    font-size: 18px;
}
#performance_block .tab_panel ul li:last-child {
    border-bottom: none;
}
#tab1:checked ~ .tab_area .tab1_label {
    background: #011c43;
    color: #fff;
}
#tab1:checked ~ .panel_area #panel1 {
    display: block;
}
#tab2:checked ~ .tab_area .tab2_label {
    background: #011c43;
    color: #fff;
}
#tab2:checked ~ .panel_area #panel2 {
    display: block;
}

@media screen and (max-width: 640px) {
    #performance_block {
        padding: 50px 0;
    }
    #performance_block .tab_area label {
        padding: 15px 0;
        font-size: 18px;
    }
    #performance_block .tab_panel {
        padding: 20px;
    }
    #performance_block .tab_panel ul li {
        padding: 15px 10px;
        font-size: 14px;
    }
}
/*-----------------------------------

	recruit_block

-----------------------------------*/
#recruit_block {
    padding: 80px 0;
}
#recruit_block a {
    display: block;
}
#recruit_block a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 640px) {
    #recruit_block {
        padding: 30px 0;
    }
}
/*-----------------------------------

	access_block

-----------------------------------*/

#access_block .ggmap iframe {
    width: 100%;
    height: 400px;
}
@media screen and (max-width: 640px) {
    #access_block .ggmap {
        position: relative;
        padding-bottom: 54.5833%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }
}
/*-----------------------------------

	bottom_block

-----------------------------------*/
#bottom_block #company_area {
    float: left;
    background: url(../img/common/company_bg.jpg) no-repeat center;
    background-size: cover;
}
#bottom_block #contact_area {
    float: right;
    background: url(../img/common/contact_bg.jpg) no-repeat center;
    background-size: cover;
}
#bottom_block section {
    width: 50%;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
#bottom_block section h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 60px;
}
#bottom_block section h2 span {
    font-size: 18px;
    display: block;
    margin-top: 40px;
}
#bottom_block section a {
    display: block;
    width: 350px;
    padding: 20px 0;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
}
#bottom_block section a::after {
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    background: url(../img/common/bottom_icon.png) no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    display: block;
}
#bottom_block section a:hover {
    background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 840px) {
    #bottom_block section a {
        width: 90%;
        font-size: 16px;
    }
}
@media screen and (max-width: 640px) {
    #bottom_block #company_area {
        float: none;
    }
    #bottom_block #contact_area {
        float: none;
    }
    #bottom_block section {
        width: 100%;
        padding: 50px 0;
    }
    #bottom_block section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    #bottom_block section h2 span {
        font-size: 16px;
        margin-top: 30px;
    }
}
