@charset "UTF-8";
@import "base.css";
@import "fonts.css";
/*==========================================================================*/
/*                                                                          */
/*    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 {
    font-size: 180%;
    -webkit-text-size-adjust: none;
    font-weight: 500;
}
html:focus-within {
    scroll-behavior: smooth;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
::before, ::after {
    pointer-events: none;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
    text-underline-offset: 3px;
}
a[href^="tel:"] {
    word-break: keep-all;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    color: var(--txt);
    -webkit-text-size-adjust: none;
    min-width: 320px;
    font-family: var(--font-main)
}
select, input, textarea {
    font-family: var(--font-main)
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
p, dd, dt, li, th, td, address {
    line-height: 1.77em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.5em;
}
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_line {
    text-decoration: underline;
}
.m0a {
    display: block;
    margin: 0 auto;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
:root {
    --font-main: "Noto Sans JP", sans-serif;
    --txt: #333;
    --mcolor: #00193a;
    --scolor: #0d4497;
    --site_size: 1430px;
    --gray: #e9e9e9;
    --blue: blue;
    --red: red;
    --en: "Roboto", sans-serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--site_size);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
/*==========================================================
                       H E A D E R  
==========================================================*/
header {
    position: relative;
    z-index: 10;
}
h1 {
    margin-top: 25px;
}
#wrapper.active .h_box {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
    transition: all 0.3s;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 0 0 30px;
}
.h_left {
    flex-shrink: 0;
}
.h_center {
    flex-direction: column;
    margin-left: auto;
    margin-right: 40px;
    margin-top: 20px;
}
.h_contact_tel, .h_center {
    display: flex;
}
.h_contact, .h_contact_tel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 30px;
}
.h_lang a {
    font-size: 20px;
    color: #00193a;
    background: url("../images/icon_en.png") no-repeat left center;
    background-size: 37px;
    padding: 5px 0 5px 48px;
    font-family: var(--en);
    letter-spacing: 0.02em;
}
.h_contact_mail {
    margin-bottom: 0;
}
.h_contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 180px;
    height: 120px;
    position: relative;
    padding-bottom: 19px;
}
.h_contact_mail a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    letter-spacing: 0.02em;
}
.h_contact_mail a span::before {
    content: '';
    position: absolute;
    width: 37px;
    height: 27px;
    left: 0;
    right: 0;
    top: -39px;
    background: url('../images/icon_mail.png') no-repeat center /cover;
    margin: 0 auto;
}
.h_contact_tel a {
    font-size: 28px;
    color: var(--mcolor);
    font-weight: 500;
    padding-left: 24px;
    position: relative;
    line-height: 1;
    display: block;
    font-family: var(--en);
    letter-spacing: 0.02em;
    margin-right: 17px;
}
.h_contact_tel a:before {
    position: absolute;
    content: "";
    background: url("../images/tel.png") no-repeat left center /cover;
    width: 18px;
    height: 18px;
    left: 0;
    top: 5px;
}
.h_contact_tel .time {
    display: block;
    line-height: 1.6;
    font-weight: 500;
    color: var(--mcolor);
    letter-spacing: 0.02em;
}
/* 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: 26px;
    height: 14px;
	    top: 1px;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 26px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: var(--mcolor);
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -7px;
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    top: -11px;
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    bottom: -9px;
}
.hamburger-inner::after {
    bottom: -7px;
}
.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)
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.mv_bg {
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.main_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}
.mv_bg, .main_slider .slide_item {
    width: 100%;
    height: 880px;
}
.main_slider .slide_item .bg {
    position: relative;
}
.main_slider .slide_item .bg {
    width: calc(100% + 15px);
	height: 100%;
}
.main_slider .slide_item .bg img {
    margin-left: -7px;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: calc(100% - 120px);
    display: flex;
    color: #fff;
    padding-left: 140px;
    flex-direction: column;
    justify-content: center;
    top: 120px;
    padding-top: 96px;
}
.mv_txt:before, .mv_txt:after {
    position: absolute;
    content: "";
}
.mv_txt:before {
    background: url("../images/arrow_mv.png") no-repeat left top;
    width: 841px;
    height: 697px;
    left: 0;
    top: 63px;
    z-index: -1;
}
.mv_txt:after {
    background: url("../images/brush4.png") no-repeat left top;
    width: 167px;
    height: 185px;
    left: calc(50% - 530px);
    bottom: -72px;
    z-index: 9;
}
.mv_txt h2 {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    margin-bottom: 8px;
    margin-left: 44px;
    z-index: 1;
}
.mv_txt h2:before, .mv_txt h2:after {
    position: absolute;
    content: "";
}
.mv_txt h2:before {
    background: url("../images/icon_mv.png") no-repeat left top;
    width: 111px;
    height: 88px;
    left: -64px;
    top: -50px;
}
.mv_txt h2:after {
    background: #fff;
    width: 120px;
    height: 1px;
    left: 5px;
    bottom: -75px;
}
.mv_txt h2 .sm {
    font-size: 80%;
    letter-spacing: 0.02em;
}
.mv_en {
    font-size: 24px;
    font-weight: 300;
    font-family: var(--en);
    margin-bottom: 85px;
    margin-left: 50px;
    letter-spacing: 0.02em;
}
.mv_txt .txt {
    font-size: 24px;
    line-height: 1.91;
    letter-spacing: 0.06em;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl {
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 37px;
}
.ttl span {}
.ttl .ja {
    font-size: 24px;
    color: var(--scolor);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.ttl .en {
    font-size: 50px;
    color: var(--mcolor);
    font-family: var(--en);
    background: url("../images/idx_h_sm.png") no-repeat left bottom 9px, url("../images/idx_h_sm.png") no-repeat right bottom 9px;
    padding: 0 50px;
    line-height: 1;
    letter-spacing: 0.06em;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 320px;
    height: 66px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_w_r.png') no-repeat right 20px center /29px var(--mcolor);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.box_btn {
    display: flex;
    justify-content: center;
}
.box_btn p:not(:last-child) {
    margin-right: 30px;
}
section {
    padding: 40px 0;
}
/*==================== SEC01 ===================*/
.sec01 {
    padding-top: 191px;
    padding-bottom: 0px;
}
.sec01 .slick-track {
    left: -221px;
}
.sec01 .inner {
    width: 100%;
    padding: 0 0 100px 0;
    padding-top: 92px;
}
.sec01 .inner:before, .sec01 .inner:after {
    position: absolute;
    content: "";
}
.sec01 .inner:after {
    background: url("../images/idx_img1.png") no-repeat center top;
    width: 610px;
    height: 252px;
    top: -111px;
    left: calc(50% - 803px);
}
.sec01 .inner:before {
    background: #f5f5f5;
    border-radius: 50px;
    width: 1400px;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    margin: 0 auto;
}
.sec01_slide .slick-slide {
    width: 380px;
    margin: 0 28px 0 27px;
    padding-top: 10px;
    position: relative;
}
.sec01_slide .slick-slide > a, .sec04_slide .slick-slide > a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.sec01_img {
    border-radius: 20px 0px 40px 0px;
    overflow: hidden;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    aspect-ratio: 380/213;
}
.sec01_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec01_date {
    color: #333;
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: bold;
    letter-spacing: 0.02em;
}
.sec01_tt {
    font-size: 20px;
    font-weight: bold;
    color: var(--mcolor);
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.sec01_txt {
    color: #333;
    line-height: 1.625;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec01_slide .slick-dots li {
    margin: 0 6px;
}
.sec01_slide .slick-dots li {
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    background: #cccccc;
    border-radius: 50%;
}
.sec01_slide .slick-dots li button {
    width: 100%;
    height: 100%;
}
.slick-dots li button::before {
    display: none;
}
.sec01_slide .slick-dots {
    bottom: -63px;
    left: 0;
    z-index: 9;
}
.sec01_slide .slick-dots li.slick-active {
    width: 36px;
    background: #0d4497;
    border-radius: 6px;
    pointer-events: none;
}
.sec01_slide .slick-prev, .sec01_slide .slick-next {
    width: 17px;
    height: 29px;
    z-index: 99;
    top: auto;
    bottom: -88px;
}
.sec01_slide .slick-prev {
    background: url("../images/arrow_prev.png") no-repeat center top/17px;
    left: calc(50% - 105px);
}
.sec01_slide .slick-next {
    background: url("../images/arrow_next.png") no-repeat center top/17px;
    right: calc(50% - 105px);
}
.slick-prev::before, .slick-next::before {
    display: none;
}
.sec01_slide {
    margin-bottom: 120px !important;
}
/*==================== SEC02 ===================*/
.sec02 {
    padding-top: 50px;
    position: relative;
    padding-bottom: 100px;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
}
.sec02:before {
    position: absolute;
    content: "";
    background: #e9eef6;
    width: calc(100% - 200px);
    height: 582px;
    left: 200px;
    bottom: 0;
    border-radius: 0px 0px 0px 80px;
}
.sec02 .inner {
    width: 100%;
    padding: 0;
}
.sec02_ttl {
    display: flex;
    justify-content: space-between;
    max-width: 1635px;
    color: var(--mcolor);
    align-items: center;
    margin-left: 22px;
    position: relative;
}
.sec02_ttl .en {
    font-family: var(--en);
    font-size: 160px;
    font-weight: bold;
    letter-spacing: 0.06em;
}
.sec02_ttl:before {
    position: absolute;
    content: "";
    width: 580px;
    height: 1px;
    background: #001531;
    left: 845px;
    bottom: 121px;
}
.sec02_ttl .ja {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    top: -3px;
}
.sec02_item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 46px;
    position: relative;
    width: calc(100% + 2px);
}
.sec02_item > div {
    position: relative;
    width: calc((100%/3) - 2px);
    margin-bottom: 2px;

}
.sec02_item > div .sec02_img:before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    transition: all 0.3s;
}
.sec02_img {
    margin-bottom: 0;
    height: 448px;
	overflow: hidden;
	position: relative;
}
.sec02_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec02_tt {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
    left: 0;
    top: 0;
    background: url("../images/idx_h.png") no-repeat center center;
}
.sec02_item > div.item1 .sec02_img {
    border-radius: 0px 0px 24px 0px;
}
.sec02_item > div.item2 .sec02_img {
    border-radius: 0px 0px 24px 24px;
}
.sec02_item > div.item3 .sec02_img {
    border-radius: 0px 0px 0px 24px;
}
.sec02_item > div.item4 .sec02_img {
    border-radius: 0px 24px 0px 0px;
}
.sec02_item > div.item5 .sec02_img {
    border-radius: 24px 24px 0px 0px;
}
.sec02_item > div.item6 .sec02_img {
    border-radius: 24px 0px 0px 0px;
}
/*==================== SEC03 ===================*/
.sec03 {
    position: relative;
    padding-top: 532px;
    padding-bottom: 100px;
}
.sec03 .inner {}
.sec03 .inner:before, .sec03 .inner:after {
    position: absolute;
    content: "";
}
.sec03 .inner:before {
    background: url("../images/brush3.png") no-repeat left top;
    width: 666px;
    height: 805px;
    left: -438px;
    top: -66px;
}
.sec03 .inner:after {
    background: url("../images/idx_h_lg.png") no-repeat center top;
    width: 396px;
    height: 292px;
    right: -245px;
    top: -200px;
}
.sec03:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg1.jpg") no-repeat center top -375px/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 100%;
    z-index: -1;
}
.sec03_ttl {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    position: relative;
    line-height: 1;
    margin-bottom: 58px;
}
.sec03_ttl .en {
    font-family: var(--en);
    font-size: 160px;
    font-weight: bold;
    letter-spacing: 0.06em;
    opacity: 0.8;
    position: relative;
    right: -17px;
}
.sec03_ttl:before {
    position: absolute;
    content: "";
    width: 2000px;
    height: 1px;
    background: #fff;
    left: 0px;
    bottom: 23px;
}
.sec03_ttl .ja {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    top: -3px;
}
.sec03_item {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: -2px;
}
.sec03_item > div {
    width: calc(50% - 20px);
    color: #fff;
    margin-bottom: 58px;
    position: relative;
}
.sec03_item > div > a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.sec03_item > div:not(:nth-child(2n)) {
    margin-right: 40px;
}
.sec03_img {
    border-radius: 20px 0px 40px 0px;
    overflow: hidden;
    margin-bottom: 0px;
}
.sec03_num {
    font-family: var(--en);
    text-align: center;
    font-weight: 300;
    font-size: 72px;
    line-height: 1;
    font-style: italic;
    margin-bottom: 32px;
    margin-top: -36px;
    position: relative;
    padding-bottom: 10px;
}
.sec03_num:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 1px;
    background: #fff;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
}
.sec03_tt {
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.57;
    margin-bottom: 25px;
}
.sec03_txt {
    letter-spacing: 0.05em;
    line-height: 1.55;
    width: calc(100% + 1px);
}
/*==================== SEC04 ===================*/
.sec04 {
    padding-top: 91px;
    padding-bottom: 0;
}
.sec04 .inner {
    width: 100%;
    padding: 0 0 100px 0;
}
.sec04 .inner:before {
    position: absolute;
    content: "";
    width: 1200px;
    height: calc(100% - 285px);
    background: #e9eef6;
    left: 0;
    right: 0;
    top: 285px;
    margin: 0 auto;
    border-radius: 0px 0px 120px 0px;
    z-index: -1;
}
.sec04 .ttl {
    margin-bottom: 56px;
}
.sec04_slide .slick-slide {
    margin: 0 72px 0 73px;
    width: 600px;
    position: relative;
}
.sec04_img {
    border-radius: 20px 0px 40px 0px;
    overflow: hidden;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
}
.sec04_img {
    border-radius: 20px 0px 40px 0px;
    overflow: hidden;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 22px;
    width: 600px;
    height: auto;
    aspect-ratio: 600/337;
}
.sec04_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec04_date {
    color: #333;
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: bold;
    letter-spacing: 0.02em;
    padding-left: 7px;
}
.sec04_tt {
    font-size: 22px;
    font-weight: bold;
    color: var(--mcolor);
    margin-bottom: 19px;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 3px;
}
.sec04_txt {
    color: #333;
    line-height: 1.2;
    letter-spacing: 0.03em;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec04_slide .slick-prev, .sec04_slide .slick-next {
    width: 41px;
    height: 71px;
    z-index: 9;
    top: calc(50% - 75px);
}
.sec04_slide .slick-prev {
    background: url("../images/arrow_prev_lg.png") no-repeat center top/41px;
    left: calc(50% - 395px);
}
.sec04_slide .slick-next {
    background: url("../images/arrow_next_lg.png") no-repeat center top/41px;
    right: calc(50% - 395px);
}
.sec04_slide {
    margin-bottom: 51px !important;
}
/*==================== SEC05 ===================*/
.sec05 {
    
    padding-top: 212px;
    position: relative;
    padding-bottom: 115px;
    max-width: 1920px;
    margin: 0 auto;
}
.sec05:before {
	position: absolute;
	content: "";
	background: url("../images/idx_bg2.png") no-repeat center top;
	width: 1920px;
	height: 798px;
	left: calc(50% - 952px);
	top: 26px;
}
.sec05 .inner {
    position: static;
    padding-right: 114px;
}
.sec05_img1:before, .sec05_img2:before, .sec05_img1:after, .sec05_img2:after {
    position: absolute;
    content: "";
}
.sec05_img1:before {
    width: calc(100% + 15px);
    height: calc(100% - 19px);
    right: -11px;
    bottom: -11px;
    border-right: 1px #00173a solid;
    border-bottom: 1px #00173a solid;
}
.sec05_img2:before {
    width: calc(100% - 18px);
    height: calc(100% - 20px);
    left: -10px;
    bottom: -12px;
    border-left: 1px #00173a solid;
    border-bottom: 1px #00173a solid;
}
.sec05_img1:after {
    background: url("../images/brush1.png") no-repeat left top;
    width: 480px;
    height: 480px;
    left: 70px;
    bottom: -335px;
    z-index: -1;
}
.sec05_img2:after {
    background: url("../images/brush2.png") no-repeat left top;
    width: 266px;
    height: 319px;
    left: 120px;
    top: -195px;
    z-index: -1;
}
.sec05_img1 {
    left: -9px;
    top: 120px;
}
.sec05_img2 {
    right: 93px;
    top: 391px;
}
.sec05_txt {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 9;
}
.sec05_txt p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.sec05_ttl2 {
    text-align: center;
    color: #0d4497;
    font-size: 48px;
    line-height: 1.58;
    font-weight: 700;
    letter-spacing: 0.1em;
    max-width: 680px;
    margin: 0 auto 46px;
    border-bottom: 1px #0d4497 solid;
    padding-bottom: 29px;
}
/*==================== SEC06 ===================*/
/*==================== SEC07 ===================*/
/*==================== SEC08 ===================*/
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    background-color: #f5f5f5;
    position: relative;
    z-index: 3;
}
.ft_top {
    padding: 80px 0 57px;
}
.ft_top .inner {
    display: flex;
    justify-content: space-between;
    width: 1508px;
}
/* FOOTER INFORMATION */
.ft_info {
    position: relative;
    margin-top: -7px;
}
.ft_info_tel a {}
.ft_info_fax, .ft_info_tel a {
    font-family: var(--en);
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    line-height: 1;
    display: block;
}
.ft_info_logo {
    flex-shrink: 0;
    margin-right: 20px;
}
.ft_info_add {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0.02em;
    margin-bottom: 21px;
}
.ft_info_tel {
    margin-bottom: 16px;
}
.ft_info_tel a {}
.ft_info_fax {}
/* FOOTER LINK */
.ft_link {
    position: relative;
    top: -9px;
    left: 5px;
}
.ft_link .inner {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}
.ft_link ul:not(:last-child) {
    margin-right: 55px;
}
.ft_link ul li {}
.ft_link ul li p {
    font-size: 125%;
    font-weight: bold;
}
.ft_link ul li p a {}
.ft_link ul li {
    margin-bottom: 17px;
}
.ft_link ul li > a {
    position: relative;
    padding-left: 23px;
    color: #00193a;
    font-weight: bold;
}
.ft_link ul li > a::before {
    width: 15px;
    height: 1px;
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    background: #0d4497;
}
address {
    text-align: center;
    background-color: #fff;
    font-size: 14px;
    padding: 27px 20px;
    letter-spacing: 0.02em;
    font-family: var(--en);
    font-weight: 400;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}