@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.1em;
    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 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
}

#toTop::before {
    position: absolute;
    content: '';
    background-image: url(../images/common/totop_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 102px;
    bottom: 20px;
    left: 9px;
    z-index: -1;
    pointer-events: none;
}

#toTop .totop_title {
    width: 71px;
    height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--blue-color);
    border-radius: 50%;
    background: var(--white-color);
    border: 1px solid var(--blue-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42;
    transition: all .3s ease;
    overflow: hidden;
}

@keyframes yurayura {

    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0);
    }
}

#toTop.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#toTop svg .cls-1,
#toTop svg .cls-2 {
    fill: none;
    stroke: var(--blue-color);
    stroke-width: 2px;
    transition: all .3s ease;
}

#toTop svg .cls-1 {
    stroke-linejoin: round;
}

#toTop svg .cls-2 {
    stroke-miterlimit: 10;
}

.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: #46403b;
    --white-color: #fff;
    --blue-color: #0bc7db;
    --main-font: "Noto Sans JP", sans-serif;
    --ZenMaruGothic-font: "Zen Maru Gothic", 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: 1200px;
    margin: 0 auto;
    position: relative;
}

#main {
    padding-top: 120px;
}

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

.h3title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--blue-color);
}

.h3title span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-left: 5px;
    margin-bottom: 5px;
}

.btn_primary a {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--blue-color);
}

.btn_primary .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue-color);
    border: 2px solid var(--blue-color);
    margin-left: 28px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.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: 19px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
}

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

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

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

.btn_primary a.wht .icon::before,
.btn_primary a.wht .icon::after {
    background-image: url(../images/common/icon_arrow02.png);
}

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

    70% {
        opacity: 0;
    }

    100% {
        transform: translate3d(20%, -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);
}

.decor_item {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    background: var(--white-color);
    padding-left: 60px;
    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;
    padding-right: 208px;
    flex: 1;
}

#header .gnavi {
    width: 100%;
    max-width: 890px;
    display: flex;
    justify-content: space-between;
}

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

#header .gnavi li a {
    display: block;
    font-family: var(--ZenMaruGothic-font);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all .3s ease;
}

#header .gnavi li.is-active a {
    color: var(--blue-color);
}

#header .gnavi li a span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--blue-color);
    margin-top: 5px;
}

#header .h_contact {
    width: 150px;
    height: 150px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

#header .h_contact a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--ZenMaruGothic-font);
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    background: linear-gradient(to right, #0bc7db 0%, #0bc7db 100%);
    position: relative;
    z-index: 1;
}

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

#header .h_contact a i {
    display: block;
    background-image: url(../images/header/icon_mail.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 39px;
    height: 29px;
    margin-bottom: 21px;
}

#header .h_contact a span {
    letter-spacing: 0.1em;
}

#header .h_contact a span > span {
    font-size: 12px;
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100%;
    height: 48.25vw;
    max-height: 579px;
    display: flex;
    align-items: center;
    padding-left: 150px;
    margin-bottom: -138px;
    position: relative;
    z-index: 1;
}

#idx_mainvisual .idx_mainvisual_component {
    position: relative;
    z-index: 3;
}

#idx_mainvisual h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--blue-color);
}

#idx_mainvisual h2 span {
    display: inline-block;
    letter-spacing: 0.1em;
    background: var(--white-color);
    border-radius: 4px;
    padding: 0 19px 2px;
    margin-bottom: 19px;
}

#idx_mainvisual h2 span:last-child {
    margin-bottom: 0;
}

#idx_mainvisual .idx_mainvisual_txt {
    font-weight: 500;
    line-height: 2.43;
    margin-bottom: 99px;
}

#idx_mainvisual .mv_slider {
    width: 83.33vw;
    height: 100%;
    background: var(--white-color);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#idx_mainvisual .mv_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0bc7db 0%, #ffffff 100%);
    top: 0;
    left: 0;
    opacity: .1;
    z-index: 2;
}

#idx_mainvisual .mv_slider .swiper-slide .item {
    width: 100%;
    height: 100%;
    transform: scale(1.5) 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.5) translateX(50px);
    }

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

#idx_mainvisual h2,
#idx_mainvisual .idx_mainvisual_txt,
#idx_mainvisual .mv_slider {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#idx_mainvisual.active h2,
#idx_mainvisual.active .idx_mainvisual_txt,
#idx_mainvisual.active .mv_slider {
    opacity: 1;
    transform: translateY(0);
}

#idx_mainvisual.active h2 {
    transition-delay: .3s;
}

#idx_mainvisual.active .idx_mainvisual_txt {
    transition-delay: .5s;
}

/* ------------------------------------------------------
idx_about
------------------------------------------------------ */
#idx_about {
    color: var(--white-color);
    background-image: url(../images/top/idx_about_bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 273px 0 456px;
    position: relative;
}

#idx_about .inner {
    z-index: 1;
}

#idx_about .h3title {
    font-size: 30px;
    font-weight: 400;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 54px;
}

#idx_about .h3title span {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 32px;
    margin-left: 0;
}

#idx_about .idx_about_txt {
    line-height: 2.8125;
    text-align: center;
    margin-bottom: 75px;
}

#idx_about .btn_primary {
    text-align: center;
}

#idx_about .idx_about_gallery {
    width: 100%;
    max-width: 1500px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 75px 0 95px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#idx_about .idx_about_gallery .gallery_item {
    position: relative;
}

#idx_about .idx_about_gallery .gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_about .idx_about_gallery .gallery_item .image01 {
    width: 20vw;
    max-width: 240px;
    height: 20vw;
    max-height: 240px;
    border-radius: 50%;
    overflow: hidden;
}

#idx_about .idx_about_gallery .gallery_item .image02 {
    width: 22.17vw;
    max-width: 266px;
    height: 22.17vw;
    max-height: 266px;
    border-radius: 50%;
    overflow: hidden;
}

#idx_about .idx_about_gallery .gallery_item::before {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}

#idx_about .idx_about_gallery .gallery_item:nth-child(1) {
    margin-top: 421px;
}

#idx_about .idx_about_gallery .gallery_item:nth-child(1)::before {
    background-image: url(../images/top/idx_about_decor01.png);
    width: 11.2vw;
    max-width: 140px;
    height: 17.12vw;
    max-height: 214px;
    top: -278px;
    left: 46px;
}

#idx_about .idx_about_gallery .gallery_item:nth-child(2) {
    margin-bottom: 194px;
}

#idx_about .idx_about_gallery .gallery_item:nth-child(2)::before {
    background-image: url(../images/top/idx_about_decor02.png);
    width: 9.28vw;
    max-width: 116px;
    height: 13.12vw;
    max-height: 164px;
    top: -177px;
    left: -10px;
}

.about_decor03 {
    width: 16.476vw;
    max-width: 173px;
    height: 20.952vw;
    max-height: 220px;
    bottom: 0;
    right: 150px;
}

/* ------------------------------------------------------
idx_service
------------------------------------------------------ */
#idx_service {
    background: #e4f7f9;
    padding: 100px 0 120px;
    position: relative;
}

#idx_service::before {
    position: absolute;
    content: '';
    pointer-events: none;
    background-image: url(../images/top/wave01.png);
    background-repeat: repeat-x;
    background-size: auto 189px;
    width: 100vw;
    height: 189px;
    top: -170px;
    left: 0;
}

#idx_service .idx_service_wrap {
    display: flex;
    justify-content: space-between;
    gap: 4.67vw;
    padding-right: 150px;
    margin-bottom: 170px;
    position: relative;
    z-index: 2;
}

#idx_service .idx_service_photo {
    width: 45.33vw;
    height: 38.67vw;
    position: relative;
}

#idx_service .idx_service_photo .photo_layer {
    width: 100%;
    height: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

#idx_service .idx_service_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_service .idx_service_component {
    width: 40vw;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#idx_service .idx_service_frame {
    position: relative;
    z-index: 2;
}

#idx_service .h3title {
    margin-bottom: 27px;
}

#idx_service .h3title span {
    margin-bottom: 2px;
}

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

#idx_service .btn_primary {
    text-align: right;
}

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

#idx_service .idx_service_list {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

#idx_service .idx_service_list li {
    width: calc((100% - 40px) / 3);
    max-width: 320px;
    background: var(--white-color);
    filter: drop-shadow(0 0 8px rgba(51, 51, 51, 0.3));
    padding: 1px 8px 44px;
    position: relative;
}

#idx_service .idx_service_list li::before {
    position: absolute;
    content: '';
    border-bottom: 120px solid var(--white-color);
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    width: 0;
    height: 0;
    left: 0;
    top: -120px;
}

#idx_service .idx_service_list li figure {
    width: 100%;
    max-width: 88px;
    margin: 0 auto 37px;
}

#idx_service .idx_service_list li figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#idx_service .idx_service_list h4 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #fbb03b;
    text-align: center;
}

.service_decor01 {
    width: 25.934vw;
    max-width: 236px;
    height: 18.462vw;
    max-height: 168px;
    bottom: -100px;
    right: -24px;
}

.service_decor02 {
    width: 25.882vw;
    max-width: 220px;
    height: 16.941vw;
    max-height: 144px;
    bottom: -100px;
    right: 27px;
    z-index: 3;
}

.service_decor03 {
    width: 51.75vw;
    max-width: 621px;
    height: 36.75vw;
    max-height: 441px;
    top: -100px;
    right: -226px;
}

.service_decor04 {
    width: 38.75vw;
    max-width: 465px;
    height: 27.75vw;
    max-height: 333px;
    bottom: 0;
    left: -233px;
}

.service_decor05 {
    width: 33.08vw;
    max-width: 397px;
    height: 23.5vw;
    max-height: 282px;
    bottom: 76px;
    right: -83px;
}

/* ------------------------------------------------------
idx_case
------------------------------------------------------ */
#idx_case {
    background: #e4f7f9;
    padding: 114px 0 61px;
    position: relative;
}

#idx_case::before {
    position: absolute;
    content: '';
    pointer-events: none;
    background: var(--blue-color);
    width: 100%;
    height: 100%;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    top: 0;
    left: 150px;
    z-index: 2;
}

#idx_case .idx_case_headline {
    width: 100%;
    display: flex;
    gap: 100px;
    color: var(--white-color);
    padding: 0 150px 0 250px;
    margin-bottom: 94px;
    position: relative;
    z-index: 2;
}

#idx_case .idx_case_headline .h3title {
    color: var(--white-color);
}

#idx_case .idx_case_headline .idx_case_txt {
    width: 100%;
    max-width: 860px;
    margin-top: -6px;
    line-height: 2.5;
    flex: 1;
}

#idx_case .idx_case_slider {
    width: 100%;
    padding: 0 150px 0 250px;
    position: relative;
    z-index: 2;
}

#idx_case .idx_case_slider .swiper-slide {
    width: 35.156vw;
    max-width: 360px;
    margin: 0 14px;
}

#idx_case .idx_case_slider .case_photo {
    width: 100%;
    height: 23.44vw;
    max-height: 240px;
    margin-bottom: 17px;
    position: relative;
    z-index: 1;
}

#idx_case .idx_case_slider .case_photo::before {
    position: absolute;
    content: '';
    background: rgba(66, 177, 183, 1);
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
    z-index: -1;
}

#idx_case .idx_case_slider .case_photo::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 10px solid var(--white-color);
    top: 0;
    left: 0;
}

#idx_case .idx_case_slider .case_photo .photo_item {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    overflow: hidden;
}

#idx_case .idx_case_slider .case_photo .photo_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#idx_case .idx_case_slider .case_title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.01em;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

#idx_case .idx_case_slider .swiper-slide:nth-child(odd) .case_photo {
    transform: rotate(-2deg);
}

#idx_case .idx_case_slider .swiper-slide:nth-child(even) .case_photo {
    transform: rotate(2deg);
}

#idx_case .idx_case_slider .group_direction {
    margin-top: 74px;
    margin-bottom: 59px;
    overflow: hidden;
}

#idx_case .idx_case_slider .swiper-scrollbar {
    background: var(--white-color);
    border-radius: 3px;
}

#idx_case .idx_case_slider .swiper-scrollbar-drag {
    background: #fbb03b;
    width: 200px;
    height: 5px;
    border-radius: 3px;
    transition: all .3s ease;
    cursor: pointer;
}

#idx_case .idx_case_slider .btn_primary {
    text-align: right;
    margin-bottom: 0;
}

#idx_case .animate .area_slider {
    opacity: 0;
    transform: translate3d(140px, 0, 0);
}

#idx_case .is-animated .area_slider {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.case_decor1 {
    width: 27.474vw;
    max-width: 211px;
    height: 23.828vw;
    max-height: 183px;
    bottom: -120px;
    left: 86px;
    z-index: 2;
}

/* ------------------------------------------------------
idx_blog
------------------------------------------------------ */
#idx_info {
    background: #e4f7f9;
    padding: 159px 0 141px;
    position: relative;
}

#idx_info .idx_info_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

#idx_info .idx_info_list li {
    width: 100%;
    max-width: 584px;
    position: relative;
    z-index: 1;
}

#idx_info .idx_info_list li::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(251, 176, 59, 0.4);
    border-radius: 10px;
    top: 8px;
    left: 8px;
    z-index: -1;
}

#idx_info .idx_info_list li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    background: var(--white-color);
    border: 2px solid #fbb03b;
    border-radius: 10px;
    padding: 20px 23px 17px;
    position: relative;
    transition: all .3s ease;
}

#idx_info .idx_info_list li figure {
    width: 15.625vw;
    max-width: 160px;
    height: 15.625vw;
    max-height: 160px;
    border-radius: 50%;
    overflow: hidden;
}

#idx_info .idx_info_list li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_info .idx_info_list li .idx_info_component {
    width: 100%;
    flex: 1;
    padding-top: 9px;
}

#idx_info .idx_info_list li h4 {
    font-size: 28px;
    font-weight: 500;
    color: #fbb03b;
    margin-bottom: 10px;
}

#idx_info .idx_info_list li .idx_info_txt {
    line-height: 2;
    margin-bottom: 11px;
}

#idx_info .idx_info_list li .text_link {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: right;
    color: #fbb03b;
}

.info_decor01 {
    width: 44.63vw;
    max-width: 457px;
    height: 31.64vw;
    max-height: 324px;
    top: 89px;
    left: -227px;
}

.info_decor02 {
    width: 36.04vw;
    max-width: 369px;
    height: 25.59vw;
    max-height: 262px;
    bottom: 0;
    right: -266px;
}

/* ------------------------------------------------------
idx_recruit
------------------------------------------------------ */
#idx_recruit {
    background: #e4f7f9;
    padding: 50px 0 0 150px;
    position: relative;
}

#idx_recruit::after {
    position: absolute;
    content: '';
    pointer-events: none;
    background-image: url(../images/top/wave01.png);
    background-repeat: repeat-x;
    background-size: auto 189px;
    width: 100vw;
    height: 189px;
    bottom: -158px;
    left: 0;
    transform: rotate(180deg);
    z-index: -1;
}

#idx_recruit .idx_recruit_wrap {
    display: flex;
}

#idx_recruit .idx_recruit_photo {
    width: calc(50% + 100px);
    height: 40vw;
    max-height: 760px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    margin-left: -100px;
    overflow: hidden;
}

#idx_recruit .idx_recruit_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_recruit .idx_recruit_component {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 51px;
    position: relative;
    z-index: 1;
}

#idx_recruit .idx_recruit_title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--blue-color);
}

#idx_recruit .idx_recruit_title span {
    display: inline-block;
    letter-spacing: 0.1em;
    background: var(--white-color);
    border-radius: 4px;
    padding: 0 19px 2px;
    margin-bottom: 19px;
}

#idx_recruit .idx_recruit_title span:last-child {
    margin-bottom: 0;
}

#idx_recruit .idx_recruit_frame {
    color: var(--white-color);
    padding: 65px 100px 50px 0;
    margin-bottom: -105px;
    position: relative;
    z-index: 1;
}

#idx_recruit .idx_recruit_frame::before {
    position: absolute;
    content: '';
    background: var(--blue-color);
    width: 100vw;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    top: 0;
    right: 0;
    z-index: -1;
}

#idx_recruit .h3title {
    color: var(--white-color);
    margin-bottom: 26px;
}

#idx_recruit .idx_recruit_txt {
    line-height: 2.5;
    text-align: justify;
    margin-bottom: 18px;
}

#idx_recruit .btn_primary {
    text-align: right;
}

.recruit_decor01 {
    width: 17.318vw;
    max-width: 133px;
    height: 27.865vw;
    max-height: 214px;
    top: 0;
    right: 61px;
}

.recruit_decor02 {
    width: 25.391vw;
    max-width: 260px;
    height: 19.434vw;
    max-height: 199px;
    bottom: -80px;
    right: -210px;
}

/* ------------------------------------------------------
idx_blog
------------------------------------------------------ */
#idx_blog {
    padding: 219px 0 80px;
}

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

#idx_blog .idx_blog_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#idx_blog .idx_blog_list .blog_card {
    width: calc((100% - 60px) / 3);
}

#idx_blog .idx_blog_list .blog_card figure {
    width: 100%;
    height: 18.79vw;
    max-height: 240px;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

#idx_blog .idx_blog_list .blog_card .card_meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

#idx_blog .idx_blog_list .blog_card .cate_group {
    margin-bottom: 0;
}

#idx_blog .idx_blog_list .blog_card .cate_group span {
    display: inline-block;
    letter-spacing: 0;
    color: #fbb03b;
    border: 1px solid #fbb03b;
    border-radius: 15px;
    padding: 4px 21px;
    margin: 0 5px 5px 0;
}

#idx_blog .idx_blog_list .blog_card .card_date {
    letter-spacing: 0;
    margin-top: 5px;
}

#idx_blog .idx_blog_list .blog_card .card_title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.75;
    color: var(--blue-color);
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom: 9px;
}

#idx_blog .idx_blog_list .blog_card .card_txt {
    line-height: 2.5;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

#idx_blog .btn_primary {
    position: absolute;
    top: 17px;
    right: 0;
}

/* ------------------------------------------------------
Footer
------------------------------------------------------ */
#footer .box_contact {
    color: var(--white-color);
    padding: 55px 0 100px;
}

#footer .box_contact .inner {
    max-width: 1000px;
}

#footer .box_contact .box_contact_frame {
    width: 100%;
    background: var(--blue-color);
    border-radius: 20px;
    padding: 54px 57px 61px;
    margin: 0 auto;
    position: relative;
}

#footer .box_contact .box_contact_headline {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 46px;
}

#footer .box_contact .h3title {
    color: var(--white-color);
    margin-bottom: 0;
}

#footer .box_contact .box_contact_txt {
    line-height: 2;
}

#footer .box_contact .box_contact_btn {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

#footer .box_contact .box_contact_btn dl {
    display: flex;
    align-items: center;
}

#footer .box_contact .box_contact_btn dt {
    width: 71px;
    height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white-color);
    margin-right: 20px;
    flex-shrink: 0;
}

#footer .box_contact .box_contact_btn dt i {
    display: inline-block;
    background-size: contain;
}

#footer .box_contact .box_contact_phone {
    width: 100%;
    flex: 1;
}

#footer .box_contact .box_contact_phone dt i {
    background-image: url(../images/footer/icon_phone.png);
    width: 40px;
    height: 40px;
}

#footer .box_contact .box_contact_phone a {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
    color: var(--white-color);
    margin-right: 18px;
}

#footer .box_contact .box_contact_phone .box_contact_notes {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

#footer .box_contact .box_contact_mail {
    width: 100%;
    max-width: 351px;
}

#footer .box_contact .box_contact_mail dt i {
    background-image: url(../images/footer/icon_mail.png);
    width: 41px;
    height: 30px;
}

#footer .box_contact .box_contact_mail dd {
    width: 100%;
    max-width: 260px;
}

.contact_decor01 {
    width: 141px;
    height: 143px;
    top: 0;
    right: -45px;
}

.contact_decor02 {
    width: 329px;
    height: 234px;
    top: 0;
    left: -166px;
    z-index: -1;
}

.contact_decor03 {
    width: 212px;
    height: 151px;
    bottom: -50px;
    right: -175px;
    z-index: -1;
}

#footer .footer_connect {
    font-weight: 500;
    background: #bfe082;
    padding: 105px 0 28px;
    position: relative;
}

#footer .footer_connect::before {
    position: absolute;
    content: '';
    background-image: url(../images/footer/f_decor.png);
    background-repeat: repeat-x;
    background-size: 1486px 100%;
    width: 100vw;
    height: 66px;
    top: -66px;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

#footer .footer_connect .footer_wrap {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 46px;
}

#footer .footer_connect .f_logo {
    margin-top: 13px;
    margin-bottom: 0;
}

#footer .footer_connect .footer_address {
    line-height: 2.5;
}

#footer .footer_connect .footer_link {
    display: flex;
    margin-top: 8px;
    flex-shrink: 0;
}

#footer .footer_connect .footer_link ul:last-child {
    margin-top: 40px;
    margin-left: 55px;
}

#footer .footer_connect .footer_link li {
    padding-left: 16px;
    margin-bottom: 16px;
    position: relative;
}

#footer .footer_connect .footer_link li::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white-color);
    top: 10px;
    left: 0;
}

#footer .footer_connect .footer_link li:last-child {
    margin-bottom: 0;
}

#footer .footer_connect .footer_link li a {
    letter-spacing: 0.1em;
    transition: all .3s ease;
}

#footer address {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-style: normal;
}

/* ------------------------------------------------------
loading
------------------------------------------------------ */
#loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: var(--white-color);
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all .8s cubic-bezier(0.6, 0, 0.16, 1);
}

#loading.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}



/* MOZZILLA CSS */
@-moz-document url-prefix() {}

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

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