@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    letter-spacing: 0.05em;
    font-family: "IBM Plex Sans JP", sans-serif;
}

main {
    position: relative;
}

.shippori {
    font-family: "Shippori Mincho B1", serif;
}

.barlow {
    font-family: "Barlow Condensed", sans-serif;
}

img {
    max-width: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}
/*終わり*/


/*<header class="header">*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 5vw;
    width: 100%;
    z-index: 10;
}

.under-header {
    position: static;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-logo {
    width: 20%;
    display: inline-block;
}

.h-logo {
    max-width: 320px;
    display: block;
}

.header-site-menu {
    width: 70%;
}

.header-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.header-ul-01 {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 24px;
}

.sns-flex-li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sns-btn-01 {
    display: inline-block;
}

.sns-icon {
    display: block;
    max-width: 24px;
    width: 100%;
}

.header-ul-01 .sp-li {
    display: none;
}

.header-ul-02 {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 8px;
}

.header-li-txt {
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
    padding: 4px 0px;
}

.sns-btn-02 {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    padding: 4px 16px;
    border-radius: 50vh;
    box-shadow: 0 0 16px rgba(0,0,0,0.2);
}
/*終わり*/


/*<section class="under-fv">*/
.under-fv {
    background-image: url(../img/common/under_fv.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    width: 100%;
    height: 320px;
}

.under-fv-in {
    width: 100%;
    height: 100%;
    padding: 16px 0;
    max-width: 1072px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.under-fv-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.under-h1-wrap {
    width: 20%;
}

.under-h1 {
    font-size: 24px;
    font-weight: 600;
}

.under-fv-txt-wrap {
    width: 70%;
}
/*終わり*/


/*<div class="under-scroll">*/
.under-scroll {
    position: absolute;
    left: clamp(calc(1vw), calc(5 / 1400 * 100vw), 5vw);
    top: 50vh;
    writing-mode: vertical-rl;
    font-weight: 600;
    font-size: 14px;
    color: #002c75;
    z-index: 2;
}

.under-scroll::before {
    animation: under-scroll 3s infinite;
    background-color: #002c75;
    bottom: -250px;
    content: "";
    height: 240px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
}

@keyframes under-scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/*終わり*/


/*<section class="price">*/
.price {
    padding: 80px 5vw 40px 5vw;
    background-color: #3781e1;
}

.price-in {
    max-width: 1072px;
}

.price-h2-wrap {
    text-align: center;
}

.price-h2 {
    position: relative;
    font-size: 40px;
    color: #fff;
    display: inline-block;
    padding-left: 40px;
}

.price-h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #efe800;
}

.hearing-flex {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hearing-img-wrap {
    width: 20%;
    max-height: 400px;
}

.hearing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hearing-txt-wrap {
    width: 60%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 600;
    font-size: 14px;
    padding: 24px;
}

.hearing-title {
    color: #007cf3;
    font-weight: 600;
    font-size: 32px;
}

.hearing-txt-01 {
    background-color: #007cf3;
    color: #fff;
    padding: 16px 32px;
    font-size: 20px;
    border-radius: 24px;
}

.hearing-btn {
    display: block;
    width: 100%;
    background-image: radial-gradient(#002d9e, #020065);
    padding: 16px 24px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
/*終わり*/


/*<section class="method">*/
.method {
    padding: 40px 5vw 80px 5vw;
    background-color: #3781e1;
}

.method-in {
    max-width: 1072px;
}

.method-h2-wrap {
    text-align: center;
}

.method-h2 {
    position: relative;
    font-size: 40px;
    color: #fff;
    display: inline-block;
    padding-left: 40px;
}

.method-h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #efe800;
}

.method-txt-wrap {
    margin-top: 40px;
    background-color: #fff;
    padding: 64px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    gap: 24px;
}

.method-title {
    color: #007cf3;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

.method-txt-01 {
    text-align: center;
}

.method-btn-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.method-line-btn {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #00a629;
    color: #fff;
    padding: 16px;
}

.line-icon {
    max-width: 32px;
    width: 100%;
}

.method-mail-btn {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #3781e1;
    color: #fff;
    padding: 16px;
}

.mail-icon {
    max-width: 24px;
    width: 100%;
}

.method-txt-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.method-txt-flex::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 24%;
    width: 40px;
    height: 1px;
    border-bottom: solid 1px #333;
}

.method-txt-bold {
    width: 30%;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
}

.method-txt-02 {
    position: relative;
    width: 65%;
    font-weight: 400;
}
/*終わり*/


/*<section class="c-contact">*/
.c-contact {
    padding: 80px 5vw 240px 5vw;
    background-image: url(../img/common/contact_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.c-contact-in {
    position: relative;
    max-width: 1072px;
    color: #fff;
}

.c-contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10%;
}

.c-contact-h2 {
    font-size: 32px;
    border-bottom: solid 1px rgba(255,255,255,0.4);
    padding-bottom: 8px;
}

.c-contact-en-title {
    width: 40%;
}

.c-contact-txt-wrap {
    position: relative;
    padding: 0 16%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.c-contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.c-contact-tel {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 48px;
    letter-spacing: 0.1em;
}

.c-contact-tel .tel-icon {
    max-width: 24px;
    width: 100%;
}

.c-contact-btn {
    color: #333;
    background-color: #efe800;
    padding: 16px 24px;
    text-align: center;
    font-weight: 800;
    border-radius: 50vh;
    font-size: 14px;
    width: 40%;
}

.wiseworks-txt {
    position: absolute;
    bottom: -240px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 80px 5vw;
    background-color: #f1f1f1;
}

.footer-in {
    max-width: 1000px;
}

.footer-flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.footer-flex-l {
    width: 70%;
}

.footer-logo {
    max-width: 320px;
    width: 100%;
}

.office-wrap-01 {
    margin-top: 32px;
    padding-left: 16px;
}

.office-wrap-02 {
    margin-top: 16px;
    padding-left: 16px;
}

.office-title {
    padding: 0 16px;
    border: solid 1px #333;
    display: inline-block;
    font-weight: 600;
}

.office-txt-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding-left: 8px;
}

.office-txt {
    font-size: 14px;
}

.map-btn {
    display: inline-block;
}

.map-icon {
    display: block;
    max-width: 40px;
    width: 100%;
}

.footer-flex-r {
    width: 30%;
}

.footer-sns-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.f-sns-btn {
    display: inline-block;
}

.f-sns-icon {
    display: block;
    max-width: 24px;
    width: 100%;
}

.footer-ul {
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-ul .left-line {
    position: relative;
    padding-left: 40px;
}

.footer-ul .left-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background-color: #333;
}
/*終わり*/


/*1025px～1264px*/
@media (min-width:1025px) and ( max-width:1264px) {
/*<header class="header">*/
    .header-nav {
        font-size: 10px;
    }
/*終わり*/  
    
}
/*終わり*/      


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .header-logo {
        position: relative;
        width: 50%;
        z-index: 30;
    }

    .header-site-menu {
        position: relative;
        width: 50%;
        height: 100%;
    }    

    /*ハンバーガーボタン*/
    .hamburger {
        display : block;
        z-index : 999;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);      
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display : block;
        position: absolute;
        width   : 40px;
        height  : 2px ;
        left    : 6px;
        background : #020065;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition   : 0.5s ease-in-out;
        transition        : 0.5s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top : 20px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform   : rotate(315deg);
        transform        : rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 20px;
        -webkit-transform: rotate(-315deg);
        -moz-transform   : rotate(-315deg);
        transform        : rotate(-315deg);
    }

    .header-nav {
        position: fixed;
        z-index : 20;
        top  : 0;
        right: 0;
        background-color: #fff;
        text-align: center;
        transform: translateX(130%);
        transition: all 0.5s;
        width: 100%;
        height: 100vh;
        font-size: 16px;
        opacity: 0;
    }

    .header-ul-01 {
        width: 100%;
        margin: 0 auto;
        height: 100%;
        padding: 0 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 15;
    }

    .header-ul-02 {
        display: none;
    }
    
    .header-ul-01 li {
        width: 100%;
    }

    .sns-flex-li {
        justify-content: center;
        margin-bottom: 40px;
    }    

    .header-ul-01 .sp-li {
        display: block;
        width: 80%;
    }

    .header-nav ul li a {
        display: block;
    }

    .header-ul-01 .sp-li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        gap: 16px;
    }

    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
        transform: translateX(0%);
        opacity: 1;
    }
/*終わり*/


/*<section class="under-fv">*/
    .under-fv {
        margin-top: 110px;
    }

    .under-fv-flex {
        flex-direction: column;
        gap: 24px;
    }    

    .under-h1-wrap {
        width: 100%;
    }
        
    .under-fv-txt-wrap {
        width: 100%;
    }    
/*終わり*/


/*<div class="under-scroll">*/
    .under-scroll {
        left: 2vw;
        top: calc(20px + 320px);
        font-size: 12px;
    }

    .under-scroll::before {
        bottom: -170px;
        height: 160px;
    }
/*終わり*/


/*<section class="price">*/
    .price-h2 {
        font-size: 32px;
    }

    .hearing-txt-wrap {
        padding: 16px 24px;
    }

    .hearing-title {
        font-size: 24px;
    }

    .hearing-txt-01 {
        padding: 16px;
        font-size: clamp(calc(14px), calc(16 / 1024 * 100vw), 16px);
        border-radius: 16px;
    }
/*終わり*/


/*<section class="method">*/
    .method-h2 {
        font-size: 32px;
    }

    .method-txt-wrap {
        padding: 40px;
    }    

    .method-txt-flex {
        flex-direction: column;
    }
    
    .method-txt-flex::before {
        content: "";
        display: none;
    }    

    .method-txt-bold {
        width: 100%;
    }
    
    .method-txt-02 {
        width: 100%;
        margin-top: 8px;
    }    
/*終わり*/


/*<section class="c-contact">*/
    .c-contact {
        padding: 80px 5vw 200px 5vw;
    }

    .c-contact-txt-wrap {
        padding: 40px 0 0 0;
    }

    .wiseworks-txt {
        bottom: -200px;
    }    
/*終わり*/


/*<footer class="footer">*/
    .footer {
        padding: 64px 5vw;
    }
    
    .footer-flex-l {
        width: 65%;
    }

    .footer-logo {
        max-width: 240px;
    }

    .office-wrap-01 {
        padding-left: 0;
    }

    .office-wrap-02 {
        padding-left: 0;
    }

    .office-txt {
        font-size: clamp(calc(12px), calc(14 / 1024 * 100vw), 14px);
    }

    .footer-flex-r {
        width: 35%;
    }

    .footer-ul {
        font-size: clamp(calc(12px), calc(14 / 1024 * 100vw), 14px);
    }
/*終わり*/


}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
/*終わり*/  


/*<header class="header">*/
    .header {
        height: 60px;
        padding: 16px 5vw;
    }

    /*ハンバーガーボタン*/
    .header-ul-01 {
        gap: 16px;
    }

    .sns-flex-li {
        margin-bottom: 32px;
    }    

    .header-ul-01 .sp-li {
        width: 100%;
    }

    .header-ul-01 .sp-li a {
        padding: 8px;
    }
/*終わり*/  


/*<section class="under-fv">*/
    .under-fv {
        margin-top: 60px;
        height: 240px;
    }

    .under-fv-flex {
        gap: 16px;
    }    

    .under-h1 {
        font-size: 20px;
    }
    
    .under-fv-txt-wrap {
        font-size: 12px;
    }    
/*終わり*/


/*<div class="under-scroll">*/
    .under-scroll {
        top: 260px;
        font-size: 10px;
    }

    .under-scroll::before {
        bottom: -110px;
        height: 100px;
    }
/*終わり*/


/*<section class="price">*/
    .price {
        padding: 64px 5vw 40px 5vw;
    }

    .price-h2 {
        font-size: 24px;
        padding-left: 24px;
    }

    .price-h2::before {
        width: 12px;
        height: 12px;
    }    

    .hearing-flex {
        display: block;
    }

    .hearing-img-wrap {
        display: none;
    }
    
    .hearing-txt-wrap {
        width: 100%;
        padding: 16px;
    }
    
    .hearing-title {
        font-size: 20px;
    }

    .hearing-txt-01 {
        display: block;
        width: 100%;
        text-align: center;
    }    
/*終わり*/


/*<section class="method">*/
    .method {
        padding: 40px 5vw 64px 5vw;
    }

    .method-h2 {
        font-size: 24px;
        padding-left: 24px;
    }

    .method-h2::before {
        width: 12px;
        height: 12px;
    }    

    .method-txt-wrap {
        padding: 16px;
        font-size: 14px;
    }    

    .method-title {
        font-size: 20px;
    }
    
    .method-txt-01 {
        text-align: left;
    }

    .method-btn-flex {
        flex-direction: column;
        gap: 8px;
    }

    .method-btn-flex a {
        width: 100%;
    }

    .method-txt-bold {
        font-size: 18px;
    }
/*終わり*/


/*<section class="c-contact">*/
    .c-contact {
        padding: 64px 5vw 120px 5vw;
    }

    .c-contact-title-wrap {
        justify-content: space-between;
        gap: 16px;
    }
    
    .c-contact-h2 {
        font-size: 24px;
    }    

    .c-contact-txt-wrap {
        gap: 32px;
    }    

    .c-contact-flex {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    
    .c-contact-tel {
        width: 100%;
        justify-content: center;
        font-size: 40px;
    }
    
    .c-contact-tel .tel-icon {
        max-width: 24px;
        width: 100%;
    }
    
    .c-contact-btn {
        width: 100%;
    }
    
    .wiseworks-txt {
        bottom: -120px;
    }    
/*終わり*/


/*<footer class="footer">*/
    .footer {
        padding: 40px 5vw;
        background-color: #f1f1f1;
    }

    .footer-flex {
        flex-direction: column;
        gap: 64px;
    }

    .footer-flex-l {
        width: 100%;
    }

    .office-txt-wrap {
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        padding-left: 0;
    }   
    
    .footer-flex-r {
        width: 100%;
    }
/*終わり*/

}