@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, del {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-weight: 500;
}
*, ::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)
}
body.is_nav {
    overflow: hidden;
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 2.6em;
    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_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: #171717;
    --txt2: #000000;
    --txt3: #333333;
    --mcolor: #006DB9;
    --scolor: #444444;
    --container: 1270px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", 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: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    background: var(--txt3);
    display: flex;
    justify-content: center;
    z-index: 999;
    padding-top: 24px;
    transform: translateY(0px);
    transition: all 0.3s;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
    left: -3px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 40px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: #fff;
}
.hamburger-box .tt {
    position: relative;
    left: -7px;
    top: 38px;
    font-family: var(--f-yumin);
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 14px;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -14px;
}
.hamburger-inner::after {
    bottom: -14px;
}
.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, 9px, 0) rotate(47deg);
    width: 37px;
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -19px, 0) rotate(-47deg);
    width: 37px;
}
nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    display: none;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.2);
}
nav .inner {
    width: 100%;
    padding: 0;
    display: flex;
    max-width: 1160px;
    margin-right: 0;
    padding-left: 200px;
    padding-top: 139px;
    background: #fff;
    flex-direction: column;
    /* justify-content: center; */
}
nav .inner:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur_menu.png") no-repeat center/340px;
    width: 340px;
    height: 341px;
    right: 100px;
    bottom: -35px;
    pointer-events: none;
}
nav .inner .nav_list {
    display: flex;
    width: 618px;
    margin-bottom: 50px;
}
nav .inner .nav_list > div {
    margin-bottom: 31px;
    width: 100%;
}
.nav_link_tt {
    margin-bottom: 28px;
    width: 100%;
}
.nav_link_tt a {
    position: relative;
    padding-left: 20px;
    color: var(--txt3);
    letter-spacing: 0.09em;
    margin-bottom: 100px;
}
.nav_list > div {
    display: flex;
    flex-direction: column;
}
.ft_link .nav_list > div {
    width: 590px;
}
.ft_link .item1 .nav_link ul:nth-child(1) {
    margin-right: 133px;
}
.ft_link .item2 .nav_link ul:nth-child(1) {
    margin-right: 113px;
}
.nav_ttl {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
    border-bottom: 1px var(--txt3) solid;
    padding-bottom: 0px;
    width: 100%;
    line-height: 35px;
    text-align: left;
}
.nav_link {
    display: flex;
}
.nav_link ul:nth-child(1) {
    margin-right: 135px;
}
.nav_ttl:before, .nav_link_tt a:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 0;
    top: 12px;
    background: var(--mcolor);
}
.nav_link_tt a:before {
    top: 6px;
}
.nav_list {
    flex-wrap: wrap;
}
.nav_list li {
    margin-bottom: 11px;
    line-height: 1.5;
}
.nav_list li a, .nav_ttl {
    font-size: 16px;
    letter-spacing: 0.09em;
    color: var(--txt3);
}
.nav_list li a {
    padding-left: 17px;
    background: url("../images/arrow_b2.svg") no-repeat left top 7px/9px;
    display: inline-block;
}
.box_info_menu {
    display: flex;
}
.box_info_menu .box_info2_wrap {
    color: var(--txt3);
}
.box_info_menu .box_info2_calc {
    margin-right: 15px;
}
.box_info_menu .hour3 {
    font-weight: 400;
    font-family: var(--f-yumin);
}
.ft_link .nav_list li a {
    color: #fff;
}
.ft_txt_con {
    max-width: 1240px;
    margin: 59px auto 0;
}
.ft_txt_con p {
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.8;
}
.ft_link .nav_list li a {
    background: url(../images/arrow_b2_w.svg) no-repeat left top 7px / 9px;
}
.ft_link .nav_ttl, .ft_link .nav_link_tt a {
    color: #fff;
}
.ft_link .nav_ttl {
    border-bottom-color: #fff;
}
.ft_link .nav_link_tt {
    margin-top: 5px;
}
.ft_link .nav_ttl:before, .ft_link .nav_link_tt a:before {
    background: #fff;
}
header {
    position: relative;
    z-index: 9;
}
.head_title {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: 20px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    align-self: flex-start;
    margin-top: 20px;
    position: relative;
    z-index: 101;
    transition: all 0.3s;
}
.is_scroll .head_title {
    transform: translateY(-50px);
}
.h_left {
    flex-shrink: 0;
    padding-top: 7px;
    transition: all 0.3s;
}
.h_right {
    position: relative;
    z-index: 101;
}
.h_box {
    width: 100%;
    position: fixed;
    transition: all 0.3s;
}
.is_scroll .h_box {
    background: #fff;
}
.is_scroll .h_left, .under .h_left {
    transform: scale(0.8878) translate(-19px, -3px);
    transform-origin: center;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 100px 0 50px;
}
.cta {
    display: flex;
    align-items: center;
}
.contact > p {
    margin-bottom: 0;
}
.contact > p {
    width: 250px;
    height: 100px;
}
.contact > p > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
    line-height: 1.28;
    font-family: var(--f-yumin);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.contact_mail a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    bottom: 10px;
    right: 10px;
    background: #fff;
}
.contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background: #EF9001;
    position: relative;
    padding-bottom: 1px;
}
.contact_mail a .sm {
    font-size: 18px;
    letter-spacing: 0.09em;
}
.contact_mail a .sm {
    margin-bottom: -1px;
}
.contact_mail a .lg {
    font-size: 25px;
    letter-spacing: 0.05em;
}
.contact_tel a {
    font-weight: bold;
    line-height: 1;
    background-color: #0697CE;
    padding-top: 4px;
}
.contact_tel a .sm {
    font-size: 18px;
    margin-bottom: 1px;
}
.contact_tel a .num {
    font-size: 28px;
    letter-spacing: 0.05em;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
}
.mv_bg {
    position: relative;
    /* overflow: hidden; */
    opacity: 0;
    transition: all .3s;
}
.mv_bg.init {
    opacity: 1
}
.mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}
/*.mv_slider.slick-initialized {
	height: auto;
}
.mv_slider {
	height: 880px;
}*/
.mv_bg, .mv_slider_ite {
    width: 100%;
    height: 880px;
}
.mv_slider_ite .bg {
    position: absolute;
    width: calc(100% + 15px);
    height: 100%;
    z-index: 0;
    top: 0;
    left: -7px;
    background-size: cover;
    background-position: center
}
.mv_slider_ite .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv_txt {
    position: absolute;
    z-index: 2;
    width: auto;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 34px 40px 10px 40px;
    bottom: 90px;
    right: calc(50% - 620px);
}
.mv .let.let1 {
    margin-right: -15px;
}
.mv .let.let2 {
    margin-left: -11px;
}
.mv .let.let3 {
    margin-right: -16px;
}
.mv_slider .slick-dots li {
    margin: 0 5px;
}
.mv_slider .slick-dots li {
    transition: all 0.3s;
    width: 40px;
    height: 4px;
    background: #ccc;
}
.mv_slider.slick-dots li button {
    width: 100%;
    height: 100%;
}
.mv_slider .slick-dots li button::before {
    display: none;
}
.mv_slider .slick-dots {
    bottom: -34px;
    left: auto;
    right: -557px;
}
.mv_slider.sec_slide_com .slick-dots {
    bottom: -87px;
}
.mv_slider .slick-dots li.slick-active {
    pointer-events: none;
    background: var(--mcolor);
}
.box_info2 {
    position: absolute;
    width: 873px;
    height: 220px;
    background: #474645;
    color: #fff;
    bottom: -110px;
    left: 0;
    z-index: 9;
    display: flex;
    padding-left: 43px;
}
.box_info2 .item1 {
    flex-shrink: 0;
    margin-right: 40px;
    padding-top: 40px;
    position: relative;
}
.box_info2 .item1:before {
    position: absolute;
    content: "";
    background: url(../images/logo_blue_bur.png) no-repeat center top / 80px;
    width: 80px;
    height: 80px;
    right: -25px;
    top: 55px;
}
.box_info2 .item2 {
    padding-top: 39px;
}
.box_info2_calc {
    margin-bottom: 15px;
}
.box_info2_wrap {
    display: flex;
    color: #fff;
}
.box_info2_wrap p {
    margin-bottom: 2px;
    font-family: var(--f-yumin);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 0.48;
    font-weight: 400;
}
.box_info2_wrap .hour1 {
    font-weight: normal;
    margin-right: 18px;
}
.box_info2_wrap .hour2 {}
.box_info2 .hour3 {
    font-size: 14px;
    font-family: var(--f-yumin);
    font-weight: 400;
}
.idx_add1 {
    font-family: var(--f-yumin);
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 7px;
    font-weight: 400;
}
.idx_add1 span {
    display: block;
    margin-top: 7px;
}
.idx_link1 {
    display: flex;
}
.idx_link1 a {
    color: #fff;
}
.link_map {
    margin-right: 40px;
    font-weight: 400;
}
.link_map a {
    text-decoration: underline;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-family: var(--f-yumin);
}
.gg_link {}
.gg_link a {
    background: url("../images/icon_map_w.svg") no-repeat left center;
    padding: 2px 0 5px 14px;
    text-decoration: underline;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
    font-size: 15px;
    font-weight: 400;
}
.box_info2 .item {}
.mv_title {
    font-size: 50px;
    color: var(--txt2);
    font-family: var(--f-yumin);
    line-height: 1.58;
    font-weight: 400;
    margin-bottom: 13px;
}
.mv_title .sm {
    font-size: 80%;
}
.info_list {
    display: flex;
}
.info_list li {
    width: 235px;
    height: 40px;
    background: var(--mcolor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding-top: 3px;
}
.info_list li:not(:last-child) {
    margin-right: 15px;
}
.info_list.white {
    margin-top: 28px;
}
.info_list.white li {
    background: #fff;
    border: 1px solid var(--mcolor);
    color: var(--mcolor);
}
.info_list.white li {
    width: 253px;
    height: 60px;
}
.info_list.white li:not(:last-child) {
    margin-right: 20px;
}
/*common content 1*/
.seccom1_con {
    display: flex;
}
.seccom1_img {
    flex-shrink: 0;
    margin-right: 40px;
}
.seccom1_wrap {
    position: relative;
}
.seccom1_ttl {
    font-weight: 600;
    font-size: 30px;
    color: var(--txt2);
    font-family: var(--f-yumin);
    margin-bottom: 36px;
    border-bottom: 1px #ccc solid;
    position: relative;
    line-height: 1.45;
    padding-bottom: 16px;
}
.seccom1_ttl:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    bottom: -1px;
}
.seccom1_ttl .blue_txt {}
.seccom1_ttl .sm {
    font-size: 83%;
}
.seccom1_txt {
    margin-bottom: 36px;
}
.seccom1_txt.idx_txt2 p {
    line-height: 1.8;
}
/*common content 2*/
.seccom_item2 {
    display: flex;
    flex-wrap: wrap;
}
.seccom_item2 > div {
    display: flex;
    margin-bottom: 80px;
}
.seccom_item2 > div.item1 {}
.seccom_item2 > div.item2 {
    flex-direction: row-reverse;
}
.seccom_item2 > div.item2 .seccom_item2_img .seccom_item2_en {
    right: auto;
    left: -18px;
}
.seccom_item2 > div.item3, .seccom_item2 > div.item4, .seccom_item2 > div.item5 {
    width: 387px;
    flex-direction: column;
}
/*.seccom_item2_img .seccom_item2_en.space1 {
	    right: -10px;
}*/
.seccom_item2 > div.item3, .seccom_item2 > div.item4 {
    margin-right: 39px;
}
.seccom_item2 > div.item3 {}
.seccom_item2 > div.item4 {}
.seccom_item2 > div.item5 {}
.seccom_item2 > div.item6 {}
.seccom_item2 > div.item7 {}
.seccom_item2 > div.item8 {}
.seccom_item2 > div.item9 {}
.seccom_item2 > div.item10 {}
.seccom_item2_img {}
.seccom_item2_img .seccom_item2_en {
    position: absolute;
    right: -18px;
    margin-bottom: 0;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: inherit;
    flex-shrink: 0;
    width: 36px;
    background: linear-gradient(#006db9 0%, #0086b9 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-family: var(--f-yumin);
    padding: 10px 0px;
    z-index: 2;
}
.sub_item .seccom_item2_img .img {
    margin-bottom: 20px;
}
.sub_item .seccom_item2_title {
    padding-bottom: 6px;
    margin-bottom: 15px;
}
.seccom_item2_img .img {
    position: relative;
}
.seccom_item2 > div.item2 span.img_ab {
    position: absolute;
    left: 35px;
    bottom: 35px;
}
.img_ab:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 5px #fff solid;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.seccom_item2_img {
    position: relative;
    flex-shrink: 0;
}
.item1 .seccom_item2_img {
    margin-right: 41px;
}
.item2 .seccom_item2_img {
    margin-left: 40px;
}
.seccom_item2_info {
    position: relative;
    top: -2px;
}
.seccom_item2_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
    color: var(--txt2);
    font-family: var(--f-yumin);
    border-bottom: 1px #CCCCCC solid;
    padding-bottom: 16px;
    margin-bottom: 35px;
    position: relative;
}
.seccom_item2_title:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    bottom: -1px;
}
.seccom_item2_title .sm {
    font-size: 83.3%;
}
.seccom_item2_txt {}
.seccom_item2_txt.idx_txt p {
    font-size: 15px;
    line-height: 2.06;
    /*    letter-spacing: 0em;*/
    color: var(--txt);
}
/*==========================================================
                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 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_w.svg') no-repeat right 27px center /10px var(--scolor);
    color: #fff;
    width: 387px;
    height: 60px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 0.09em;
    padding-top: 2px;
}
.btn.btn_w a {
    width: 100%;
    max-width: 387px;
    border: 1px solid #ccc;
    background: url('../images/arrow_b.svg')#fff no-repeat right 20px center /10px;
    color: var(--txt3);
}
.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;
}
.sec_con {
    position: relative;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-top: 210px;
    padding-bottom: 25px;
}
.sec01_item, .sec01_ttl {
    display: flex;
}
.sec01_item {
    margin-bottom: 100px;
}
.sec01_ttl {
    flex-direction: column;
    font-family: var(--f-yumin);
    font-weight: 400;
    margin-bottom: 2px;
}
.sec01_ttl .en {
    font-size: 50px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    margin-bottom: 14px;
}
.sec01_ttl .en:first-letter {
    color: var(--mcolor);
}
.sec01_ttl .ja {
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #343434;
}
.sec01_item .item1 {
    flex-shrink: 0;
    width: 200px;
    padding-top: 12px;
}
.sec01_item .item2 {}
.sec01_link {}
.sec01_link a {
    font-size: 16px;
    letter-spacing: 0.09em;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--txt2);
}
.sec01_load {
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
    width: 1040px;
    padding: 34px 0;
}
.sec01_load dl {
    display: flex;
    align-items: center;
}
.sec01_load dl:not(:last-child) {
    margin-bottom: 4px;
}
.sec01_load dl dt {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.sec01_load dl dt .cate {
    min-width: 100px;
    height: 30px;
    background: #474645;
    display: table;
    line-height: 31px;
    color: #fff;
    text-align: center;
    margin-right: 20px;
}
.sec01_load dl dt .date {
    font-size: 16px;
    letter-spacing: 0.09em;
    color: var(--txt2);
    margin-right: 18px;
}
.sec01_load dl dd {
    font-size: 16px;
    letter-spacing: 0.09em;
    position: relative;
    top: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
}
.sec01_load dl dd a {
    text-decoration: underline;
    color: var(--txt2);
}
.sec01_bnr {
    display: flex;
    justify-content: center;
}
.sec01_bnr > p:not(:last-child) {
    margin-right: 40px;
}
.sec01_bnr > p a {
    display: block;
}
/*============= SEC02 ==============*/
.sec02 {
    padding-top: 58px;
    position: relative;
}
.sec02:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 138px;
    background: linear-gradient(to right, #006db9 0%, #0086b9 100%);
    left: 0;
    bottom: 0;
}
.sec02_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 69px;
}
.sec02_item .item1 {
    margin-right: 5px;
}
.sec02_img {
    margin-bottom: 0px;
}
.sec02_item .item2 {
    padding-top: 4px;
    position: relative;
    z-index: 1;
}
.sec02_item .item2:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur1_pc.png") no-repeat center top/468px;
    width: 468px;
    height: 468px;
    right: -114px;
    top: -250px;
    z-index: -1;
}
.new_open_tt {
    font-family: var(--f-yumin);
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--txt3);
    margin-bottom: 20px;
}
.new_open_tt:first-letter {
    color: var(--mcolor);
}
.new_open_date {
    font-weight: 400;
    font-size: 80px;
    letter-spacing: 0.1em;
    color: var(--txt2);
    font-family: var(--f-yumin);
    line-height: 1;
    margin-bottom: 43px;
}
.new_open_date .sm {
    font-size: 33%;
    letter-spacing: 0em;
    position: relative;
    margin-left: -36px;
    top: -6px;
}
.box_add {}
.box_add .add_txt1 {
    color: var(--txt3);
    margin-bottom: -10px;
    letter-spacing: 0.05em;
    font-size: 15px;
}
.box_add .add_txt1 span {
    margin-right: 5px;
}
.box_add .add_txt2 {
    letter-spacing: 0.05em;
    font-size: 15px;
    align-items: center;
    line-height: 2.1;
}
.box_add .add_txt2 .txt {
    margin-right: 41px;
    font-size: 15px;
}
.gg_map_link {
    background: url("../images/icon_map.svg") no-repeat left center;
    padding: 5px 0 4px 20px;
    letter-spacing: 0.082em;
    font-weight: bold;
    color: var(--txt3);
    text-decoration: underline;
    position: relative;
    top: -1px;
}
.sec02_list_img {
    display: flex;
}
.sec02_list_img li {}
.sec02_txt {
    max-width: 600px;
}
/*============= SEC03 ==============*/
.sec03 {
    padding-top: 95px;
    border-bottom: 4px var(--mcolor) solid;
    padding-bottom: 80px;
}
.sec03 .inner {
    max-width: 1190px;
}
.sec03_tt_w {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 74px;
}
.sec03_tt_w:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background: var(--mcolor);
    left: 0;
    top: 45px;
}
.sec03_ttl3 {
    background: #fff;
    margin: 0 auto;
    position: relative;
    padding: 0 243px;
}
.sec03_ttl3 {
    position: relative;
}
.sec03_ttl3:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur4.png") no-repeat center/cover;
    width: 102px;
    height: 102px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -3px;
}
.sec03_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.sec03_list li {
    display: flex;
    font-family: var(--f-yumin);
    font-weight: 400;
    align-items: flex-end;
    width: 360px;
    border-bottom: 1px #ccc solid;
    padding-bottom: 16px;
    position: relative;
    justify-content: center;
    color: var(--txt2);
}
.sec03_list li:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    right: 0;
    bottom: -1px;
    margin: 0 auto;
}
.sec03_list li p {
    margin-bottom: 0;
    line-height: 1;
}
.sec03_date {
    font-size: 40px;
    font-weight: 400;
    margin-right: 5px;
}
.item3 .sec03_date {
    margin-right: 2px;
}
.sec03_date .sm {
    font-size: 62.5%;
}
.sec03_hour {
    font-size: 35px;
    font-weight: 400;
}
.sec03_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.sec03_item > div.item1 {
    width: 400px;
}
.sec03_item > div.item2 {}
.sec03_list_img {
    display: flex;
}
.sec03_list_img li {
    position: relative;
}
.sec03_list_img li:not(:last-child) {
    margin-right: 20px;
}
.sec03_list_img li .img {
    position: relative;
    margin-bottom: 0;
    background: var(--txt2);
}
.sec03_list_img li .tt {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: var(--f-yumin);
    color: #fff;
    line-height: 1.38;
    font-weight: 400;
    padding-top: 2px;
}
.sec03_txt {
    max-width: 360px;
    margin-top: 4px;
}
.sec03_txt.idx_txt p {
    font-size: 15px;
    line-height: 2.06;
    font-weight: 400;
    letter-spacing: 0em;
    color: var(--txt);
}
/*============= SEC04 ==============*/
.sec04 {
    padding-top: 178px;
    position: relative;
    padding-bottom: 150px;
}
.sec04:before {
    position: absolute;
    content: "";
    background: #F5F5F5;
    left: 0;
    top: 0;
    height: 200px;
    width: 100%;
}
.sec04 .inner {
    padding-top: 144px;
}
.sec04 .inner:before {
    position: absolute;
    content: "";
}
.sec04 .inner:before {
    width: 620px;
    height: 185px;
    background: linear-gradient(to right, #006db9 0%, #0086b9 100%);
    right: -340px;
    top: 4px;
}
.sec04_img1, .sec04_img2 {
    position: absolute;
    flex-shrink: 0;
    display: flex;
}
.sec04_img1 {
    right: 35px;
    top: 0;
    z-index: 2;
}
.sec04_img2 {
    top: 189px;
    z-index: 1;
    right: -325px;
}
.sec04_ttl, .sec04 .ttl_en {
    position: relative;
    z-index: 3;
}
.sec04 .ttl_en {
    margin-bottom: 52px;
}
.sec04_ttl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--txt3);
    margin-bottom: 128px;
}
.sec04_ttl .line {
    background: #fff;
    margin-bottom: 15px;
    padding: 18px 18px 17px;
}
.sec04_ttl .line .sm {
    font-size: 80%;
}
.sec04_txt {
    max-width: 600px;
    margin-bottom: 76px;
}
.bold_txt {
    font-weight: bold;
}
.line_blue {
    text-decoration: underline;
    text-decoration-color: var(--mcolor);
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}
.sec04 .seccom_item2 {
    margin-bottom: -9px;
}
/*============= SEC05 ==============*/
.sec05 {
    position: relative;
    padding-top: 350px;
    padding-bottom: 150px;
}
.sec05 .inner {
    padding-top: 270px;
}
.sec05:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_14_pc.jpg") no-repeat center top/1920px;
    left: calc(50% - 960px);
    top: 0;
    width: 1920px;
    height: 700px;
}
.sec05_img {
    position: absolute;
    right: 15px;
    top: 0;
}
.sec05 .ttl_en {
    margin-bottom: 58px;
}
.sec05 .ttl_ja {
    font-size: 40px;
    letter-spacing: 0em;
    line-height: 1.5;
    flex-shrink: 0;
    margin-right: 90px;
    font-weight: 600;
    color: var(--txt2);
}
.sec05 .ttl_ja .sm {
    font-size: 75%;
}
.sec05_wrap {
    display: flex;
    margin-bottom: 78px;
}
.sec05_txt.idx_txt {
    padding-top: 8px;
}
.sec05_txt.idx_txt p {
    font-size: 15px;
    line-height: 2.06;
    letter-spacing: 0em;
    color: var(--txt);
}
.sec05_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.sec05_menu > div {
    width: 232px;
    height: 232px;
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
}
.sec05_menu > div:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    background: var(--mcolor);
    left: 0;
    right: 0;
    top: -1px;
    margin: 0 auto;
    z-index: 9;
    transition: all 0.3s;
}
.sec05_menu > div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 143px;
    position: relative;
}
.sec05_menu > div > a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    bottom: 9px;
    right: 9px;
    background: var(--mcolor);
    transition: all 0.3s;
}
.sec05_menu > div > a .lg {
    font-weight: 500;
    color: var(--mcolor);
    font-size: 20px;
    margin-bottom: 9px;
    font-family: var(--f-yumin);
}
.sec05_menu > div.item8 > a .lg {
    font-size: 18px;
}
.sec05_menu > div > a .sm {
    color: var(--txt2);
    font-size: 16px;
}
.sec05_menu > div.item1 a {
    background: url("../images/idx_icon01.svg") no-repeat center top 33px;
}
.sec05_menu > div.item2 a {
    background: url("../images/idx_icon02.svg") no-repeat center top 33px;
}
.sec05_menu > div.item3 a {
    background: url("../images/idx_icon03.svg") no-repeat center top 33px;
}
.sec05_menu > div.item4 a {
    background: url("../images/idx_icon04.svg") no-repeat center top 33px;
}
.sec05_menu > div.item5 a {
    background: url("../images/idx_icon05.svg") no-repeat center top 33px;
}
.sec05_menu > div.item6 a {
    background: url("../images/idx_icon06.svg") no-repeat center top 33px;
}
.sec05_menu > div.item7 a {
    background: url("../images/idx_icon07.svg") no-repeat center top 33px;
}
.sec05_menu > div.item8 a {
    background: url("../images/idx_icon08.svg") no-repeat center top 33px;
    padding-top: 146px;
}
.sec05_menu > div.item9 a {
    background: url("../images/idx_icon09.svg") no-repeat center top 33px;
}
.sec05_menu > div.item5, .sec05_menu > div.item9 {
    margin-right: 0;
}
.sec05_item {
    display: flex;
    justify-content: center;
}
.sec05_item > div {
    width: calc(33.333% - 27px);
}
.sec05_item > div:not(:last-child) {
    margin-right: 40px;
}
.sec05_item > div .img {
    position: relative;
    margin-bottom: 19px;
}
.sec05_item > div .img .lable {
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, #b99400 0%, #e5b000 52.72%, #b97b00 100%);
    color: #fff;
    text-align: center;
    font-family: var(--f-yumin);
    font-weight: 400;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    position: absolute;
    padding-top: 2px;
}
.sec05_item > div .sec05_title {
    display: flex;
    flex-direction: column;
    font-family: var(--f-yumin);
    border-bottom: 1px #CCCCCC solid;
    padding-bottom: 9px;
    margin-bottom: 15px;
}
.sec05_item > div .sec05_title .sm {
    font-size: 20px;
    color: var(--txt2);
    font-weight: 400;
    margin-bottom: 2px;
}
.sec05_item > div .sec05_title .lg {
    font-weight: 600;
    font-size: 30px;
    color: var(--mcolor);
}
.sec05_sub_txt {
    margin-bottom: 34px;
}
.sec05_sub_txt.idx_txt p {
    font-size: 15px;
    letter-spacing: 0em;
    line-height: 2.06;
    color: var(--txt);
}
/*============= SEC06 ==============*/
.sec06 {
    background: #F5F5F5;
    padding-top: 147px;
    padding-bottom: 153px;
}
.sec06 .ttl_en {
    text-align: center;
    margin-bottom: 9px;
}
.sec06 .ttl_ja {
    text-align: center;
    font-size: 40px;
    margin-bottom: 47px;
    color: var(--txt2);
}
.sec06 .ttl_ja .sm {
    font-size: 75%;
}
.sec06_item {
    display: flex;
    margin-bottom: 80px;
    justify-content: space-between;
}
.sec06_item > div {
    width: 387px;
    cursor: pointer;
}
.sec06_item > div .img {
    margin-bottom: 0;
    width: 100%;
    height: 258px;
}
.sec06_item > div .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec06_item > div .cate {
    width: 387px;
    height: 45px;
    background: var(--mcolor);
    color: #fff;
    text-align: center;
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 13px;
}
.sec06_item > div .title {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--txt3);
    font-family: var(--f-yumin);
    margin-bottom: -2px;
}
.sec06_item > div .date {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #343434;
    margin-bottom: 10px;
}
/*============= SEC07 ==============*/
.sec07 {
    background: #F5F5F5;
    color: #fff;
    position: relative;
    padding-top: 81px;
    padding-bottom: 282px;
}
.sec07 .inner {
    z-index: 1;
}
.sec07:before, .sec07:after {
    position: absolute;
    content: "";
    width: 1920px;
    height: 500px;
    left: calc(50% - 960px);
    top: 0;
    pointer-events: none;
}
.sec07:before {
    background: url("../images/logo_blur2.png") no-repeat left 461px center;
    z-index: 1;
    mix-blend-mode: multiply;
}
.sec07:after {
    background: url("../images/idx_img_18_pc.png") no-repeat left top;
    background-color: var(--mcolor);
}
.sec07_wrap {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.sec07_ttl {
    font-family: var(--f-yumin);
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 23px;
}
.sec07_ttl .sm {
    margin-bottom: 7px;
    position: relative;
    margin-left: -10px;
}
.sec07_ttl .lg {
    font-size: 40px;
}
.sec07_ttl .lg .mid {
    font-size: 75%;
}
.idx_txt.sec07_txt {}
.idx_txt.sec07_txt p {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0em;
    line-height: 2.06;
}
.sec07_bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px rgba(255, 255, 255, 0.8) solid;
    border-bottom: 1px rgba(255, 255, 255, 0.8) solid;
    padding: 20px 0 30px;
    margin-top: 23px;
}
.sec07_bnr p {
    margin-bottom: 0;
}
.sec07_bnr p.tt {
    padding-top: 2px;
}
.sec07_bnr .tel_num, .sec07_bnr p.tt {
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}
.sec07_bnr .tel_num a {
    width: 280px;
    height: 80px;
    background: #ef9001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-align: center;
    color: #fff;
    padding-top: 6px;
    padding-left: 8px;
}
/*============= SEC08 ==============*/
.sec08 {
    padding-top: 100px;
    padding-bottom: 139px;
}
.sec08 .ttl_en {
    position: relative;
    top: -168px;
    margin-bottom: -115px;
    z-index: 1;
}
.sec08 .inner {}
.sec08_img {
    position: absolute;
    right: -325px;
    top: 0;
}
.sec08_img:before {
    position: absolute;
    content: "";
    width: 1050px;
    height: 410px;
    background: linear-gradient(to right, #006db9 0%, #0086b9 100%);
    left: -110px;
    top: 385px;
    z-index: -1;
}
.sec08_wrap1 {
    position: relative;
    z-index: 1;
}
.ttl_ja.sec08_ttl1 {
    font-size: 40px;
    padding-bottom: 15px;
    margin-bottom: 35px;
    position: relative;
    border-bottom: 1px #ccc solid;
    line-height: 1.5;
    letter-spacing: 0em;
    color: var(--txt2);
}
.ttl_ja.sec08_ttl1:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    bottom: -1px;
}
.ttl_ja.sec08_ttl1 .sm {
    font-size: 75%;
}
.sec08_wrap1 {
    max-width: 600px;
    margin-right: 50px;
    padding-top: 17px;
    margin-bottom: 43px;
}
.sec08_name {
    display: flex;
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 20px;
    color: var(--txt2);
}
.sec08_name .sm {
    margin-right: 21px;
}
.sec08_name .lg {
    font-size: 25px;
    color: var(--txt2);
    letter-spacing: 0.055em;
}
.sec08_txt {
    margin-bottom: 16px;
}
.sec08_txt p {
    color: var(--txt);
}
.sec08_item {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    position: relative;
    padding: 49px 50px 41px;
    margin-bottom: 150px;
}
.sec08_item > div {
    width: 600px;
}
.sec08_item .item1 {
    margin-right: 40px;
}
.sec08_item .item2 {}
.sec08_sub_ttl {
    font-weight: 400;
    font-size: 20px;
    color: var(--txt2);
    font-family: var(--f-yumin);
    margin-bottom: 19px;
    border-bottom: 1px #ccc solid;
    position: relative;
    line-height: 1.4;
    padding-bottom: 9px;
}
.sec08_sub_ttl:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    bottom: -1px;
}
.sec08_g1 {}
.sec08_g1 p {
    margin-bottom: 8px;
    color: var(--txt2);
    line-height: 1.53;
    display: flex;
}
.sec08_g1 p span {
    flex-shrink: 0;
    margin-right: 16px;
}
.sec08_list {
    padding-left: 4px;
}
.sec08_list li {
    color: var(--txt2);
    position: relative;
    margin-bottom: 8px;
    padding-left: 12px;
    line-height: 1.52;
}
.sec08_list li:before {
    position: absolute;
    content: "";
    background: var(--mcolor);
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
}
/*============= SEC09 ==============*/
.sec09 {
    position: relative;
    padding-top: 630px;
    padding-bottom: 50px;
}
.sec09 .ttl_en, .sec09 .ttl_en:first-letter {
    opacity: 0.47;
    font-size: 140px;
}
.sec09:before, .sec09:after {
    position: absolute;
    content: "";
}
.sec09:before {
    background: url("../images/idx_img_21_pc.jpg") no-repeat center top/1920px;
    width: 1920px;
    height: 100%;
    left: calc(50% - 960px);
    top: 0;
    z-index: 2;
}
.sec09:after {
    width: 1180px;
    height: 360px;
    background: linear-gradient(to right, #006db9 0%, #0086b9 100%);
    top: 440px;
    left: calc(50% - 960px);
    z-index: 1;
}
.sec09 .inner {
    z-index: 3;
}
.sec09_img {
    position: absolute;
    right: 15px;
    top: -130px;
}
.sec09_ttl1 {
    flex-direction: column;
    color: var(--txt2);
    font-weight: 600;
    display: flex;
    border-bottom: 1px #ccc solid;
    padding-bottom: 20px;
    margin-bottom: 36px;
    position: relative;
}
.ttl_ja.sec09_ttl1 {
    letter-spacing: 0em;
    padding-bottom: 17px;
}
.sec09_ttl1:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--mcolor);
    left: 0;
    bottom: -1px;
}
.sec09_ttl1 .sm {
    font-size: 30px;
    margin-bottom: 3px;
}
.sec09_ttl1 .sm .xsm {
    font-size: 83%;
}
.sec09_ttl1 .lg {
    font-size: 40px;
}
.sec09_ttl1 .lg .mid {
    font-size: 75%
}
.sec09 .ttl_en {
    margin-bottom: 118px;
}
.sec09_wrap {
    max-width: 800px;
    margin-bottom: 99px;
}
.sec09_wrap .idx_txt2 p {
    line-height: 1.8;
}
.sec09_item {
    display: flex;
    position: relative;
    margin-top: 36px;
    margin-bottom: 49px;
}
.sec09_bg {
    position: absolute;
    content: "";
    width: 1920px;
    height: 340px;
    background: linear-gradient(to right, #006db9 0%, #0086b9 100%);
    bottom: 0;
    left: calc(50% - 960px);
    z-index: -1;
}
.sec09_item > div {
    width: 295px;
}
.sec09_item > div .img {
    margin-bottom: 19px;
}
.sec09_item > div .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yumin);
    font-weight: 600;
    color: #fff;
}
.sec09_item > div .title .sm {
    font-size: 20px;
    margin-bottom: 3px;
}
.sec09_item > div .title .lg {
    font-size: 24px;
}
.sec09_item > div:not(:last-child) {
    margin-right: 20px;
}
/*============= SEC10 ==============*/
.sec10 {
    position: relative;
    padding-top: 256px;
    padding-bottom: 140px;
    background: url("../images/logo_blur3_pc.png") no-repeat left 0 top 280px/664px;
    background-attachment: fixed;
}
.sec10 .seccom_item2 {
    margin-bottom: 22px;
}
.sec10 .seccom_item2_txt.idx_txt p {
    font-size: 15px;
    line-height: 1.8;
}
.sec10 .ttl_en {
    text-align: right;
    margin-bottom: 68px;
    margin-right: -8px;
}
.sec10:before, .sec10:after {
    position: absolute;
    content: "";
}
.sec10:before {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    left: 0;
    top: 0;
}
/*.sec10:after {
    background: url("../images/logo_blur3_pc.png") no-repeat center top;
    width: 664px;
    height: 664px;
    left: 0px;
    top: 220px;
    z-index: -1;
}*/
.sec10_ttl1.ttl_ja {
    text-align: right;
    font-size: 40px;
    color: var(--txt3);
    line-height: 1.6;
    margin-bottom: 73px;
}
.sec10 .seccom_item2 > div {
    width: 590px;
    flex-direction: column;
    margin-bottom: 58px;
}
.sec10 .seccom_item2 > div.item8, .sec10 .seccom_item2 > div.item9 {
    margin-bottom: 54px;
}
.sec10 .seccom_item2 > div:not(:nth-child(2n)) {
    margin-right: 60px;
}
.sec10 .seccom_item2_img .img {
    margin-bottom: 20px;
}
.sec10 .seccom_item2_title {
    padding-bottom: 6px;
    margin-bottom: 15px;
}
.sec10 .seccom_item2 > div .btn {
    margin-top: 37px;
}
.seccom_item2 > div.item11 .btn {
    margin-top: 35px;
}
/*============= SEC11 ==============*/
.sec11 {
    border-top: 10px var(--mcolor) solid;
    border-bottom: 10px var(--mcolor) solid;
}
.sec11 .aos-init {}
.sec12_slider {
    height: 460px;
}
.sec12_slider.slick-initialized {
    height: auto;
}
/*============= SEC12 ==============*/
.sec12 {
    padding-top: 63px;
    background: #F5F5F5;
    padding-bottom: 77px;
    height: 1079px;
}
.sec12.aos-init {
    height: auto;
}
.ttl_ja.sec12_ttl, .sec12 .ttl_en {
    text-align: center;
}
.sec12 .ttl_en:first-letter {
    color: var(--txt3);
}
.sec12 .ttl_en {
    margin-bottom: 9px;
}
.ttl_ja.sec12_ttl {
    color: var(--txt3);
    font-size: 40px;
    margin-bottom: 23px;
}
.sec12_wrap {
    padding: 25px 120px 62px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(141, 141, 141, 0.14);
}
/*============= SEC13==============*/
.sec13 {
    position: relative;
    padding-top: 122px;
    background: #f5f5f5;
    padding-bottom: 152px;
}
.sec13:before {
    position: absolute;
    content: "";
    background: url("../images/idx_img_35_pc.png") no-repeat center top/1920px;
    width: 1920px;
    height: 1490px;
    top: 0;
    left: calc(50% - 960px);
}
.sec13 .ttl_en {
    text-align: center;
    margin-bottom: 14px;
}
.sec13 .ttl_en, .sec13 .ttl_en:first-letter {
    color: #fff;
}
.ttl_ja.sec13_ttl {
    color: #fff;
    font-size: 40px;
    margin-bottom: 58px;
    text-align: center;
}
/*============= SEC13 end==============*/
.ttl2 {
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 50px;
    line-height: 1.5;
    color: var(--txt2);
    margin-bottom: 38px;
}
.ttl2 .sm {
    font-size: 80%;
}
.ttl3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-weight: 600;
    font-family: var(--f-yumin);
    color: var(--txt2)
}
.ttl3 .sm {
    font-size: 26px
}
.ttl3 .lg {
    font-size: 40px;
}
.ttl3 .lg .mid {
    font-size: 87.5%;
}
.idx_txt2 p {
    font-size: 15px;
    line-height: 2.06;
}
.idx_txt p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    color: var(--txt3);
}
.sec12_tab {
    display: flex;
    margin-bottom: 40px;
}
.sec12_tab li {
    position: relative;
    flex: 1;
    font-size: 18px;
    letter-spacing: 0.09em;
    height: 60px;
    background: #fff;
}
.sec12_tab li:not(:last-child) {
    margin-right: 20px;
}
.sec12_tab li a:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 9;
    opacity: 0;
    transition: all 0.3s;
    width: 1px;
    height: 15px;
    background: var(--txt3);
}
.sec12_tab li a.active:after {
    background: #fff;
    opacity: 1;
}
.sec12_tab li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    color: var(--txt3);
    letter-spacing: 0.05em;
    padding-bottom: 3px;
    padding-top: 6px;
    font-weight: bold;
    border: 1px #707070 solid;
}
.sec12_tab li a.active {
    background: var(--mcolor);
    pointer-events: none;
    color: #fff;
    border-color: var(--mcolor);
}
.sec12_tab li a:hover:after {
    opacity: 1;
    background: #fff;
}
.sec12_wrap {
    background: #fff;
    width: 100%;
    margin: 0 auto 50px;
}
.sec12_wrap .btn {
    margin-top: 39px;
}
.sec12_load dl {
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
    align-items: flex-start;
    background-image: repeating-linear-gradient(90deg, #e5e5e5, #e5e5e5 3px, transparent 3px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
}
.sec12_load dl:not(:last-child) {
    margin-bottom: 29px;
}
.sec12_load dl dt {
    display: flex;
    margin-bottom: -2px;
}
.sec12_load dl dt .date {
    color: var(--txt3);
    font-weight: 500;
    letter-spacing: 0.05em;
    top: -4px;
    position: relative;
    font-size: 20px;
}
.sec12_load dl dt .cate {
    padding: 1px 4px 0;
    margin-right: 11px;
    flex-shrink: 0;
    text-align: center;
    min-width: 102px;
    letter-spacing: 0.05em;
    height: 31px;
    background: var(--txt3);
    color: #fff;
    padding-top: 1px;
    line-height: 30px;
    font-size: 16px;
}
.sec12_load dl dt .cate.cat1 {
    background: var(--txt3);
}
.sec12_load dl dt .cate.cat2 {
    background: #707070;
}
.sec12_load dl dt .cate.cat3 {
    background: #B49531;
}
.sec12_load dl dd {
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    line-height: 1.6;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-weight: 500;
}
.sec12_load dl dd a {
    color: var(--txt3);
}
/*============= SEC13 ==============*/
/* LIST FAQ */
.list_faq {
    max-width: 1000px;
    margin: 0 auto;
}
.list_faq .item {
    margin-bottom: 20px;
    padding: 0px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}
.list_faq .item.active {
    cursor: inherit;
}
.list_faq .item table.tb_block th {
    text-align: center;
}
.list_faq .item:last-child {
    margin-bottom: 0
}
.list_faq .question {
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    min-height: 60px;
    letter-spacing: .09em;
    width: 100%;
    margin: 0 auto;
    padding: 40px 39px 40px;
}
.list_faq .question, .list_faq .answer {
    color: var(--txt3);
}
.list_faq .question::before, .list_faq .question::after {
    right: 48px;
    top: calc(50% - 0px);
    transition: all .3s;
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: var(--txt3);
}
.list_faq .active .question::before, .list_faq .active .question::after {
    transform: rotate(45deg);
}
.list_faq .question::after {
    width: 2px;
    height: 20px;
    right: 57px;
    top: calc(50% - 9px);
}
.list_faq .item dt::before {
    transform: rotate(-180deg);
}
.list_faq .item.active dt::before {
    transform: rotate(0deg);
}
.list_faq .question .icon {
    text-align: center;
    line-height: 1em;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    position: relative;
    margin-bottom: 0;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: var(--mcolor);
    letter-spacing: 0.05em;
    font-family: var(--f-yumin);
}
.list_faq .question .tt {
    transition: all 0.3s;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: left;
    color: var(--mcolor);
    font-family: var(--f-yumin);
}
.list_faq .question .tt .bold {
    font-weight: bold;
}
.list_faq .answer {
    position: relative;
    letter-spacing: .1em;
    line-height: 2.19;
    display: none;
    border-top: 1px solid #c8bbb0;
    margin-top: 0;
    width: calc(100% - 140px);
    padding: 46px 0px 36px 57px;
    margin-left: 40px;
}
.list_faq .answer .txt p {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.92;
    color: var(--txt3);
}
.list_faq .question .icon, .list_faq .answer .icon {
    font-size: 18px;
    font-family: var(--f-yumin);
    font-weight: 400;
}
.list_faq .answer .icon {
    position: absolute;
    top: 40px;
    left: 0px;
    text-align: center;
    line-height: 1em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
    padding-top: 2px;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: #0a5182;
}
.let {
    position: relative;
}
/*==========================================================
                        F O O T E R
==========================================================*/
.ttl_en {
    font-family: var(--f-yumin);
    font-weight: 400;
    font-size: 160px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0;
}
.ttl_en:first-letter {
    color: var(--mcolor);
}
.ttl_ja {
    font-size: 50px;
    letter-spacing: 0.05em;
    font-family: var(--f-yumin);
}
.blue_txt {
    color: var(--mcolor);
}
footer {
    position: relative;
    z-index: 3;
}
.ft_w {
    display: flex;
    justify-content: space-between;
    margin-bottom: 46px;
}
.ft_top {
    padding-top: 100px;
}
.ft_top .box_info2_wrap {
    margin-bottom: 2px;
}
.ft_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 109px;
}
.ft_map_frame {
    width: 100%;
    height: 300px;
    margin-bottom: 9px;
}
.ft_map_frame iframe {
    width: 100%;
    height: 100%;
}
.ft_info {
    width: 581px;
    padding-top: 2px;
}
.ft_map {
    width: 620px;
}
.ft_tt {
    position: relative;
    margin-bottom: 10px;
}
.ft_tt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ccc;
    top: calc(50% - 1px);
}
.ft_tt span {
    position: relative;
    z-index: 1;
    background: #fff;
    font-family: var(--f-yumin);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--txt2);
    display: table;
    margin: 0 auto;
    padding: 0px 18px;
}
.add_txt1 {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    margin-bottom: 11px;
}
.add_txt1 span {
    margin-right: 16px;
}
.contact.ft_contact > p:not(:last-child) {
    margin-right: 21px;
}
.contact.ft_contact > p {
    width: 280px;
    height: 80px;
}
.contact.ft_contact > p > a {
    padding-top: 1px;
}
.contact.ft_contact > p.contact_mail a:before {
    bottom: 5px;
    right: 5px;
}
.contact.ft_contact a .sm {
    margin-bottom: 2px;
}
.contact.ft_contact > p.contact_tel > a {
    padding-top: 8px;
}
.contact.ft_contact > p.contact_tel > a .sm {
    margin-bottom: 4px;
}
.ft_txt1 {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--txt2);
    margin-bottom: 35px;
}
.ft_top .box_info2_wrap .hour2, .ft_top .box_info2_wrap .hour1, .ft_top .hour3 {
    color: var(--txt3);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--f-yumin);
}
.ft_calc {
    margin-bottom: 14px;
}
.add_txt2 {
    display: flex;
}
.add_txt2 .txt {
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    margin-right: 18px;
}
.ft_top .gg_map_link {
    font-weight: 500;
    margin-left: auto;
    letter-spacing: 0.038em;
    position: relative;
    top: -5px;
}
.link_txt {
    font-weight: 500;
    text-decoration: underline;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--txt3);
    margin-right: 15px;
}
.ft_bt {
    background: var(--txt3);
    padding: 94px 0 60px;
}
.ft_bnr {
    padding: 50px 0 23px;
}
.ft_bnr ul {
    display: flex;
    flex-wrap: wrap;
}
.ft_bnr ul li {
    margin-bottom: 22px;
}
.ft_bnr ul li:not(:nth-child(5n)) {
    margin-right: 23px;
}
address {
    background-color: var(--mcolor);
    padding: 20px 20px 19px;
    color: #fff;
    text-align: center;
    font-family: "Yu Gothic";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.09em;
}
/* 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;
    background: url("../images/btn_top.svg")var(--txt3) no-repeat center;
    border: 1px rgba(255, 255, 255, 0.5) solid;
}
.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) {}