@charset "UTF-8";

/*
ブレイクポイント
SP 〜1199px
pc 1200px~ (min-width:1200px)
*/


/*======================
変数宣言
======================*/
:root {
    --text-color: #333;
    --main-color: #ff9600;
    --size-sm: 1.2rem;
    --size-md: 1.6rem;
    --size-lg: 2.0rem;
    --size-xl: 2.8rem;
    --size-xxl: 4.8rem;
    --font: "Noto Sans JP", sans-serif;
    --font-title: "M PLUS 1p", sans-serif;
    --gutter-base: 10px;
    --contents-side-gutter: calc(var(--gutter-base)*2);
    --section-gutter: calc(var(--gutter-base)*6);
    --section-gutter-pc: calc(var(--gutter-base)*8);
}

html {
    font-size: 62.5%;
}

body {
    color: var(--text-color);
    font-size: var(--size-md);
    line-height: 1.75;
    font-family: var(--font);
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.center {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pc {
    display: none;
}

.title {
    margin: 0 auto;
    text-align: center;
}


h2 {
    font-family: var(--font-title);
    font-weight: bold;
    font-size: var(--size-xl);
    display: inline-block;
    position: relative;
    margin-bottom: 2em;
}

h2::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 6px;
    background-color: var(--main-color);
}

/*======================
header
======================*/
header {
    width: 100%;
}

header .logo {
    position: fixed;
    padding: var(--gutter-base);
    width: 100px;
    z-index: 100;
}

/*======================
fv
======================*/
.fv {
    background-image: url(../img/bg_fv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    width: 100%;
    z-index: 10;
}

.fv .fv_inner {
    max-width: 1200px;
    height: 85vh;
    max-height: 900px;
    margin: 0 auto;
    padding-left: var(--contents-side-gutter);
    padding-right: var(--contents-side-gutter);
    position: relative;
}

.fv .fv_copy {
    position: relative;
    z-index: 100;
}

.fv .fv_copy .copy {
    width: 100%;
    max-width: 818px;
}

.fv .fv_copy .copy2 {
    width: 100%;
    max-width: 734px;
}

.fv .hati1 {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 10%;
    max-width: 90px;
}

.fv .hati2 {
    position: absolute;
    top: 7%;
    right: 20%;
    width: 10%;
    max-width: 90px;
}

.fv .hati3 {
    position: absolute;
    top: 13%;
    right: 0;
    width: 10%;
    max-width: 90px;
}

.fv .fv_hito {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 416px;
    z-index: 0;
}

.fv .fv_tel {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 964px;
    z-index: 100;
}

/*======================
理由
======================*/
.riyuu {
    background-image: url(../img/bg_dot.jpg);
    background-size: 30px;
    background-repeat: repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.riyuu ul li {
    position: relative;
    text-align: center;
    padding: 2em;
    max-width: 420px;
    margin: 0 auto 60px;
    box-shadow: 5px 5px 5px #ccc;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.riyuu .riyuu_box1 {
    background-color: #fff0f0;
}

.riyuu .riyuu_box2 {
    background-color: #f0fff0;
}

.riyuu .riyuu_box3 {
    background-color: #f0f0ff;
}

.riyuu .riyuu_img {
    padding: 30px 0 30px;
}

.riyuu .riyuu_img img {
    height: 100px;
    margin: 0 auto;
}

.riyuu .riyuu_num {
    position: absolute;
    width: 125px;
    height: 125px;
    top: -20px;
    left: 0;
    border-radius: 50%;
    box-shadow: 3px 3px 3px #ccc;
}

.riyuu h3 {
    font-size: 24px;
    color: var(--main-color);
    padding-bottom: 20px;
}

/*======================
事例
======================*/
.zirei {
    background-image: url(../img/bg_orange.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.zirei ul li {
    background-color: #fff;
    padding: 1em;
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.zirei ul li .zirei_title {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em 0.5em 0.5em 0.7em;
    background-color: var(--main-color);
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 26px;
    line-height: 0.9;
    text-align: center;
}

.zirei ul li .zirei_title span {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
    font-size: 60px;
    font-weight: bold;
}

.zirei ul li .zirei_text dl {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.zirei ul li .zirei_text dl dt {
    padding: 1em;
}

.zirei ul li .zirei_text dl dd {
    padding: 1em;
}

/*======================
蜂
======================*/
.hati {
    background-image: url(../img/bg_grid.jpg);
    background-size: 50px;
    background-repeat: repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
    color: #fff;
}

.hati ul li .hati_img {
    max-width: 550px;
    margin: 0 auto;
}

.hati ul li .hati_text {
    margin: 30px 0;
    text-align: center;
}

.hati ul li .hati_text h3 {
    font-size: var(--size-xl);
    margin-bottom: 20px;
}

.hati .tokutyou {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.hati .tokutyou dt {
    background-color: #e70000;
    padding: 1em;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.hati .tokutyou dd {
    background-color: #fff;
    padding: 1em;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: left;
    color: #333;
}

/*======================
料金表
======================*/
.fee {
    background-image: url(../img/bg_rhombus.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
    text-align: center;
}

.fee .fee_img {
    max-width: 864px;
    margin: 0 auto 30px;
}

/*======================
お客様の声
======================*/
.voice {
    background-image: url(../img/bg_dot.jpg);
    background-size: 30px;
    background-repeat: repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.voice ul li {
    background-color: #ffd46d;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 1em;
    text-align: center;
}

.voice ul li .voice_img {
    max-width: 300px;
    margin: 0 auto 10px;
}

.voice ul li .voice_img img {
    border-radius: 50%;
    border: 10px solid #fff;
}

.voice .voice_name {
    text-align: center;
}

.voice ul li .voice_message {
    position: relative;
    display: inline-block;
    margin: 1.5em auto 1.5em auto;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    background: #fff;
    border-radius: 5px;
}

.voice ul li .voice_message:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
}

/*======================
対応エリア
======================*/
.area {
    background-image: url(../img/bg_sky.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.area dl {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.area dl h3 {
    font-size: var(--size-xl);
    margin-bottom: 20px;
}

/*======================
よくある質問
======================*/
.qa {
    background-image: url(../img/bg_orange2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.qa ul li {
    margin: 0 auto 30px;
}

.qa ul li p {
    vertical-align: middle;
}

.qa ul li .qa_q {
    background-color: var(--main-color);
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0.3em 0.6em;
}

.qa ul li .qa_a {
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0.3em 0.6em;
}

.qa ul li .qa_q span,
.qa ul li .qa_a span {
    font-size: var(--size-xl);
    font-family: var(--font-title);
    font-weight: bold;
    padding-right: 10px;
    vertical-align: middle;
}

.qa ul li .qa_a span {
    color: var(--main-color);
}

/*======================
お問い合わせ
======================*/
.contact {
    background-image: url(../img/bg_dot.jpg);
    background-size: 30px;
    background-repeat: repeat;
    width: 100%;
    z-index: -1;
    padding: var(--section-gutter) var(--contents-side-gutter);
}

.contact .contact_inner {
    max-width: 949px;
    margin: 0 auto;
}

/*======================
フッター
======================*/
footer {
    background-color: var(--main-color);
    padding: var(--section-gutter) var(--contents-side-gutter);
    color: #fff;
}

footer .logo {
    max-width: 100px;
    margin: 0 auto 30px;
}

footer .footer_img {
    max-width: 800px;
    margin: 0 auto 20px;
}

footer .footer_company {
    margin-bottom: 60px;
}

footer .footer_company dl {
    border-bottom: 1px solid #fff;
    padding: 0.5em;
}

footer .footer_company dt {
    font-weight: bold;
}

footer small {
    display: block;
    text-align: center;
    margin-bottom: 100px;
}

/* ===============ここからmin-width:1200px=============== */
@media screen and (min-width:1200px) {

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    h2 {
        font-family: var(--font-title);
        font-weight: bold;
        font-size: var(--size-xxl);
        display: inline-block;
        position: relative;
    }

    h2::after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 72px;
        height: 10px;
        background-color: var(--main-color);
    }

    /*======================
    fv
    ======================*/

    .fv {
        padding-top: 90px;
    }

    .fv .fv_inner {
        height: 100vh;
        min-height: 700px;
    }

    .fv .hati1 {
        top: 0;
        right: 20%;
    }

    .fv .hati2 {
        top: 8%;
        right: 30%;
    }

    .fv .hati3 {
        top: 14%;
        right: 0;
    }

    .fv .fv_hito {
        right: 0;
    }

    .fv .fv_tel {
        position: absolute;
        bottom: 5%;
    }

    /*======================
    理由
    ======================*/
    .riyuu .riyuu_inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .riyuu ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .riyuu .riyuu_box1 {
        margin: 50px 0 0;
    }

    .riyuu .riyuu_box3 {
        margin: 50px 0 0;
    }

    /*======================
    事例
    ======================*/
    .zirei .zirei_inner {
        max-width: 949px;
        margin: 0 auto;
    }

    .zirei ul li {
        padding: 50px;
        max-width: 949px;
    }

    .zirei ul li .zirei_box {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 30px;
    }

    .zirei ul li:nth-of-type(even) .zirei_box {
        flex-direction: row-reverse;
    }

    .zirei ul li .zirei_img {
        max-width: 431px;
    }

    .zirei ul li .zirei_text {
        width: 100%;
    }

    .zirei ul li:nth-of-type(even) .zirei_title {
        left: 0;
        right: auto;
    }

    /*======================
    蜂
    ======================*/
    .hati .hati_inner {
        max-width: 949px;
        margin: 0 auto;
    }

    .hati ul li {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .hati ul li:nth-of-type(even) {
        flex-direction: row-reverse;
    }

    .hati ul li .hati_text {
        width: 100%;
    }

    .hati ul li .hati_text h3 {
        font-size: var(--size-xxl);
        margin-bottom: 30px;
    }

    .hati ul li .hati_text {
        text-align: left;
    }

    .hati .tokutyou {
        justify-content: start;
    }

    /*======================
    料金表
    ======================*/
    .fee .fee_inner {
        max-width: 864px;
        margin: 0 auto;
    }

    /*======================
    お客様の声
    ======================*/
    .voice .voice_inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .voice ul li .voice_message {
        position: relative;
        display: inline-block;
        margin: 1.5em 0 1.5em 0;
        padding: 7px 10px;
        min-width: 120px;
        max-width: 100%;
        color: #333;
        font-size: 16px;
        background: #fff;
    }

    .voice ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;

    }

    .voice ul li {
        padding: 30px;
        text-align: left;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .voice .voice_name {
        text-align: left;
    }

    .voice ul li .voice_message:before {
        content: "";
        position: absolute;
        top: 50%;
        left: -15px;
        margin-top: -15px;
        border: 15px solid transparent;
        border-right: 15px solid #fff;
    }

    /*======================
    対応エリア
    ======================*/
    .area .area_inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .area dl {
        max-width: 1000px;
        display: flex;
        align-items: center;
    }

    .area dl dt {
        max-width: 500px;
    }

    .area dl dd {
        width: 100%;
    }

    .area dl h3 {
        font-size: var(--size-xxl);
        margin-bottom: 20px;
    }

    /*======================
    よくある質問
    ======================*/
    .qa .qa_inner {
        max-width: 949px;
        margin: 0 auto;
    }

    .qa ul li .qa_q span,
    .qa ul li .qa_a span {
        font-size: var(--size-xxl);
    }

    /*======================
    フッター
    ======================*/
    footer .footer_inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    footer .footer_company dl {
        padding: 1em;
        display: flex;
    }

    footer .footer_company dt {
        width: 150px;
    }

    footer small {
        margin-bottom: 10px;
    }
}

/* ===============ここまでmin-width:1200px=============== */