@charset "UTF-8";

/* ====================
common
==================== */
:root {
    --color-primary: #FF6A06;
    --color-conversion: #FA4A35;
    --color-background: #FFE9C0;
    --color-line: #D9D9D9;
    --color-box01: #F8A300;
    --color-box02: #B8BABB;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-yellow: #FFC800;
    --color-gray: #D9D9D9;
    --color-question: #E65F01;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    z-index: -10;
    background-image: url(../images/background.jpg);
    background-repeat: repeat;
    font-family: 
        'Inter',
        'Roboto',
        'Noto Sans JP',
        sans-serif;
    font-style: normal;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

.pcBr {
    display: none;
}

.spanPc {
    display: none;
}

.pPc {
    display: none;
}

.requestBtn {
    width: 81%;
    max-width: 302px;
    height: auto;
    background-color: var(--color-conversion, #FA4A35);
    border-radius: 3px;
}

.requestBtn:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.requestBtn__text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 54px;
    color: var(--color-white, #FFFFFF);
    text-align: center;
}

/* common pc 770px~ */
@media screen and (min-width:769px) {
    .spanPc {
        display: inline;
    }

    .spanSp {
        display: none;
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: inline;
    }

    .pPc {
        display: inline;
    }

    .requestBtn {
        width: 356px;
        max-width: 356px;
        border-radius: 4px;
    }

    .requestBtn__text {
        font-size: 1.8rem;
        line-height: 64px;
    }    
}

/* ====================
header
==================== */
.header {
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    background-color: var(--color-white, #FFFFFF);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header__logo {
    width: 160px;
    height: auto;
    margin-top: 22px;
    margin-left: 15px;
}

.header__menu {
    display: flex;
}

.header__menu--pc {
    display: none;
    margin-top: 19px;
}

.header__menu__nav__list {
    display: flex;
    gap: min(1.5vw, 50px);
}

.header-list__item {
    font-size: min(1.6vw, 1.4rem);
    font-weight: 700;
    line-height: 56px;
}

.header-list__item:hover {
    color: var(--color-primary, #FF6A06);
    transform: scale(1.1);
    transition: 0.2s;
}

.header__menu__phone {
    margin-right: min(2.5vw, 35px);
    margin-bottom: 20px;
    margin-left: min(5vw, 76px);
}

.header__menu__phone:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.header__menu__phone__number {
    position: relative;
    margin-left: 8px;
    font-size: min(2.8vw, 2.8rem);
    font-weight: 600;
    color: var(--color-conversion, #FA4A35);
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

.header__menu__phone__number::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -9px;
    transform: translateX(-100%);
    display: block;
    width: 22px;
    height: 22px;
    background-image: url("../images/phone.svg");
    background-repeat: no-repeat;
}

.header__menu__phone__time {
    margin-top: 2px;
    font-size: min(1.3vw, 1.4rem);
    font-weight: 300;
    font-family: 'Noto Sans JP', sans-serif;
}

.header__orange {
    width: 80px;
    height: 80px;
    padding-top: 50px;
    background-color: var(--color-conversion, #FA4A35);
}

.header__orange:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.header__orange__contact {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white, #FFFFFF);
    text-align: center;
}

.header__orange__contact::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 27px;
    height: 18px;
    background-image: url("../images/mail.svg");
}

/* header pc 770px~ */
@media screen and (min-width:769px) {
    .header {
        height: 90px;
    }

    .header__logo {
        width: 18%;
        max-width: 199px;
        margin-top: 24px;
        margin-left: min(2.5vw, 30px);
    }

    .header__menu--pc {
        display: flex;
    }

    .header__menu__nav {
        display: inline-block;
    }

    .header__menu__phone {
        display: inline-block;
    }

    .header__orange {
        width: 90px;
        height: 90px;
        padding-top: 55px;
    }
}

/* header pc 1200px~ */
@media screen and (min-width:1199px) {
    .header__orange {
        width: 16vw;
        max-width: 240px;
        height: 90px;
        padding-top: 0;
    }

    .header__orange__contact {
        font-size: min(1.6vw, 20px);
        font-weight: 700;
        line-height: 90px;
    }

    .header__orange__contact::after {
        content: none;
    }
}


/* ====================
footer
==================== */
.footer {
    background-color: var(--color-black, #000000);
    width: 100%;
    height: 50px;
}

.copy {
    font-size: 1.2rem;
    line-height: 50px;
    color: var(--color-white, #FFFFFF);
    text-align: center;
}

/* footer pc 770px~ */
@media screen and (min-width:769px) {
    .copy {
        font-size: 1.3rem;
    }
}