@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd, del {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-weight: 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;
    text-underline-offset: 4px;
    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.05em;
}
p {
    margin: 0 0 1.8em;
}
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: #333;
    --mcolor: #000839;
    --scolor: #1D1D1D;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --f-en: Arial, Helvetica, sans-serif;
    --f-anton: "Anton", 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: 17px 10px 5px 10px;
    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: 30px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -4px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 30px;
    height: 1px;
    transition: f;
    background-color: #fff;
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -8px;
}
.hamburger-inner::after {
    bottom: -8px;
}
.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 {
    margin-top: -4px;
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(30deg);
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-30deg);
}
header {
    position: relative;
    z-index: 9;
}
h1 {
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 17px 0 7px;
    max-width: 500px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ebebeb;
    transition: all 0.3s;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: var(--mcolor);
    color: #fff;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 0 65px;
    max-width: 1920px;
}
.h_contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 0;
}
.h_contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 50px;
    position: relative;
    border: 1px #fff solid;
    border-radius: 25px;
    font-size: 24px;
    font-family: var(--f-en);
}
.h_contact_fax {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--f-en);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 9px !important;
    color: #fff;
}
.h_contact_fax .txt {
    font-size: 65%;
}
.h_contact_fax .num {
    color: #fff;
}
.h_link_share {
    display: flex;
    margin-top: 75px;
    margin-right: 32px;
    margin-left: 100px;
    transition: all 0.3s;
}
.h_link_share p {
    margin-bottom: 0;
}
.h_link_share p:not(:last-child) {
    margin-right: 25px;
}
.h_right {
    transition: all 0.3s;
    margin-top: 36px;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 0;
}
.mv {
    position: relative;
    background: var(--mcolor);
    width: 100%;
    /* overflow: hidden; */
    padding: 170px 0px 165px;
}
.mv_slider_ite {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 0;
    width: 380px;
    height: 675px;
    flex-shrink: 0;
    transform: scale(0.895);
    top: 40px;
    margin-left: 0;
    margin-right: 0;
}
.mv_slick_ite .img img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.mv_slick_ite .img .big {
    z-index: 2;
}
.mv_slick_ite .name {
    position: absolute;
    bottom: 22px;
    left: 32px;
    opacity: 1;
    width: 100%;
    font-family: var(--f-anton);
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.135em;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .4);
}
.mv_slick_ite.slick-current .name {
    font-size: 32px;
}
.mv_slick_ite.slick-current .name2 {
    font-size: 28px;
}
.slick-dots {
    padding: 0 65px;
    text-align: left;
    bottom: -44px !important;
    left: 0;
}
.slick-dots li {
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: #4F5577;
    margin: 0 16px 0 0 !important;
    opacity: 1;
}
.slick-dots li button {
    display: none;
}
.slick-dots li.slick-active {
    background: #D5D8E6;
    pointer-events: none;
}
.mv_slick {
    padding-left: 65px;
}
.mv_slick_ite {
    margin: 0 20px;
    width: 340px;
    height: 604px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    margin-top: 71px;
    transition: all 0.3s;
}
.mv_slick_ite.slick-current {
    height: 675px !important;
    margin-top: 0;
}
.mv_slick_ite img {
    width: auto;
    max-width: inherit;
    height: 100%;
}
.slick-track {
    display: flex !important;
    align-items: flex-end;
}
.slick-list {
    overflow: initial !important;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {}
.ttl_h3:not(:last-child) {
    margin-bottom: 30px;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 38px;
    font-weight: 500;
}
.ttl_h3 .en {
    font-size: 86px;
    font-family: var(--f-en);
    line-height: 1;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 38px;
}
.ttl_h3 .en:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: #5A5A5A;
    left: 0;
    bottom: 0;
}
.ttl_w .en:before {
    background: #EBEBEB;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 350px;
    height: 55px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: var(--mcolor);
    border: 1px #000839 solid;
    position: relative;
    padding-top: 3px;
}
.btn_black a {
    background: #1D1D1D;
    border-color: #505050;
    color: #fff;
}
.btn_lg a {
    width: 400px;
}
.btn_blue a {
    background: #000731;
    color: #fff;
    border-color: #505050;
}
.btn.btn_blue a:before {
    background: #DBDBDB;
}
.btn a:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #98989A;
    right: 23px;
    top: calc(50% - 4px);
    transition: all 0.3s;
}
.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: 0px 40px;
}
/*============= SEC01 ==============*/
.sec01 {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 170px;
}
.sec01:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 30px);
    left: 0;
    background: #EEEEEE;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -30px;
}
.sec01_item {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
}
.sec01_item > div {
    width: 50%;
}
.sec01_item > div.item_l {
    width: 55.38%;
}
.sec01_item > div.item_l .wrap {
    width: 702px;
    margin-left: auto;
}
.sec01_item > div.item_r {
    width: 44.62%;
    flex-shrink: 0;
    right: -8px;
    position: relative;
}
.sec01_item > div.item_r p {
    margin-bottom: 0;
}
.sec01_item > div.item_r p img {
    width: 100%;
}
.sec01_ttl {
    display: flex;
    flex-direction: column;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.sec01_ttl .lg {
    position: relative;
    top: -46px;
    margin-right: 10px;
    margin-left: 3px;
}
.sec01_ttl .sm {
    font-size: 87%;
}
.sec01_ttl .line1 {
    margin-bottom: 50px;
}
.sec01_txt {
    max-width: 600px;
}
.sec01_item2 {
    display: flex;
    justify-content: space-between;
    margin-top: 96px;
    margin-bottom: 59px;
}
.sec01_item2 li, .sec01_ttl2 {
    display: flex;
    flex-direction: column;
}
.sec01_item2 li {
    width: 312px;
}
.sec01_ttl2 {
    font-size: 28px;
    font-weight: bold;
    align-items: flex-start;
    margin-bottom: 20px;
}
.sec01_ttl2 span {
    background: var(--mcolor);
    color: #fff;
    padding: 2px 8px 0 10px;
    line-height: 1.9;
}
.sec01_ttl2 span:not(:last-child) {
    margin-bottom: 10px;
}
.txt_com p {
    font-weight: 700;
    line-height: 1.8;
}
.sec01_con {
    background: #fff;
    border-radius: 15px;
    padding: 89px 100px 67px 102px;
    margin-top: 150px;
}
.sec01_en {
    position: relative;
    margin-bottom: 54px;
}
.sec01_en span {
    background: #fff;
    z-index: 1;
    position: relative;
    padding-right: 67px;
}
.sec01_en:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #BCBCBC;
    right: 0;
    top: calc(50% - 1px);
}
.sec01_wrap {
    display: flex;
}
.sec01_wrap .txt p {
    line-height: 1.8;
}
.sec01_wrap .txt {
    width: 530px;
    margin-right: 71px;
}
.sec01_right {
    flex-grow: 1;
    margin-top: 20px;
}
.sec01_right_w dl {
    display: flex;
    position: relative;
    align-items: center;
    width: calc(100% + 5px);
}
.sec01_right_w dl:not(:last-child) {
    margin-bottom: 11px;
}
.sec01_right_w dl dt {
    min-width: 55px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #5A5A5A solid;
    margin-right: 18px;
    padding-top: 2px;
}
.sec01_right_w dl dd {
    padding-top: 1px;
}
.sec01_right_w dl dd p {
    line-height: 1.5;
}
.sec01_right_w dl dd p:not(:last-child) {
    margin-bottom: 15px;
}
.sec01_right_w {
    margin-bottom: 45px;
}
/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    color: #fff;
    padding-bottom: 180px;
    z-index: 1;
    padding-top: 135px;
}
.sec02 .inner {
    width: 100%;
    padding: 0;
}
.sec02:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 20px);
    left: 0;
    background: #1D1D1D;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -20px;
}
.sec02_slide {
    position: relative;
    left: calc(50% - 600px);
    width: 3000px;
    margin-bottom: 61px;
    margin-top: 39px;
}
.sec02_slide .img img {
    border-radius: 15px;
}
.sec02_slide, .sec02_slide_sub {
    display: flex;
}
.sec02_slide_sub {
    flex-direction: column;
}
.sec02_slide .slick-slide {
    margin: 0 16px;
    width: 350px;
    position: relative;
    transition: all 0.3s;
}
.sec02_slide .slick-slide a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec02_slide .img {
    margin-bottom: 17px;
}
.sec02_slide .tt {
    display: flex;
    flex-direction: column;
}
.sec02_slide .tt .sm {
    font-size: 14px;
    margin-bottom: 1px;
}
.sec02_slide .tt .lg {
    font-size: 24px;
    font-weight: bold;
}
.sec02_slide .tt .lg span {
    font-size: 16px;
    margin-right: 8px;
}
.sec02_slide .slick-prev, .sec02_slide .slick-next {
    width: 60px;
    height: 60px;
    top: 190px;
    z-index: 9;
}
.sec02_slide .slick-next {
    right: auto;
    left: 1459px;
}
.sec02_slide .slick-prev {
    background: url("../images/icon_prev.svg") no-repeat center top;
}
.sec02_slide .slick-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
}
.sec02_slide .slick-next {
    background: url("../images/icon_next.svg") no-repeat center top;
}
.sec02_slide .slick-prev:before, .sec02_slide .slick-next:before {
    display: none;
}
.sec02_ttl, .sec02 .btn {
    width: 1200px;
    margin: 0 auto;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-bottom: 182px;
    z-index: 2;
    padding-top: 125px;
}
.sec03:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 30px);
    left: 0;
    background: #fff;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -30px;
}
.ttl_h3.sec03_ttl {
    margin-bottom: 53px;
}
.sec03_item, .sec03_item_sub {
    display: flex;
    flex-direction: column;
}
.sec03_item_sub:not(:last-of-type) {
    margin-bottom: 56px;
}
.sec03_item {
    margin-bottom: 64px;
}
.sec03_item_sub {
    background: #EEEEEE;
    border-radius: 15px;
    padding: 62px 100px 72px 100px;
}
.sec03_item_sub .tt {
    font-size: 30px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
    margin-bottom: 29px;
}
.sec03_item_sub .tt:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    background: #BEBEBE;
    width: 12px;
    height: 12px;
    left: 0;
    top: 22px;
}
.sec03_item_sub .wrap {
    display: flex;
    margin-bottom: 46px;
}
.sec03_item_sub .wrap .item_l {}
.sec03_item_sub .wrap .item_l .img {
    border-radius: 15px;
    overflow: hidden;
    margin-right: 80px;
}
.sec03_item_sub .wrap .item_r {}
.sec03_item_sub .list_square {}
.sec03_item_sub .list_square li {
    position: relative;
    padding-left: 16px;
    line-height: 1.8;
}
.sec03_item_sub .list_square li:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: #333333;
    left: 2px;
    top: 7px;
}
.sec03_item_sub .wrap .item_r p {
    line-height: 1.8;
}
.sec03_item_sub .wrap .item_r p.mb1 {
    margin-bottom: 28px;
}
.sec03_item_sub .wrap .item_r p.mt1 {
    margin-top: 30px;
}
.sec03_item_sub .btn {}
/*============= SEC04 ==============*/
.sec04 {
    position: relative;
    padding-bottom: 180px;
    z-index: 2;
    padding-top: 123px;
    color: #fff;
}
.sec04:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 30px);
    left: 0;
    background: var(--mcolor);
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -30px;
}
.sec04_item {
    display: flex;
}
.sec04_item .item_l {
    flex-shrink: 0;
    width: 702px;
    position: relative;
}
.sec04_item .item_l .img {
    position: relative;
}
.sec04_item .item_l .map_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000839;
    color: #fff;
    border: 1px #EBEBEB solid;
    border-radius: 50%;
    padding-top: 90px;
    padding-right: 17px;
}
.sec04_item .item_l .map_box .sm {
    font-size: 40px;
    margin-bottom: 74px;
    letter-spacing: 0.15em;
}
.sec04_item .item_l .map_box .lg {
    margin-left: 48px;
    letter-spacing: 0.1em;
}
.sec04_item .item_r .num_txt .lg, .sec04_item .item_l .map_box .num {
    font-size: 120px;
    font-family: var(--f-anton);
    display: inline-block;
}
.sec04_item .item_l .map_box .num {
    width: 182px;
}
.sec04_item .item_l .map_box .ja {
    font-size: 70px;
}
.sec04_item .item_l:before {
    position: absolute;
    content: "";
    background: #EBEBEB;
    width: 1px;
    height: 564px;
    right: 0;
    top: 22px;
}
.sec04_item .item_l .img img {
    height: 678px;
}
.sec04_item .item_r {
    padding-left: 83px;
}
.sec04_item .item_r .tt {
    font-size: 38px;
    margin-bottom: 28px;
}
.sec04_item .item_r .tt {
    font-weight: bold;
    margin-bottom: 65px;
}
.sec04_item .item_r .num_txt {
    color: #fff;
}
.sec04_item .item_r .num_txt .lg {
    width: 125px;
    letter-spacing: 0.05em;
}
.sec04_item .item_r .num_txt .lg.x_lg {
    width: 190px;
}
.sec04_item .item_r .num_txt .sm {
    font-size: 70px;
}
.sec04 .ttl_w .en:before {
    background: #EBEBEB;
}
.ttl_h3.sec04_ttl {
    margin-bottom: 35px;
}
.sec04_list .item1 {
    padding-bottom: 67px;
    margin-bottom: 30px;
    position: relative;
}
.sec04_item .item_r .item2 .tt {
    margin-bottom: 75px;
}
.sec04_txt {
    max-width: 1000px;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #DBDBDB;
    margin-bottom: 62px;
}
/*============= SEC05 ==============*/
.sec05 {
    position: relative;
    padding-bottom: 150px;
    z-index: 2;
    padding-top: 123px;
}
.sec05:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 30px);
    left: 0;
    background: #EEEEEE;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -30px;
}
.sec05_item {
    display: flex;
}
.sec05_item.item_bt {
    flex-direction: row-reverse;
}
.sec05_item .item1 {
    width: 650px;
}
.sec05_item.item_top .item1 {
    margin-right: 87px;
}
.sec05_item.item_bt .item1 {
    margin-left: 87px;
}
.sec05_item .item2 {
    width: calc(100% - 737px);
    flex-shrink: 0;
}
.sec05_item .item2 .img {
    position: relative;
}
.sec05_item .item2 .img img {
    border-radius: 15px;
}
.sec05_item .item2 .img:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur.png") no-repeat center top;
    width: 274px;
    height: 301px;
    right: -68px;
    bottom: -51px;
}
.sec05_item.item_bt .item2 .img:before {
    right: auto;
    left: -67px;
}
.sec05_item .tt {
    font-size: 30px;
    margin-bottom: 25px;
}
.sec05_item .txt {
    margin-bottom: 39px;
}
.sec05_item .txt p {
    line-height: 1.8;
}
.sec05_name {
    font-weight: bold;
    font-size: 35px;
    display: flex;
}
.sec05_name span {
    font-size: 25px;
    margin-right: 24px;
    position: relative;
    top: 3px;
}
.sec05_ttl.ttl_h3 {
    margin-bottom: 54px;
}
.sec05_item.item_top {
    margin-bottom: 105px;
}
.sec05 .btn a {
    padding-right: 25px;
}
.sec05_item.item_bt {
    margin-bottom: 64px;
}
/*============= SEC06 ==============*/
.sec06 .inner {
    width: 100%;
    padding: 0;
}
.sec06_item {
    display: flex;
}
.sec06_item .slick-slide {
    margin: 0 5px;
}
/*============= SEC07 ==============*/
.sec07 {
    padding-top: 155px;
    padding-bottom: 150px;
}
.ttl_h3.sec07_ttl {
    margin-bottom: 54px;
}
.sec07_item {
    display: flex;
    margin-bottom: 60px;
}
.sec07_item li {
    width: 350px;
    cursor: pointer;
    transition: all 0.3s;
}
.sec07_item li .img {
    margin-bottom: 33px;
    width: 350px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}
.sec07_item li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.sec07_item li .tt {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.31;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec07_item li .txt {
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*============= SEC08 ==============*/
.sec08_item {
    display: flex;
    justify-content: space-between;
}
.sec08_item > div {
    width: 560px;
    height: 476px;
    border-radius: 15px;
    border: 1px #BCBCBC solid;
    padding: 41px 50px 50px;
}
.sec08_tt {
    font-size: 64px;
    font-family: var(--f-en);
    margin-bottom: 14px;
}
.sec08_load dl {
    border-bottom: 1px #DBDBDB solid;
    padding-bottom: 10px;
}
.sec08_load dl:not(:last-child) {
    margin-bottom: 35px;
}
.sec08_load dl dt {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.sec08_load dl dt:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DEDEDE;
    left: 0;
    top: 6px;
}
.sec08_load dl dd {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.load_face {
    border-radius: 15px;
    overflow: hidden;
}
.box_ytb {
    width: 900px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 16/9;
    max-width: 100%;
    margin-bottom: 40px;
}
.box_ytb iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
    margin-top: 150px;
}
.ft_con {
    width: calc(100% - 105px);
    background: #1D1D1D;
    border-radius: 30px;
    height: 392px;
    margin: 0 auto 180px;
    transition: all 0.3s;
}
.ft_con {
    width: calc(100% - 105px);
    padding: 0;
}
.ft_con .tt, .ft_con .tt a {
    width: 100%;
    height: 100%;
}
.ft_con .tt a {
    display: flex;
    flex-direction: column;
    padding-left: 150px;
    padding-top: 116px;
    position: relative;
}
.ft_con .tt a:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_lg.svg") no-repeat right top;
    width: 293px;
    height: 32px;
    top: calc(50% - 17px);
    right: 145px;
    transition: all 0.3s;
}
.ft_con .tt a .en {
    margin-bottom: 55px;
}
.ft_con .tt a .ja {
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.05em;
}
.ft_bt {
    position: relative;
    padding-top: 120px;
    padding-bottom: 45px;
}
.ft_bt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 30px);
    left: 0;
    background: var(--mcolor);
    color: #fff;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    top: -30px;
}
.ft_link {
    display: flex;
    margin-top: 62px;
    margin-bottom: 82px;
}
.ft_link li:not(:last-child) {
    margin-right: 40px;
}
.ft_link li a {
    color: #fff;
    font-weight: 400;
    letter-spacing: 0em;
    position: relative;
}
address {
    background-color: var(--mcolor);
    padding: 0;
    color: #fff;
    font-weight: 400;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 8;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
    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) {}