@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho:wght@400;500;600;700;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: 180%;
    -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.77em;
}

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: #07324e;
    --mcolor: #025f9a;
    --scolor: #ffa800;
    --container: 1310px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: 'Noto Sans JP', sans-serif;
    --f-Shi: "Shippori Mincho", serif;
    --f-en: "Roboto", 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: -10px
}

.hamburger-inner::after {
    bottom: -10px
}

.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, 10px, 0) rotate(45deg)
}

.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}

@-webkit-keyframes scrolltop {
    0% {
        transform: translateY(-220px);
        opacity: 0;
        transition: ease-in-out;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    position: relative;
    z-index: 9;
}

h1 {
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
}

#logo {
    transition: all 0.3s;
    padding-top: 11px;
}

.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
}

.h_box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 16px;
    left: 0;
    bottom: -16px;
    background: #f9f9f9;
    z-index: 9;
    transition: all 0.3s;
}

.is_scroll .h_box:before {
    opacity: 0;
    height: 0;
}

.under .h_box:before {
    background: #e4f3fc;
}

.is_scroll .h_box {
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.1);
}

.h_inner {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 10px 0 13px;
    max-width: 1920px;
}

.h_left {
    flex-shrink: 0;
    margin-right: 73px;
    margin-top: 18px;
}

.h_right {
    margin-left: auto;
}

.h_contact {
    display: flex;
}

.h_contact>p {
    margin-bottom: 0;
}

.h_contact>p:not(:last-child) {
    margin-right: 31px;
}

.h_contact_tel {
    flex-shrink: 0;
    padding-top: 34px;
    transition: all 0.3s;
}

.h_contact_mail {
    margin-top: 20px;
}

.h_contact_mail a {
    color: #FFF;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    width: 256px;
    height: 140px;
    position: relative;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    font-size: 26px;
    letter-spacing: 0.05em;
    background: url("../images/icon_mail.png")var(--mcolor) no-repeat center top 16px/40px;
    padding-top: 54px;
    letter-spacing: 0.05em;
}

.h_contact_mail a>span {
    width: 174px;
    height: 33px;
    background: #fff;
    border-radius: 17px;
    line-height: 32px;
    text-align: center;
    display: block;
    margin-top: 8px;
    color: #1479ba;
    font-size: 20px;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.h_contact_mail a>span .num {
    font-size: 24px;
    font-family: var(--f-en);
    position: relative;
    top: 1px;
}

.h_contact_tel a {
    font-size: 34px;
    color: #1479ba;
    font-weight: bold;
    position: relative;
    line-height: 1;
    display: block;
    background: url("../images/icon_tel.png") no-repeat left top 3px/23px;
    padding: 0px 0 5px 30px;
    letter-spacing: -0.02em;
    font-family: var(--f-en);
    transition: all 0.3s;
}

.h_contact_tel .time {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    width: 189px;
    display: table;
    margin: 0 auto;
    border-bottom: 1px #1479ba solid;
    letter-spacing: 0.045em;
    padding-bottom: 7px;
    transition: all 0.3s;
    position: relative;
    left: -2px;
    font-weight: 500;
}

.h_contact_tel .time .num {
    font-size: 18px;
    margin-left: 8px;
}

.h_contact_txt {
    display: block;
    text-align: center;
    color: #1479ba;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav_list .icon1 {
    background: url("../images/icon_menu1.png") no-repeat center top 18px/36px;
    width: 118px;
    padding-left: 13px;
}

.nav_list .icon2 {
    background: url("../images/icon_menu2.png") no-repeat center top 19px/27px;
    width: 234px;
}

.nav_list .icon3 {
    background: url("../images/icon_menu3.png") no-repeat center top 21px/45px;
    width: 180px;
}

.nav_list .icon4 {
    background: url("../images/icon_menu4.png") no-repeat center top 19px/36px;
    width: 160px;
}

.nav_list .icon5 {
    background: url("../images/icon_menu5.png") no-repeat center top 18px/27px;
    width: 170px;
    padding-right: 13px;
}

/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 216px;
}

.mv_bnr .bnr1 {
    margin-bottom: 32px;
    position: relative;
    left: 2px;
}

.mv {
    position: relative;
    padding: 0;
    display: flex;
    margin-bottom: 0px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.mv:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 692px;
    background: #f9f9f9;
    left: 0;
    top: -56px;
    z-index: -1;
}

.mv_l {
    flex-shrink: 0;
    width: calc(100% - 472px);
    position: relative;
}

.mv_r {
    width: 480px;
    display: flex;
    justify-content: center;
    padding: 13px 0 0 13px;
    position: relative;
    z-index: 1;
}

.mv_bg {
    position: relative;
    overflow: hidden;
    transition: all .3s;
    box-shadow: 13px 15px 0px 0px rgba(20, 121, 186, 0.1);
    display: flex;
}

.mv_bg>div {
    width: 50%;
}

.mv_l {
    background: url("../images/main01_right.jpg") no-repeat left top;
}

.mv_r {
    background: url("../images/main01_left.jpg") no-repeat right top;
}

.mv_l,
.mv_r {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 170px;
}

.mv_bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65px;
    background-color: rgba(20, 121, 186, 0.7);
    left: 0;
    bottom: 0;
    z-index: 9;
}

.mv_bg.init {
    opacity: 1
}

.mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mv_slider img {
    border-radius: 0 20px 20px 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv_bg,
.mv_slider_ite {
    width: 100%;
    height: 680px
}

.mv_slider_ite .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.mv_tt {
    position: absolute;
    z-index: 2;
}

.mv_txt h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.mv_txt_sub {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07324e;
    flex-direction: column;
    width: 540px;
    padding: 17px 15px;
    line-height: 1;
}

.mv_txt_sub_lg {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.mv_txt_sub_sm {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.blue1 {
    color: var(--mcolor);
    background: linear-gradient(to bottom, rgba(255, 226, 0, 0) 0%, rgba(255, 226, 0, 0) 72%, rgba(255, 226, 0, 0.5) 72%, rgba(255, 226, 0, 1) 73.1%, rgba(255, 226, 0, 1) 100%);
}

.mv_txt_sub .lg {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv_txt_sub .sm {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
}

.mv_txt_sub.tt1,
.mv_txt_sub.tt2 {
    font-size: 45px;
    font-family: var(--f-Shi)
}

.mv_txt_sub.tt1 {
    width: 460px;
    height: 84px;
    padding-bottom: 4px;
    margin-bottom: 31px;
    letter-spacing: 0;
}

.mv_txt_sub.tt2 {
    width: 781px;
    height: 99px;
    letter-spacing: 0.05em;
    padding-bottom: 7px;
    padding-left: 6px;
    margin-bottom: 30px;
}

.mv_logo {
    position: relative;
    left: 5px;
    top: 5px;
}

.mv_txt_sub.tt2 .lg {
    font-size: 69px;
    margin-right: 2px;
    letter-spacing: 0.05em;
}

.mv_txt_sub.tt3 {
    width: 341px;
    height: 76px;
    margin-left: auto;
    letter-spacing: 0em;
}

.mv_txt .wrap {
    width: 813px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    padding-top: 51px;
}

.mv_check {
    display: flex;
    padding-left: 110px;
    margin-bottom: 37px;
}

.mv_check li {
    width: 309px;
    height: 80px;
    border-radius: 40px;
    background: #1479ba;
    background-color: rgba(20, 121, 186, 0.8);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}

.mv_check li:before {
    position: absolute;
    content: "";
    background: url("../images/line_w1.png") no-repeat center top/228px;
    width: 228px;
    height: 30px;
    left: 0;
    right: 0;
    bottom: -17px;
    margin: 0 auto;
}

.mv_check li.sub2 {
    width: 252px;
    position: relative;
    left: 65px;
    top: 68px;
    padding-right: 7px;
}

.mv_check li.sub2 span {
    padding-left: 43px;
}

.mv_check li.sub2:before {
    background: url("../images/line_w2.png") no-repeat center top/168px;
    width: 168px;
    height: 27px;
    left: 0;
    right: 0;
    bottom: -16px;
    margin: 0 auto;
}

.mv_check li span {
    font-size: 29px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: url("../images/icon_check.png") no-repeat left top 5px/35px;
    padding-left: 45px;
    padding-bottom: 25px;
}

.mv_list {
    position: absolute;
    left: -7px;
    right: 0;
    margin: 0 auto;
    bottom: 24px;
    display: flex;
    z-index: 99;
    justify-content: center;
}

.mv_list li {
    background: #fff;
    width: 316px;
    height: 94px;
    border: 2px #1479ba solid;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    box-shadow: 1px 0px 6px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mv_list li:not(:last-child) {
    margin-right: 22px;
}

.mv_list li .stl {
    color: #1479ba;
    font-size: 22px;
}

.mv_list .item1 {}

.mv_list .item1>span {
    background: url("../images/icon_mv1.png") no-repeat left top 3px/46px;
    padding-left: 60px;
}

.mv_list .item2 {
    width: 340px;
}

.mv_list .item2>span {
    background: url("../images/icon_mv2.png") no-repeat left top 1px/76px;
    padding-left: 90px;
}

.mv_list .item3:before,
.mv_list .item4:before {
    position: absolute;
    content: "";
}

.mv_list .item3:before {
    background: url("../images/icon_mv3.png") no-repeat center top/80px;
    width: 80px;
    height: 77px;
    top: -35px;
    left: 99px;
}

.mv_list .item4:before {
    background: url("../images/icon_mv4.png") no-repeat center top/93px;
    width: 94px;
    height: 72px;
    top: -32px;
    left: 94px;
}

.mv_list .item3 {
    width: 266px;
    padding-top: 25px;
}

.mv_list .item4 {
    width: 286px;
    padding-top: 25px;
}

/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
    font-weight: bold;
}

.ttl_h3:not(:last-child) {
    margin-bottom: 30px;
}

.ttl_h3 span {
    display: block;
}

.ttl_h3 .ja {
    font-size: 32px;
}

.ttl_h3 .en {
    font-size: 16px;
}

/* DEFAUTL NAME BUTTON */
.btn a {
    width: 380px;
    height: 68px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_org.png') no-repeat right 20px center /20px var(--scolor);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.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;
    left: -3px;
    position: relative;
}

.btn_box .btn {
    margin: 10px 12px;
}

/*============= SEC01 ==============*/
.sec01 {
    position: relative;
    padding-top: 90px;
    z-index: 1;
}

.sec01 .inner {
    width: 1312px;
}

.sec01:before,
.sec01:after {
    position: absolute;
    content: "";
}

.sec01:before {
    background: url("../images/idx_bg01_line.png") no-repeat center top 298px/1920px, url("../images/curve_gray.png") no-repeat center top/1920px;
    width: 1920px;
    height: 765px;
    left: calc(50% - 960px);
    top: 40px;
}

.sec01:after {
    background: url("../images/idx_bg01.png") no-repeat center top/1920px;
    width: 1920px;
    height: 802px;
    left: calc(50% - 960px);
    top: 334px;
}

.sec01_ttl {
    position: relative;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec01_ttl:before,
.sec01_ttl:after {
    position: absolute;
    content: "";
}

.sec01_ttl:before {
    background: url("../images/idx_brush1.png") no-repeat left top/195px, url("../images/idx_brush2.png") no-repeat right top/185px;
    width: 365px;
    height: 270px;
    left: -68px;
    top: 5px;
}

.sec01_ttl:after {
    background: url("../images/idx_brush3.png") no-repeat left 2px top 2px/226px, url("../images/idx_brush4.png") no-repeat right bottom/152px;
    width: 376px;
    height: 282px;
    right: -32px;
    top: 11px;
}

.sec01_ttl .sm {
    min-width: 432px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px #1479ba solid;
    border-radius: 8px;
    text-align: center;
    font-size: 28px;
    position: relative;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    background: #fff;
}

.sec01_ttl .sm:before,
.sec03_bnr a .sm:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 26px;
    border-left: 2px #1479ba solid;
    bottom: -26px;
    left: calc(50% - 1px);
    border-top: 2px #fff solid;
}

.sec01_ttl .lg {
    font-size: 46px;
    font-family: var(--f-Shi);
    letter-spacing: 0.05em;
}

.sec01_item {
    margin-top: 195px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    justify-content: center;
}

.sec01_item>div {
    width: 402px;
    height: 170px;
    border-radius: 20px;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.sec01_item>div.item5 {
    margin-right: 0;
}

.sec01_item>div.item4 {
    /* margin-left: 40px; */
}

.sec01_item>div:before,
.sec01_item>div:after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.sec01_item>div:before {
    width: 100%;
    height: 100%;
    background: url("../images/round_left.png") no-repeat left 10px top 10px/36px, url("../images/round_right.png") no-repeat right 10px bottom 10px/36px;
    left: 0;
    top: 0;
}

.sec01_item>div:not(:nth-child(3n)) {
    margin-right: 38px;
}

.sec01_item>div>p {
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.71;
    text-align: center;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
}

.sec01_item>div>p .line {
    position: relative;
    font-weight: 700;
    z-index: 1;
}

.sec01_item>div>p .line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 14px;
    background: #e4f3fc;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.sec01_item>div.item1:after {
    background: url("../images/bb_w1.png") no-repeat left top;
    width: 80px;
    height: 78px;
    right: 27px;
    top: -54px;
}

.sec01_item>div.item6:after,
.sec01_item>div.item4:after {
    background: url("../images/bb_w2.png") no-repeat left top;
    width: 118px;
    height: 76px;
    right: 105px;
    top: -52px;
}

.sec01_item>div.item4:after {
    top: -40px;
}

.sec01_item>div.item2:after {
    background: url("../images/bb_w3.png") no-repeat left top;
    width: 80px;
    height: 78px;
    left: 55px;
    top: -54px;
}

.sec01_item>div.item3:after {
    background: url("../images/bb_w4.png") no-repeat left top;
    width: 84px;
    height: 102px;
    left: -58px;
    top: 31px;
}

.sec01_item>div.item5:after {
    background: url("../images/bb_w5.png") no-repeat left top;
    width: 92px;
    height: 90px;
    right: -65px;
    top: 15px;
}

.sec01_box {
    position: relative;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.7);
    width: 1280px;
    height: 400px;
    margin: 0 auto;
    border-radius: 80px 80px 0 0;
    text-align: center;
    padding-top: 10px;
    margin-top: -85px;
    padding-top: 85px;
}

.sec01_box p {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.69;
    letter-spacing: 0.05em;
}

.sec01_box p .stl {
    color: #1479ba;
    font-size: 42px;
    letter-spacing: 0.05em;
}

.sec01_lg {
    background: #000;
}

/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    z-index: 2;
    margin-top: -66px;
    padding-top: 239px;
    padding-bottom: 60px;
}

.sec02 .inner {
    width: 1312px;
    z-index: 1;
}

.sec02:before,
.sec02 .inner:after,
.sec02:after {
    position: absolute;
    content: "";
}

.sec02:before {
    background: url("../images/idx_bg02.png") center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 1200px;
}

.sec02:after {
    background: url("../images/logo_bg2.png") no-repeat center top 193px;
    width: 1920px;
    left: calc(50% - 960px);
    top: 0;
    height: 855px;
    mix-blend-mode: multiply;
}

.sec02 .inner:after {
    background: url("../images/arrow_down_lg.png") no-repeat center top;
    width: 496px;
    height: 182px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -274px;
}

.sec02_tt {
    min-width: 1108px;
    height: 69px;
    line-height: 66px;
    text-align: center;
    background: rgba(20, 121, 186, 0.6);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 34px;
    border: 1px #ffffff solid;
    display: table;
    margin: 0 auto 19px;
}

.sec02_ttl {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
}

.sec02_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sec02_list li {
    width: 310px;
    height: 63px;
    background: #fff;
    border-radius: 10px;
    border: 1px #1479ba solid;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 13px;
    overflow: hidden;
    position: relative;
}

.sec02_list li:before,
.sec02_list li:after {
    position: absolute;
    content: "";
}

.sec02_list li:before {
    border-left: 18px #e4f3fc solid;
    left: 0;
    top: 0;
    height: 100%;
}

.sec02_list li:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #07273a;
    left: 11px;
    top: calc(50% - 7px);
    border: 1px #1479ba solid;
}

.sec02_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
}

.sec02_list li:not(:nth-child(4n)) {
    margin-right: 14px;
}

.sec02_list li.item2 {
    letter-spacing: 0em;
    padding-left: 24px;
}

.sec02_list li.item5 {
    padding-left: 20px;
}

.sec02_list li.item12 {
    padding-left: 20px;
}

.sec02_list li.item1:after {
    background: #0a283e;
}

.sec02_list li.item2:after {
    background: #0c2a43;
}

.sec02_list li.item3:after {
    background: #405661;
}

.sec02_list li.item4:after {
    background: #405a66;
}

.sec02_list li.item5:after {
    background: #102c44;
}

.sec02_list li.item6:after {
    background: #09273c;
}

.sec02_list li.item7:after {
    background: #3f5562;
}

.sec02_list li.item8:after {
    background: #3e5a6c;
}

.sec02_list li.item9:after {
    background: #0b2839;
}

.sec02_list li.item10:after {
    background: #0b2d46;
}

.sec02_list li.item11:after {
    background: #0c2c43;
}

.sec02_list li.item12:after {
    background: #16303e;
}

.sec02_lg {
    background: var(--txt);
    color: #fff;
    display: flex;
    width: 700px;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    padding: 4px 0;
    position: relative;
    margin: 0 auto 50px;
}

/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 91px;
}

.sec03:before {
    position: absolute;
    content: "";
    background: url("../images/curve_gray.png") no-repeat center bottom/1920px;
    width: 1920px;
    height: 765px;
    left: calc(50% - 960px);
    top: -565px;
}

.sec03_bnr a {
    background: url("../images/idx_bnr1_pc.png") no-repeat center top/902px;
    width: 902px;
    height: 202px;
    margin: 0 auto;
    display: flex;
    color: #fff;
    position: relative;
    padding-top: 87px;
    padding-left: 66px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.sec03_bnr a:before {
    background: url("../images/idx_bnr_pp.png") no-repeat center top/359px;
    width: 359px;
    height: 261px;
    right: 8px;
    bottom: 0;
}

.sec05_ttl .sm:before,
.sec03_bnr a:before {
    position: absolute;
    content: "";
}

.sec03_bnr a .sm {
    position: absolute;
    background: #1479ba;
}

.sec03_bnr a .sm,
.sec05_ttl .sm {
    width: 374px;
    height: 57px;
    border: 2px #e4f3fc solid;
    left: 43px;
    top: -20px;
    font-size: 22px;
    font-weight: bold;
    line-height: 55px;
    border-radius: 8px;
    text-align: center;
}

.sec03_bnr a .sm:before,
.sec05_ttl .sm:before {
    border-left: 2px #fff solid;
    bottom: -29px;
    left: calc(50% - 11px);
    border-top: 2px #1479ba solid;
    height: 29px;
    width: 20px;
}

.sec05_ttl .sm:before {
    border-left: 2px #1479ba solid;
    border-top: 2px #fff solid;
    height: 26px;
    bottom: -26px;
    left: calc(50% - 1px);
}

.sec03_bnr a .mid {
    font-family: var(--f-Shi);
    font-size: 36px;
    font-weight: 600;
}

.sec03_bnr a .lg {
    font-size: 43px;
}

/*============= SEC04 ==============*/
/*============= SEC05 ==============*/
.sec05 {
    padding-top: 129px;
    position: relative;
    padding-bottom: 100px;
    z-index: 1;
}

.sec05:before {
    position: absolute;
    content: "";
    background: url("../images/idx_curve_blue.png") no-repeat left bottom/1920px;
    left: calc(50% - 960px);
    bottom: 0;
    width: 1920px;
    height: 466px;
}

.sec05 .inner {
    width: 1606px;
}

.sec05_item {
    display: flex;
    margin-bottom: 43px;
}

.sec05_item>div {
    position: relative;
    width: 376px;
}

.sec05_item>div .num {
    position: absolute;
    left: 2px;
    top: -30px;
    background: url("../images/round_w.png") no-repeat center top/82px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #1479ba;
    z-index: 9;
    font-family: var(--f-en);
}

.sec05_item>div .img {
    position: relative;
    margin-bottom: -12px;
}

.sec05_item>div .tt {
    width: 302px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--f-Shi);
    background: #1479ba;
    margin: 0 auto 23px;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 9;
    padding-bottom: 2px;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.sec05_item>div.item3 .tt,
.sec05_item>div.item4 .tt {
    height: 54px;
}

.sec05_item>div .txt {
    line-height: 1.77;
}

.sec05_item>div .img img {
    border-radius: 12px;
}

.sec05_item>div .img:before {
    position: absolute;
    content: "";
    border: 4px #ffffff solid;
    width: 100%;
    height: calc(100% + 4px);
    border-radius: 10px;
    z-index: 1;
}

.sec05_item>div:not(:last-child) {
    margin-right: 24px;
}

.sec05_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 65px;
}

.sec05_ttl .sm {}

.sec05_ttl .group {}

.sec05_ttl .sec05_logo {}

.sec05_ttl .tt {
    font-size: 46px;
    font-family: var(--f-Shi);
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    top: 10px;
    left: 8px;
}

.sec05_ttl .tt .num {
    font-size: 64px;
    font-weight: 700;
    color: #07324e;
}

.sec05_ttl .sm {
    position: relative;
    border-color: #1479ba;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 53px;
    left: 0;
    width: 354px;
}

/*============= SEC06 ==============*/
.sec06 {
    position: relative;
    padding-top: 364px;
    background: #e4f3fc;
    padding-bottom: 120px;
    max-width: 1920px;
    margin: 0 auto;
}

.sec06 .inner {
    width: 1570px;
    z-index: 9;
}

.sec06:before,
.sec06:after {
    position: absolute;
    content: "";
}

.sec06:before {
    background: url("../images/idx_bg03.png") no-repeat center top/1920px;
    width: 1920px;
    height: 510px;
    left: calc(50% - 960px);
    top: -35px;
}

.sec06:after {
    width: 100%;
    height: 170px;
    background: #fff;
    left: 0;
    bottom: 0;
}

.ttl3 {
    text-align: center;
    margin: 0 auto 53px;
    height: 123px;
    border-radius: 20px;
    background: url("../images/round_left_mid.png")#fff no-repeat left 8px top 8px/60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 30px;
    font-size: 46px;
    font-family: var(--f-Shi);
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-bottom: 3px;
}

.ttl3:before {
    position: absolute;
    content: "";
}

.sec06_ttl {
    width: 620px;
}

.sec06_ttl:before {
    background: url("../images/idx_brush7.png") no-repeat right top/131px;
    width: 131px;
    height: 185px;
    right: -80px;
    bottom: -1px;
}

.sec06_txt {
    text-align: center;
    margin-bottom: 76px;
}

.sec06_txt p {
    line-height: 1.77;
}

.sec06_item {
    display: flex;
}

.sec06_item>div.item1 {
    margin-right: 4px;
}

.sec06_item>div {
    background: #fff;
    width: 768px;
    height: 250px;
    border-radius: 20px;
    padding: 0px 48px 0 48px;
    position: relative;
    cursor: pointer;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.sec06_item>div .tt {
    background: url("../images/bg_blue_l.png") no-repeat left top/
}

.sec06_item>div:before {
    position: absolute;
    content: "";
    width: 790px;
    height: 250px;
    background: #1479ba;
    z-index: -1;
    border-radius: 20px;
}

.sec06_item>div.item1:before {
    left: -20px;
    bottom: -20px;
    border-radius: 20px 5px 16px 20px;
    width: 793px;
}

.sec06_item>div.item2:before {
    right: -20px;
    bottom: -20px;
    border-radius: 5px 20px 20px 11px;
    width: 790px;
}

.sec06_box_tt {
    color: #fff;
    position: absolute;
}

.item1 .sec06_box_tt {
    background: url("../images/bg_blue_l.png") no-repeat left top/276px;
    width: 276px;
    height: 64px;
    left: 20px;
    top: -36px;
}

.item2 .sec06_box_tt {
    background: url("../images/bg_blue_r.png") no-repeat left top/277px;
    width: 277px;
    height: 64px;
    left: 20px;
    top: -36px;
}

.sec06_box_tt span {
    transform: rotate(-2deg);
    display: block;
    font-size: 20px;
    font-weight: 700;
    padding: 14px 0 0 35px;
}

.sec06_icon {
    position: absolute;
}

.sec06_icon.icon1 {
    right: 48px;
    top: -7px;
}

.sec06_icon.icon2 {
    right: 54px;
    top: -43px;
}

.sec06_tt {
    font-size: 24px;
    color: #1479ba;
    line-height: 1.58;
    font-family: var(--f-Shi);
    font-weight: 600;
    border-bottom: 1px #cccccc solid;
    margin-bottom: 23px;
    height: 134px;
    display: flex;
    align-items: center;
    padding-top: 12px;
}

.sec06_txt_sub {
    line-height: 1.77;
}

/*============= SEC07 ==============*/
.sec07 {
    position: relative;
    height: 538px;
    padding-top: 100px;
    max-width: 1920px;
    margin: 0 auto 109px;
}

.sec07 .inner {
    position: relative;
}

.sec07 .inner:before,
.sec07 .inner:after {
    position: absolute;
    content: "";
    z-index: 9;
    pointer-events: none;
}

.sec07 .inner:before {
    background: url("../images/sec07_bg_top.png") no-repeat right top/289px;
    width: 289px;
    height: 280px;
    right: -236px;
    top: -69px;
    mix-blend-mode: multiply;
}

.sec07 .inner:after {
    background: url("../images/sec07_bg_bt.png") no-repeat right top/287px;
    width: 287px;
    height: 209px;
    right: -253px;
    top: 198px;
}

.sec07 a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    left: 0;
    top: 0;
}

.sec07:before {
    position: absolute;
    content: "";
}

.sec07:before {
    background: url("../images/idx_bg04.png") no-repeat right top/1720px;
    width: 1720px;
    height: 538px;
    top: 0;
    left: -7px;
}

/*.sec07:after {
    background: url("../images/sec07_bg.png") no-repeat right top/306px;
    width: 306px;
    height: 477px;
    right: 45px;
    top: 31px;
    z-index: 2;
    mix-blend-mode: multiply;
}*/
.sec07_tt {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--f-Shi);
    width: 780px;
    border-top: 1px #fff solid;
    padding-top: 19px;
    display: table;
    margin: 0 auto 50px;
}

.sec07_w {
    position: relative;
    min-height: 220px;
    z-index: 1;
}

.sec07_w:before {
    width: 4000px;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    content: "";
    border-radius: 110px 0 0 110px;
    z-index: -1;
}

.sec07_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-family: var(--f-Shi);
    top: -30px;
    position: relative;
    margin-bottom: -11px;
}

.sec07_ttl .sm {
    width: 232px;
    height: 50px;
    line-height: 50px;
    background: #1479ba;
    color: #fff;
    text-align: center;
    display: table;
    font-size: 24px;
    border-radius: 6px;
    border: 2px #fff solid;
    margin-bottom: 35px;
    position: relative;
}

.sec07_ttl .sm:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 28px;
    background: #1479ba;
    left: 0px;
    right: 0;
    bottom: -27px;
    margin: 0 auto;
}

.sec07_ttl .lg {
    font-size: 32px;
}

.sec07_txt {
    text-align: center;
}

.sec09_txt {
    padding-left: 9px;
    margin-bottom: 33px;
}

.sec09_txt p {
    letter-spacing: 0;
    line-height: 1.77;
}

/*============= SEC08 ==============*/
.sec08 {
    position: relative;
    padding-bottom: 120px;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
}

.sec08:before,
.sec08:after {
    position: absolute;
    content: "";
}

.sec08:after {
    height: 909px;
    width: 100%;
    background: #e4f3fc;
    left: 0;
    top: 0;
    z-index: -1;
}

.sec08:before {
    background: url("../images/idx_bg06_1.png") no-repeat center top/1920px;
    width: 1920px;
    height: 456px;
    left: calc(50% - 960px);
    bottom: 0;
}

.sec08 .inner {
    width: 1585px;
}

.sec08_img {
    position: relative;
    width: calc(100% + 15px);
    left: -7px;
    margin-bottom: 0;
}

.sec08_ttl {
    width: 780px;
    top: -83px;
    margin-bottom: -35px;
}

.sec08_ttl:before {
    background: url("../images/idx_brush11.png") no-repeat right top/177px;
    width: 177px;
    height: 175px;
    right: -141px;
    bottom: 0px;
}

.sec08_tt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    height: 72px;
    max-width: 1080px;
    margin: 0px auto 28px;
    color: #1479ba;
    border-top: 1px #1479ba solid;
    border-bottom: 1px #1479ba solid;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--f-Shi);
    letter-spacing: 0.05em;
}

.sec08_txt {
    margin-bottom: 34px;
}

.sec08_txt p {
    max-width: 1080px;
    margin: 0 auto;
}

.sec08_item.slick-dotted.slick-slider {
    display: flex;
    margin-bottom: 73px;
}

.sec08_item .slick-slide {
    width: 462px;
    background: #fff;
    border-radius: 10px;
    margin: 0 20px;
    position: relative;
    padding: 24px 30px 20px 30px;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.1);
}

.sec08_item .slick-slide.item3 {
    padding: 24px 16px 20px 32px;
}

.sec08_item .slick-track {
    padding: 30px 0 21px;
}

.sec08_item .icon {
    position: absolute;
    right: -24px;
    top: -29px;
}

.sec08_item .tt {
    font-size: 20px;
    font-weight: 700;
    color: #3c8dc5;
    line-height: 1.6;
    margin-bottom: 13px;
}

.sec08_item .tt.line1 {
    margin-bottom: 10px;
}

.sec08_item .txt {
    line-height: 1.77;
    min-height: 102px;
}

.sec08_item.slick-initialized {
    height: auto;
    overflow: inherit;
    padding: inherit;
}

.sec08_item .slick-prev,
.sec08_item .slick-next {
    position: absolute;
    z-index: 9;
    margin: auto;
    border-width: 0;
    background: none;
    cursor: pointer;
    text-indent: 9999999px;
    height: 40px;
    width: 21px;
    outline: none;
    opacity: 1;
    transition: all 0.3s linear;
    top: calc(50% + 5px);
}

.sec08_item .slick-next {
    right: -12px;
    background: url(../images/icon_next.png) no-repeat center/21px;
}

.sec08_item .slick-prev {
    left: -12px;
    background: url(../images/icon_prev.png) no-repeat center/21px;
}

.sec08 .slick-list:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 85px;
    background: #e4f3fc;
    left: 0;
    top: 0;
    z-index: 9;
}

.sec08 .slick-dots li button {
    padding: 0;
    background: #b1d3e8;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.3s;
}

.sec08 .slick-dots li button::before {
    display: none;
}

.sec08 .slick-dots li.slick-active button {
    background: #67a4cf;
    width: 44px;
    border-radius: 7px;
}

.sec08 .slick-dots li {
    height: auto;
    width: auto;
}

/*============= SEC08 ==============*/
.sec09 {
    position: relative;
    height: 961px;
    z-index: 1;
    top: -90px;
    padding-top: 100px;
    margin-bottom: -90px;
}

.sec09:before,
.sec09_box:after {
    position: absolute;
    content: "";
}

.sec09:before {
    background: url("../images/idx_bg06_2.png") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
}

.sec09_box:after {
    background: url(../images/idx_img_05.png) no-repeat left top;
    width: 427px;
    height: 614px;
    left: -255px;
    bottom: -100px;
    z-index: 2;
}

.sec09_box {
    width: 1080px;
    height: 651px;
    background: #f9f9f9;
    border-radius: 20px 20px 0 0;
    position: relative;
    margin-top: 110px;
    margin-left: auto;
    padding: 97px 100px 100px 171px;
}

.sec09_box:before {
    position: absolute;
    content: "";
    background: url("../images/box_line.png") no-repeat center top;
    width: 1020px;
    height: 611px;
    left: 40px;
    top: 20px;
    pointer-events: none;
}

.sec09_ttl,
.sec09_tt {
    font-weight: 700;
    font-family: var(--f-Shi);
    letter-spacing: 0.05em;
}

.sec09_ttl {
    font-size: 46px;
    margin-bottom: 29px;
}

.sec09_tt {
    color: #1479ba;
    font-size: 32px;
    padding-left: 5px;
    margin-bottom: 16px;
}

.sec09_stl {
    position: absolute;
}

.sec09_stl.stl1 {
    left: -23px;
    top: 103px;
    background: url("../images/idx_brush13.png") no-repeat left top/165px;
    width: 165px;
    height: 49px;
}

.sec09_stl.stl2 {
    right: -54px;
    top: -41px;
    background: url("../images/logo_bg.png") no-repeat right top;
    width: 290px;
    height: 280px;
}

.sec09_stl.stl3 {
    right: 30px;
    bottom: 20px;
    background: url("../images/idx_brush12.png") no-repeat left top/70px;
    width: 70px;
    height: 65px;
}

/*============= SEC10 ==============*/
.sec10 {
    background: #e4f3fc;
    padding: 100px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.sec10 .inner {
    width: 1350px;
}

.sec10_item {
    display: flex;
}

.sec10_item .item_l {
    width: 200px;
    margin-right: 65px;
    flex-shrink: 0;
    padding-top: 43px;
}

.sec10_item .item_r {
    width: calc(100% - 265px);
}

.sec10_load {
    width: 1055px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 53px 63px 50px;
}

.sec10_load dl {
    display: flex;
}

.news_p {
    min-width: 53px;
    height: 32px;
    line-height: 31px;
    background: red;
    color: #fff;
    text-align: center;
    font-size: 16px;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    top: 0;
    padding: 0 7px;
    font-weight: bold;
    margin-left: 10px;
}

.sec10_load dl .news_p {
    display: none;
}

.sec10_load dl:first-child .news_p {
    display: inline-block;
}


.sec10_load dl:not(:last-child) {
    margin-bottom: 28px;
}

.sec10_load dl dt {
    flex-shrink: 0;
    margin-right: 23px;
    display: flex;
}

.sec10_load dl dt .date {
    font-size: 18px;
    margin-right: 23px;
}

.sec10_load dl dt .cate {
    min-width: 92px;
    height: 32px;
    line-height: 31px;
    background: #025f9a;
    color: #fff;
    text-align: center;
    font-size: 16px;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    top: 3px;
    padding: 0 7px;
}

.sec10_load dl dd {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec10_load dl dd a {}

.sec10_ttl {
    font-size: 46px;
    font-weight: 700;
    font-family: var(--f-Shi);
    color: #1479ba;
    letter-spacing: 0.05em;
    margin-bottom: 38px;
    position: relative;
    left: -4px;
}

.sec10_link a {
    font-size: 20px;
    font-weight: 500;
    color: #025f9a;
    display: block;
    border-bottom: 1px #025f9a solid;
    padding-bottom: 8px;
    text-align: center;
    background: url("../images/icon_arrow_blue.png") no-repeat right 10px top 14px/6px;
    letter-spacing: 0.05em;
    padding-right: 35px;
}

/*============= SEC11 ==============*/
.sec11 {
    position: relative;
    z-index: 9;
}

.sec11_item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 40px 0 0 0;
    border-radius: 10px;
    margin: 40px auto 0;
}

.sec11_item>li {
    width: 325px;
    margin-bottom: 40px;
    text-align: center;
}

.sec11_item>li:not(:nth-child(3n)) {
    margin-right: 50px;
}

.sec11_item>li span {
    line-height: 1.4;
    display: inline-block;
    font-weight: 500;
}

.sec11_item .item1 {}

.sec11_item .item1 .icon1 {
    background: url("../images/sec11_icon1.png") no-repeat left center/60px;
    padding-left: 70px;
}

.sec11_item .item2 {}

.sec11_item .item2 .icon2 {
    background: url("../images/sec11_icon2.png") no-repeat left center/33px;
    padding-left: 50px;
}

.sec11_item .item3 {}

.sec11_item .item3 .icon3 {
    background: url("../images/sec11_icon3.png") no-repeat left center/40px;
    padding-left: 55px;
}

.sec11_item .item4 {}

.sec11_item .item4 .icon4 {
    background: url("../images/sec11_icon4.png") no-repeat left center/66px;
    padding-left: 76px;
}

.sec11_item .item5 {}

.sec11_item .item5 .icon5 {
    background: url("../images/sec11_icon5.png") no-repeat left center/40px;
    padding-left: 54px;
}

/*============= BOX CTA ==============*/
.sec_cta {
    position: relative;
    padding: 86px 0;
}

.sec_cta .inner {
    background: #fff;
    width: 988px;
    height: 483px;
    border-radius: 24px;
    border: 8px #e4f3fc solid;
    padding: 0;
}

.sec_cta .inner:before {
    position: absolute;
    content: "";
    background: url("../images/logo_cta_main.png") no-repeat center top/202px;
    width: 202px;
    height: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -59px;
}

.sec_cta:before {
    position: absolute;
    content: "";
    background: url("../images/bg_cta.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    width: 1920px;
    height: 665px;
    top: 0;
}

.cta_tt {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    display: table;
    margin: 0 auto 12px;
    z-index: 1;
}

.cta_tt:before,
.cta_tt:after {
    position: absolute;
    content: "";
}

.cta_tt:before {
    width: 496px;
    height: 10px;
    left: -6px;
    bottom: 11px;
    background: #e4f3fc;
    z-index: -1;
}

.cta_tt .stl {
    font-size: 48px;
    color: #1479ba;
    letter-spacing: 0.05em;
}

.cta_tt_box {
    padding-top: 37px;
    position: relative;
    width: 100%;
}

.cta_tt_box:before {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    background: url("../images/idx_brush5.png") no-repeat left 10px top 68px, url("../images/idx_brush6.png") no-repeat right 31px top 10px;
    pointer-events: none;
    left: 23px;
    top: -36px;
}

.cta_logo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-right: 10px;
}

.cta_logo .img {
    margin-right: 9px;
}

.cta_logo .tt {
    font-size: 34px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    bottom: 30px;
}

.cta_logo .tt:before {
    position: absolute;
    content: "";
    width: 294px;
    height: 10px;
    background: #e4f3fc;
    left: -4px;
    bottom: -3px;
    z-index: -1;
}

.cta_link {
    display: flex;
}

.cta_link li {
    flex: 1;
    padding: 0 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_link li:not(:last-child):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 180px;
    background: #cccccc;
    right: 0;
    top: 0;
}

.cta_link li .tt {
    width: 240px;
    height: 42px;
    line-height: 38px;
    text-align: center;
    border-top: 1px #1479ba solid;
    border-bottom: 1px #1479ba solid;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 0.05em;
    position: relative;
    margin-bottom: 18px;
}

.cta_link li .tt:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    background: #1479ba;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: 0 auto;
}

.cta_link li .tt.tt1 span {
    background: url("../images/icon_tel_cta.png") no-repeat left top 5px/22px;
    padding: 5px 0 5px 31px;
}

.cta_link li .tt.tt2 span {
    background: url("../images/icon_mail_cta.png") no-repeat left top 11px/30px;
    padding: 5px 0 5px 40px;
}

.cta_tel a,
.cta_contact a {
    width: 400px;
    height: 114px;
    display: flex;
    border-radius: 10px;
}

.cta_tel a {
    background: #e4f3fc;
    justify-content: space-between;
    padding: 0px 10px 0 0;
    align-items: center;
}

.cta_tel a .cta_tel_l {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 7px;
}

.cta_tel a .cta_tel_l .num {
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 37px;
    color: #1479ba;
    padding: 0px 0 0px 55px;
    background: url("../images/icon_tel_cta2.png") no-repeat left 26px top 5px/23px;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.cta_tel a .cta_tel_l .hour {
    color: #07324e;
    padding-left: 25px;
    letter-spacing: 0.05em;
}

.cta_tel a .cta_tel_l .hour .stl1 {
    font-size: 16px;
    margin-right: 8px;
    font-weight: 500;
}

.cta_tel a .cta_tel_l .hour .stl2 {
    font-size: 18px;
    margin-right: 5px;
}

.cta_tel a .cta_tel_l .hour .stl3 {
    font-weight: 700;
    color: #1479ba;
}

.cta_round {
    width: 90px;
    height: 90px;
    background: #fff;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1479ba;
    line-height: 1.3;
    padding-top: 6px;
}

.cta_contact a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffa800;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 2px 1px 8px 0px rgba(0, 0, 0, 0.2);
}

.cta_contact a .lg {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cta_contact a .sm {
    width: 174px;
    height: 33px;
    line-height: 33px;
    background: #fff;
    border-radius: 17px;
    text-align: center;
    font-size: 20px;
    color: #025f9a;
}

.cta_contact a .sm .num {
    font-size: 24px;
    font-family: var(--f-en);
}

@media screen and (min-width: 751px) {}

/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}

.ft_top {
    position: relative;
    padding-top: 89px;
}

.ft_logo {
    text-align: center;
    display: table;
    margin: 0 auto;
    position: relative;
    left: -50px;
}

.ft_info {
    position: absolute;
    right: 0;
    top: 7px;
    width: 392px;
}

.ft_add {
    font-weight: 500;
    margin-bottom: 7px;
    letter-spacing: 0.05em;
}

.gg_link a {
    width: 192px;
    height: 38px;
    display: inline-block;
    text-align: center;
    border: 1px #025f9a solid;
    border-radius: 19px;
    font-weight: 500;
    color: #025f9a;
    letter-spacing: 0.05em;
    line-height: 32px;
    box-shadow: 1px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.gg_link {
    text-align: right;
    padding-right: 14px;
}

.gg_link a span {
    background: url("../images/icon_map.png") no-repeat left top 5px/15px;
    margin-left: auto;
    ;
    padding-left: 25px;
}

.ft_link_box {
    margin-top: 57px;
    margin-bottom: 39px;
}

.ft_link_box dl {
    background: #e4f3fc;
    border-radius: 20px;
    height: 228px;
    display: flex;
    align-items: center;
}

.ft_link_box dl:nth-child(2) {
    height: 186px;
}

.ft_link_box dl:not(:last-of-type) {
    margin-bottom: 24px;
}

.ft_link_box dl:nth-child(2) dt {
    letter-spacing: 0.04em;
    padding-right: 40px;
}

.ft_link_box dl dt {
    color: #07324e;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--f-Shi);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    padding-right: 14px;
    letter-spacing: 0.05em;
}

.ft_link_box dl dd {}

.ft_link_big p {}

.ft_link_big p a {
    background: url("../images/icon_ft.png") no-repeat right center/20px;
    padding-right: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ft_link_big p:not(:last-child) {
    margin-bottom: 7px;
}

.ft_link {
    display: flex;
    margin-bottom: 43px;
}

.ft_link .big {
    margin-bottom: 7px;
}

.ft_link .big.mb1 {
    margin-bottom: 13px;
}

.ft_link .big p {
    font-weight: 700;
    color: #1479ba;
    letter-spacing: 0.05em;
}

.ft_link li:not(.big) a {
    font-weight: 500;
    background: url("../images/icon_ft.png") no-repeat right bottom 3px/20px;
    padding-right: 27px;
    line-height: 1.44;
    display: inline-block;
}

.ft_link li:not(.big) {
    margin-bottom: 7px;
    letter-spacing: 0.05em;
}

.ft_link .ft_link2 li:not(.big) {
    margin-bottom: 10px;
}

.ft_link1 {
    width: 295px;
}

.ft_link2 {
    width: 542px;
}

.ft_add {
    font-size: 18px;
    font-weight: 500;
}

.ft_link3 {}

address {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-bottom: 39px;
}

.ft_bnn {
    display: flex;
    justify-content: center;
}

.ft_bnn p {
    margin: 30px 15px 0;
}

/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 70px;
    height: 70px;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden
}

.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) {}