@import url("reset.css");
@import url("common.css");



/* color */
:root {
    --black: #1F1F1F;
    --orange: #FF5800;
    --gray: #ADADAD;
    --lightgray: #F7F7F7;
}



/* animation */
@keyframes flowing {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}



/* base */
html {
    font-size: calc(100vw * 10 / 1440);
    scroll-behavior: smooth;
}
* {
    color: var(--black);
    box-sizing: border-box;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: #FFF;
    position: relative;
}
body.hidden {
    overflow: hidden;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.eg {
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
}
.object-fit {
    overflow: hidden;
}
.object-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
} */

@media screen and (min-width: 1440px) {
    html {
        font-size: 10px;
    }
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 10px;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    /* a[href*="tel:"] {
        pointer-events: all;
        cursor: pointer;
    } */
}
@media screen and (max-width: 430px) {
    html {
        font-size: calc(100vw * 10 / 430);
    }
}



/* btn */
.btn01 {
    width: 24.6rem;
    background: #FFF;
    border: .2rem solid var(--orange);
    border-radius: 6rem;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn01 span {
    color: var(--orange);
    font-size: 1.6rem;
}
.btn01__item {
    width: 2.6rem;
}
.btn01__item img {
    width: 100%;
}
@media screen and (max-width: 1000px) {
    .btn01 {
        width: 22.4rem;
        padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    }
    .btn01 span {
        font-size: 1.5rem;
    }
    .btn01__item {
        width: 3.5rem;
    }
}




/*================================================
 *  追加cssここから
 ================================================*/
section {
    padding-bottom: 13rem;
    position: relative;
    z-index: 1;
}

.section {
    padding-top: 13rem;
}

.l-wrap {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

.c_ttl {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: 700;
}

.c_ttl span {
    font-size: 1.6rem;
    display: block;
    color: var(--orange);
    margin-bottom: 1rem;
}

.c-sub_ttl {
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 700;
}

i.icon {
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
}

.btn01 .ja {
    font-weight: bold;
}

.btn01 .btn01__item {
    transition: transform .3s ease;
}

.btn01:hover .btn01__item {
    transform: scale(1.1);
}

.btnRotate_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: none;

    align-content: center;
    align-items: center;
    justify-content: flex-start;

    gap: 0.8rem;
    height: 2rem;
    padding: 0;
    max-width: 100%;

    position: relative;
    z-index: 0;

    pointer-events: all;
    -webkit-overflow-scrolling: touch;

    overflow-x: hidden;
    overflow-y: hidden;
}

.btnRotate_wrap span:first-of-type {
    flex: none;
    line-height: 1.4;
    height: 2rem;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    width: auto;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

a:hover .btnRotate_wrap span:first-of-type {
    margin: -2.8rem 0px 0px 0px;
}

.btnRotate_wrap span:nth-of-type(2) {
    flex: none;
    line-height: 1.4;
    height: 2rem;
    width: auto;
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1000px) {
    .l-wrap {
        width: 90%;
        max-width: 70rem;
        margin: 0 auto;
    }

    .c_ttl {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }

    .c_ttl span {
        font-size: 1.5rem;
    }

    .c-sub_ttl {
        font-size: 2rem;
    }
}



/* overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
body.fade::after {
    opacity: 1;
    transition: none;
}