@charset "UTF-8";

/* ------------------------------------------------------
RESET
------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

details,
menu,
figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
figure,
figcaption,
blockquote,
table,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

canvas,
audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}

table {
    font: inherit;
    font-size: 100%;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 0.15em;
    margin: 0 0 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

.section {
    padding: 0 0 50px 0;
}

.section:last-child {
    padding-bottom: 0;
}

.section .section {
    padding: 0 0 25px;
}

.image_l {
    float: left;
    margin: 0 20px 10px 0;
}

.image_r {
    float: right;
    margin: 0 0 10px 20px;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

#totop {
    display: none;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 50%;
    border: 1px solid #192e87;
    box-shadow: 4px 6px 20px 0 rgba(102, 102, 102, 0.6);
    position: fixed;
    bottom: 30px;
    right: 39px;
    z-index: 99;
    overflow: hidden;
    cursor: pointer;
}

#totop .icon {
    width: 18px;
    height: 20px;
    margin-bottom: 3px;
}

#totop .icon .cls-1 {
    fill: #192e87;
    transition: all .3s ease;
}

#totop .totop_txt {
    font-family: var(--en-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #192e87;
    transition: all .3s ease;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* ------------------------------------------------------
Variables
------------------------------------------------------ */
:root {
    --main-color: #1a1a1a;
    --white-color: #fff;
    --blue-color: #385cb0;
    --green-color: #004e29;
    --main-font: "Noto Sans JP", sans-serif;
    --en-font: "Montserrat", sans-serif;
    --Poppins-font: "Poppins", sans-serif;
}

.d_flex {
    --spacing: 20px;
    --column: 3;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--spacing));
    margin-bottom: calc(-1 * var(--spacing));
}

.d_flex > * {
    margin-right: var(--spacing);
    margin-bottom: var(--spacing);
    width: calc((100% / var(--column)) - var(--spacing));
    text-align: center;
}

/* ------------------------------------------------------
Container
------------------------------------------------------ */
html {
    font-size: 100%;
    font-style: normal;
    background: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1;
}

body {
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    background: var(--white-color);
}

#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.inner {
    width: 94%;
    max-width: 1630px;
    margin: 0 auto;
    position: relative;
}

#main {
    padding-top: 80px;
}

/* ------------------------------------------------------
Contents
------------------------------------------------------ */
.en {
    font-family: var(--en-font);
}

.h3title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.h3title span.en {
    display: block;
    font-size: 100px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: var(--blue-color);
    margin-bottom: 13px;
}

.btn_primary {
    width: 100%;
    max-width: 250px;
    height: 70px;
}

.btn_primary a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    border-radius: 35px;
    border: 1px solid var(--blue-color);
    padding: 0 5px 0 23px;
}

.btn_primary .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-color);
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
}

.btn_primary .icon::before,
.btn_primary .icon::after {
    position: absolute;
    content: '';
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
}

.btn_primary .icon::after {
    transform: translate(-70%, -50%);
    opacity: 0;
}

.btn_primary a.wht {
    color: var(--blue-color);
    background: var(--white-color);
}

@keyframes arrow_animation1 {
    0% {
        transform: translate3d(-50%, -50%, 0);
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        transform: translate3d(5px, -50%, 0);
        opacity: 0;
    }
}

@keyframes arrow_animation2 {
    0% {
        transform: translate3d(-70%, -50%, 0);
        opacity: 0;
    }

    100% {
        transform: translate3d(-50%, -50%, 0);
        opacity: 1;
    }
}

.btn_second {
    width: 100%;
    max-width: 260px;
    height: 60px;
}

.btn_second a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--blue-color);
    background: var(--white-color);
    border-radius: 30px;
    border: 2px solid var(--white-color);
    transition: all .3s ease;
}

/*
.effect {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.effect.is-active {
    opacity: 1;
    transform: translateY(0);
}
*/
.animate {
    opacity: 0;
}

.is-animated {
    opacity: 1;
}

.animate .char {
    display: inline-block;
    opacity: 0;
    transform: scale(1.3) translate(8px, 0px);
    will-change: transform, opacity;
    transition: all .5s cubic-bezier(.15, 0, .25, 1);
    transition-delay: calc(.03s * var(--char-index));
}

.is-animated .char {
    opacity: 1;
    transform: scale(1) translateX(0);
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    background: var(--white-color);
    padding: 0 1%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#header #top a {
    display: block;
    line-height: 0;
}

#header #toggle-menu {
    display: none;
}

#header .menu {
    display: flex;
    justify-content: flex-end;
    gap: 37px;
    flex: 1;
}

#header .gnavi {
    width: 100%;
    max-width: 878px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

#header .gnavi li a {
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    position: relative;
}

#header .gnavi li a::before {
    position: absolute;
    content: '';
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

#header .gnavi li:last-child {
    display: none;
}

#header .h_contact {
    width: 100%;
    max-width: 170px;
    height: 60px;
}

#header .h_contact a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#header .h_contact a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 1) 100%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: -1;
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100%;
    height: calc(100vh - 80px);
    height: calc((var(--vh, 1vh) * 100) - 80px);
    display: flex;
    align-items: flex-end;
}

#idx_mainvisual .idx_mv_gallery {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

#idx_mainvisual h2 {
    font-size: 140px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.357;
    color: var(--white-color);
    white-space: nowrap;
    position: relative;
    left: 118px;
}

#idx_mainvisual .mv_slider {
    width: 100%;
    height: 100%;
    border-top-right-radius: 48px;
    border-bottom-right-radius: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#idx_mainvisual .mv_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 2;
}

#idx_mainvisual .mv_slider .swiper-slide .item {
    width: 100%;
    height: 100%;
    transform: scale(1.3) translateX(-50px);
    overflow: hidden;
}

#idx_mainvisual .mv_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_mainvisual .mv_slider .swiper-slide-active .item,
#idx_mainvisual .mv_slider .swiper-slide-duplicate-active .item,
#idx_mainvisual .mv_slider .swiper-slide-prev .item {
    animation: rtl_animation 8s linear 0s 1 normal both;
}

@keyframes rtl_animation {
    0% {
        transform: scale(1.3) translateX(-50px);
    }

    100% {
        transform: scale(1.3) translateX(0);
    }
}

#idx_mainvisual .idx_mv_component {
    width: 50%;
    height: 72vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: var(--blue-color);
    margin-bottom: 62px;
    overflow: hidden;
}

#idx_mainvisual .idx_mv_component .mv_frame {
    width: 100%;
}

#idx_mainvisual .mv_txt {
    font-size: 40px;
    font-weight: 500;
    line-height: 2;
    color: var(--white-color);
    text-align: center;
   /*margin-bottom: 17.158vh;*/
    margin-bottom: 2.158vh;
}
#idx_mainvisual p.mv_sub_txt {
	font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 400;
    line-height: 1.6;    
    color: var(--white-color);
    text-align: center;
    margin-bottom: 10.158vh;
    text-shadow: 0 0 10px rgba(0,0,0,0.5); 
}
#idx_mainvisual .mv_contact {
    width: 100%;
    max-width: 480px;
    height: 240px;
    margin: 0 auto;
}

#idx_mainvisual .mv_contact a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 34px;
    position: relative;
    z-index: 1;
}

#idx_mainvisual .mv_contact a::before {
    position: absolute;
    content: '';
    background: #eaf4f9;
    width: 100%;
    height: 480px;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}

#idx_mainvisual .mv_contact a::after {
    position: absolute;
    content: '';
    background: url(../images/top/mv_contact.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 344px;
    height: 85px;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#idx_mainvisual .mv_contact dl {
    margin-bottom: 16px;
}

#idx_mainvisual .mv_contact dl dt {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    margin-bottom: 13px;
    transition: all .3s ease;
}

#idx_mainvisual .mv_contact dl dd {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 20px;
    padding: 6px 26px 7px;
    transition: all .3s ease;
}

#idx_mainvisual .mv_contact .mv_phone {
    font-size: 32px;
    letter-spacing: 0.05em;
    color: var(--blue-color);
    transition: all .3s ease;
}

/* ------------------------------------------------------
idx_intro
------------------------------------------------------ */
#idx_intro {
    padding-top: 84px;
    position: relative;
    z-index: 1;
}

#idx_intro .inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#idx_intro .idx_intro_title {
    width: 50%;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 2;
    color: var(--blue-color);
}

#idx_intro .idx_intro_txt {
    width: 50%;
    line-height: 2.5;
}

#idx_intro .idx_intro_gallery {
    width: 100%;
    height: 40vw;
    background: var(--blue-color);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    margin: 89px 0 -313px 145px;
    position: relative;
    overflow: hidden;
}

#idx_intro .idx_intro_gallery .gallery_list {
    display: flex;
    gap: 73px;
    position: absolute;
    top: -50%;
    left: 0;
    transform: rotate(-16deg)
}

#idx_intro .idx_intro_gallery .gallery_item {
    width: 24vw;
    /*    max-width: 456px;*/
}

#idx_intro .idx_intro_gallery .gallery_item:nth-child(even) {
    margin-top: 180px;
}

#idx_intro .idx_intro_gallery .gallery_item li {
    /*    width: 100%;*/
    height: 24vw;
    border-radius: 16px;
    margin-bottom: 73px;
    overflow: hidden;
}

#idx_intro .idx_intro_gallery .gallery_item li:last-child {
    margin-bottom: 0;
}

#idx_intro .idx_intro_gallery .gallery_item li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------
idx_bynumbers
------------------------------------------------------ */
#idx_bynumbers {
    padding: 441px 0 128px;
    position: relative;
}

#idx_bynumbers::before,
#idx_bynumbers::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#idx_bynumbers::before {
    background: linear-gradient(45deg, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
}

#idx_bynumbers::after {
    background: url(../images/top/idx_bynumbers_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .3;
    z-index: -1;
}

#idx_bynumbers .inner {
    max-width: 1200px;
}

#idx_bynumbers .idx_bynumbers_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 31px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item {
    width: calc((100% - 40px) / 2);
    min-height: 300px;
    display: flex;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item:not(.card_special) {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 35px;
    overflow: hidden;
}

#idx_bynumbers .idx_bynumbers_list .card_special {
    flex-direction: column;
    justify-content: center;
    color: var(--white-color);
}

#idx_bynumbers .idx_bynumbers_list .card_special h3 {
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 0.15em;
}

#idx_bynumbers .idx_bynumbers_list .card_special .card_special_txt {
    font-size: 34px;
    font-weight: 700;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .layer {
    width: 50%;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .layer:first-child {
    background-color: var(--white-color);
    padding-top: 16px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .layer:last-child {
    padding: 31px 0;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item h4 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    text-align: center;
    margin-bottom: 46px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_record {
    text-align: center;
    position: relative;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_record::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item:nth-child(2) .item_record::before {
    background-image: url(../images/top/item_record_img01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13.733vw;
    max-width: 206px;
    height: 13.733vw;
    max-height: 206px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item:nth-child(3) .item_record::before {
    background-image: url(../images/top/item_record_img02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13.333vw;
    max-width: 200px;
    height: 13.4vw;
    max-height: 201px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item:nth-child(4) .item_record::before {
    background-color: #eaf4f9;
    width: 13.333vw;
    max-width: 200px;
    height: 13.333vw;
    max-height: 200px;
    border-radius: 50%;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_no {
    font-size: 50px;
    color: var(--blue-color);
    padding-left: 25px;
    position: relative;
    z-index: 1;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_no span.en {
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_info {
    text-align: center;
    margin-bottom: 21px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_info dt {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    background: var(--white-color);
    border-radius: 4px;
    padding: 0 4px;
    margin-bottom: 4px;
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .item_info dd {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-color);
}

#idx_bynumbers .idx_bynumbers_list .bynumbers_item .icon {
    width: 10.4vw;
    max-width: 156px;
    text-align: center;
    margin: 0 auto;
}

/* ------------------------------------------------------
idx_features
------------------------------------------------------ */
#idx_features {
    padding-top: 100px;
}

#idx_features .inner {
    max-width: 1200px;
}

#idx_features .h3title {
    text-align: center;
    margin-bottom: 42px;
}

#idx_features .h3title span.en {
    margin-bottom: 3px;
}

#idx_features .idx_property_txt {
    line-height: 2.5;
    text-align: center;
}

#idx_features .idx_features_flow {
    background-color: #eaf4f9;
    padding: 125px 0 121px;
    margin-top: 54px;
}

#idx_features .idx_features_flow .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#idx_features .idx_features_component {
    width: 100%;
    max-width: 485px;
}

#idx_features .idx_features_component .component_txt {
    line-height: 2.5;
    text-align: justify;
    margin-bottom: 53px;
}

#idx_features .idx_features_component .component_txt p:not(:last-child) {
    margin-bottom: 40px;
}

#idx_features .btn_primary {
    margin-left: auto;
}

/* ------------------------------------------------------
idx_property
------------------------------------------------------ */
#idx_property {
    padding: 98px 0 128px;
}

#idx_property .inner {
    max-width: 1200px;
}

#idx_property .h3title {
    text-align: center;
    margin-bottom: 44px;
}

#idx_property .h3title span.en {
    margin-bottom: 22px;
}

#idx_property .idx_property_txt {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 50px;
}

#idx_property .idx_property_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 64px;
}

#idx_property .idx_property_list .property_item {
    width: calc((100% - 40px) / 2);
    text-align: center;
    background-color: #eaf4f9;
    border-radius: 12px;
    padding: 0 20px 40px;
    overflow: hidden;
}

#idx_property .property_item figure {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--blue-color);
    padding: 11px 0 0;
    margin: -36px auto 14px;
}

#idx_property .property_item h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    margin-bottom: 12px;
}

#idx_property .property_item .item_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2;
}

#idx_property .btn_primary {
    margin: 0 auto;
}

/* ------------------------------------------------------
idx_cover
------------------------------------------------------ */
#idx_cover {
    width: 100%;
    height: 49.383vw;
    max-height: 400px;
    position: relative;
}

#idx_cover::after {
    position: absolute;
    content: '';
    background: url(../images/top/idx_cover_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 65.565vw;
    max-width: 754px;
    height: 43.565vw;
    max-height: 501px;
    top: -17px;
    right: -62px;
}

#idx_cover .catcher_layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#idx_cover .catcher_layer .image_cover {
    width: 100%;
    height: 120%;
    position: relative;
}

#idx_cover .catcher_layer .image_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
}

/* ------------------------------------------------------
idx_service
------------------------------------------------------ */
#idx_service {
    padding: 104px 0 126px;
}

#idx_service .h3title {
    text-align: center;
    margin-bottom: 46px;
}

#idx_service .h3title span.en {
    margin-bottom: 0;
}

#idx_service .idx_service_txt {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 52px;
}

#idx_service .idx_service_list {
    color: var(--white-color);
    margin-bottom: 80px;
}

#idx_service .service_item:not(:last-child) {
    margin-bottom: 95px;
}

#idx_service .service_item .idx_service_headline {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 70px 0 55px 80px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

#idx_service .service_item .idx_service_headline::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 26.316vw;
    max-height: 500px;
    background: var(--blue-color);
    border-top-left-radius: 96px;
    top: 0;
    left: 0;
    z-index: -1;
}

#idx_service .service_item .idx_service_headline h4 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

#idx_service .service_item .idx_service_headline .item_txt {
    line-height: 2.5;
}

#idx_service .service_item .idx_service_connect {
    width: 100%;
    height: 26.316vw;
    max-height: 500px;
}

#idx_service .service_item .idx_service_connect a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    color: var(--white-color);
    border-radius: 96px 16px 96px 16px;
    padding: 96px 69px 71px 86px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#idx_service .service_item .idx_service_connect a::before,
#idx_service .service_item .idx_service_connect a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#idx_service .service_item .idx_service_connect a::before {
    background: rgba(56, 92, 176, 0.3);
    mix-blend-mode: multiply;
    z-index: -1;
}

#idx_service .service_item .idx_service_connect a::after {
    background: url(../images/top/idx_service_connect_bg.png);
    background-repeat: repeat;
    z-index: -2;
    opacity: .6;
}

#idx_service .service_item .idx_service_connect .tag_no {
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0;
}

#idx_service .service_item .idx_service_connect h5 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-align: right;
}

#idx_service .service_item .idx_service_connect figure {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

#idx_service .service_item .idx_service_connect figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#idx_service .service_item:nth-child(even) .idx_service_headline {
    flex-direction: row-reverse;
    padding-right: 80px;
    padding-left: 0;
}

#idx_service .service_item:nth-child(even) .idx_service_headline::before {
    border-top-left-radius: 0;
    border-top-right-radius: 96px;
    right: 0;
    left: auto;
}

#idx_service .service_item:nth-child(even) .idx_service_connect a {
    border-radius: 16px 96px 16px 96px;
    padding-left: 69px;
    padding-right: 86px;
}

#idx_service .service_item:nth-child(even) .idx_service_connect .tag_no {
    text-align: right;
}

#idx_service .service_item:nth-child(even) .idx_service_connect h5 {
    text-align: left;
}

#idx_service .btn_primary {
    margin: 0 auto 93px;
}

#idx_service .idx_service_frame {
    width: 100%;
    max-width: 1200px;
    height: 165px;
    margin: 0 auto;
}

#idx_service .idx_service_frame a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--blue-color);
    border-radius: 16px;
    border: 5px solid var(--blue-color);
    padding: 0 170px;
    position: relative;
    overflow: hidden;
}

#idx_service .idx_service_frame a::before,
#idx_service .idx_service_frame a::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    z-index: 1;
}

#idx_service .idx_service_frame a::before,
#idx_service .idx_service_frame a::after {
    background: url(../images/common/icon_arrow03.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 46px;
    height: 41px;
    right: 37px;
}

#idx_service .idx_service_frame a::after {
    right: 47px;
    opacity: 0;
}

@keyframes arrow_animation1_service {
    0% {
        right: 37px;
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        right: 27px;
        opacity: 0;
    }
}

@keyframes arrow_animation2_service {
    0% {
        right: 47px;
        opacity: 0;
    }

    100% {
        right: 37px;
        opacity: 1;
    }
}

#idx_service .idx_service_frame a .frame_txt {
    letter-spacing: 0.15em;
    line-height: 1.67;
}

#idx_service .idx_service_frame a .frame_txt span {
    display: inline-block;
    position: relative;
}

#idx_service .idx_service_frame a .frame_txt span::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
    top: -4px;
    left: 42%;
    transform: translateX(-50%);
}

#idx_service .idx_service_frame a .icon {
    width: 240px;
    height: 240px;
    background-color: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -83px;
    transform: translateY(-50%);
}

/* ------------------------------------------------------
idx_faq
------------------------------------------------------ */
#idx_faq {
    color: var(--white-color);
    padding: 103px 0 50px;
    position: relative;
}

#idx_faq::before,
#idx_faq::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#idx_faq::before {
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
}

#idx_faq::after {
    background: url(../images/top/idx_faq_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .3;
    z-index: -1;
}

#idx_faq .inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

#idx_faq .idx_faq_gallery {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding-top: 24px;
}

#idx_faq .idx_faq_gallery figure {
    width: 18.667vw;
    max-width: 280px;
    border-radius: 16px;
    overflow: hidden;
}

#idx_faq .idx_faq_gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_faq .idx_faq_gallery figure:last-child {
    margin: 140px 0 -90px 0;
}

#idx_faq .idx_faq_component {
    width: 100%;
    max-width: 505px;
}

#idx_faq .h3title {
    margin-bottom: 46px;
}

#idx_faq .h3title span.en {
    color: var(--white-color);
}

#idx_faq .idx_faq_txt {
    line-height: 2.5;
    margin-bottom: 52px;
}

#idx_faq .idx_faq_link {
    margin-bottom: 31px;
}

#idx_faq .idx_faq_link li {
    max-width: 100%;
    height: 95px;
}

#idx_faq .idx_faq_link li a {
    font-size: 22px;
    color: var(--white-color);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-color: var(--white-color);
    padding-left: 9px;
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
}

#idx_faq .idx_faq_link li a .icon {
    background: var(--white-color);
}

#idx_faq .idx_faq_link li a .icon::before,
#idx_faq .idx_faq_link li a .icon::after {
    background-image: url(../images/common/icon_arrow02.png);
}

#idx_faq .idx_faq_link li:last-child a {
    border-top: 0;
}

#idx_faq .btn_primary {
    margin-left: auto;
}

/* ------------------------------------------------------
idx_blog
------------------------------------------------------ */
#idx_blog {
    padding: 106px 0 265px;
    position: relative;
}

#idx_blog::after {
    position: absolute;
    content: '';
    background: url(../images/top/idx_blog_bg.png);
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 288px;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#idx_blog .h3title {
    margin-bottom: 44px;
}

#idx_blog .idx_blog_txt {
    line-height: 2.5;
    margin-bottom: 54px;
}

#idx_blog .idx_blog_slider {
    display: flex;
    margin-bottom: 77px;
}

#idx_blog .swiper-slide {
    max-width: 350px;
    margin-right: 20px;
}

#idx_blog .swiper-slide a {
    display: block;
    border-radius: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
}

#idx_blog .swiper-slide figure {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

#idx_blog .swiper-slide figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#idx_blog .swiper-slide .idx_blog_component {
    padding: 20px 20px 12px;
}

#idx_blog .swiper-slide .idx_blog_date {
    font-family: var(--Poppins-font);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-bottom: 3px;
}

#idx_blog .swiper-slide .group_cate {
    margin-bottom: 10px;
}

#idx_blog .swiper-slide .group_cate span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 12px;
    padding: 1px 10px 2px;
    margin: 0 5px 5px 0;
}

#idx_blog .swiper-slide .idx_blog_title {
    font-size: 18px;
    line-height: 1.79;
}

#idx_blog .idx_blog_control {
    width: 100%;
    max-width: 215px;
    flex-shrink: 0;
    position: relative;
}

#idx_blog .idx_blog_control::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 100%;
    background: var(--white-color);
    top: 0;
    right: 0;
    z-index: 2;
}

#idx_blog .idx_blog_control .swiper-button-next,
#idx_blog .idx_blog_control .swiper-button-prev {
    width: 150px;
    height: 150px;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #000;
    margin: 0 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

#idx_blog .idx_blog_control .swiper-button-next {
    margin-bottom: 15px;
}

#idx_blog .idx_blog_control .swiper-button-next::before,
#idx_blog .idx_blog_control .swiper-button-prev::before {
    position: relative;
    content: '';
    background-image: url(../images/common/blog_next.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 42px;
    height: 36px;
    margin-bottom: 12px;
}

#idx_blog .idx_blog_control .swiper-button-next::after,
#idx_blog .idx_blog_control .swiper-button-prev::after {
    position: relative;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--blue-color);
}

#idx_blog .idx_blog_control .swiper-button-next::after {
    content: 'Next';
}

#idx_blog .idx_blog_control .swiper-button-prev::before {
    transform: rotate(-180deg);
}

#idx_blog .idx_blog_control .swiper-button-prev::after {
    content: 'Prev';
}

#idx_blog .idx_blog_control .swiper-pagination {
    width: 100%;
    max-width: 150px;
    margin-top: 59px;
    position: relative;
}

#idx_blog .idx_blog_control .swiper-pagination-bullet {
    background: #eee;
    margin: 0 3px;
    opacity: 1;
}

#idx_blog .idx_blog_control .swiper-pagination-bullet-active {
    background: var(--blue-color);
}

#idx_blog .btn_primary {
    margin: 0 auto;
}

/* ------------------------------------------------------
idx_ourcompany
------------------------------------------------------ */
#idx_ourcompany {
    color: var(--white-color);
    padding: 14px 0 128px;
    position: relative;
    z-index: 1;
}

#idx_ourcompany .inner {
    max-width: 1200px;
    z-index: 1;
}

#idx_ourcompany .h3title {
    margin-bottom: 45px;
}

#idx_ourcompany .h3title span.en {
    color: var(--white-color);
    margin-bottom: 22px;
}

#idx_ourcompany .idx_ourcompany_title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 32px;
}

#idx_ourcompany .idx_ourcompany_txt {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 50px;
}

#idx_ourcompany .btn_primary {
    margin: 0 auto;
}

#idx_ourcompany .idx_ourcompany_cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#idx_ourcompany .idx_ourcompany_cover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #385cb0 20%, rgba(56, 92, 176, 0.2) 100%);
    top: 0;
    left: 0;
    z-index: 1;
}

#idx_ourcompany .idx_ourcompany_cover .image_cover {
    width: 100%;
    height: 120%;
    position: relative;
}

#idx_ourcompany .idx_ourcompany_cover .image_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
}

/* -------------------------------------------
  Contact Section
------------------------------------------- */
.c-contact {
    padding: 120px 0;
}

.c-contact__inner {
    width: 94%;
    max-width: 1630px;
    height: 540px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(rgba(234, 243, 250, 0.5), rgba(234, 243, 250, 0.5)), url(../images/footer/f_contact_bg.png) no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
}

.c-contact__content {
    width: 100%;
    z-index: 2;
    padding: 0 40px;
}

.c-contact__title {
    font-size: 50px;
    color: #385cb0;
    font-weight: 600;
    margin-bottom: 10px;
}

.c-contact__text {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
}
.c-contact__text span {
 font-size: clamp(14px, 1.05vw, 20px);
 background: #385cb0;
 color: #fff;
 padding: 3px 20px 4px;
 border-radius: 8px;
}
.c-contact__btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 3;
}

.c-contact__btn {
    background: #fff;
    border-radius: 16px;
    width: 48%;
    max-width: 575px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.c-contact__btn:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.c-contact__btn:active {
    transform: translateY(5px);
    box-shadow: none;
    /* 影を消す */
    transition: all 0.1s;
    /* 戻る時は早く */
}

.c-contact__btn--tel .tel_number img {
    height: 38px;
}

.c-contact__btn--tel {
    text-align: center;
    display: flex;
    justify-content: center;
}

.c-contact__btn--tel .label {
    font-size: 22px;
    color: #333;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.c-contact__btn--tel .tel_number {
    font-size: 45px;
    color: #385cb0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.c-contact__btn--tel .hours {
    font-size: 16px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.c-contact__btn--form .label {
    font-size: 35px;
    color: #385cb0;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.c-contact .btn_primary {
    width: initial;
    max-width: initial;
    height: auto;
}

.c-contact .btn_primary a {
    width: auto;
    height: auto;
    border-radius: 0;
    border: 0;
    padding: 0;
}

.c-contact .btn_primary .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-color, #385cb0);
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    display: block;
}

.c-contact__btn:hover .c-contact .btn_primary .icon {
    background: var(--green-color, #004e29);
}

.c-contact .btn_primary .icon::before,
.c-contact .btn_primary .icon::after {
    position: absolute;
    content: '';
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
}

.c-contact .btn_primary .icon::after {
    transform: translate(-150%, -50%);
    opacity: 0;
}

.c-contact__btn:hover .icon::before {
    transform: translate(150%, -50%);
    opacity: 0;
}

.c-contact__btn:hover .icon::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.c-contact__btn:hover .icon {
    background: var(--green-color);
}

/*.c-contact__bg-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 104px;
  color: rgba(56, 92, 176, 0.2);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.2em;
  line-height: 80px;
}*/
.c-contact__bg-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 104px;
    color: rgba(56, 92, 176, 0.2);
    letter-spacing: 0.2em;
    white-space: nowrap;
    line-height: 80px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: flex;
}

.c-contact__bg-text span {
    display: inline-block;
    padding-right: 50px;
    animation: infinity-scroll-left 50s linear infinite;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .c-contact__bg-text {
        font-size: 60px;
    }

    .c-contact__bg-text span {
        animation-duration: 30s;
    }
}

/* ------------------------------------------------------
Footer
------------------------------------------------------ */
#footer .box_contact {
    padding: 127px 0;
}

#footer .box_contact .box_contact_frame {
    width: 94%;
    max-width: 1630px;
    height: 380px;
    margin: 0 auto;
    position: relative;
}

#footer .box_contact .box_contact_frame::after {
    position: absolute;
    content: '';
    background-image: url(../images/footer/box_contact_logo.png);
    background-repeat: repeat-x;
    background-size: 1568px 100%;
    width: 100%;
    height: 73px;
    bottom: 42px;
    left: 0;
    transition: all 1s linear;
    animation: box_contact_frame 40s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes box_contact_frame {
    0% {
        background-position: 1568px 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes box_contact_frame_sp {
    0% {
        background-position: 967px 0;
    }

    100% {
        background-position: 0 0;
    }
}

#footer .box_contact .box_contact_frame a {
    width: 100%;
    height: 100%;
    display: flex;
    color: var(--white-color);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#footer .box_contact .box_contact_frame a::before,
#footer .box_contact .box_contact_frame a::after {
    position: absolute;
    content: '';
    width: 100%;
    background: rgba(56, 92, 176, 0.5);
}

#footer .box_contact .box_contact_frame a::before {
    height: 100%;
    top: 0;
    left: 0;
}

#footer .box_contact .box_contact_frame a::after {
    height: 700px;
    top: 50%;
    left: -51%;
    transform: translateY(-50%);
    border-radius: 350px;
}

#footer .box_contact .box_contact_frame dl {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#footer .box_contact .box_contact_frame dl dt {
    width: 50%;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
}

#footer .box_contact .box_contact_frame dl dd {
    width: 50%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    letter-spacing: 0.15em;
    line-height: 1.67;
    text-align: justify;
	flex-direction: column;
}
#footer .box_contact .box_contact_frame dl dd span {
    font-size: 16px;
    display: inline-block;
    background: rgb(255 255 255 / 90%);
    max-width: 600px;
    color: #385cb0;
    padding: 6px 15px;
    border-radius: 5px;
    margin-top: 15px;
}
#footer .box_contact .box_contact_frame figure {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#footer .box_contact .box_contact_frame figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#footer .box_info {
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

#footer .box_info .box_info_list {
    display: flex;
    gap: 35px;
}

#footer .box_info .box_info_list li {
    width: calc((100% - 70px) / 3);
    height: 15.662vw;
    max-height: 200px;
}

#footer .box_info .box_info_list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white-color);
    border-radius: 16px;
    padding: 38px 32px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#footer .box_info .box_info_list li a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(66, 116, 198, 0.2) 20%, #29abe2 100%);*/
	background: linear-gradient(to bottom, rgba(66, 116, 198, 0.2) 20%, rgb(43 59 89 / 60%) 100%);
    top: 0;
    left: 0;
    transition: all .35s ease;
}

#footer .box_info .box_info_list li .box_info_title {
    font-weight: 500;
    position: relative;
}

#footer .box_info .box_info_list li .box_info_title span {
    display: block;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 11px;
}

#footer .box_info .box_info_list li figure {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#footer .box_info .box_info_list li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#footer .footer_info .f_logo a {
    display: block;
    width: 100%;
    max-width: 400px;
}

#footer .footer_info {
    color: var(--white-color);
    background: var(--blue-color);
    padding: 187px 0 0;
    position: relative;
    z-index: 1;
}

#footer .footer_info::before {
    position: absolute;
    content: '';
    background-image: url(../images/footer/footer_info_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    width: 100%;
    height: 817px;
    bottom: 0;
    left: 50%;
    z-index: -1;
    pointer-events: none;
}

#footer .footer_info .f_logo {
    border-bottom: 1px solid var(--white-color);
    padding-bottom: 16px;
    margin-bottom: 14px;
}

#footer .footer_info .f_address {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-bottom: 29px;
}

#footer .footer_info .footer_wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

#footer .footer_info .footer_connect {
    width: 100%;
    flex: 1;
}

#footer .footer_info .footer_connect dl {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 15px;
}

#footer .footer_info .footer_connect dl:last-child {
    margin-bottom: 0;
}

#footer .footer_info .footer_connect dl dt {
    width: 100px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    text-align: center;
    background: var(--white-color);
    border-radius: 17px;
}

#footer .footer_info .footer_connect dl dd {
    width: 100%;
    letter-spacing: 0.15em;
    padding-top: 1px;
    padding-left: 14px;
    flex: 1;
}

#footer .footer_info .footer_connect dl dd span {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #b0daff;
    margin-left: 4px;
}

#footer .footer_info .footer_link {
    width: 62.941vw;
    max-width: 1070px;
    display: flex;
    justify-content: space-between;
    gap: 37px;
}

#footer .footer_info .link_connect {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-wrap: wrap;
    border-right: 1px solid var(--white-color);
    flex: 1;
}

#footer .footer_info .link_connect li {
    width: calc(100% / 2);
    border-left: 1px solid var(--white-color);
    padding-left: 50px;
    padding-bottom: 16px;
}

#footer .footer_info .link_connect li a {
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    position: relative;
}

#footer .footer_info .link_connect li a::before {
    position: absolute;
    content: '';
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

#footer .footer_info .footer_link dl {
    width: 100%;
    max-width: 280px;
}

#footer .footer_info .footer_link dl dt {
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 23px;
}

#footer .footer_info .footer_link dl dd .f_special_btn {
    width: 100%;
    height: 54px;
    margin-bottom: 23px;
}

#footer .footer_info .footer_link dl dd .f_special_btn:last-child {
    margin-bottom: 0;
}

#footer .footer_info .footer_link dl dd .f_special_btn a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue-color);
    background: var(--white-color);
    border-radius: 8px;
    padding: 0 15px;
    transition: all .3s ease;
}

#footer .footer_info .footer_link dl dd .f_special_btn a .icon {
    width: 19px;
    height: 19px;
    display: block;
    position: relative;
    transition: all .3s ease;
}

#footer .footer_info .footer_link dl dd .f_special_btn a .icon .cls-1 {
    fill: none;
    stroke: var(--blue-color);
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: all .3s ease;
}

#footer address {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.12em;
    font-style: normal;
    border-top: 1px solid var(--white-color);
}

.bnr_fixed {
    width: 100%;
    max-width: 250px;
    height: 170px;
    display: flex;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    position: fixed;
    bottom: 40vh;
    right: 0;
    z-index: 99;
    transform: translateX(100%);
    transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    cursor: pointer;
}

.bnr_fixed::before,
.bnr_fixed::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.bnr_fixed::before {
    width: 32px;
    height: 32px;
    background: var(--white-color);
    border-radius: 50%;
    left: -16px;
}

.bnr_fixed::after {
    background-image: url(../images/footer/bnr_icon_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 8px;
    height: 9px;
    left: 3px;
}

.bnr_fixed.is-active {
    transform: translateX(170px);
}

.bnr_fixed .bnr_title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: linear-gradient(30deg, #385cb0 0%, rgba(0, 78, 41, 0.5) 100%);
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding: 0 0;
    margin-bottom: 0;
    position: relative;
}

.bnr_fixed .bnr_title::before {
    position: absolute;
    content: '';
    background: linear-gradient(30deg, #385cb0 0%, rgba(0, 78, 41, 1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: -1;
}

.bnr_fixed .bnr_title i {
    display: block;
    background-image: url(../images/footer/bnr_mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 21px;
    margin-top: 7px;
}

.bnr_fixed .bnr_btn {
    width: 100%;
    max-width: 170px;
    height: 100%;
}

.bnr_fixed .bnr_btn a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    background-color: var(--green-color);
}

.bnr_fixed .bnr_btn .bnr_txt {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 9px;
}

.bnr_fixed .bnr_btn .btn {
    width: 100%;
    max-width: 125px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--blue-color);
    border-radius: 25px;
    background: var(--white-color);
}
#footer .footer_info .footer_connect a {
    color: #fff;
}
/* MOZZILLA CSS */
@-moz-document url-prefix() {}

/* IE CSS */
@media screen\0 {}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
