@charset "utf-8";

/*-----------------------------------------*/
/* 全ページ基本設定 */
/*-----------------------------------------*/
html {
    scroll-padding-top: 200px;
    scroll-behavior: smooth;

}
body {
    line-height: initial ;
    font-family: 'Noto Sans JP', sans-serif;
    color: #222222;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;

}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin: initial;
    font-weight: initial;
}
main {
    padding-top: 118px;
}
@media screen and (max-width: 768px) {
    main {
        padding-top: 100px;
    }
}

a {
    text-decoration: none;
    color: #214DA6;
}
a:hover {
    color: #222222;
}
.hover-yellow:hover {
    transition: 0.3s;
    color: #FFC436 !important;
}


@font-face {
    /* ① ここにfont-familyで指定したい名前を書く*/
    font-family: 'TsunagiGothic';
    -webkit-font-smoothing: antialiased;
    src: url(../font/TsunagiGothic.ttf) format("truetype");
}

/*
font-family: 'Bebas Neue', cursive;
font-family: 'Noto Serif JP', serif;
font-family: 'Roboto', sans-serif;
font-family: 'Klee One', cursive;
*/


.img_wrap:hover{
    box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
    transform: translateY(-10px);
    transition-duration: 0.5s;
}

.reflect-x {
    transform: scale(-1, 1);
}

.img-fluid_pc {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .img-fluid_sp {
        width: 100%;
        height: auto;
    }
}

/*-----------------------------------------*/
/* 背景色まとめ */
/*-----------------------------------------*/
.back_pink {
    background-color: #E4EDF2;
}
.back_sky {
    background-color: #E4F5FF;
}
.back_white {
    background-color: #eee;
}
.font_blue {
    color: #214DA6 !important;
}



/*-----------------------------------------*/
/* 画面幅レイアウト */
/*-----------------------------------------*/
.layout_narrow {
    width: 1280px;
    margin: 0 auto;
}
.flex-harf_left {
    width: 50%;
    margin-right: 20px ;
}
.flex-harf_right {
    width: 50%;
    margin-left: 20px ;
}
.text_harf-box {
    margin-right: 15%;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.btn-center {
    display:flex;
    justify-content:center;
}
.margin-auto {
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .layout_narrow {
        width: 100%;
        padding: 0 40px;
    }
    .flex-harf_left {
        width: 100%;
        margin-right: 20px ;
    }
    .flex-harf_right {
        width: 100%;
        margin-left: initial ;
    }
    .text_harf-box {
        margin-right: 0;
        padding-top: 20px;
    }
}


@media screen and (max-width: 768px) {
    .layout_narrow {
        width: 100%;
        padding: 0 20px;
    }
    .flex-harf_left {
        width: 100%;
        margin-right: initial ;
    }
    .flex-harf_right {
        width: 100%;
        margin-left: initial ;
    }
    .text_harf-box {
        margin-right: 0;
        padding-top: 20px;
    }
}






/*-----------------------------------------*/
/* d-flex */
/*-----------------------------------------*/
.d-flex {
    display: flex;
}
.d-flex-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
}
.just-center {
    justify-content: center;
}
.just-between {
    justify-content: space-between;
}
.flex-middle {
    vertical-align: middle;
}
.flex-align-center {
    align-items: center;
}
.flex-baseline {
    align-items: baseline
}
@media screen and (max-width: 768px) {
    .d-flex {
        flex-wrap: wrap;
    }
    .d-flex-nowrap {
    flex-wrap: nowrap;
}
    .flex-re{
        flex-direction: column-reverse;
    }
}




/*-----------------------------------------*/
/* margin */
/*-----------------------------------------*/
/*======　X　======*/
.mx30 {
    margin-right: 30px;
    margin-left: 30px;
}
/*======　top　======*/
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt80 {
    margin-top: 80px;
}
.mt100 {
    margin-top: 100px;
}
.mt120 {
    margin-top: 120px;
}
.mt200 {
    margin-top: 200px;
}
.mt250 {
    margin-top: 250px;
}
.mt500 {
    margin-top: 500px;
}
@media screen and (max-width: 768px) {
    .mt10 {
        margin-top: 0.1rem;
    }
    .mt20_sp {
        margin-top: 1rem;
    }
    .mt30 {
        margin-top: 0.3rem;
    }
    .mt40 {
        margin-top: 0.4rem;
    }
    .mt50 {
        margin-top: 1rem;
    }
    .mt60 {
        margin-top: 2rem;
    }
    .mt80 {
        margin-top: 0.8rem;
    }
    .mt120 {
        margin-top: 1.2rem;
    }
    .mt100 {
        margin-top: 1rem;
    }
    .mt200 {
        margin-top: 1.5rem;
    }
    .mt250 {
        margin-top: 2.5rem;
    }
    .mt500 {
        margin-top: 5rem;
    }
}


/*======　bottom　======*/
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.mb150 {
    margin-bottom: 150px;
}
.mb200 {
    margin-bottom: 200px;
}

/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    .mb5-sp {
        margin-bottom: 5rem;
    }
    .mb30 {
        margin-bottom: 1.2rem;
    }
    .mb40 {
        margin-bottom: 1.2rem;
    }
    .mb60 {
        margin-bottom: 1.2rem;
    }
    .mb80 {
        margin-bottom: 1.2rem;
    }
    .mb100 {
        margin-bottom: 1rem;
    }
    .mb150 {
        margin-bottom: 1.5rem;
    }
    .mb200 {
        margin-bottom: 3rem;
    }
}

/* タブレット向け（画面幅が601pxから900px） */
@media (min-width: 601px) and (max-width: 900px) {
    .mb5-sp {
        margin-bottom: 5rem;
    }
    .mb30 {
        margin-bottom: 0.3rem;
    }
    .mb40 {
        margin-bottom: 0.3rem;
    }
    .mb80 {
        margin-bottom: 1.2rem;
    }
    .mb100 {
        margin-bottom: 1rem;
    }
    .mb150 {
        margin-bottom: 1.5rem;
    }
    .mb200 {
        margin-bottom: 4rem;
    }
}


/*======　right　======*/
.mr20 {
    margin-right: 20px;
}
.mr40 {
    margin-right: 40px;
}
.mr60 {
    margin-right: 60px;
}

@media screen and (max-width: 1180px) {
    .mr20 {
        margin-right: 20px;
    }
    .mr40 {
        margin-right: 20px;
    }
    .mr60 {
        margin-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mr20 {
        margin-right: 0;
    }
    .mr40 {
        margin-right: 0;
    }
    .mr60 {
        margin-right: 0;
    }
}
/*======　left　======*/
.ml40 {
    margin-left: 40px;
}


/*-----------------------------------------*/
/* pading */
/*-----------------------------------------*/
.p30 {
    padding: 30px;
}
.p60 {
    padding: 60px;
}

/*======　top　======*/
.pt60 {
    padding-top: 60px;
}
.pt100 {
    padding-top: 100px;
}
.pt200 {
    padding-top: 200px;
}
@media screen and (max-width: 768px) {
    .p30 {
        padding: 0.3rem;
    }
    .p60 {
        padding: 1.6rem;
    }
    /*======　top　======*/
    .pt60 {
        padding-top: 0.6rem;
    }
    .pt100 {
        padding-top: 1rem;
    }
    .pt200 {
        padding-top: 2rem;
    }
}


/*======　bottom　======*/
.pt100 {
    padding-bottom: 100px;
}
.pb200 {
    padding-bottom: 200px;
}
@media screen and (max-width: 768px) {

}





/*-----------------------------------------*/
/* PCでは非表示 */
/*-----------------------------------------*/
.pc-none {
    display: none !important;
}
/*.sp-none {
    display: block !important;
}*/
/*-----------------------------------------*/
/* SPでは非表示 */
/*-----------------------------------------*/
@media screen and (max-width: 768px) {
    .pc-none {
        display: block !important;
    }
    .sp-none {
        display: none !important;
    }
}





/*-----------------------------------------*/
/* header */
/*-----------------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 3rem;
    align-items: center;
    position: fixed;
    z-index: 5000;
    width: 100%;
    /* アニメーションの変化時間 */
    transition: 0.5s;
}
header > .logo > h1 > a > img {
    height: 64px;
    width: auto;
}

.section-a {
    background: #000;
}
.section-b {
    background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
    /* 余白を狭くする */
    padding: 10px 15px;
    /* 背景を白にする */
    background: #fff;
    /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav .logo,
header.scroll-nav ul li a {
color: #000;
}

/* スマホ向け（画面幅が600px以下） */
@media (max-width: 1200px) {
    header {
        padding: 20px 1rem;
    }
    header > .logo > h1 > a > img {
        width: auto;
        height: 40px;
    }
}

/*header > div > nav > div > ul {
    display: flex;
}
header > div > nav > ul > li {
    padding-right: 2.5rem;
}
header > div > nav > ul > li:last-child {
    padding-right: 0;
    background-color: #FFC436;
    border-radius: 32px;
}
header > div > nav > ul > li > a {
    color: #222222;
}
header > div > nav > ul > li > a:hover {
    color: #FFC436;
}
header > div > nav > ul > li:last-child > a {
    color: #214DA6;
    background-color: #FFC436;
    padding: 1rem 1.5rem;
    border-radius: 32px;
}
header > div > nav > ul > li:last-child > a:hover {
    color: #FFC436;
    background-color: #214DA6;
}*/

/*============
nav
=============*/
/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    nav {
        display: block;
        position: fixed;
        top: 0;
        left: -300px;
        bottom: 0;
        width: 300px;
        background: #ffffff;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 3;
        opacity: 0;
    }
    .open nav {
        left: 0;
        opacity: 1;
    }
    nav .inner {
        padding: 25px;
    }
}

/* PC向け（画面幅が901px以上） */
@media (min-width: 601px) {
nav {
    display: initial;
    position: initial;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: initial;
    overflow-x: initial;
    overflow-y: initial;
    -webkit-overflow-scrolling: initial;
    transition: initial;
    z-index: 1000;
    opacity: 1;
}
}


nav .inner ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
nav .inner ul li {
    position: relative;
    margin: 0;
}
nav .inner ul li:last-child a {
    color: #214DA6;
    background-color: #FFC436;
    padding: 10px 30px;
    border-radius: 32px;
    margin-top: 0;
}
nav .inner ul li:last-child a:hover {
    color: #FFC436;
    background-color: #214DA6;
}
nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 16px;
    padding: 0 20px;
    text-decoration: none;
    transition-duration: 0.2s;
}
nav .inner ul li a:hover {
    color: #FFC436;
}
/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    nav {
        left: -220px;
        width: 220px;
    }
    nav .inner ul {
        display: flex;
        flex-direction: column;
    }
    nav .inner ul li a {
        display: block;
        color: #333;
        font-size: 14px;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }
    nav .inner ul li:last-child {
        color: #214DA6;
        background-color: #FFC436;
        padding: 0;
        border-radius: 32px;
        margin-top: 20px;
    }
    nav .inner ul li:last-child a:hover {
        color: #FFC436;
        background-color: #214DA6;
    }
}

/*============
.toggle_btn
=============*/
@media screen and (max-width: 600px) {
    .toggle_btn {
        display: block;
        position: fixed;
        top: 15px;
        right: 30px;
        width: 30px;
        height: 30px;
        transition: all .5s;
        cursor: pointer;
        z-index: 3;
    }
    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: #333;
        border-radius: 4px;
        transition: all .5s;
    }
    .toggle_btn span:nth-child(1) {
        top: 4px;
    }
    .toggle_btn span:nth-child(2) {
        top: 14px;
    }
    .toggle_btn span:nth-child(3) {
        bottom: 4px;
    }
    .open .toggle_btn span {
        background-color: #fff;
    }
    .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-315deg);
        transform: translateY(10px) rotate(-315deg);
    }
    .open .toggle_btn span:nth-child(2) {
    opacity: 0;
    }
    .open .toggle_btn span:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(315deg);
        transform: translateY(-10px) rotate(315deg);
    }
}
/*============
#mask
=============*/
@media screen and (max-width: 1180px) {
    #mask {
        display: none;
        transition: all .5s;
    }
    .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .8;
        z-index: 2;
        cursor: pointer;
    }
}


/*-----------------------------------------*/
/* footer */
/*-----------------------------------------*/
footer {
    padding: 5rem 15rem;
}
.foot-menu > li {
    margin-bottom: 2rem;
    list-style: disc;
    color: #214DA6;
}
.foot-menu > li :hover {
    transition: 0.3s;
    color: #FFC436;
}
@media screen and (max-width: 1200px) {
    footer {

        text-align: left;
        padding: 2rem 40px;
    }
    .foot-menu {
        display: initial;
    }
}


.blank-link {
    padding-left: 10px;
    padding-bottom: 3px
}






/*-----------------------------------------*/
/* スクロールダウン */
/*-----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
.scroll_down {
    position: absolute;
    right: 50px;
    top:80vh;
    z-index: 1000;
    text-align: center;
    background-color: #FFF;
    border-radius: 50%;
    padding: 20px;
}
.scroll_down p {
    letter-spacing: .1vw;
}
.scroll_down a{
    display: inline-block;
    line-height: 18px;
    font-size: 12px;
    font-weight: normal;
    color: #0a467d;
    letter-spacing: 2px;
    text-decoration: none;
}
.scroll_down .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #0a467d;
    border-radius: 23px;
}
.scroll_down .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #0a467d;
    border-radius: 50%;
    animation: ani-mouse 2.5s linear infinite;
}
@keyframes ani-mouse {
	0% {
	opacity: 0;
	top: 70%;
	}
	40% {
	opacity: 0;
	top: 30%;
	}
	70% {
	opacity: 1;
	top: 30%;
	}
	100% {
	opacity: 1;
	top: 70%;
	}
}


/*-----------------------------------------*/
/* メインビジュアル */
/*-----------------------------------------*/
.mainvisual {
    position: relative;
    width: 99vw;
    overflow: hidden;
}
.mainvisual > .left {
    position: relative;
    z-index: 100;
    height: 70vh;
    width: 30%;
}
.mainvisual > .left > img {
    height: 100%;
    width: auto;
}
.slideshow {
    position: absolute;
    top:0;
    right: 0;
    width: 67%;
    height: 70vh;
    overflow: hidden;
    border-radius: 1rem 0rem 0rem 1rem;
}
.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade 12s infinite;
}
.slideshow img:nth-child(1) {
    animation-delay: 0s;
}
.slideshow img:nth-child(2) {
    animation-delay: 3s;
}
.slideshow img:nth-child(3) {
    animation-delay: 6s;
}
.slideshow img:nth-child(4) {
    animation-delay: 9s;
}


@media screen and (max-width: 1180px) {
    .mainvisual > .left > img {
        height: 60vh;
        width: auto;
    }
    .slideshow {
        width: 70%;
        height: 60vh;
    }
    .slideshow img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        opacity: 0;
        animation: fade 12s infinite;
    }
}
@media screen and (max-width: 768px) {
    .mainvisual {
        display: none;
    }
    .mainvisual-sp {
        margin-bottom: 550px;
    }
    .slideshow-text {
        width: 85%;
        padding: 0 5%;
    }
    .slideshow {
        position: absolute;
        top:220px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 90%;
        height: 463px;
        overflow: hidden;
    }
    .slideshow img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1000;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        animation: fade 12s infinite;
        border-radius: 1rem ;
    }
    .slideshow-img {
        position: absolute;
        top:210px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: auto;
        height: 463px;
        padding: 0 10px;

    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}




/*-----------------------------------------*/
/* 新着情報 */
/*-----------------------------------------*/
.news-ul{
    width: 100%;
}
.news-ul > li{
    display: flex;
    padding:15px;
    border-bottom:1px solid #C8C8C8;
    position: relative;
}
.news-ul > li:after{
    content: url(../images/top/news-arrow.svg);
    position: absolute;
    right: 10px;
}
.news-ul > li > .day{
    color: #808080;
}
.news-ul > li > div > .label{
    background-color:#214DA6;
    border-radius:16px;
    color:#fff;
    padding:2px 20px;
    margin:0 20px;
}

/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    .news-ul > li{
        display: flex;
        flex-direction:column;
    }
    .news-ul > li:after{
        position: absolute;
        top: 35px;
        right: 10px;
    }
    .news-ul > li > .text{
        padding-top: 5px;
        font-size: 14px;
        padding-right: 20px;
    }
    .news-ul > li > div > .label{
        padding:1px 20px;
        font-size: 14px;
    }
}



/*-----------------------------------------*/
/* page title */
/*-----------------------------------------*/
.page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10rem;
}
.page-title > .title {
    padding-left: 5rem;
    padding-right: 5rem;
}
@media screen and (max-width: 600px) {
    .page-title {
        display: initial;
        margin-bottom: initial;
    }
    .page-title > .title {
        padding-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
    }
    .page-title > .title > img {
        height: 50px;
    }
    .page-title > .image {
        text-align: center;
    }

    .page-titleimg {
        height: 50px;
    }
}

.h3-blue {
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 2rem;
    font-weight: bold;
}

.h3-blue::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #214DA6;
}





/*-----------------------------------------*/
/* page space */
/*-----------------------------------------*/
@media screen and (max-width: 600px) {
    .page-pb1 {
        padding-bottom: 1rem;
    }
    .page-pb2 {
        padding-bottom: 2rem;
    }
/***********/
    .page-pt1 {
        padding-top: 1rem;
    }
    /***********/
    .page-mt1 {
        margin-top: 1rem;
    }
    .page-mt2 {
        margin-top: 2rem;
    }
    .page-mt5 {
        margin-top: 5rem;
    }
/***********/
    .page-mb1 {
        margin-bottom: 1rem;
    }
    .page-mb3 {
        margin-bottom: 3rem;
    }
    .page-mb5 {
        margin-bottom: 5rem;
    }
/***********/
    .page-pr1 {
        padding-right: 1rem;
    }
}



/*-----------------------------------------*/
/* index */
/*-----------------------------------------*/
.index___h1-1 {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .index___h1-1 {
        margin: 20px 0 20px;
        height: 60px;
    }
}


.index___h1-2 {
    color: #214DA6;
    font-size: 2.5rem;
    font-weight: bold;
}
.index___h1-2:after{
    display: block;
    content: attr( data-title );
    color: #214DA6;
    font-size: 1rem;
    font-weight: bold;
}




/*-----------------------------------------*/
/* ボタン */
/*-----------------------------------------*/
.rec___btn_box {
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    width: 100%;
}
.rec___cmn-btn {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    line-height: 49px;
    width: 220px;
    height: 50px;
    background: #214DA6;
    border:1px solid #214DA6;
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 100px;
    text-decoration: none;
}
.rec___cmn-btn:hover {
    color: #214DA6;
    background: #FFC436;
}
.rec___cmn-btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}
.rec___cmn-btn:hover:after {
    right: 15px;
}


/*---　table　---*/
.rec___cmn-table {
    width: 100%;
}
.rec___cmn-table tr {
    border-top: solid 1px #C8C8C8;
}
.rec___cmn-table tr:last-child {
    border-bottom: solid 1px #C8C8C8;
}
.rec___cmn-table th {
    background-color: #F1FAFE;
    font-weight: initial;
    text-align: center;
    width: 240px;
    padding: 20px;
}
.rec___cmn-table td {
    padding: 20px;
}

@media screen and (max-width: 600px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rec___cmn-table {
    min-width: 600px;
  }
}




.index___bgcolor {
    background-color: #F6F6F6;
}

/*-----------------------------------------*/
/* youtube*/
/*-----------------------------------------*/
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}



/*-----------------------------------------*/
/* index-エントリー */
/*-----------------------------------------*/
.index___description {
    background-color: #E3ECF2;
    width: 100%;
    padding: 80px 0;
    text-align: center;
}



/*-----------------------------------------*/
/* index-エントリー */
/*-----------------------------------------*/
.index___entry {
    background-image: url(../images/top/index-entrybg.png);
    background-repeat: no-repeat;
    width: 99vw;
    padding: 5rem;
    text-align: center;
    background-size: cover;
}
.entry_colorbox {
    background-color: #F1FAFE;
    padding: 2rem;
    width: 48%;
}
.entry_colorbox > .title {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 2rem;
}
.entry_colorbox > .text {
    padding-bottom: 2rem;
}
.entry_colorbox > .telno {
    color: #214DA6;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
}
@media (max-width: 600px) {
    .entry_colorbox {
        width: 100%;
        margin: 20px 0;
    }
}


.entry_layout {
    max-width: 1000px;
    margin: 0 auto;
}

.entry___btn_box {
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    width: 100%;
}
.entry___cmn-btn {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    line-height: 49px;
    width: 220px;
    height: 50px;
    background: #214DA6;
    border:1px solid #214DA6;
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 100px;
    text-decoration: none;
}
.entry___cmn-btn:hover {
    color: #214DA6;
    background: #FFC436;
}
.entry___cmn-btn:after {
    content: url("../images/common/blank-link.svg");
    position: absolute;
    top: 1px;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;/*
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;*/
}


.form__table {
  border-collapse: collapse;
  width: 100%;
  background-color: white;
  margin-top: 2rem;
}

.form__table th,
.form__table td {
  border: 1px solid #C8C8C8;
  background-color: white;
  padding: 20px;
  vertical-align: middle;
  text-align: left;
}

.form__input,
.form__input--confirm,
.form__radio {
  background-color: #C8C8C8;
  border: none;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.form__radioLabel {
  margin-right: 15px;
}
@media screen and (max-width: 600px) {
  .form__table,
  .form__table thead,
  .form__table tbody,
  .form__table tr,
  .form__table th,
  .form__table td {
    display: block;
    width: 100%;
  }

  .form__table th {
    text-align: left;
    background-color: #f5f5f5;
  }

  .form__table tr {
    margin-bottom: 1rem;
  }

  .form__table td {
    border-top: none;
  }
}


.privacypolicy {
    width: 100%;
    margin: 3rem auto;
}
.privacypolicy > .title {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    text-align: center;
}
.privacypolicy > .box {
    width: 100%;
    height: 400px;
    border: 1px solid #000;
    overflow-y: scroll;
    padding: 40px;
    margin-top: 2rem;
}
.privacypolicy > .box > .title {
    font-weight: bold;
}



/*-----------------------------------------*/
/* 職種紹介 */
/*-----------------------------------------*/
.job-text {
    width: 40%;
}
.job-visual {
    display: flex;
    position: absolute;
    right: 0;
    width: 50%;
}
.job-visual img {
    width: 100%;
}
.job-visual > .visual01 {
    position: relative;
    padding-right: 25px;
}
.job-visual > .visual02 {
    position: relative;
    margin-top:-50px;
    padding-right: 25px;
}
.job-visual > .visual03 {
    position: relative;
    margin-top:-100px;
    padding-right: 25px;
}
.job-visual > .visual04 {
    position: relative;
    margin-top:-150px;
    padding-right: 25px;
}
.job-visual > .visual05 {
    position: relative;
    margin-top:-200px;
    padding-right: 0;
}

/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    .job-text {
        width: 100%;
    }
    .job-visual {
        display: flex;
        position: relative;
        top: 70px;
        right: 0;
        width: 100%;
        padding-left: 20px;
        margin-bottom: 3rem;
    }
    .job-visual img {
        width: 100%;
    }
    .job-visual > .visual01 {
        position: relative;
        padding-right: 15px;
    }
    .job-visual > .visual02 {
        position: relative;
        margin-top:-15px;
        padding-right: 15px;
    }
    .job-visual > .visual03 {
        position: relative;
        margin-top:-30px;
        padding-right: 15px;
    }
    .job-visual > .visual04 {
        position: relative;
        margin-top:-45px;
        padding-right: 15px;
    }
    .job-visual > .visual05 {
        position: relative;
        margin-top:-60px;
        padding-right: 0;
    }
}

/* タブレット向け（画面幅が601pxから900px） */
@media (min-width: 601px) and (max-width: 900px) {
    .job-text {
        width: 100%;
    }
    .job-visual {
        display: flex;
        position: relative;
        top: 50px;
        right: 0;
        width: 100%;
        padding-left: 200px;
    }
    .job-visual img {
        width: 100%;
    }
    .job-visual > .visual01 {
        position: relative;
        padding-right: 25px;
    }
    .job-visual > .visual02 {
        position: relative;
        margin-top:-15px;
        padding-right: 25px;
    }
    .job-visual > .visual03 {
        position: relative;
        margin-top:-30px;
        padding-right: 25px;
    }
    .job-visual > .visual04 {
        position: relative;
        margin-top:-45px;
        padding-right: 25px;
    }
    .job-visual > .visual05 {
        position: relative;
        margin-top:-60px;
        padding-right: 0;
    }
}











/*-----------------------------------------*/
/* 社員紹介 */
/*-----------------------------------------*/
/** 社員カード **/
.card-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card {
    position: relative;
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}
.card:hover {
    opacity: 0.6;

}
.card-header {
    position: absolute;
    top: 16px;
    left: 40px;
    background-color: #005bbb;
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 26px;
}
.card-image {
    border-radius: 14px;
    width: 100%;
    height: 570px;
    object-fit: cover;
}
.card-body {
    position: relative;
    bottom: 79px;
    z-index: 1000;
    background-color: #005bbb;
    height: 80px;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 14px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}
.card-body p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

/**　カルーセル　**/
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    flex: 0 0 calc(100% / 3); /* 3枚表示されるように調整 */
    box-sizing: border-box;
    height: 570px;
    padding:0 20px;
    row-gap:40px;
}
.carousel-button {
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
}
.carousel-button.prev {
    transform: scale(-1, 1);
    left: 20px;
}
.carousel-button.next {
    right: 20px;
}

/* スマホ向け（画面幅が600px以下） */
@media (max-width: 600px) {
    .carousel {
        position: relative;
        width: alc(300px * 3 + 60px);; /* 画面幅から左右30pxずつを引く */
        height: 400px;
        overflow: hidden; /* はみ出た部分を非表示 */
        margin: 0 auto; /* 中央配置 */
    }
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    .carousel-item {
        flex: 0 0 300px; /* 3枚表示されるように調整 */
        height: 400px;
        margin-right: 20px;
        padding: initial;
    }
    .carousel-item_interview {
        flex: 0 0 300px; /* 3枚表示されるように調整 */
        height: 400px;
        margin-right: initial;
        padding: initial;
    }
    .carousel-item_interview-flex {
        display: flex !important;
        justify-content: center !important;
    }
    .card-image {
        border-radius: 14px;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    .card-header {
        left: 16px;
    }
    .card-body {
        bottom: 80px;
    }
    .carousel-button {
        display: none;
    }
    .carousel-button.prev {
        display: none;
    }
    .carousel-button.next {
        display: none;
    }
}



/*-----------------------------------------*/
/* about us */
/*-----------------------------------------*/
.about___box {
    width: 100%;
    padding: 80px 120px;
    background-color: #F1FAFE;
}
.rec___message {
    font-size: 1.5rem;
    font-weight: bold;
}
@media (max-width: 1200px) {
    .about___box {
            padding: 3rem;
    }
    .rec___message {
        font-size: 1.1rem;
        font-weight: bold;
    }
}
@media (max-width: 600px) {
    .about___box {
            padding: 1.5rem;
    }
    .rec___message {
        font-size: 1.1rem;
        font-weight: bold;
    }
}


/*-----------------------------------------*/
/* job */
/*-----------------------------------------*/
.job___h3 {
    font-weight: bold;
    font-size: 1.5rem;
}
.job___box {
    width: 100%;
    padding: 40px 20px;
    background-color: #F1FAFE;
    text-align: center;
    border-radius: 5px;
}
.job___box .sub {
    font-weight: bold;
    color: #214DA6;
    padding-bottom: 24px;
}

@media (max-width: 600px) {
    .job___h3 {
        font-size: 1.1rem;
    }
    .job___box {
        width: 100%;
        padding: 40px 20px;
        background-color: #F1FAFE;
        text-align: center;
        border-radius: 5px;
    }
    .job___box .sub {
        font-weight: bold;
        color: #214DA6;
        padding-bottom: 24px;
    }
}



/*-----------------------------------------*/
/* ワークスタイル */
/*-----------------------------------------*/
.count_item {
    background-color: #F1FAFE;
    border-radius: 5px;
    width: 100%;
    margin-right: 40px;
    text-align: center;
    padding: 2rem;
}
@media (max-width:600px) {
    .count_item {
        background-color: #F1FAFE;
        border-radius: 5px;
        width: 100%;
        margin-right: initial;
        margin-bottom: 2rem;
        text-align: center;
        padding: 1.5rem;
    }
}

.count_item-mrnone{
    margin-right: initial;
}
.cont_label {
    color: #214DA6;
    font-weight: bold;
    font-size: 24px;
}
.cont_figure {
    color: #214DA6;
    font-size: 5rem;
    font-weight: bold;
    width: 50%;
    text-align: right;
}
@media (max-width:1200px) {
    .cont_figure {
        font-size: 3rem;
    }
}
@media (max-width:767px) {
    .cont_figure {
        font-size: 2.5rem;
            width: 43%;
            text-align: center;
    }
}
.cont_figure2 {
    color: #214DA6;
    font-size: 3rem;
    font-weight: bold;
}
@media (max-width:1200px) {
    .cont_figure2 {
        font-size: 3rem;
    }
}
@media (max-width:767px) {
    .cont_figure2 {
        font-size: 2.5rem;
    }
}
.cont_text {
    width: 50%;
}
.cont_image {
    width: 50%;
}
@media (max-width:600px) {
    .cont_text {
        width: 100%;
    }
    .cont_image {
        width: 100%;
        padding: 2rem 2rem 0 2rem;
    }
}

.private_box {
    width: 400px;
}
.private_box .text {
    font-size: 16px;
}
.private_box img {
    border-radius: 5px;
}
.fukidashi-01-06 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 120px;
    padding: 20px 20px;
    border-radius: 5px;
    background-color: #F1FAFE;
    text-align: center;
    margin-bottom: 20px;
}
.fukidashi-01-06::before {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    background-color: #F1FAFE;
    rotate: 135deg;
    translate: -50%;
    z-index: -10000;
}
.fukidashi-01-06::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    rotate: 135deg;
    translate: -50%;
}

/***　環境についてカルーセル　***/
.style_carousel {
    position: relative;
    margin: 80px 0 0 0;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.style_slides {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}
.style_slide {
    flex: 0 0 100%;
    width: 100%;
    /*border-radius: 20px;*/
    object-fit: cover;
}
/*.arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}*/
.arrow.left {
    left: -40px;
    width: 20px;
    height: 20px;
}
.arrow.right {
    right: -40px;
    width: 20px;
    height: 20px;
}
.style_dots {
    text-align: center;
    margin-top: 10px;
}
.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background-color: #717171;
}




/*-----------------------------------------*/
/* 募集要項 */
/*-----------------------------------------*/
.guideline__boxmenu{
    border: 1px solid #C8C8C8;
    border-radius: 5px;
    width: 100%;
    margin-right: 40px;
}
.guideline__boxmenu h3{
    background: #214DA6;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 20px 0;
}
.guideline__boxmenu .inner{
    padding: 50px 30px;
}
@media (max-width:600px) {
    .guideline__boxmenu{
        margin-right: initial;
        margin-bottom: 1rem;
    }
    .guideline__boxmenu h3{
        font-size: 1.2rem;
        padding: 1rem;
    }
    .guideline__boxmenu .inner{
        padding: 2rem;
    }
}

/***　ボタン　***/
.btn a {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: #F1FAFE;
    border-radius: 5px;
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.btn-arrow-bottom a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
}
@media (max-width:600px) {
    .btn a {
        font-size: 1.1rem;
    }
}

/***　募集要項表外枠　***/
.guideline_box {
    border: solid #214DA6 1px;
    border-radius: 10px;
    padding: 60px;
}
.guideline_h3 {
    font-size: 24px;
    color: #214DA6;
    font-weight: bold;
}
@media (max-width:600px) {
    .guideline_box {
        padding: 1.5rem;
    }
    .guideline_h3 {
        font-size: 1.2rem;
        color: #214DA6;
        font-weight: bold;
    }
}

/***　採用の流れ　***/
.guideline_flow {
    background-color: #F1FAFE;
    border-radius: 10px;
    padding: 40px;
    width: 380px;
    height: 240px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.guideline_flow-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}
    .guideline_flow_allow {
        padding: 0 1rem;
    }
@media (max-width:600px) {
    .guideline_flow {
    display: flex;
    padding: 20px;
        flex-direction: column;
}
    .guideline_flow_allow {
        transform: rotate(90deg);
        margin: 20px auto;
    }
}



/*-----------------------------------------*/
/* 社員紹介 */
/*-----------------------------------------*/
.interview_occupation {
    font-size: 2.5rem;
    font-weight: bold;
    color: #214DA6;
}
.interview_fqa-box {
    background-color: #F1FAFE;
    border-radius: 5px;
    padding: 40px;
}
.interview_q {
    font-weight: bold;
    color: #214DA6;
}
@media (max-width:600px) {
    .interview_fqa-box {
        padding: 1.5rem;
    }
}