@charset "UTF-8";
@media screen and (max-width: 767px) {
/* Reset & Basic Settings
-------------------------------------------------- */
:root {
    --primary-color: #f39c12;
    --dark-blue: #4A5A66;
    --dark-blue2: #2E2F41;
    --light-gray: #f5f5f5;
    --text-color: #333;
    --white: #fff;
}

p{
    line-height: 1.8;
}
.container {
    padding:0 5vw;
}
.container_inner {
}
.section {
    padding: 10vw 0 10vw;
}

.section--gray {
    background-color: var(--light-gray);
}

.section__title {
    font-size: 5.5vw;
    margin-bottom: 4.5vw;
}
    .section__title.left {
        gap: 3vw;
    }
    .section__title.sp_center {
        display: block;
    }

.section__title--en {
    display: block;
    font-family: 'EB Garamond', 'Noto Serif JP', 'Yu Mincho', serif;
    font-size: 4.2vw;
    font-weight: normal;
    color: var(--primary-color);
    margin-top: 5px;
}
.section__title--white {
    color: var(--white);
}

.section__description {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.section__description--white {
    color: var(--white);
}

main{
    padding-top: 15vw;
    padding-bottom: 8vw;
}



/* Button
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    padding: 3vw 4vw;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
}
.btn--large {
    padding: 3vw 10vw;
    font-size: 4.5vw;
}


/* Header
-------------------------------------------------- */
.header {
    background-color: rgba(240, 241, 243, .9);
    padding: 0 2vw;
}
.header__container {
    height: 15vw;
    padding: 2vw 0;
    box-sizing: border-box;
}
.header__logo a {
    font-size: 2.8vw;
    padding: 3vw 3vw 3.1vw;
}
    .header__logo a span{
        font-size: 3.5vw;
    }
.header__nav {
    display: none;
}
.sp-nav__btn{
    display: block !important;
    width: 10vw;
    height: 10vw;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
    .sp-nav__btn span{
        display: block;
        position: relative;
        width: 6vw;
        height: 2px;
        background: var(--dark-blue2);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        border-radius: 3px;
    }
    .sp-nav__btn span::before,
    .sp-nav__btn span::after{
        content: "";
        width: 100%;
        height: 2px;
        background: var(--dark-blue2);
        position: absolute;
        left: 0;
        border-radius: 3px;
    }
    .sp-nav__btn span::before{
        top: -1.6vw;
    }
    .sp-nav__btn span::after{
        bottom: -1.6vw;
    }
.sp-nav{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-blue2);
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
}
.sp-nav.is-open{
    display: block;
    visibility: visible;
    opacity: 1;
}

    .sp-nav .nav-close{
        display: block !important;
        width: 10vw;
        height: 10vw;
        background: var(--white);
        border-radius: 50%;
        position: absolute;
        top: 2.7vw;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
    }
        .sp-nav .nav-close span{
            display: block;
            position: relative;
            width: 6vw;
            height: 2px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            border-radius: 3px;
        }
        .sp-nav .nav-close span::before,
        .sp-nav .nav-close span::after{
            content: "";
            width: 100%;
            height: 2px;
            background: var(--dark-blue2);
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 3px;
        }
        .sp-nav .nav-close span::before{
            transform: rotate(35deg);
        }
        .sp-nav .nav-close span::after{
            transform: rotate(-35deg);
        }
    .sp_header__nav{
        padding-top: 20vw;
        text-align: center;
        font-size: 4.0vw;
    }
        .sp_header__nav li{
            border-bottom: 1px solid #8D8E9E;
        }
        .sp_header__nav li:last-child{
            border-bottom: none;
        }
            .sp_header__nav li a{
                display: block;
                color: var(--white);
                padding: 3.2vw;
                text-decoration: none;
            }


.header__btn{
    width: 25vw;
    margin-left: 5vw;
    margin-right: 3vw;
}
    .header__btn a{
        border-radius: 10vw;
        padding: 2.1vw 5vw 2.0vw;
        font-size: 3.2vw;
    }

/* Hero
-------------------------------------------------- */
.mv {
    position: relative;
    padding: 0 4.5vw 5vw;
}
.mv .mv__txt {
    font-size: 5vw;
    text-align: center;
}
    .mv .mv__txt .mv__title{
        font-size: 7vw;
    }
        .mv .mv__txt .mv__title span{
            font-size: 8vw;
        }


/* About
-------------------------------------------------- */
section#about{
    padding-bottom: 0;
}
.about-wrap{
    position: relative;
}
.about__block{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
    margin:0 auto;
}
.about__block .txt-area{
    width: 100%;
    text-align: left;
    padding-top: 0px;
}
.about__heading {
    font-size: 4.5vw;
    margin-bottom: 4vw;
}
.about__text {
    margin-bottom: 0px;
}
.about__block .img-area {
    width: 100%;
    margin: 0 auto 4.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .about__block .img-area img {
        max-width: none;
        width: 110vw;
    }

/* Message
-------------------------------------------------- */
.message__block{
    background-color: var(--white);
    padding: 8vw 5.0vw;
    border-radius: 4vw;
}
.message__content {
    margin: 0 auto;
}
.message__content dl{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
    line-height: 1.8;
    gap: 3vw;
}
.message__content dl dt {
    width: 100%;
    text-align: right;
    font-size: 4vw;
}
    .message__content dl dt span{
        padding-left: 0px;
    }
    .message__content dl dt span::before{
        display: none;
    }
.message__content dl dd {
    padding-left: 0px;
}
.message__content p + p {
    margin-top: 1.4em;
}

/* Service
-------------------------------------------------- */
.service__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 5vw;
}
.service-card {
    padding: 6vw 5vw;
    border-radius: 2vw;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0;
    width: 100%;
}
.service-card.is-open {
    width: 100%;
}
.service-card::after {
    display: none;
}
.service-card-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.service-card__head{
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
    .service-card__icon {
        width: 6vw;
        height: 6vw;
        margin-bottom: 0px;
        flex-shrink: 0;
        padding:0;
    }
    .service-card__title {
        width: calc(100% - 6vw);
        height: auto;
        padding-left: 2vw;
        font-size: 4.5vw;
        margin-bottom: 0;
        text-align: left;
    }
.service-card__text {
    width: auto;
    padding: 3.0vw 0 0;
    text-align: left;
    font-size: 3.8vw;
}
    .service-card__text .link{
        border-top: 1px solid #eee;
        margin-top: 0.8em;
        padding-top: 0.8em;
        font-size: 3.5vw;
        line-height: 1.6;
    }
    .service-card__text a[target=_blank]{
        padding-right: 5vw;
        background: url(../img/ico-blank02.svg) no-repeat right center;
        background-size: 3.5vw auto;
    }
/* Advantages
-------------------------------------------------- */
.advantages__grid {
    display: grid;
    grid-template-columns: 1fr;
}
.advantage-item {
    gap: 3vw;
    padding: 5vw 0;
    font-weight: normal;
    border-bottom: 1px solid #7B858D !important;
}
.advantage-item:nth-child(even) {
    border-left: none;
}
.advantage-item__number {
    font-size: 12vw;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.advantage-item__content{
    padding-left: 10vw;
}
.advantage-item__title {
    font-size: 4.2vw;
    margin-bottom: 2vw;
    padding-left: 9vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 8vw;
    
}
.advantage-item__title.ico01 ,
.advantage-item__title.ico03 ,
.advantage-item__title.ico04 {
    background-size: 7.5vw auto;
}
.advantage-item__title.ico02 {
    background-size: 6.8vw auto;
}


/* Company
-------------------------------------------------- */
.company-info {
    border-top: none;
    display: grid;
    grid-template-columns: 1;
}
.company-info dt{
    padding: 3.5vw 0 0.8vw;
    border-bottom: none;
    font-weight: normal;
    color: #5D5D5D;
    font-size: 3.5vw;
    width: 100%;
}
.company-info dd {
    padding: 0vw 0 3.5vw;
    border-bottom: 1px solid #ddd;
    width: 100%;
}


/* Contact
-------------------------------------------------- */
.contact {
    text-align: center;
}
.contact .section__description{
    text-align: left;
}
.contact .btn {
    margin-top: 4vw;
}

/* Policy
-------------------------------------------------- */
.policy-txt dl{
    margin-bottom: 8vw;
}
.policy-txt dt{
    font-size: 4.2vw;
    margin-bottom: 1.5vw;
}
.policy-txt dd{
    padding:0;
}
.policy-txt dd ul{
    margin: 1vw 0;
}
.policy-txt dd ol{
    margin: 1vw 0;
}
.policy-txt dd li{
    margin: 0.5vw 0;
}



/* Footer
-------------------------------------------------- */
.footer {
    padding: 4.0vw 5vw;
    text-align: center;
}
.footer__nav {
    font-size: 3.5vw;
}
    .footer__nav a {
        color: #FFFFFF;
        text-decoration: underline;
    }
    .footer__nav a:hover {
        text-decoration: none;
    }
.footer .copy {
    margin-top: 1.5vw;
    font-size: 3.0vw;
}

/* Page Top
-------------------------------------------------- */
.pagetop {
    right: 10px;
    bottom: 5vw;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    letter-spacing: 0;
}
    .pagetop span{
        padding-top: 15px;
    }
    .pagetop span::before{
        width: 16px;
        height: 16px;
        top: 0;
        left: calc(50% - 2px);
    }

/* bnr-area
-------------------------------------------------- */
.bnr{
    padding: 0px 0 7vw;
}
.bnr-area{
    gap: 7vw;
}
.bnr-area img{
    width: 100%;
    height: auto;
}
.bnr-area a[target=_blank]::after{
    width: 3.5vw;
    height: 3.5vw;
    background-size: 3.5vw auto;
    position: absolute;
    top: 2vw;
    right: 2vw;
}

/* scroll-logo
-------------------------------------------------- */
.scroll-logo {
    font-size: 12vw;
}
.scroll-logo ul li{
    margin: 0 1vw;
}




















/* -------------------------------------------------- */
}/* -------------------------------------------------- */