@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 16px;
    line-height: 1.8;
    /* font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif; */
    font-family: "BIZ UDPGothic", sans-serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    /* background: #fff; */
    scroll-behavior: auto !important;
    overflow-x: hidden;
    animation: fadeIn 1s;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
/* body.top-page::before {
    content: "";
    position: fixed;
    top: 50%;
    right: -5%;
    width: 60vw;
    height: 80%;
    background-image: url(../img/main-img.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: translateY(-50%);
} */
/* body#cpage {  overflow-x: hidden;} */
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.txt-ja, span[lang='ja']{ font-family: "Noto Sans JP", sans-serif;}
.txt-en, span[lang='en'] { font-family: "Noto Sans JP", sans-serif;}
/* html{ height: -webkit-fill-available;} */
html.nosc,body.nosc{
	/* overflow: hidden;
    overflow-x: scroll;
    overflow-y: auto; */
}
.color-red { color: #E00A16;} 
.color-blue { color: #1657E8;}
.color-lblue { color: #E7ECF7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #2C4F51;}
.color-vgr { color: #73AE2E;}
.color-yg { color: #ABE8B9;}
.color-lgr{ color: #F4F595;}
.color-ye{ color: #FFF200;}
.color-ly{ color: #FFF9F4;}
.color-or{ color: #FFEABA;}
.color-prp{ color: #721DC8;}
.color-gy{ color: #FAF9F4;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #E00A16;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #1657E8;}
.bg-lblue { background: #E7ECF7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #2C4F51;}
.bg-lgr { background: #F4F595;}
.bg-vgr { background: #73AE2E;}
.bg-yg { background: #ABE8B9;}
.bg-ye { background: #FFF200;}
.bg-lye { background: #FFF9F4;}
.bg-or { background: #FFEABA;}
.bg-lor { background: #ffecdc;}
.bg-bk { background: #000333;}
.bg-wh { background: #fff;}
.bg-gray { background: #F4F4F4;}
.bg-bw { background: #4D0001;}

.border-gray {
    border: 6px solid #F2F2F2;
}

/* a:hover{
    color: #000;
} */

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.025em;
    margin: 0 auto 1.5rem;
    padding: 0;
}
h1 { font-size: 36px;}
h2 { font-size: 32px;}
h3 { font-size: 29px;}
h4 { font-size: 25px;}
h5 { font-size: 21px;}
h6 { font-size: 18px;}

.tit-line { 
    position: relative;  
    padding: 0.2rem 0;
    border-bottom: 4px solid #006DB6;
}
.tit-bg {
    position: relative;
    display: block;
    color: #fff;
    padding: .4em 1em;
    background: #026CB6;
    border-radius: 5px;
    z-index: 10;
    border-left: 10px solid #73D374;
}
.tit-bd-l {
    position: relative;
    padding: 0 .5em;
}
.tit-bd-l::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #73D374;
}
.tit-point {
    display: flex;
    align-items: center;
}
.tit-point::before {
    content: "■";
    font-size: 0.5em;
    font-weight: 900;
    padding-right: 0.5em;
    color: #73D374;
}
.tit-color {
    color: #026CB6;
}
.box-wh{
    padding: 2.5em 3em;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
}

/* --- flex-box --- */
/* .flex-box {
    display: flex;
    justify-content: center;
}
.flex1 > div { width: 100%; }
.flex2 > div { width: 50%; }
.flex3 > div { width: calc(100% / 3); }
.flex4 > div { width: 25%; }
.flex5 > div { width: 20%; }
.flex-last {
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
} */

/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
.grig-wrap0 { grid-gap: 0; }
.grid1 { grid-template-columns: repeat(1, 1fr); grid-gap: 0;}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }

.flex-dl { display: flex; margin: 0 auto 10px; }
.flex-dl:last-of-type { margin-bottom: 1em; }
.flex-dl dt { width: 4em; margin-right: 1.5em; }
.flex-dl dd { flex: 1; margin-bottom: 0; }

hr { margin: 10px 0; border-top: 3px solid #466E6E; }

p {
    margin: 0 auto 1.5em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
a:link,a:visited,a:hover,a:active{ text-decoration: none;}

section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}
.sec-inline img{
    max-width: 100%;
    height: auto;
}
.sec-inline-start {
    padding-inline-start: calc((100vw - 1000px) / 2);
}
.sec-inline-end {
    padding-inline-end: calc((100vw - 1000px) / 2);
}
.container-fluid{ padding: 0;}


ul {
    margin-bottom: 0;
}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    transition: .3s;
    background: #fff; 
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
#head h1 { margin: 0}
.h-logo .brand {
    max-width: 200px;
}

.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
    left: 2rem;
}
.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.menu-list { 
    position: absolute;
    right: 0;
    height: 100%;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    column-gap: 3rem;
    margin-right: 3rem;
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-list > ul > li > a {
    position: relative;
    display: block;
    color: #004779;
    font-size: 18px;
    letter-spacing: 0;
    transition: .3s ease-out;

    &::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0em;
        width: 0;
        height: 1.3px;
        background: #004779;
        transition: .3s ease-out;
        transform-origin: right;
    }

    &.i-link {
        display: flex;
        align-items: center;
        gap: .5rem;
    }
    &.i-link img { 
        width: .9em;
        aspect-ratio: 1;
    }
}

.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.click-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.menu-link {
    height: 100%;
    background: linear-gradient(-45deg,rgba(108, 195, 255, 1) 0%, rgba(63, 167, 64, 0.84) 100%);
    transition: .3s;
}
.menu-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 1rem 2rem;
    height: 100%;
}

/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 1.5rem;
    z-index: 1001;
    cursor: pointer;
    width: 32px;
    height: 40px;
    transition: 0.3s;
}
.openbtn span {
    display: block;
    transition: 0.4s;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 2px;
    background-color: #004779;
    width: 22px;
}
.openbtn span:nth-of-type(1) {
    top: 35%; 
}
.openbtn span:nth-of-type(2) {
    top: 60%; 
}
.openbtn span:nth-of-type(3) {
    top: 85%; 
}
  
.openbtn.active span:nth-of-type(1) {
    top: 45%;
    left: 0.5em;
    transform: translateY(0px) rotate(-45deg);
    background: #004779;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    top: 60%;
    left: 0.5em;
    transform: translateY(-6px) rotate(45deg);
    background: #004779;
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active { display: block !important;}
.nosc .nav-menu { opacity: 0;}
.nosc .sp-menu.d-md-none {
    display: flex !important;
}
.nosc #top-menu { display: none !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    width: 40%;
    height: 100vh;
    top: 70px;
    right: 0;
    background: #fff;
    transition: .3s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}
#clickarea.panelactive {
    opacity: 1;
    visibility: visible;
}
#clickarea.panelactive .click-list {
    position: relative;
    z-index: 1000;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    z-index: 0;
}

#clickarea .click-list {
    padding-top: 5vw;
    padding-left: .5rem;
    padding-right: 1.5rem;
    padding-bottom: 40vw;
}
.click-list > ul { 
    padding-left: 1em;
    list-style: none;
    margin-bottom: 0;
}
.click-list > ul.menu-main > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1.25em;
    margin-bottom: 1rem;
    transition: .3s;
    background: #fff;
}
.click-list > ul.menu-main { margin-bottom: 2rem;}
.click-list > ul.menu-main > li > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    color: #004779;
    font-size: 24px;
    transition: .3s;
    background: #fff;

    &.i-link {
        display: flex;
        align-items: center;
        gap: .25rem;
    }
    &.i-link img { 
        width: .75em;
        aspect-ratio: 1;
    }
}
.click-list > ul.menu-main > li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 0.5em;
    aspect-ratio: 1;
    background: #004779;
    border-radius: 100vmax;
    transition: .3s;
}
.click-list > ul.menu-main > li::before {
    left: 0.25em;
    opacity: 1;
}
.click-list > .menu-sub {
    margin-left: 1rem;
    padding: .5em;
    margin-bottom: 0;
    background: linear-gradient(-45deg,rgba(108, 195, 255, 1) 0%, rgba(63, 167, 64, 0.84) 100%);
    transition: .3s;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 24px;
        text-align: center;
    }
}


/* ボタン類 */
.btn01, .tel-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    font-size: 18px;
    white-space: nowrap;
    color: #026CB6;
    transition: .3s ease-out;
    border-radius: 100vmax;
    width: 220px;
    height: 60px;
    overflow: hidden;

    padding: 0 1rem 0 2rem;
    .arrow {
        width: 2em;
        aspect-ratio: 1;
        background: #026CB6;
        border-radius: 100vmax;
        transition: .3s ease-out;

        svg {
            width: 100%;
            height: .5em;
            margin-inline: auto;
            stroke: #fff;
            transition: .3s ease-out;
        }
    }
}
.btn01 a, .tel-btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #026CB6;
    transition: .4s;
    border-radius: 100vmax;
}
.tel-btn {
    background: #026CB6;
    border: 1px solid #026CB6;
    padding: 0 1rem;
    /* margin-bottom: 2rem; */

    a { 
        color: #fff;
        font-weight: 700;
        justify-content: center;
    }
}

/* TOPのsection設定 */
main { margin-top: 80px;}
.sec-wrap {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* section::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
} */
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
}
input:not([type=checkbox],[type=radio]) {
    appearance: none;
    border: none;
    outline: none;
}
input[type=checkbox], input[type="radio"] {
    cursor: pointer;
}

/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;

    &::after {
        content: "";
        position: absolute;
        top: 25vw;
        left: 0;
        width: 100%;
        height: calc(100% - 25vw);
        background-image: url(../img/main-bg.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: cover;
        z-index: -1;
    }

    .wave {
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 40px;
    }
    .waves {
        position: absolute;
        bottom: -1px;
    }
}
.main-slider {
    height: 100%;
}
.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-wrap {
    position: relative;
    display: block;
    width: 92.5%;
    height: 100%;

    .title {
        position: absolute;
        left: 50%;
        bottom: .5rem;
        transform: translateX(-50%);
        width: 100%;
        font-size: 5.9vw;
        font-weight: 700;
        line-height: 1.4;
        text-shadow: 0px 3px 6px rgba(0,0,0,0.16);
        text-align: center;
        color: #fff;
        z-index: 10;
    }
   @media(min-width: 1500px) {
        width: 90%;
    }
}
.scroll {
    position: absolute;
    top: 45vw;
    right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    writing-mode: vertical-lr;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.16);

    svg {
        width: 12px;
        height: 57px;
    }
}

.main-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    max-width: 1000px;
    width: 90%;
    max-height: 1000px;
    height: 100vh;
    margin-inline: auto;
    filter: blur(5px);
    transition: .3s;

    h2 {
        font-size: 36px;
        letter-spacing: 0.15em;
        color: #fff;
        margin-bottom: 2.5rem;
    }
    p {
        font-size: 20px;
        line-height: 2.6;
    }
}
.main-text.visible {
    filter: blur(0px);
}

/* sec01 */
#sec01 {
    text-align: center;
    z-index: 11;

    /* &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg,rgba(255, 255, 255, 0.66) 85%, rgba(123, 187, 228, 0.38) 100%);
    } */
    .sec-wrap { max-width: 1000px;}

    h2 {
        position: relative;
        display: inline-block;
        font-size: 40px;
        font-weight: 500;
        text-align: center;
        color: #004779;
        margin-bottom: 5rem;

        rt { 
            font-size: 1em;
            font-weight: 500;
            .pv {
                opacity: 0;
                transition: opacity 0.8s;
            }
            
            .pv.show {
                opacity: 1;
            }
        }

        &::before, &::after {
            content: "";
            position: absolute;
            bottom: -0.25em;
            width: 2px;
            height: 1.5em;
            background: #004779;
        }
        &::before {
            left: calc(100% + 0.5em);
            transform: rotateZ(40deg);
        }
        &::after {
            right: calc(100% + 0.5em);
            transform: rotateZ(-40deg);
        }
    }

    .sec01-box {
        /* display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.25rem; */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        row-gap: 1.5rem;

        .sec01-item-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            max-width: 300px;
            width: 100%;
            border-radius: 100vmax;
            aspect-ratio: 1;
            background-image: url(../img/sec01-img.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .sec01-item {
            /* display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column; */
            row-gap: 1rem;
            
            /* width: calc(100% / 3 - 1.25rem); */
            font-size: 20px;
            font-weight: 500;
            text-align: center;
            color: #fff;

            display: grid;
            grid-row: span 2;
            grid-template-rows: subgrid;
            justify-items: center;
            /* padding: 2.5rem; */
            align-items: center;
            justify-content: center;

            img {
                width: 90px;
                aspect-ratio: 1;
            }
            p {
                min-height: 3.6em;
                display: flex;
                justify-content: center;
                align-items: center;
                line-height: 1.6;
                margin-bottom: 0;
                padding-bottom: 10px;
            }
        }
    }
}

.td-arrow {
    position: absolute;
    left: 50%;
    height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;

    img {
        position: absolute;
        max-width: 175px;
        z-index: 10;

        &:nth-of-type(1) {
            top: 0;
        }
        &:nth-of-type(2) {
            top: 30%;
        }
        &:nth-of-type(3) {
            top: 60%;
        }
    }

    .tdv {
        opacity: 0;
        transition: opacity .9s ease-out;
    }
    .tdv.show {
        opacity: 1;
    }
}

/* sec02 */
#sec02 {
    padding-top: calc(5rem + 145px);
    padding-bottom: 10rem;

    &::before {
        content: "";
        position: absolute;
        top: -10vw;
        left: 0;
        width: 100%;
        height: calc(100% + 10vw);
        background: linear-gradient(180deg,rgba(255, 255, 255, 0.1) 0%, rgba(123, 187, 228, 0.38) 30vw, rgba(123, 187, 228, 0.38) 80%, rgba(255, 255, 255, 0.66) 100%);
        z-index: -1;
    }

    h2 {
        font-size: 50px;
        text-align: center;
        color: #026CB6;
        margin-bottom: 5rem;

        .small-txt {
            font-size: 35px;
            font-weight: 500;
            color: #004779;
            letter-spacing: 0;
            margin-left: .5rem;
        }
    }

    .sec02-flex {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 10rem;

        .sec02-item {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            flex: 1;
            max-width: 430px;
            width: 100%;
            font-size: clamp(1.75rem, 0.6287rem + 2.3392vw, 2.5rem);
            font-weight: 500;
            line-height: 1.4;
            color: #026CB6;
            text-align: center;
            aspect-ratio: 1;
            border-radius: 100vmax;
            background: radial-gradient(circle,#FFFFFF 20%, #7BBBE4 85%);
            overflow: visible;

            .small-txt {
                display: block;
                font-size: clamp(1.125rem, 0.9381rem + 0.3899vw, 1.25rem);
                margin-bottom: 1rem;
            }

            .bubble {
                & > div {
                    position: absolute;
                    opacity: .6;
                    background: radial-gradient(circle,rgba(255,255,255,0) 0%, #FFFFFF 100%);
                    border-radius: 100vmax;
                    aspect-ratio: 1;
                }
                
                &.bubble01 > div {
                    /* 時計回りに配置 */
                    &:nth-of-type(1) {
                        top: 0%;
                        right: 5%;
                        width: 92px;
                        z-index: -1;
                    }
                    &:nth-of-type(2) {
                        right: 7.5%;
                        bottom: 5%;
                        width: 64px;
                        z-index: 10;
                    }
                    &:nth-of-type(3) {
                        left: 15%;
                        bottom: 0%;
                        width: 64px;
                        z-index: -1;
                    }
                    &:nth-of-type(4) {
                        left: 0%;
                        bottom: 5%;
                        width: 108px;
                        z-index: -1;
                    }
                    &:nth-of-type(5) {
                        top: 55%;
                        left: -15%;
                        width: 45px;
                        z-index: -1;
                    }
                    &:nth-of-type(6) {
                        top: 0%;
                        left: 0%;
                        width: 150px;
                        z-index: -1;
                    }
                }

                &.bubble02 > div {
                    /* 時計回りに配置 */
                    &:nth-of-type(1) {
                        top: 2.5%;
                        right: 15%;
                        width: 50px;
                        z-index: 10;
                    }
                    &:nth-of-type(2) {
                        top: 30%;
                        right: -12.5%;
                        width: 155px;
                        z-index: -1;
                    }
                    &:nth-of-type(3) {
                        right: -5%;
                        bottom: 0%;
                        width: 64px;
                        z-index: -1;
                    }
                    &:nth-of-type(4) {
                        left: 5%;
                        bottom: 0%;
                        width: 115px;
                        z-index: -1;
                    }
                    &:nth-of-type(5) {
                        top: 5%;
                        left: 5%;
                        width: 80px;
                        z-index: -1;
                    }
                    &:nth-of-type(6) {
                        top: -10%;
                        left: 15%;
                        width: 130px;
                        z-index: -1;
                    }
                }
            }
        }
    }

    .sec02-box {   
        max-width: 1110px;
        margin-inline: auto;

        a {
            display: flex;
            justify-content: center;
            align-items: stretch;
            width: 100%;
            height: 100%;
            color: #fff;

            .sec02-b-text {
                max-width: 22em;
                /* width: 40vw; */
                font-size: 20px;
                background: #026CB6;
                padding: 4rem 3rem;
                flex-grow: 1;
                
                h3 {
                    font-size: 43px;
                    color: #fff;
                }
                .small-txt {
                    display: block;
                    font-size: 18px;
                }
                p { 
                    margin-bottom: 0;
                }
           }
           .sec02-b-img {
                display: flex;
                justify-content: flex-end;
                align-items: end;
                /* width: 60vw; */
                background-image: url(../img/sec02-img.jpg);
                background-position: right center;
                background-repeat: no-repeat;
                background-size: cover;
                flex: 1;

                .btn01 {
                    margin: 0 2rem 2rem 2rem;
                }
           }
        }
    }
}

/* sec03 */
#sec03 {
    .waves02 {
        position: absolute;
        top: 0px;
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url(../img/sec03-bg.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: cover; */
        background: #026CB6;
    }

    hgroup { 
        position: relative;
        text-align: center;
        margin-bottom: 4rem;

        span { font-size: 18px;}
    }
    hgroup > * {
        color: #fff;
    }
    h2 {
        font-size: 43px;
    }

    .case-slider {
        margin-bottom: 4rem;
        transition-timing-function: linear;

        .slider .slick-slide {
            margin-right: 1.5rem;
            transition-timing-function: linear;
        }
        .slider .slick-list {
            margin-right: -1.5rem;
            transition-timing-function: linear;
        }

        figure {
            img {
                width: 100%;
                max-height: 270px;
                object-position: center;
                aspect-ratio: 4 / 3;
                object-fit: cover;
            }
        }
        figcaption { color: #fff;}
    }
}

/* フッター*/
#contact {
    position: relative;
    background: linear-gradient(-45deg,rgba(108, 195, 255, 1) 0%, rgba(63, 167, 64, 0.84) 100%);
    padding: 1rem;
    /* transition: 2s ease-out; */

    /* &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background: linear-gradient(45deg, rgba(108, 195, 255, 1) 0%, rgba(63, 167, 64, 0.84) 100%);
        opacity: 0;
        transition: opacity 1s ease;
    } */

    .contact-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        width: 100%;
        height: 100%;
        padding: 5rem 2rem;
        color: #fff;
        border: 2px solid #fff;
        z-index: 10;

        .contact-tit {
            max-width: 590px;
            width: 36rem;
        }
        .contact-text {
            font-size: clamp(1.125rem, 0.7512rem + 0.7797vw, 1.375rem);
            line-height: 1.4;

            .contact-link {
                display: block;

                > div {
                    position: relative;
                    border: 1px solid #fff;
                    border-radius: 100vmax;
                    margin-top: 1rem;
                    text-align: center;
                    transition: .3s;
                }
                i { padding-right: .5em;}

                .tel-number {
                    font-size: clamp(1.5rem, 1.1262rem + 0.7797vw, 1.75rem);
                    font-weight: 700;
                    text-wrap: nowrap; 
                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        padding: 0.5em 2.5em;
                        color: #fff;
                    }                  
                }
                .contact-mail {
                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        padding: 0.5em 2.5em;
                        color: #fff;
                    }
                }
                .form-link {
                    font-size: clamp(1.5rem, 1.1262rem + 0.7797vw, 1.75rem);
                    font-weight: 700;
                    line-height: 1.2;

                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        position: relative;
                        padding: 0.5em 0.5em 0.5em 1.5em;

                        .icon-pst {
                            position: relative;
                            &::before {
                                content: "\f0e0";
                                font-family: "Font Awesome 6 Free";
                                font-weight: 400;
                                position: absolute;
                                top: 55%;
                                left: -1.25em;
                                transform: translateY(-50%);
                            }
                        }
                    }
                }
            }
        }
    }
}

.copy { 
    text-align: center;
    margin-bottom: 0;
    padding: 10px 0;
    font-size: 0.9em;
    color: #004779;
    background: #fff;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding-top: 4rem;
}
#titbar hgroup {
    line-height: 1;
    margin-bottom: 3rem;
    h1 {
        display: block;
        width: 100%;
        margin: 0;
        text-wrap: wrap;
        font-size: 56px;
        font-weight: 700;
        line-height: 1;
        color: #026CB6;
        text-transform: uppercase;
    }
    span {
        font-size: 18px;
        color: #026CB6;
    }
}


.sec-inline { padding-inline: calc((100vw - 1000px) / 2);}
.other-content .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.other-pages .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

.other-content .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.other-content .sec-inline > div::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
}
.other-content .sec-inline > div:nth-child(odd)::before {
    background: #FFF;
}
.other-content .sec-inline > div:nth-child(even)::before {
    background: #F8F8F7;
}

.breadcrumb-content {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
}
.breadcrumb {
    display: block;
    /* background-color: #fff; */
    margin: 0 auto!important;
    padding: 0!important;
}
.breadcrumb ul {
    list-style: none;
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto!important;
    /* padding-top: 1.5rem; */
    /* padding-right: 1.5rem; */
    padding-left: 0;
    /* padding-bottom: 1rem; */
}
.breadcrumb ul li {
    color: #026CB6;
    position: relative;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0em;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li span > span {
    display: inline-block;
    /* text-transform: uppercase; */
}
.breadcrumb ul li a {
    color: #026CB6;
    font-size: 16px;
    text-transform: uppercase;
}
/* .breadcrumb ul li:not(:last-child)::after {
    position: relative;
    padding: 0 5px 0 10px;
    width: .5em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    background: #1AA3E2;
    color: #1AA3E2;
} */
.breadcrumb ul li span > span:last-child {
    max-width: 15em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}
.breadcrumb ul li:not(:last-child)::after {
    content: "»";
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.014em;
    padding: 0 0 0 0.25em;
}

/* contact */
.contact-form dl > div.contact-short-item {
    margin-bottom: .5rem;
    padding: 0.5em 0;
    display: flex;
    /* border-bottom: 1px dotted #aeaeae; */
}
.contact-form dl dt {
    font-weight: bold;
    width: 22em;
    margin-right: 2rem;
    background: #fff;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 6px;
}
.contact-form dl label {
    display: block;
    margin-bottom: 0;
    cursor: pointer;
}
.contact-form p {
    font-size: 1rem!important;
    width: 100%!important;
    margin-bottom: 0!important;
    list-style: 1.5!important;
    text-wrap: wrap;
}
.contact-form p.form-cp {
    font-size: 0.8em!important;
    line-height: 1.4;
    margin: 5px 0;
}
.contact-form dl dd {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form .must {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin-left: 5px !important;
    padding: 5px 0.3rem 5px !important;
    background: #026CB6 !important;
    border-radius: 3px !important;
    vertical-align: baseline !important;
}
.contact-form dl dd textarea {
    width: 100% !important;
}
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
}
.wpcf7-list-item { 
    display: flex !important;
    align-items: center;
    gap: .25em;
    margin: 0 !important;
}
/* .wpcf7-radio .wpcf7-list-item label {
    background: #226FC3;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
} */
.contact-form input:not([type="submit"]), .contact-form dl dd textarea {
    border-color: #026CB6 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 5px;
    /* width: 50%; */
    padding: 0.5rem;
}
.wpcf7-submit {
    color: #fff!important;
    font-size: 18px!important;
    width: 12em!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: block!important;
    margin: 30px auto!important;
    padding: 20px 3em!important;
    text-align: center;
    background: #026CB6 !important;
    border-color: #026CB6 !important;
    border-width: 1px !important;
    border-style: solid !important;
    background-size: 110%!important;
    background-position: center!important;
    border-radius: 10px!important;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
#aform_btn_submit {
    color: #fff;
    background: #EFF3F7;
    box-shadow: 0px 3px 3px #333;
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
}

/*--- table ---*/
table.wrap-tbl {
    width: 100%;
    margin: 1rem auto;
    vertical-align: top;
    background: #fff;
}
table.wrap-tbl >tbody {
    vertical-align: inherit;
}
table.wrap-tbl>*>* {
    padding: 0.5rem 0.5rem;
    border-width: 1px;
    border-color: #DDDDDE;
}
table.wrap-tbl th {
    width: 15%;
    border-right: 1px solid #DDDDDE;
    padding: 0.5rem 0.5rem;
    background: #0086C6;
    color: #fff;
}
table.wrap-tbl td {
    width: 85%;
    padding: 0.5rem 0.5rem;
}
table.wrap-tbl caption {
    caption-side: top;
    padding: 0 0 0.5em;
    color: #333;
    font-weight: bold;
}
@media (max-width: 767px) {
	table.wrap-tbl th,table.wrap-tbl td {
        display: block;
        width: 100%;
        border-right: none;
    }
    table.wrap-tbl th {
        border-bottom: 1px solid #DDDDDE;
    }
}

.tab {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    gap: 10px;
    margin-bottom: 3.5rem;
    transition: .3s;

    li {
        width: 12em;
        border-radius: 5px;
    }

    a {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: #026CB6;
        border: 1px solid #026CB6;
        color: #fff;
        padding: .5rem 1.5rem .5rem .5rem;
        width: 100%;
        font-size: 16px;
        height: 100%;
        text-align: center;
        transition: .3s;
        border-radius: 5px;

        &.current {
            background: #fff;
            color: #4dac4e;
            border: 1px solid #4dac4e;
            pointer-events: none;
        }
    }
    li i {
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
    }
}

.case-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    .case-item {
        width: calc(100% / 3 - 2rem);
        margin-bottom: 1.5rem;

        a {
            display: block;
            width: 100%;
            height: 100%;
            color: #333;

            figure {
                margin-bottom: .5rem;
                img {
                    width: 100%;
                    aspect-ratio: 4 / 3;
                    object-fit: cover;
                }
            }
            /* .case-cat {
                display: inline-block;
                background: #73D374;
                padding: .5rem;
                font-size: 14px;
                color: #fff;
            } */
        }
    }
}

.imgage-slider {
    .active-slide {
        img {
            max-width: 800px !important;
            width: 100%;
            margin-inline: auto;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        figcaption {
            max-width: 800px !important;
            width: 100%;
            margin: 2rem auto;
        }
    }
    .sub-slider {
        .slick-slide:not(.slick-current) {
            opacity: .5;
            cursor: pointer;
        }
        figure {
            padding: 0 .5rem;
            img {
                width: 100%;
                aspect-ratio: 4 / 3;
                object-fit: cover;
            }
        }
    }
}

.step-wrap {
    display: flex;
    flex-direction: column;

    .step-item {
        display: flex;
        margin-bottom: 1.5em;
        border-radius: 5px;
        border: 20px solid #026CB6;
        background: #026CB6;

        .step-num {
            width: 12em;
            color: #fff;
            font-size: 1.2em;
            font-weight: 700;
            padding: 0 1em;
            background-color: #026CB6;
            white-space: nowrap;
            .large-txt {
                font-size: 1.5em;
            }
        }
        .step-txt {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            height: 100%;
            background: #fff;
            padding: 1.5rem;
            border-radius: 5px;

            .step-tit {
                display: block;
                font-size: 1.1em;
                color: #026CB6;
                font-weight: 700;
            }
        }
        .step-border { flex-grow: 1;}
    }

    .arrow-wrap {
        text-align: center;
        margin: 0 auto 1.5em;
    }
    .arrow-wrap .step-arrow {
        width: 80px;
        height: 40px;
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        background-color: #026CB6;
    }
}


/* table-scroll */
.scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
.scroll-hint-icon:before { width: 30px!important; height: 30px!important; }
.table-calc_list01 table {
    max-width: 100%;
}
.table-calc_list01 th,.table-calc_list01 td{
font-size: 0.65em !important;
padding: 3px !important;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
}

.width-tbl {
    width: 100%;
    max-width: 600px;
    margin-bottom: .5rem;
    border: 1px solid #E6E6DC;
    text-align: center;
}
.width-tbl caption {
    display: table-caption;
    caption-side: top;
    margin-bottom: 1rem;
}
.width-tbl>*>*:not(caption) {
    padding: 0.5rem 0.5rem;
}
/* .width-tbl>*>*:nth-child(even) {
   background: #ccc;
} */
.width-tbl th {
    border-right: 1px solid #E6E6DC;
    padding: 0.5rem 0.5rem;
    font-weight: normal;
    background: #ddd;
}
.width-tbl td { 
    padding: 0.5rem 0.5rem;
    text-wrap: nowrap;
    border-bottom: 1px solid #E6E6DC;
}

.width-tbl tr > td:first-child {
    border-right: 1px solid #E6E6DC;
}
.width-tbl tr:last-child td { border-bottom: none;}

.about-list {
    display: flex;
    flex-wrap: wrap;
    /* padding: 1rem; */
    margin-bottom: 0;
}
.about-list dt {
    width: 20%;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}
.about-list dt, .about-list dd {
    padding: 10px;
    border-bottom: 1px solid #DDDDDE;
    margin-bottom: 0;
}
.about-list dt:last-of-type, .about-list dd:last-of-type {
    border-bottom: none;
}
.about-list dd {
    width: 80%;
    padding: 10px 10px 10px 1em;
}
.about-list.ab-list03 dt {
    width: 25%;
    text-wrap: nowrap;
}
.about-list.ab-list03 dd { width: 75%;}

a.anchorpoint {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

.pnavi {
    text-align: center;
    margin: 4rem auto;
}
.pnavi span { color: #026CB6;}
.pnavi span, .pnavi a {
    display: inline-block;
    height: 100%;
    font-size: 18px;
    margin-top: 5px;
    padding: 5px 10px;
    border: 1px solid #026CB6;
    border-radius: 5px;
}
.pnavi a {
    color: #fff;
    background: #026CB6;
}

.srv-wrap {
    padding: 2rem;
    background: #F2F2F2;
    margin-bottom: 2rem;
    ul {
        display: flex;
        flex-wrap: wrap;
        gap: .5em;
        margin-bottom: 1.5rem;

        li { 
            width: calc(100% / 3 - 1rem);
            text-align: center;
        }
    }
}
.srv-box {
    background: #fff;
    padding: 1.5rem;
    p { margin-bottom: auto;}
}
.srv-price {
    padding-left: 1em;
    padding-bottom: 1em;
}
.grid-item {
    display: grid;
    grid-row: span 1;
    grid-template-rows: subgrid;
}

.pop-bg {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    z-index: 1000;
}
.pop-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    background: #fff;
    text-align: center;
    z-index: 1001;

    p {
        margin-bottom: 0;
    }
}
.cls-btn {
    width: 36px;
    height: 36px;

    span {
        display: block;
        transition: .3s ease-out;
        width: 36px;
        height: 1px;
        background-color: #333;

        &:nth-of-type(1) { 
            transform: translateY(0px) rotate(-45deg);
        }
        &:nth-of-type(2) { 
            transform: translateY(0px) rotate(45deg);
        }
    }
}

@media (max-width: 991px){
    
    .flex3 {
        flex-direction: column;
        gap: 2.5rem;
    }
    .flex3 .flex-item { 
        width: 100%;
        padding: 0;
    }
    .flex3 .flex-item .btn01 { 
        margin: 1.5rem auto 0.5rem;
    }
    .sec-link h3 { 
        font-size: 21px;
        margin: 0 1rem;
    }
    .flex3 .flex-item p { margin-bottom: 0;}
    .flex3 .flex-item:not(:last-child)::before {
        top: calc(100% + 1.5rem);
        left: 50%;
        width: 100%;
        height: 1px;
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    .breadcrumb ul {
        /* padding-top: 2rem; */
        padding-inline: initial;
        /* padding-left: 7%;
        padding-right: 7%; */
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 6%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 6%;
    }
    .sec-inline {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }

    #sec01 {
        .sec01-box {
            grid-template-columns: repeat(2, 1fr);
            .sec01-item {
                /* width: calc(100% / 2 - 2rem); */
            }
        }
    }
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
    }

    /* #head {
        background: #fff;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    } */
    .openbtn { right: 1rem;}
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    .width-tbl caption {
        font-size: 22px;
    }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    .grid-box {
        grid-gap: 1rem;
    }
    .grid2 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid3 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid4 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid5 { grid-template-columns: repeat(2, 1fr) !important; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .sec-inline {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: calc(40px + 1rem) 0 calc(40px + 1rem);}    
    
    #clickarea {
        width: 100%;
        padding-top: 2rem;
        padding-left: .5rem;
        padding-right: 1.5rem;
        padding-bottom: 20vw;
    }
    #clickarea .click-list {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    #clickarea.panelactive .click-list {
        /* width: 100%; */
    }

    .main-text {
        max-height: 700px;
        height: 100vh;

        h2 {
            font-size: 24px;
            margin-bottom: 2.5rem;
        }
        p {
            font-size: 18px;
            line-height: 2;
        }
    }

    #sec01 {
        h2 {
            font-size: 24px;

            &::before, &::after {
                height: 2.5em;
            }
            &::before {
                left: calc(100% + 1em);
            }
            &::after {
                right: calc(100% + 1em);
            }
        }
        .sec01-box {
            grid-template-columns: repeat(1, 1fr);
            .sec01-item {
                width: 100%;
                font-size: 18px;
            }
        }
    }
    #sec02 {
        padding-top: calc(4rem + 145px);

        h2 {
            font-size: 40px;
            line-height: 1.1;

            .small-txt { 
                font-size: 32px;
                margin-left: 0;
            }
        }
        .sec02-flex {
            flex-direction: column;
            gap: 5rem;
            margin-bottom: 5rem;

            .sec02-item {
                max-width: 350px;
                font-size: 26px;

                .small-txt {
                    font-size: 16px;
                }

                & .bubble {
                    &.bubble01 > div {
                        &:nth-of-type(5) {
                            top: 35%;
                            left: -7%;
                            width: 45px;
                            z-index: -1;
                        }
                    }
                    &.bubble02 > div {
                        &:nth-of-type(3) {
                            right: 10%;
                            bottom: -10%;
                            width: 64px;
                            z-index: -1;
                        }
                    }
                }
            }
        }

        .sec02-box {
            a {
                display: block;

                .sec02-b-text  { 
                    max-width: none;
                    width: 100%;
                    font-size: 16px;
                    padding: 2rem 1.5rem;

                    h3 { font-size: 36px;}
                }
                .sec02-b-img {
                    height: 60vw;
                    max-height: 250px;
                    background-position: center;
                    justify-content: center;
                }
            }
        }
        &::before {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(123, 187, 228, 0.38) 20%, rgba(255, 255, 255, 0.66) 100%);
        }
    }

    #contact {

        .contact-wrap {
            flex-direction: column;
            gap: 3rem;
            padding: 3rem 2rem;

            .contact-tit {
                max-width: 375px;
                width: 100%;
            }
            .contact-text {
                width: 100%;
                .contact-link {
                    /* display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 1rem; */
                }
                .tel-number {
                   display: block;
                }
            }
        }
    }

    
    .contact-form dl > div.contact-short-item { display: block;}
    .contact-form dl dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: auto;
        padding: 5px 0;
    }
    .contact-form dl dd { 
        width: 100%;
    }
    .contact-form dl dd input, .contact-form dl dd textarea { max-width: 100%;}

    .tab {
        justify-content: center;
    }
    .case-wrap {
        .case-item {
            width: 100%;
        }
    }

    .about-list {
        padding: 0;
    }
    .about-list dt {
        width: 40%;
    }
    .about-list dd {
        width: 60%;
    }

    .step-wrap {
        .step-item {
            display: block;

            .step-num {
                width: 100%;
                text-align: center;
                margin-bottom: 1rem;
            }
            .step-txt {
                padding: 1rem;
            }

        }
    }

    #titbar { margin-top: 70px;}
    #titbar h1 { 
        font-size: 26px;
     }
    .other-content .flex-box {
        display: block;
    }

    #contact {
        .contact-wrap {
            .contact-text {
                .contact-link {
                    .tel-number {
                        a {
                            padding: .5em;
                        }
                    }
                    .form-link {
                        a {
                            padding: .5em;                            
                        }
                    }
                }
            }
        }
    } 
    
    .copy{ 
        font-size: 0.8em;
        text-align: center;
        text-wrap: nowrap;
    }
}

@media(max-width: 575px){
    .h-logo { left: 1rem;}
    .h-logo .brand { max-width: 185px;}

    .main-wrap {
        width: 100%;
        /* max-height: 460px;
        height: 80vh; */
        height: calc(90vh - 80px);

        &::after { 
            top: 70vw;
        }

        .title {
            left: 55%;
            bottom: .5rem;
            width: 100%;
            font-size: 9.5vw;
            line-height: 1.4;
            text-align: left;
        }
    }
    .scroll {
        display: none;
        top: 60vh;
        right: 2.5%;
    }

    .main-text {
        height: 135vh;
    }

    #contact {
        .contact-wrap {
            padding: 3rem 1rem;
            .contact-text {
                .contact-link {
                    display: block;
                }
            }
        }
    }
    

    .sec-wrap {
        width: 80%;
    }
    .table th, .table td {
        display: block;
        width: 100%;
    }
    .table th { border-bottom: none; padding-top: 20px; }
    .table td { padding-top: 0; padding-bottom: 25px; }
    .table td *:last-of-type { margin-bottom: 0; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .sec-inline { padding-inline: initial; padding-left: 7%; padding-right: 7%; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll;
        margin-bottom: 1rem;
    }

}

    
@media (any-hover: hover) {
    .h-logo:hover a, .menu-link:hover { opacity: .5;}

    .menu-list > ul > li > a:hover::after { width: 100%;}

    .sec02-box a:hover .btn01 {
        color: #fff;
        background: #026CB6;

        .arrow { 
            background: #fff;
            svg { stroke: #026CB6;}
        }
    }
    .btn01:hover {
        background: #026CB6;
        a {
            color: #fff;

            .arrow { 
                background: #fff;
                svg { stroke: #026CB6;}
            }
        }
    }

    .tab a:hover {
        background: #fff;
        color: #026CB6;
    }

    .tel-btn:hover {
        background: #fff;
        a {
            color: #026CB6;
        }
    }

    .contact-link > div:hover  {
        background: #fff;
    }
    #contact {
        .contact-wrap {
            .contact-text {
                .contact-link {
                    .tel-number:hover, .form-link:hover {
                        a {
                            color: #026CB6;
                        }
                    }
                }
            }
        }
    }
}