@charset "utf-8";

.mee_top_area {
    /* width: 100vw; */
    margin: 0 auto;
}

/* メインビジュアル */
.mv {
    background-image: linear-gradient(
        to bottom,
        #fdcd00 60%,
        #fff 100%
    );
    width: 100vw;
    margin: 0 calc(49% - 50vw) 80px;
    padding: 100px 0;
}
.mv .inner {
    display: flex;
    justify-content: center;
}
.mv .inner img:first-child {
    width: 50%;
    margin-right: 40px;
}
.mv .inner img:last-child {
    width: 28%;
    object-fit: contain;
}

/* アンカーリンク */
.btn-jump {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.btn-jump li {
    margin-right: 20px;
}
.btn-jump li:last-child {
    margin-right: 0;
}
.btn-jump li a {
    display: block;
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: #009FB9;
    border: 4px solid #fff;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    color: #ffff;
    box-shadow: 0px 6px 15px -5px #777777;
}
.btn-jump li a::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-top: -5px;
    border-top: solid 4px #FDCD00;
    border-right: solid 4px #FDCD00;
    transform: rotate(135deg);
    position: absolute;
    top: 80%;
    left: 46%;
}
.btn-jump li a:hover {
    text-decoration: none;
    opacity: 0.6;
}
.btn-jump li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* 見出し */
.mee_h2_heading-line {
    padding: 0 10px;
    background: linear-gradient(transparent 35%, rgba(253, 205, 0, 0.5) 0);
    margin: 0 0 2rem;
}
.mee_h2_heading span {
    font-size: 0.7em;
}
.mee_h3_heading {
    border-top: 3px solid #006b84;
}
.mee_h4_heading {
    border-left: 6px solid #006b84;
}
.mee_h5_heading {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
}
.mee_h5_heading span {
    display: inline-block;
    font-size: 14px;
    background-color: #006b84;
    color: #fff;
    font-weight: bold;
    padding: 2px 10px;
    margin-right: 20px;
    text-align: center;
    line-height: 1.2;
}
.mee_h5_heading_flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.mee_h5_heading_flex div:last-child {
    width: 24%;
}

/* セクション */
section .inner {
    margin: 0 auto 80px;
}
#sec00 .mee_txt.what_txt {
    margin-bottom: 120px;
}
#sec00 .comparison {
    background-color: rgba(253, 205, 0, 0.5);
    width: 100vw;
    margin: 0 calc(49% - 50vw);
    padding: 60px;
}
.comparison_inner {
    background-color: #fff;
    max-width: 1012px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0px 6px 15px -5px #777777;
}
.comparison_inner table {
    width: fit-content;
}
.comparison_inner table th {
    text-align: right;
}

.img.txt .caption {
    font-weight: bold;
    color: #707070;
    font-size: 1em;
    position: relative;
    padding-left: 26px;
}
.img.txt .caption::before {
    content: "";
    position: absolute;
    top: 28%;
    left: 0;
    border: 9px solid transparent;
    border-top: 11px solid #707070;
}
.bg-beige {
    background-color: #F3F0E0;
    padding: 30px 60px;
}
#sec01 .w40 {
    width: 40%;
}

#sec02 .flex {
    display: flex;
}
#sec02 img {
    width: 400px;
    object-fit: contain;
    margin-left: 40px;
}

#sec05 .box {
    background-color: #eee;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 6px;
    margin: 0 20px 20px 0;
}
#sec05 .box:nth-child(3n) {
    margin: 0 0 20px 0;
}
#sec05 .box a {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
}
#sec05 img {
    width: 150px;
    margin-bottom: 10px;
    box-shadow: 2px 5px 15px 0px rgba(0,0,0,0.16);
}
#sec05 .flex {
    display: flex;
    flex-wrap: wrap;
}

/* アコーディオン */
.pro_aco .p_aco_btn .btn span {
    background-color: #006b84;
}
.pro_aco2 .p_aco_btn .btn span {
    background-color: #006b84;
}

@media only screen and (max-width: 767px) {
    .mee_top_area {
        width: 100%;
    }

    .mv {
        padding: 50px 0;
        margin: 0 calc(49% - 50vw) 30px;
    }
    .mv .inner {
        flex-direction: column;
    }
    .mv .inner img:first-child {
        width: 80%;
        margin: 0 auto;
    }
    .mv .inner img:last-child {
        width: 80%;
        margin: 20px auto 0;
    }

    section {
        width: 100%;
    }
    section .inner {
        max-width: none;
        margin: 0 20px 80px;
    }

    .btn-jump {
        display: block;
        margin: 40px 20px 0;
    }
    .btn-jump li {
        margin: 0 0 10px;
    }
    .btn-jump li a {
        width: 100%;
        height: 50px;
        border-radius: 100px;
        border: 2px solid #fff
    }
    .btn-jump li a::before {
        top: 30%;
        left: unset;
        right: 30px;
    }

    .mee_h2_heading-line {
        width: 100%;
    }
    .mee_h5_heading span {
        font-size: 10px;
        margin-right: 6px;
    }

    #sec00 .mee_txt.what_txt {
        text-align: left;
    }
    #sec00 .mee_txt.what_txt {
        margin-bottom: 40px;
    }
    #sec00 .comparison {
        padding: 40px 0;
    }
    .comparison_inner {
        width: 90%;
        padding: 20px;
    }
    .comparison_inner table tr {
        display: flex;
        margin-bottom: 10px;
    }
    .comparison_inner table th {
        /* width: 90%; */
        /* display: flex; */
    }
    .comparison_inner table td {
        width: 70%;
    }
    .bg-beige {
        padding: 10px;
    }
    .img.txt .caption {
        font-size: 0.875rem;
    }
    .mee_h5_heading_flex {
        display: block;
    }
    #sec01 .w40 {
        width: 100%;
    }
    #sec02 .flex {
        display: block;
    }
    #sec02 img {
        width: 50%;
        margin: 0 auto;
        display: block;
    }
    #sec05 .box {
        width: 100%;
        margin: 0 0 20px 0;
    }
}