@charset "utf-8";

@media (max-width: 1024px) {
    /* Tablet */

}

@media (max-width: 599px) {
    /* SP */

}




body {
    min-width: 320px;
}

body,
p,
a,
a:link,
a:visited,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2F2F2F;
    font-weight: 400;
}

button {
    cursor: pointer;
}

.blue {
    color: #2780D0;
}

.back_blue {
    background-color: #2780D0;
}


/* --- font awsomeの基本設定 --- */
.fas {
    font-size: 1.2em;
    padding-right: 0.25em;
    vertical-align: middle;
    position: relative;
    bottom: 0.1em;
}



/* --------------------

section,
h3

--------------------*/
section {
    padding: 100px 0;
}

h3 {
    font-size: 4.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 900;
    color: #02B199;
    margin-bottom: 1.75em;
}

/* h3::after {
    content: '';
    display: block;
    width: 120px;
    margin: 35px auto 0;
    height: 4px;
    background-color: #02B199;
} */
h3.white {
    color: #fff;
}

/* h3.white::after {
    background-color: #fff;
} */


@media (max-width: 1024px) {

    /* Tablet */
    section {
        padding: 80px 0;
    }

    h3 {
        font-size: 3rem;
    }
}

@media (max-width: 599px) {

    /* SP */
    section {
        padding: 60px 0;
    }

    h3 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25em;
    }

    /* h3::after {
        width: 80px;
        margin: 15px auto 0;
        height: 2px;
    } */
}

/* --------------------

marker

--------------------*/
.marker {
    background: linear-gradient(transparent 60%, #FFFF00 0%);
    display: inline;
}

/* --------------------

header

--------------------*/
header {
    height: 80px;
    position: relative;
    z-index: 9999;
    position: fixed;
    width: 100%;
    padding: 0 20px;
    transition: 0.3s;
}

header .inner {
    width: 100%;
}

header .site_logo {
    height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: auto;
}

header .site_logo img {
    object-fit: contain;
    width: auto;
    transition: 0.3s;
    display: none;
}

/* .header_nav_item a {
    font-weight: 500;
    display: block;
    padding-right: 1em;
} */
.header_btn a {
    width: 300px;
    display: block;
    text-align: center;
    border: 1px solid #FF8900;
    background-color: #FF8900;
    color: #fff;
    border-radius: 80px;
    white-space: nowrap;
    padding: 0.75em 0em;
    font-size: 1.8rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.header_btn.contact a {
    background-color: #fff;
    color: #FF8900;
    margin-right: 0.5em;
}

@media (max-width: 1024px) {

    /* Tablet */
    header {
        padding-top: 10px;
        padding-right: 5px;
        padding-left: 5px;
    }

    header .site_logo {
        height: 60px;
    }

    .header_btn a {
        width: 240px;
        font-size: 1.4rem;
    }

    .header_btn.contact a {
        margin-right: 0.25em;
    }
}

@media (max-width: 599px) {

    /* SP */
    header {
        height: 60px;
        padding-top: 0;
    }

    header .site_logo {
        height: 60px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 5px;
    }
}

.header.change-color {
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.header.change-color .site_logo img {
    display: block;
}

.header .header_btn {
    transition: 0.3s;
}

.header .header_btn.contact {
    display: none;
}

.header .header_btn.trial {
    display: none;
}

.header.change-color .header_btn.trial {
    display: block;
}

.header.change-color .header_btn.contact {
    display: block;
}

/* --------------------

  sp_nav

-----------------------*/
/*　---ハンバーガーボタン---　*/
.hamburger {
    display: block;
    z-index: 11;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #02B199;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 35px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 18px;
}

.hamburger span:nth-child(2) {
    top: 28px;
}

.hamburger span:nth-child(3) {
    top: 38px;
}

/* -----ナビ開いてる時のボタン----- */
.hamburger.active {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    left: 12px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 50%;
    left: 12px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active::after {
    content: '';
}

/* ----- globalMenuSp ----- */
nav.globalMenuSp {
    width: 280px;
    /* 横幅設定 */
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(280px);
    /* 横幅設定 */
    transition: all .5s;
    padding-top: 60px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;

}

nav.globalMenuSp ul li a {
    color: #313131;
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
    width: 95%;
    margin: 0 auto;
    font-size: 20px;
    display: block;
    font-weight: 500;
}

nav.globalMenuSp ul li.current a {
    color: #2780D0;
    border-bottom: 1px solid #2780D0;
    font-weight: 700;
}

nav.globalMenuSp ul li.sp-contact a {
    line-height: inherit;
    margin-top: 30px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateZ(0);
}

.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
}

.overlay.active {
    width: 100%;
    height: 100vh;
    opacity: 1;
}

/* ------------------------------

フッター

------------------------------*/

#footer {
    padding: 2.25vw 0;
}

#footer .container {
    padding-right: 0% !important;
    padding-left: 0% !important;
    width: clamp(680px, 65%, 1280px) !important;
}

#footer p,
#footer a {
    font-weight: 500;
}

#footer ul li+li:before {
    content: '｜';
    font-size: max(0.810vw, 12px);
}

.footer_nav {
    margin-bottom: 7.5231vw;
}

.footer_nav ul {
    text-align: center;
}

.footer_nav ul li {
    display: inline-block;
}

.footer_nav ul li+li:before {
    margin: 0 1.736vw;
}

.footer_nav ul li a {
    font-size: max(0.810vw, 12px);
}

#footer ul li a {
    display: inline-block;
    line-height: 1.2;
}

.footer_addr {
    font-size: max(0.7523vw, 10px);
    line-height: 1.5;
    margin: 1.157vw 0 2.3148vw;
}

.footer_btm ul li+li:before {
    margin: 0 0.463vw;
    position: relative;
    top: 0.1157vw;
}

.footer_btm ul li a {
    font-size: max(0.7523vw, 10px);
}

.copyright {
    font-size: max(0.6366vw, 10px);
}

@media (max-width: 750px) {

    #footer {
        padding: 7vw 4vw 25vw;
    }

    #footer .container {
        width: initial !important;
    }

    .footer_nav {
        margin-bottom: 10vw;
    }

    #footer ul li a {
        line-height: 2;
        font-size: 3.2vw;
    }

    .footer_nav ul li+li:before {
        margin: 0 5vw;
    }

    .footer_btm {
        flex-direction: column;
        align-items: start;
    }

    .footer_addr {
        margin: 4vw 0 8vw;
        font-size: 2.9333vw;
    }

    .footer_btm ul {
        flex-direction: column;
        align-items: start;
    }

    #footer .footer_btm ul li+li:before {
        content: none;
    }

    .footer_btm ul li a {
        font-size: 2.93333vw;
    }

    .copyright {
        margin-top: 15vw;
        text-align: center;
        width: 100%;
        font-size: 2.6666vw;
    }
}

/* ---------------------------

モーダル

--------------------------- */
.modal {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
}

.modal__bg {
    background: rgba(100, 100, 100, 0.9);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
}

.modal__content .bigimg img {
    object-fit: contain;
    max-height: calc(100vh - 100px);
    max-width: 100%;
}

a.js-modal-close {
    font-size: 3.2rem;
    text-align: right;
    display: block;
    color: #fff;
}

@media (max-width: 1024px) {

    /* Tablet */
    .modal__content {
        width: 70%;
    }
}

@media (max-width: 599px) {

    /* SP */
    .modal__content {
        width: calc(100% - 20px);
    }
}

/* --------------------

#pagetop

--------------------*/
#page_top {
    position: fixed;
    right: 15px;
    bottom: -60px;
    background-color: #1BBED4;
    border-radius: 50%;
    width: 50px;
    line-height: 50px;
    text-align: center;
    z-index: 99999;
}

#page_top:hover {
    opacity: 0.5;
}

#page_top a {
    display: block;
}

#page_top a:hover {
    opacity: 1;
}

#page_top .fas {
    color: #fff;
    font-size: 32px;
    padding: 0;
}

@media print {
    #page_top {
        display: none;
    }
}



.btn-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9998;
}

.btn-nav .header_nav_item {
    width: 50%;
    margin: 0;
}

.btn-nav .header_nav_item a {
    margin: 0;
    width: 100%;
    display: block;
    border-radius: 0px;
    font-weight: 700;
    padding: 1.5em 0;
    white-space: inherit;
    letter-spacing: normal;
    height: 100%;
}

.btn-nav .header_nav_item a:hover {
    opacity: 1;
}

/* --------------------

  fadeUp

--------------------*/
/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}


.card-service-cta {
    margin-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    position: relative;
    display: none;
}




.card-service-cta__catch {
    font-size: 13px;
    font-weight: 600;
    color: #02B199;
    line-height: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #02B199;
    white-space: nowrap;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    top: -10px;

}

.card-service-cta__link {
    background-color: #02B199;
    color: #fff !important;
    font-size: 18px;
    font-weight: 500 !important;
    border-radius: 4px;
    padding: 0.65em 1.5em 0.35em;
    display: inline-block;
    box-shadow: 0 3px 0 #006456;
}

.header.change-color .card-service-cta {
    display: block;
}

@media (max-width: 1440px) {
    .card-service-cta {
        display: none;
    }

    .header.change-color .card-service-cta {
        display: none;
    }
}


.card-service-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    display: block;
    z-index: 99999;
}


@media (max-width: 1024px) {
    /* Tablet */
    .card-service-banner {
        width: 80px;
    }
}

@media (max-width: 599px) {
    /* SP */
    .card-service-banner {
        width: 60px;
    }

}