@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd, del {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
}
a[href^="tel:"] {
    word-break: keep-all;
}
video {
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
figure:not(:last-child) {
    margin-bottom: 20px;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    -webkit-text-size-adjust: none;
    min-width: 320px;
    color: var(--txt);
    font-family: var(--f-main)
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 2em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.875em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_u {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #000000;
    --txt2: #333333;
    --mcolor: #013b96;
    --scolor: #333333;
    --mcolor1: #004459;
    --mcolor2: #0098db;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "Noto Sans JP", sans-serif;
    --f-nsr: 'Noto Serif JP', serif;
    --f-en: "Open Sans", sans-serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 10px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 35px;
    height: 1px;
    transition: all ease 0.15s;
    background-color: #fff;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -6px;
}
.hamburger-inner::after {
    bottom: -6px;
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}
header {
    position: relative;
    z-index: 9;
}
h1 {
    display: inline-block;
    padding: 15px 0;
    position: relative;
    top: 20px;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
}
.is_scroll .h_box {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 20px 0 20px;
}
.h_contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact_tel {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.btn_request a, .btn_contact a {
    color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 41px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    letter-spacing: -0.035em;
}
.btn_request a span, .btn_contact a span {
    position: relative;
}
.btn_request a span {
    padding-left: 32px;
}
.btn_contact a span {
    padding-left: 35px;
}
.btn_request a span:before, .btn_contact a span:before, .h_contact_tel a:before {
    position: absolute;
    content: "";
}
.btn_request a span:before {
    background: url("../images/icon_search.svg") no-repeat center top/cover;
    width: 20px;
    height: 20px;
    left: 0;
    top: 6px;
}
.btn_contact a span:before {
    background: url("../images/icon_mail.svg") no-repeat center top/cover;
    width: 26px;
    height: 18px;
    left: 0;
    top: 8px;
}
.btn_request a {
    background: #00255b;
}
.btn_contact a {
    background-color: #013b96;
}
.h_contact_tel a {
    font-size: 32px;
    color: #004459;
    font-weight: 600;
    font-family: var(--f-en);
    padding-left: 25px;
    position: relative;
    line-height: 1;
    display: block;
    letter-spacing: -0.005em;
}
.h_contact_tel a:before {
    background: url("../images/icon_tel.svg") no-repeat left center/20px;
    width: 20px;
    height: 25px;
    left: 0;
    top: 5px;
}
.h_contact_tel .time {
    font-size: 14px;
    line-height: 1.6;
    width: 170px;
    height: 36px;
    background: #cce4ec;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004459;
    font-weight: 600;
    margin-right: 15px;
    padding-bottom: 2px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 119px;
}
.mv {
    position: relative;
    padding: 0;
    height: 880px;
}
.mv .wrap {
    position: absolute;
    left: 0;
    top: 0;
}
.mv:before {
    position: absolute;
    content: "";
    background: url("../images/main_pc.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    left: 0;
    top: 0;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    width: 760px;
    height: 770px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-left: 120px;
    margin-top: 60px;
}
.mv_ttl1 {
    width: 250px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    border-radius: 5px;
    margin: 0 auto 2px;
    color: #fff;
    font-family: var(--f-nsr);
    font-size: 32px;
    font-weight: 500;
    position: relative;
    top: -20px;
    letter-spacing: -0.08em;
}
.mv_ttl1:before {
    position: absolute;
    content: "";
    background: url("../images/bb1.png") no-repeat center top/250px;
    width: 250px;
    height: 70px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    z-index: -1;
}
.mv_ttl2 {
    font-size: 70px;
    font-weight: 500;
    text-align: center;
    font-family: var(--f-nsr);
    color: #013b96;
    line-height: 1.28;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.mv_ttl2 .sm {
    color: var(--txt2);
    font-size: 80%;
}
.mv_ttl3 {
    font-size: 32px;
    font-family: var(--f-nsr);
    line-height: 1.63;
    margin-bottom: 21px;
    text-align: center;
    letter-spacing: -0.03em;
}
.mv_ttl3 .num {
    font-size: 120%;
    margin: 0 3px 0 2px;
    line-height: 1.35;
}
.mv_ttl4 {
    border-top: 1px #6789c0 solid;
    border-bottom: 1px #6789c0 solid;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    padding: 6px 10px 5px;
    width: calc(100% - 80px);
    margin: 0 auto 24px;
    justify-content: center;
    /* letter-spacing: -0.1em; */
}
.mv_ttl4 dt {
    color: #013b96;
    margin-right: 17px;
    letter-spacing: -0.06em;
}
.mv_ttl4 dt, .mv_ttl4 dd {
    font-size: 24px;
    font-weight: 600;
}
.mv_ttl4 dd {
    letter-spacing: -0.018em;
}
.mv_contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    left: 5px;
    position: relative;
}
.mv_contact p {
    margin-bottom: 0;
}
.mv_btn_request a {
    font-size: 22px;
    padding-bottom: 9px;
}
.mv_btn_tel a {}
.mv_btn_request a span:before {
    background-size: 24px auto;
    width: 24px;
    height: 28px;
}
.mv_btn_request a, .mv_btn_tel a {
    height: 80px;
    width: 300px;
    border-radius: 5px;
}
.mv_btn_tel a {
    background: #004459;
}
.mv_btn_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.mv_btn_tel a .icon {
    display: flex;
    flex-direction: column;
    background: url(../images/icon_tel_white.svg) no-repeat left center / 25px;
    padding-left: 35px;
    padding-top: 2px;
}
.mv_btn_tel a .icon .sm {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
}
.mv_btn_tel a .icon .num {
    font-size: 30px;
    font-family: var(--f-en);
    font-weight: 500;
}
.mv_point {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    left: 5px;
}
.mv_point .item {
    width: 160px;
    height: 160px;
    background: #013b96;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mv_point .item.item1 {
    padding-top: 17px;
}
.mv_point .item.item2 {
    padding-bottom: 8px;
}
.mv_point .item.item3 {
    padding-top: 6px;
}
.mv_point .item.item3 .sm {
    margin-bottom: 5px;
}
.mv_point .item .sm {
    text-align: center;
    line-height: 1.33;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}
.mv_point .item .lg {
    font-size: 32px;
    font-family: var(--f-nsr);
    line-height: 1.125;
    letter-spacing: -0.05em;
}
.mv_point .item .lg_num {
    font-size: 30px;
    font-weight: 500;
    font-family: var(--f-nsr);
}
.mv_point .item .lg_num .num {
    font-size: 162%;
    letter-spacing: 0.04em;
    margin-right: 3px;
    line-height: 1;
}
.mv_point .item .number {
    font-family: var(--f-nsr);
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}
.mv_point .item .number .percent {
    font-size: 60%;
}
.mv_point .xsm {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.8;
}
.mv_point .xsm span {
    margin: 0 2px;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
}
.ttl_h3:not(:last-child) {
    margin-bottom: 35px;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 46px;
    color: #013b96;
    font-family: var(--f-nsr);
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.08em;
}
.ttl_h3 .en {
    font-size: 20px;
    color: #808080;
    font-family: var(--f-en);
    font-weight: 500;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 400px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_white.svg') no-repeat right 25px center/16px #333333;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.btn_box:not(:last-child) {
    margin-bottom: 30px;
}
.btn_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn_box .btn {
    margin: 10px;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-top: 134px;
    padding-bottom: 150px;
    position: relative;
    height: 830px;
}
.sec01:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg01_pc.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    right: 0;
    top: 0;
}
.sec01 .idx_txt {
    text-align: center;
}
.sec01_con {
    width: 600px;
    margin-left: auto;
    display: table;
}
.sec01_ttl {
    color: var(--txt2);
    font-size: 36px;
    line-height: 1.38;
    font-family: var(--f-nsr);
    margin-bottom: 18px;
    letter-spacing: -0.055em;
}
.sec01_txt, .sec02_txt, .sec04_txt, .sec05_txt, .sec10_txt {
    border-bottom: 1px #6789c0 solid;
    padding-bottom: 62px;
    width: 800px;
    margin: 0 auto 85px;
}
/*============= SEC02 ==============*/
.sec02 {
    background: #e5f1f5;
    position: relative;
    padding-top: 113px;
    padding-bottom: 118px;
}
.sec02:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_par.png") no-repeat center top/1920px;
    width: 1920px;
    height: 320px;
    left: calc(50% - 960px);
    top: 0;
}
.sec02 .inner {
    z-index: 1;
}
.sec02_txt {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 56px;
}
.sec02 .ttl_h3 .ja {
    margin-bottom: 17px;
}
.sec02 .ttl_h3:not(:last-child) {
    margin-bottom: 45px;
}
.sec02_item {
    gap: 60px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.sec02_item .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.sec02_img {
    margin-bottom: 0px;
}
.sec02_item .item .wrap {
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
}
.sec02_bg {
    background: url("../images/bb2.png") no-repeat center top/271px;
    width: 271px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: -47px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    padding-bottom: 18px;
    letter-spacing: -0.05em;
}
.sec02_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}
.sec02_ttl .en {
    color: #013b96;
    font-family: var(--f-en);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 6px;
}
.sec02_ttl .ja {
    color: #00255b;
    font-family: var(--f-nsr);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.1em;
}
.sec02_sub_ttl {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.625;
}
.sec02_sub_ttl .sm {
    color: var(--txt2);
    font-weight: 600;
}
.sec02_sub_ttl .lg {
    font-size: 20px;
}
.sec02_sub_ttl .lg .txt_blue {
    color: #00255b;
}
.sec02_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #e5f1f5;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.sec02_btn a {
    width: 146px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    background: url(../images/arrow_blue.svg) no-repeat right 5px center / 12px;
    padding-right: 16px;
    letter-spacing: -0.13em;
    color: var(--txt2);
}
/*============= SEC03 ==============*/
.sec03 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.sec03 .inner {
    width: 100%;
    padding: 0;
}
.sec03_item {
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.sec03_item .item1 {
    width: calc(100% + 8px);
}
.sec03_item .item2 {
    width: 580px;
    padding-top: 33px;
    padding-left: 47px;
}
.sec03_img {
    position: relative;
    display: table;
}
.sec03_img:before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: 100%;
    background: #f2f2f2;
    right: -20px;
    bottom: -20px;
    z-index: -1;
}
.sec03 .ttl_h3 {
    text-align: left;
}
.sec03 .ttl_h3 .ja {}
.sec03 .ttl_h3 .en {}
.sec03_check {
    margin-bottom: 30px;
}
.sec03_check li {
    background: url("../images/icon_check.png")#013b96 no-repeat left 15px center/16px;
    border-radius: 5px;
    padding: 3px 10px 5px 40px;
    color: #fff;
    letter-spacing: -0.05em;
}
.sec03_check li:not(:last-child) {
    margin-bottom: 10px;
}
.sec03_frame {
    border: 1px #cccccc solid;
    padding: 21px 30px 30px 15px;
    position: relative;
    margin-left: 20px;
    max-width: 500px;
}
.sec03_frame:before {
    position: absolute;
    content: "";
    background: url("../images/icon_war.svg") no-repeat center top/cover;
    width: 60px;
    height: 60px;
    left: -20px;
    top: -22px;
}
.sec03_ttl2 {
    font-family: var(--f-nsr);
    font-size: 36px;
    color: #00255b;
    width: fit-content;
    margin: 0 auto 8px;
    background-image: linear-gradient(0deg, #ccd8ea 12.12%, rgba(255, 255, 255, 0) 12.12%, rgba(255, 255, 255, 0) 50%, #ccd8ea 50%, #ccd8ea 62.12%, rgba(255, 255, 255, 0) 62.12%, rgba(255, 255, 255, 0) 100%);
    background-size: 132.00px 132.00px;
    background-position: left bottom 1px;
    line-height: 1.4;
    letter-spacing: -0.12em;
    margin-left: 24px;
    padding-right: 11px;
}
.sec03_txt {
    line-height: 1.875;
    text-align: center;
    font-weight: 600;
    color: var(--txt2);
    margin-bottom: 18px;
}
/*============= SEC04 ==============*/
.sec04 {
    padding-top: 102px;
    position: relative;
    padding-bottom: 120px;
}
.sec04:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1050px;
    background: #e5f1f5;
    left: 0;
    top: 0;
}
.sec04_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 55px;
}
.sec04_item .item {
    background: #fff;
    padding: 0px 0px 35px;
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.09);
    cursor: pointer;
}
.sec04_img {
    margin-bottom: 10px;
}
.sec04_ttl {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: -25px;
    margin-bottom: -12px;
}
.sec04_ttl .en {
    font-size: 14px;
    color: #013b96;
    font-family: var(--f-en);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    background: #fff;
    padding: 5px 10px 0;
    width: 130px;
    text-align: center;
    letter-spacing: -0.07em;
}
.sec04_ttl .ja {
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 28px;
    color: #00255b;
}
.sec04_des {
    font-weight: 600;
    color: #333333;
    line-height: 1.625;
    padding: 0px 28px;
    letter-spacing: 0.01em;
}
.sec04 .ttl_h3:not(:last-child) {
    margin-bottom: 45px;
}
.sec04_txt {
    margin-bottom: 60px;
    padding-bottom: 54px;
}
/*============= SEC05 ==============*/
.sec05 {
    background: #f2f5fa;
    padding-top: 124px;
    padding-bottom: 120px;
}
.sec05_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 39px;
}
.sec05_ttl .sm {
    background: url("../images/bb3.png") no-repeat center bottom/102px;
    width: 102px;
    margin: 0 auto -5px;
    display: table;
    font-size: 24px;
    color: #013b96;
    font-weight: 600;
    text-align: center;
    padding-bottom: 16px;
}
.sec05_ttl .lg {
    color: #013b96;
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 46px;
    letter-spacing: -0.035em;
}
.sec04_txt, .sec05_txt {
    text-align: center;
}
.sec05_txt {
    padding-bottom: 56px;
    margin-bottom: 80px;
}
.sec05_item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.sec05_item .item {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 17px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}
.sec05_label {
    z-index: 1;
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 0 12px;
    background: #013b96;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    top: -20px;
    margin-bottom: -1px;
    width: 90px;
    text-align: center;
    letter-spacing: -0.04em;
    white-space: nowrap;
}
.item2 .sec05_label {
    width: 132px;
}
.item3 .sec05_label {
    width: 70px;
}
.item4 .sec05_label {
    width: 90px;
}
.sec05_label .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.sec05_label .bg:before {
    width: 11px;
    height: 12px;
    background: #013b96;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -11px;
}
.sec05_label:before, .sec05_label:after, .sec05_label .bg:before {
    position: absolute;
    content: "";
}
.sec05_label:before, .sec05_label:after {
    width: 20px;
    height: 100%;
    background: #013b96;
    border-radius: 4px 4px 2px 2px;
    z-index: -1;
}
.sec05_label:before {
    left: -10px;
    top: 0;
    transform: skewX(12deg);
}
.sec05_label:after {
    right: -10px;
    transform: skewX(-12deg);
}
.sec05_ic {
    margin-bottom: 12px;
}
.sec05_des {
    color: #333333;
    line-height: 1.625;
    font-weight: 600;
    padding: 0 17px;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}
.sec05_btn {
    align-self: flex-end;
    padding-right: 20px;
    margin-top: auto;
}
.sec05_btn a {
    color: var(--txt2);
    background: url(../images/arrow_blue.svg) no-repeat right center / 14px;
    padding-right: 30px;
    font-weight: 700;
    letter-spacing: -0.15em;
}
/*============= SEC06 ==============*/
.sec06 {
    position: relative;
    padding-top: 111px;
    padding-bottom: 50px;
}
.sec06:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg02_pc.jpg") no-repeat center top/2220px;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
}
.sec06 .ttl_h3 .ja {
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.09em;
}
.sec06 .ttl_h3 .en {
    color: #99a8bd;
}
.sec06_txt {
    color: #fff;
    text-align: center;
    margin-bottom: 112px;
}
.sec06_txt.idx_txt p {
    font-weight: 400;
}
.sec06 .ttl_h3:not(:last-child) {
    margin-bottom: 49px;
}
.sec06_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.sec06_item .item {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 20px;
    padding-bottom: 32px;
}
.sec06_num {
    position: absolute;
    color: #013b96;
    font-family: var(--f-en);
    font-size: 48px;
    font-weight: 500;
    left: 4px;
    top: -26px;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.1em;
}
.sec06_num:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    background: #013b96;
    transform: rotate(45deg);
    right: 0;
    bottom: -45px;
}
.sec06_icon {
    margin-bottom: -8px;
}
.sec06_ttl {
    font-family: var(--f-nsr);
    font-weight: 500;
    color: #00255b;
    line-height: 1.42;
    font-size: 28px;
    margin-bottom: 9px;
    text-align: center;
}
.sec06_des {
    color: #333333;
    line-height: 1.625;
    font-weight: 600;
    padding: 0 30px;
    letter-spacing: -0.02em;
}
/*============= SEC07 ==============*/
.sec07 {
    padding-top: 102px;
    padding-bottom: 238px;
}
.sec07_ttl {
    display: flex;
    align-items: center;
    border-bottom: 1px #6789c0 solid;
    padding-bottom: 28px;
    margin-bottom: 69px;
}
.sec07_ttl h3 {
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.35;
}
.sec07_ttl h3 .lg {
    font-size: 125%;
    color: #013b96;
}
.sec07_ttl .pickup {
    background: #00255b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    text-align: center;
    font-family: var(--f-en);
    font-weight: bold;
    line-height: 1.25;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 0;
    margin-right: 30px;
    position: relative;
}
.sec07_ttl .pickup:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 15px;
    background: #00255b;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: -15px;
    top: calc(50% - 3px);
}
.sec07_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}
.sec07_item .item {
    background: #fff;
    position: relative;
}
.sec07_box {
    position: relative;
    margin-bottom: -5px;
}
.sec07_label {
    background: #013b96;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    padding: 3px 16px 4px;
}
.sec07_tilte {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 10px 0 19px;
    color: #013b96;
    font-size: 20px;
    font-weight: 500;
    background: #fff;
    max-width: calc(100% - 20px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sec07_info {
    margin-bottom: 21px;
    padding: 0 20px;
}
.sec07_info p {
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
    line-height: 1.4;
}
.sec07_btn a {
    border: 2px #7f93ac solid;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00255b;
    font-size: 18px;
    font-weight: 500;
}
.sec07_btn a span {
    background: url("../images/icon_check_blue.png") no-repeat left center/16px;
    padding-left: 27px;
    padding-bottom: 1px;
    transition: all 0.3s;
}
/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    height: 381px;
}
.sec08:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg05_pc.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
}
.sec08_frame {
    background: #fff;
    border: 4px #cce4ec solid;
    padding: 20px 66px 75px;
    position: relative;
    top: -60px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.1);
    max-width: 940px;
    margin: 0 auto;
}
.sec08_ttl {
    background: #004459;
    border-radius: 35px;
    color: #fff;
    font-family: var(--f-nsr);
    width: 620px;
    height: 70px;
    margin: 0 auto -13px;
    font-size: 32px;
    top: -63px;
    position: relative;
    text-align: center;
    letter-spacing: -0.03em;
}
.sec08_ttl:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: #004459;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
}
.sec08_ttl span {
    color: #ccd8ea;
}
.sec08_check {}
.sec08_check li {
    color: var(--txt2);
    font-weight: 600;
    padding: 8px 40px 9px;
    position: relative;
}
.sec08_check li:before {
    position: absolute;
    content: "";
    background: url("../images/icon_check_blue.png") no-repeat left center/16px;
    left: 15px;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
}
.sec08_check li:nth-child(odd) {
    background: #d9ebf1;
}
.sec08_check li:nth-child(even) {
    padding: 9px 40px 10px;
}
.sec08_check li .blue_txt {
    color: #013b96;
}
/*============= SEC09 ==============*/
.sec09 {
    position: relative;
    background: #3463ab;
    color: #fff;
    padding: 62px 0 60px;
}
.sec09 .inner {
    z-index: 9;
}
.sec09:before, .sec09:after {
    position: absolute;
    content: "";
}
.sec09:before {
    background: #1b4fa2;
    width: 634px;
    height: 100%;
    left: 0px;
    top: 0;
}
.sec09:after {
    background: url("../images/idx_bg03_pc.png") no-repeat center top/1053px;
    left: -6px;
    top: 5px;
    height: 275px;
    width: 1053px;
}
.sec09_ttl {
    font-size: 36px;
    font-family: var(--f-nsr);
    letter-spacing: -0.065em;
    background-image: linear-gradient(0deg, #013b96 12.12%, rgba(255, 255, 255, 0) 12.12%, rgba(255, 255, 255, 0) 50%, #013b96 50%, #013b96 62.12%, rgba(255, 255, 255, 0) 62.12%, rgba(255, 255, 255, 0) 100%);
    background-size: 132.00px 132.00px;
    width: fit-content;
    position: relative;
    background-position: center bottom 2px;
    margin: 0 0 28px auto;
    padding: 0 8px 0 5px;
}
.sec09_ttl span {
    font-size: 80%;
}
.sec09_btn_request a {
    width: 420px;
    height: 80px;
    font-size: 24px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    padding-right: 10px;
}
.sec09_btn_request a span:before {
    background: url(../images/icon_search_lg.png) no-repeat center top /cover;
    width: 31px;
    height: 31px;
    left: 0;
    top: 3px;
}
.sec09_btn_request a span {
    padding-left: 55px;
}
/*============= SEC10 ==============*/
.sec10 {
    padding-top: 110px;
    padding-bottom: 140px;
}
.sec10 .inner {
    padding: 0;
    width: 100%;
}
.sec10_txt {
    text-align: center;
    padding-bottom: 55px;
    margin-bottom: 80px;
}
.sec10 .ttl_h3 .ja {
    margin-bottom: 15px;
}
.sec10 .ttl_h3 .en {}
.sec10 .ttl_h3:not(:last-child) {
    margin-bottom: 50px;
}
.sec10_item {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    margin-bottom: 46px;
}
.sec10_item .item {
    display: flex;
}
.sec10_item .item:nth-child(even) {
    flex-direction: row-reverse;
}
.sec10_item .item:nth-child(odd) .sec10_info {
    margin-left: -60px;
}
.sec10_item .item:nth-child(even) .sec10_info {
    margin-right: -60px;
}
.sec10_img {
    position: relative;
    z-index: 1;
}
.sec10_img:before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: 100%;
    background: #3462ab;
    z-index: -1;
    bottom: -20px;
    right: -20px;
}
.sec10_info {
    width: 560px;
    background: #fff;
    padding: 37px 50px 35px 40px;
    align-self: flex-end;
    z-index: 1;
    position: relative;
}
.item1 .sec10_info {
    padding-left: 60px;
}
.item3 .sec10_info {
    padding-left: 62px;
    padding-bottom: 30px;
}
.sec10_info:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 85px;
    background: #013b96;
}
.sec10_item .item:nth-child(odd) .sec10_info:before {
    transform: rotate(45deg);
    left: 20px;
    top: -22px;
}
.sec10_item .item:nth-child(even) .sec10_info:before {
    transform: rotate(-45deg);
    right: 20px;
    top: -22px;
}
.sec10_ttl {
    margin-bottom: 26px;
}
.sec10_ttl .en {
    color: #013b96;
    font-weight: 600;
    font-family: var(--f-en);
    font-size: 14px;
    margin-bottom: -6px;
}
.sec10_ttl .num {
    font-size: 160%;
    margin-left: 4px;
    margin-right: 28px;
}
.sec10_ttl .ic {
    position: relative;
}
.sec10_ttl .ic1 {
    bottom: 25px;
    position: relative;
}
.sec10_ttl .ic2 {
    bottom: 22px;
    right: 3px;
}
.sec10_ttl .ic3 {
    bottom: 26px;
    right: 2px;
}
.sec10_ttl .ic4 {
    bottom: 27px;
    right: 4px;
}
.sec10_ttl .ic5 {
    bottom: 29px;
    right: 8px;
}
.sec10_ttl .title {
    color: #00255b;
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.375;
    letter-spacing: -0.03em;
}
.sec10_des {}
.sec10_des p {
    font-weight: 600;
    color: var(--txt2);
    line-height: 1.625;
}
/*============= SEC11 ==============*/
.sec_cta {
    background: #013b96;
    color: #fff;
    height: 360px;
    text-align: center;
    position: relative;
    padding: 52px 0 0;
}
.sec15.sec_cta {
	    padding: 52px 0 0;
}
.sec15 .sec_cta_txt {
    margin-bottom: 47px;
}
.sec15 .sec_cta_ttl {
    font-weight: 400;
    line-height: 1.4;
    background-image: linear-gradient(0deg, #013b96 14.12%, rgba(255, 255, 255, 0) 14.12%, rgba(255, 255, 255, 0) 50%, #013b96 50%, #013b96 86.12%, rgba(255, 255, 255, 0) 86.12%, rgba(255, 255, 255, 0) 100%);
    background-size: 130.00px 130.00px;
    padding-bottom: 3px;
	margin-bottom: -2px;
}
.sec_cta:before, .sec_cta:after {
    position: absolute;
    content: "";
    pointer-events: none;
}
.sec_cta:before {
    background: #3462ab;
    width: 800px;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.sec_cta:after {
    background: url("../images/idx_bg04_pc.png") no-repeat center top/1920px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.sec_cta_ttl {
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 36px;
    background-image: linear-gradient(0deg, #013b96 12.12%, rgba(255, 255, 255, 0) 12.12%, rgba(255, 255, 255, 0) 50%, #013b96 50%, #013b96 62.12%, rgba(255, 255, 255, 0) 62.12%, rgba(255, 255, 255, 0) 100%);
    background-size: 132.00px 132.00px;
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    background-position: left bottom;
    letter-spacing: -0.07em;
}
.sec_cta_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 1;
}
.sec_cta_item p a {
    width: 380px;
    height: 80px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
}
.sec_cta_item p.btn_cta_tel a {
    padding-top: 8px;
}
.sec_cta_item p a .number {
    font-size: 32px;
    font-family: var(--f-en);
    font-weight: 500;
    margin-bottom: -1px;
    position: relative;
    padding-left: 30px;
    letter-spacing: -0.005em;
}
.sec_cta_item p a .number:before {
    position: absolute;
    content: "";
    background: url("../images/icon_tel_white.svg") no-repeat left top/21px;
    padding-left: 25px;
    left: 0;
    top: 4px;
    width: 21px;
    height: 32px;
}
.sec_cta_item p a .box_time {
    display: flex;
    gap: 24px;
    letter-spacing: -0.02em;
}
.sec_cta_item p a .box_time .time {
    font-size: 14px;
    font-weight: 500;
}
.sec_cta_item p a .box_time .time .label {
    background: #33697a;
    border-radius: 10px;
    padding: 0 9px;
    margin-right: 6px;
}
.btn_cta_tel a {
    background: #004459;
}
.btn_cta_request a, .btn_cta_mail a {
    font-size: 24px;
    font-weight: 500;
}
.btn_cta_request a {}
.btn_cta_mail a {}
.btn_contact.btn_cta_mail a span:before {
    width: 38px;
    height: 26px;
    background: url(../images/icon_mail_cta.png) no-repeat center top / cover;
    top: 3px;
}
.btn_contact.btn_cta_mail a span {
    padding-left: 55px;
}
.btn_cta_tel {}
.btn_cta_request a span:before {
    width: 27px;
    height: 27px;
    left: 0;
    top: 7px;
}
.btn_cta_request a span {
    padding-left: 40px;
}
/*============= SEC12 ==============*/
.sec12 {
    background: #e5ecee;
    padding-bottom: 120px;
    padding-top: 110px;
}
.sec12_slide {
    height: 500px;
}
.sec12_slide.slick-initialized {
    height: auto;
}
.sec12 .inner {
    padding: 0;
    width: 100%;
}
.sec12_txt {
    text-align: center;
    margin-bottom: 34px;
}
.sec12_slide .slick-track {
    display: flex;
    padding: 12px 0;
}
.sec12_slide .item {
    background: #fff;
    margin: 0 30px;
    width: 420px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.1);
	position: relative;
}
.sec12_wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
    transition: all 0.3s;
}
.sec12_slide .item  a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.sec12_box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    height: 140px;
    padding: 15px 25px;
    width: 100%;
    margin-bottom: 23px;
}
.sec12_img {
    margin-bottom: 0;
    margin-right: 34px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}
.sec12_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec12_des {
    padding: 0px 30px 68px;
    width: 100%;
}
.sec12_des p {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.875;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec12_ttl {
    display: flex;
    flex-direction: column;
    width: calc(100% - 110px);
}
.sec12_ttl .sm {
    color: #333333;
    font-weight: 600;
}
.sec12_ttl .lg {
    font-size: 24px;
    color: #013b96;
    font-weight: 600;
}
.sec12_ttl .sm, .sec12_ttl .lg {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sec12_slide .slick-dots li.slick-active, .sec04_item .slick-dots li.slick-active {
    pointer-events: none;
}
.sec12_slide .slick-dots, .sec04_item .slick-dots {
    bottom: -23px;
}
.sec12_slide .slick-list, .sec04_item .slick-list {
    padding: 15px 0 !important;
}
.sec12_slide .slick-dots li button, .sec04_item .slick-dots li button {
    padding: 0;
    background: #99b4bd;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}
.sec12_slide .slick-dots li.slick-active button, .sec04_item .slick-dots li.slick-active button {
    background: #013b96;
    pointer-events: none;
}
.sec12_slide .slick-dots li, .sec04_item .slick-dots li {
    margin: 0 5px;
    width: 10px;
    height: 10px;
}
.sec12_slide .slick-dots li button:before, .sec04_item .slick-dots li button:before {
    display: none;
}
.slick-dotted.slick-slider.sec12_slide, .slick-dotted.slick-slider.sec04_item {
    margin-bottom: 83px;
}
/*============= SEC13 ==============*/
.sec13 {
    padding: 80px 0 120px;
}
.sec13 .inner {
    width: 100%;
    padding: 0 0px;
}
.sec13 .ttl_h3 {
   text-align: left;
    margin-bottom: 35px
}
.sec13 .ttl_h3 .ja {
    margin-bottom: 6px;
}
.sec13 .ttl_h3 .en {}
.sec13_item {
    display: flex;
    gap: 40px;
	    justify-content: center;
}
.sec13_item .item1 {
    margin-right: -8px;
}
.sec13_item .item2 {
    margin-left: 67px;
}
.sec13_item .item2 .wrap {
    width: 540px;
}
.sec13_img_g {}
.sec13_img_g {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.sec13_img_g p {
    position: relative;
}
.sec13_img_g p:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #3462ab;
    z-index: -1;
    bottom: -20px;
    right: -20px;
}
.sec13_img2 {
    margin-top: 100px;
}
.sec13_ttl {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
}
.sec13_txt {
    margin-bottom: 59px;
}
.sec13_txt p {
    line-height: 1.875;
    font-weight: 600;
}
.sec13_name {
    display: table;
    margin-left: auto;
    font-size: 18px;
    color: #333333;
    font-family: var(--f-nsr);
    font-weight: 600;
    line-height: 1.55;
}
/*============= SEC14 ==============*/
.sec14 {
    background: #f2f2f2;
    padding: 125px 0 116px;
}
.sec14 .ttl_h3 {
    text-align: left;
    margin-bottom: 48px;
}
.sec14 .ttl_h3 .ja {
    font-size: 38px;
    line-height: 1.26;
}
.sec14 .ttl_h3 .en {}
.sec14_item {
    display: flex;
}
.sec14_item .item1 {
    flex-shrink: 0;
    margin-right: 45px;
    width: 295px;
}
.sec14_item .item2 {
    width: calc(100% - 340px)
}
.sec14_btn {}
.sec14_btn a {
    font-weight: 600;
    background: url("../images/arrow_blue.svg") no-repeat right center/16px;
    padding-right: 28px;
    letter-spacing: -0.04em;
    color: var(--txt2);
}
.sec14_load {}
.sec14_load dl {
    display: flex;
    border-bottom: 1px #cccccc solid;
    padding: 9px 11px 8px;
}
.sec14_load dl:nth-child(even) {
    background: #fff;
}
.sec14_load dl:first-child {
    border-top: 1px #cccccc solid;
}
.sec14_load dl dt {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}
.sec14_load dl dt .cate {
    min-width: 90px;
    height: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 15px;
    font-weight: 500;
    justify-content: center;
    padding-bottom: 2px;
}
.sec14_load dl dt .cate1 {
    background: #013b96;
}
.sec14_load dl dt .cate2 {
    background: #0098db;
}
.sec14_load dl dt .cate3 {
    background: #666666;
}
.sec14_load dl dt .date {
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--txt2);
}
.sec14_load dl dd {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sec14_load dl dd a {
    color: var(--txt2);
    font-weight: 600;
}
/*============= SEC15 ==============*/
.idx_txt p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: -0.02em;
}
.idx_txt .blue_bold, .sec13_txt .blue_bold, .blue_txt {
    color: #013b96;
}
.idx_txt .blue_bold .spac {
    margin: 0 4px;
}
.idx_des {}
.idx_des p {
    font-weight: 600;
    color: var(--txt2);
    line-height: 1.875;
}
.sec_idx_box {}
.sec_idx_ttl_lg {
    font-family: var(--f-nsr);
    font-weight: 500;
    font-size: 28px;
    color: #00255b;
    text-align: center;
    width: fit-content;
    margin: 0 auto 7px;
    background-image: linear-gradient(0deg, #ccd8ea 12.12%, rgba(255, 255, 255, 0) 12.12%, rgba(255, 255, 255, 0) 50%, #ccd8ea 50%, #ccd8ea 62.12%, rgba(255, 255, 255, 0) 62.12%, rgba(255, 255, 255, 0) 100%);
    background-size: 132.00px 132.00px;
    background-position: left bottom 0px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}
.sec_idx_txt {
    text-align: center;
    color: var(--txt2);
    margin-bottom: 38px;
}
.sec_idx_txt p {
    line-height: 1.875;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt2);
}
.sec_cta_txt {
    line-height: 1.875;
    margin-bottom: 26px;
}
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}
.ft_top {}
.ft_top .inner {
    width: 100%;
    padding: 0px;
}
.ft_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.ft_map {
    height: 100%;
    width: 100%;
}
.ft_map iframe {
    width: 100%;
    height: 100%;
}
.ft_item .item1 {
    height: 640px;
}
.ft_item .item2 {
    padding-left: 80px;
    width: 600px;
}
.ft_ttl {
    text-align: left;
    border-bottom: 1px #cccccc solid;
    padding-bottom: 35px;
}
.ft_ttl .ja {
    font-size: 38px;
}
.ft_ttl.ttl_h3:not(:last-child) {
    margin-bottom: 11px;
}
.ft_ttl .en {}
.ft_info {}
.ft_info dl {
    display: flex;
    padding: 0 10px;
    margin-bottom: 9px;
}
.ft_info dl dt, .ft_info dl dd {
    font-weight: 600;
}
.ft_info dl dt {
    color: #00255b;
    width: 133px;
    flex-shrink: 0;
}
.ft_info dl dd {}
.ft_link {
position: relative;
    padding: 111px 0 38px;
    color: #fff;
    z-index: 1;
    display: inline-block;
    width: 100%;
}
.ft_link li a {
    color: #fff;
    background: url("../images/arrow_ft.png") no-repeat left center/7px;
    padding-left: 15px;
    font-size: 14px;
}
.ft_link li {
    line-height: 1.24;
    margin-bottom: 10px;
}
.ft_link li.big {
    margin-bottom: 11px;
}
.ft_link li.big p {
    color: #99c9d9;
    font-weight: 600;
    border-bottom: 1px #99c9d9 solid;
    padding-bottom: 1px;
}
.ft_link:before {
    position: absolute;
    content: "";
    background: url("../images/ft_bg.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 100%;
    z-index: -1;
}
.ft_link .inner {
    display: flex;
    gap: 60px;
    margin-bottom: 70px;
}
.ft_link .inner ul {
    width: 260px;
}
.ft_link .inner .item1 {
    width: 240px;
}
address {
    color: #fff;
    text-align: center;
    letter-spacing: 0.002em;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
    outline: 1px rgba(255, 255, 255, 0.2) solid;
    border-radius: 5px;
}
.to_top img {}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}