@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
*{
  margin: 0;
  padding: 0;
}
html {
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 16px;
}
body {
    font-family: 'Noto Sans JP', "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    font-weight: normal;
    color: #333333;
    background-color: #f4f6f8;
    line-height: 1.5;
    letter-spacing: 0.05em;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 999;
}
.container {
    padding: 30px;
}
@media screen and (max-width: 640px) {
    html {
        font-size: 14px;
    }
}
@media screen and (max-width: 1100px) {
    .container {
        padding: 0;
    }
}
/* select */
::selection {
    background: currentColor;
    color: #fff;
}
::-moz-selection {
    background: currentColor;
    color: #fff;
}
/* img */
img {
    width: 100%;
    max-width: 100%;
}
a img {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
a:hover img,
a:focus img {
    opacity: 0.7;
}
/*tel*/
a[href*="tel:"] {
    pointer-events: none;
}
@media screen and (max-width: 840px) {
    a[href*="tel:"] {
        pointer-events: initial;
    }
}
/* device */
.sp {
    display: none;
}
.pc {
    display: block;
}
@media screen and (max-width: 640px) {
    /* device */
    .pc {
        display: none;
    }
    .sp {
        display: 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;
}
/*-----------------------------------
common
-----------------------------------*/
.contents_inner {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
}
.fs_en {
    font-family: 'Roboto', sans-serif;
}
/*タイトル
--------------------------*/
.el_enTtl {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}
.el_enTtl span {
    font-size: 20px;
    display: block;
    color: #528cd3;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
}
@media screen and (max-width: 1280px) {
    .el_enTtl {
        font-size: 32px;
    }
}
@media screen and (max-width: 640px) {
    .el_enTtl {
        font-size: 21px;
    }
    .el_enTtl span {
        font-size: 15px;
    }
}

/*右アイコンボタン
--------------------------*/
.el_btn {
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    width: 240px;
    max-width: 100%;
    padding: 20px 18px;
    border: 2px solid transparent;
    color: #fff;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border-radius: 50px;
    letter-spacing: 0.1em;
}
.el_btn:focus,
.el_btn:hover {
    background-color: #f4f6f8;
    border-color: currentColor;
}
.el_btn .el_btn_append::after {
    content: url(../img/common/btn_arrow01.svg);
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 18px / 2);
    right: 1em;
}
.el_btn_01 {
    background-color: #2c404b;
}
.el_btn_01:focus,
.el_btn_01:hover {
    color: #2c404b;
}
.el_btn_01 .el_btn_append::after {
    content: url(../img/common/btn_arrow01.svg);
}
.el_btn_01:focus .el_btn_append::after,
.el_btn_01:hover .el_btn_append::after {
    content: url(../img/common/btn_arrow01_hover.svg);
}
.el_btn_02 {
    background-color: #0977b8;
}
.el_btn_02:focus,
.el_btn_02:hover {
    color: #0977b8;
}
.el_btn_02 .el_btn_append::after {
    content: url(../img/common/btn_arrow02.svg);
}
.el_btn_02:focus .el_btn_append::after,
.el_btn_02:hover .el_btn_append::after {
    content: url(../img/common/btn_arrow02_hover.svg);
}
@media screen and (max-width: 640px) {
    .el_btn {
        font-size: 14px;
        width: 260px;
        padding: 20px 10px;
    }
}

/*----------------------------------------
	header
----------------------------------------*/
/*ヘッター レイアウト
--------------------------*/
.ly_header {
    z-index: 1000;
    width: 100%;
    position: relative;
}
.ly_header_inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 0 8px 3px rgb(167 167 167 / 30%);
    border-radius: 0 0 5px 5px;
}
/*ヘッターロゴ
--------------------------*/
.bl_headerLogo {
    width: 142px;
    margin: 20px 0 25px 30px;
}
.bl_headerLogo_link {
    display: block;
}
/*ナビゲーション
--------------------------*/
.bl_headerNav {
    font-size: 14px;
}
.bl_headerNav_list {
    width: 100%;
}
.bl_headerNav_item:first-child {
    display: none;
}
.bl_headerNav_item:nth-child(6) {
    margin-left: 30px;
}
.bl_headerNav_link {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #3b3b3b;
    font-weight: bold;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 1;
    height: 100%;
    position: relative;
    display: -ms-grid;
    display: grid;
    place-items: center;
    transition: ease 0.2s;
}
.bl_headerNav_link:hover {
    color: #1388c7;
}
/*ヘッターボタン
--------------------------*/
.bl_headerBtn {
    font-size: 14px;
    padding: 40px 22px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    background-color: var(--gray);
    background: #2aacc9;
    background: -moz-linear-gradient(45deg, #2aacc9 0%, #006ac6 100%);
    background: -webkit-linear-gradient(45deg, #2aacc9 0%, #006ac6 100%);
    background: linear-gradient(45deg, #2aacc9 0%, #006ac6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2aacc9', endColorstr='#006ac6', GradientType=1);
    border-radius: 0 0 5px 0;
}
.bl_headerBtn:focus,
.bl_headerBtn:hover {
    background: #2aacc9;
}
.bl_headerBtn_body {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    letter-spacing: 0;
}
.bl_headerBtn_append {
    content: url(../img/common/external_link.svg);
    width: 12px;
    height: 12px;
    margin-left: 0.5em;
    display: inline-block;
    vertical-align: middle;
}
#sp_nav {
    display: none;
}

@media screen and (max-width: 1380px) {
    .bl_headerNav_link {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bl_headerNav_item:nth-child(6) {
        margin-left: 15px;
    }
    .bl_headerBtn {
        font-size: 13px;
        padding: 40px 15px;
    }
    .ly_header_inner {
        width: 100%;
        max-width: 95%;
    }
}
@media screen and (max-width: 1080px) {
    #sp_nav {
        display: block;
    }
    /*
    .bl_headerLogo_link:before {
        content: "";
        display: block;
        width: 100%;
        height: 77px;
        background: #fff;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 10;
    }
    */
/*　ハンバーガーメニューボタン　*/
    .hamburger {
        display : block;
        background: #0977b8;
        position: fixed;
        z-index: 3;
        right: 0;
        top: 0;
        width: 77px;
        height: 77px;
        cursor: pointer;
        text-align: center;
    }
    .hamburger span {
        display : block;
        position: absolute;
        width: 40px;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        background : #fff;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition   : 0.3s ease-in-out;
        transition        : 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
        top: 22px;
    }
    .hamburger span:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .hamburger span:nth-child(3) {
        top: 55px;
    }

    /* スマホメニューを開いてる時のボタン */
    .hamburger.active {
        background: #0f68b2;
    }
    .hamburger.active span {
        background: #85c6ed;
    }
    .hamburger.active span:nth-child(1) {
        top : 32px;
        left: 6px;
        background :#85c6ed;
        -webkit-transform: rotate(-45deg);
        -moz-transform   : rotate(-45deg);
        transform        : rotate(-45deg);
    }
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 33px;
        background :#85c6ed;
        -webkit-transform: rotate(45deg);
        -moz-transform   : rotate(45deg);
        transform        : rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        display: none;
    }

    /* メニュー背景　*/
    .globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        right: -100%;
        color: #fff;
        background: #006ac6;
        background: -moz-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        background: -webkit-linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        background: linear-gradient(45deg, #006ac6 0%, #2aacc9 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006ac6', endColorstr='#2aacc9', GradientType=1);
        background-blend-mode: multiply;
        text-align: center;
        width: 100%;
        height: 100vh;
        transition: all 0.6s;
        margin-top: 77px;
    }
    .globalMenuSp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }
    .globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }
    .globalMenuSp ul li:hover{
        background :#0064a3;
    }
    .globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 35px 0;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
    }
    /*
    .globalMenuSp:after {
        content: "";
        display: block;
        width: 100%;
        height: 77px;
        background: #fff;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 10;
    }
    */
    /* クリックでjQueryで追加・削除 */
    .globalMenuSp.active {
        opacity: 100;
        display: block;
        height: 100vh;
        right: 0;
        margin-top: 77px;
    }
    .globalMenuSp .bl_headerLogo_link {
        width: 280px;
        position: relative;
        z-index: 99;
        padding: 25px 0 23px 20px;
    }
    .globalMenuSp .bl_headerLogo_link img {
        width: 280px;
    }
    .globalMenuSp .official_link {
        width: 85%;
        margin: 25px auto 0;
    }
    .globalMenuSp .official_link a {
        display: block;
        padding: 20px 0;
        border: 1px solid #fff;
    }
    .globalMenuSp .official_link:hover {
        transition: ease 0.2s;
        background: #0064a3;
    }
    .ly_header_inner {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    /*--- ヘッターロゴ ---*/
    .bl_headerLogo {
        margin: 13px 0 14px 25px;
    }
    .bl_headerNav .bl_headerLogo {
        margin: 5vh auto 8vh;
    }
    /*--- ナビゲーション ---*/
    .bl_headerNav {
        position: fixed;
        z-index: 98;
        /*アクティブクラスがないときの位置*/
        top: -120vh;
        left: 0;
        width: 100vw;
        height: 100vh;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
        background: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    /*アクティブクラスがついたら位置を0に*/
    .bl_headerNav.is_navActive {
        top: 0;
    }
    .bl_headerNav_list>*+* {
        border-top: 1px solid #ececec;
    }
    .bl_headerNav_item {
        width: 100%;
    }
    .bl_headerNav_item:nth-child(n+3) {
        margin-left: 0;
    }
    .bl_headerNav .bl_headerNav_item:first-child,
    .bl_headerNav .bl_headerNav_item:last-child {
        display: block;
    }
    .bl_headerNav a.bl_headerNav_link {
        display: block;
        text-align: center;
        padding: 3vh 30px;
    }
    .bl_headerNav_link::before {
        left: 12px;
    }
    /*--- ヘッターボタン ---*/
    .bl_headerBtn {
        display: block;
        text-align: center;
        padding: 15px 25px;
        margin: 20px;
        margin-top: 8vh;
    }
    /*--- ハンバーガーボタン ---*/
    .bl_hamburger {
        display: -ms-grid;
        display: grid;
    }
}
@media screen and (max-width: 640px) {
    .globalMenuSp ul li a {
        padding: 30px 0;
        font-size: 16px;
    }
    .globalMenuSp .official_link {
        width: 80%;
        margin: 20px auto 0;
    }
}
@media screen and (max-width: 380px) {
    .globalMenuSp .bl_headerLogo_link {
        width: 220px;
        padding: 25px 0 25px 20px;
    }
}
/*-----------------------------------
	footer
-----------------------------------*/
/*フッターレイアウト
--------------------------*/
.ly_footer {
    background-color: #fff;
}
/*フッターボタン
--------------------------*/
.footer_btn {
    font-size: 14px;
    padding: 24px;
    color: #fff;
    width: 100%;
    line-height: 1;
    background-color: #35577a;
    display: block;
    text-align: center;
    margin-bottom: 52px;
    transition: ease 0.2s;
}
.footer_btn:hover {
    background-color: #0977b8;
}
.footer_btn_body {
    display: inline-block;
    vertical-align: middle;
}
.footer_btn_append {
    content: url(../img/common/external_link.svg);
    width: 12px;
    height: 12px;
    margin-left: 0.5em;
    display: inline-block;
    vertical-align: middle;
}
@media screen and (max-width: 1280px) {
    .footer_btn {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 640px) {
    .footer_btn {
        margin-bottom: 30px;
    }
}

/*フッター レフト
--------------------------*/
.bl_footerLeft {
    font-size: 14px;
    margin-bottom: 30px;
}
.bl_footerLeft_logo {
    width: 142px;
}
.bl_footerLeft_logo a {
    display: block;
}
/*ナビゲーション
--------------------------*/
.bl_footerNav {
    font-size: 16px;
    margin-top: 5px;
    width: 680px;
}
.bl_footerNav_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.bl_footerNav_link {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid #dfdfdf;
    transition: ease 0.2s;
}
.bl_footerNav_link::before {
    position: absolute;
    right: 0.5em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #0977b8;
    border-right: 2px solid #0977b8;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: ease 0.2s;
}
.bl_footerNav_link:hover {
    color: #0977b8;
}
.bl_footerNav_link:hover::before {
    right: 1em;
}

/*フッター コピーライト
--------------------------*/
.bl_footerCopy {
    font-size: 11px;
    margin-top: 48px;
    padding: 10px;
    text-align: center;
    color: #9e9e9e;
    border-top: 1px solid #dfdfdf;
}
@media screen and (max-width: 1280px) {
    .bl_footerLeft {
        margin: 0 auto;
    }
    .bl_footerNav {
        width: 100%;
        font-size: 15px;
        margin-top: 30px;
    }
    .bl_footerNav_list {
        gap: 35px;
    }
    .bl_footerCopy {
        margin-top: 60px;
    }
}
@media screen and (max-width: 840px) {
    .bl_footerNav_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .bl_footerCopy {
        border-top: none;
    }
}
@media screen and (max-width: 640px) {
    /*--- フッターロゴ ---*/
    .bl_footerLeft {
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    .bl_footerLeft_logo {
        margin-left: auto;
        margin-right: auto;
    }
    .bl_footerCopy {
        padding: 10px 10px 15px;
        margin-top: 30px;
    }
    /*--- ナビゲーション ---*/
    .bl_footerNav {
        font-size: 13px;
        width: 100%;
        line-height: 1.8;
    }
    .bl_footerNav_list {
        width: 100%;
        grid-template-columns: auto;
        gap: 0;
    }
    .bl_footerNav_list>*+* {
        margin-top: 0;
    }
    .bl_footerNav_link {
        padding: 25px 0;
    }
}
