/* --------------------------
* 共通の設定
* ---------------------------- */
:root {
    --main-color: #c66a77;
    --main-light-color: #f3bdc4;
    --green-color01: #5cc8b5;
    --green-color02: #10afa2;
    --yellow-color: #ffe36e;
    --noto-sans: 'Noto Sans JP', sans-serif;
}
* {
    box-sizing: border-box;
}
body {
    font-family: Noto Serif JP, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
#main {
    overflow-x: hidden;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
.btn001 a {
    display: block;
    color: #fff;
    background-image: linear-gradient(
        to right,
        var(--green-color01),
        var(--green-color02)
    );
    padding: 10px 20px;
    border-radius: 100vh;
    text-align: center;
    font-weight: bold;
    transition: 0.2s;
    width: fit-content;
    margin-inline: auto;
    font-family: var(--noto-sans);
    display: flex;
}
.btn001 a:hover {
    opacity: 0.75;
}
.btn001 a img {
    width: 60px;
    margin-top: -20px;
    margin-left: -25px;
    margin-right: 10px;
}
.btn001 .large {
    font-size: 135%;
    display: inline-block;
    margin-inline: 2px;
}
.ttl001 {
    margin-bottom: 50px;
}
.ttl001 img {
    height: 55px;
    width: auto;
    margin-inline: auto;
    max-width: 100%;
    margin-bottom: 10px;
}
.ttl001 h2 {
    text-align: center;
    font-weight: normal;
    font-size: 6cqi;
    margin: 0;
}
.ttl001.color_w h2 {
    color: #fff;
}
.wrap {
    width: 96%;
    max-width: 1040px;
    margin: 0 auto;
}
.tel_btn a {
    display: block;
    color: #fff;
    background-image: linear-gradient(
        to right,
        var(--main-color),
        var(--main-light-color)
    );
    padding: 10px 20px;
    border-radius: 100vh;
    text-align: center;
    font-weight: bold;
    transition: 0.2s;
    width: fit-content;
    margin-inline: auto;
    font-family: var(--noto-sans);
    display: flex;
    align-items: center;
    font-size: 18px;
}
.tel_btn a:hover {
    opacity: 0.75;
}
.tel_btn a img {
    width: 23px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}
@media (min-width: 767px) {
    .ttl001 img {
        height: 80px;
    }
    .ttl001 h2 {
        font-size: 30px;
    }
}

/* --------------------------
* メインビジュアル
* ---------------------------- */
#main_visual {
    position: relative;
    z-index: 1;
    padding: 80px 15px;
    background-color: #fff;
}
#main_visual .image {
    position: absolute;
    inset: 0;
    z-index: -1;
}
#main_visual .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
#main_visual .text_contents {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    container-type: inline-size;
    padding: 30px 15px;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.75s;
    opacity: 0;
    transform: translateY(10px);
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#main_visual .text_contents ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    list-style: none;
}
#main_visual .text_contents ul li {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 100vh;
    padding: 2px 0.75em;
}
#main_visual .text_contents ul li .large {
    font-size: 115%;
}
#main_visual .text_contents .catch {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: bold;
    width: fit-content;
    margin-inline: auto;
    line-height: 1.25;
    margin-bottom: 15px;
}
#main_visual .text_contents .catch span {
    display: inline-block;
    position: relative;
    z-index: 1;
    letter-spacing: 6px;
}
#main_visual .text_contents .catch span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 100%;
    height: 1.25em;
    background-image: repeating-linear-gradient(
        90deg,
        var(--main-color) 0,
        var(--main-color) calc(1em + 4px),
        #fff calc(1em + 4px),
        #fff calc(1em + 6px)
    );
    z-index: -1;
}
#main_visual .text_contents .catch span.large {
    font-size: 125%;
    margin-inline: -4px;
}
#main_visual .text_contents .catch span.large::after {
    content: "";
    position: absolute;
    top: -13px;
    left: -4px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at center,
        var(--main-color) 30%,
        transparent 30%
    );
    background-position: top right;
    background-repeat: repeat-x;
    background-size: calc(1em + 6px) 0.4em;
}
#main_visual .text_contents h1 {
    font-size: 12cqi;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 25px;
}
#main_visual .text_contents h1 span {
    position: relative;
    z-index: 1;
    line-height: 1;
    display: block;
    width: fit-content;
    margin-inline: auto;
}
#main_visual .text_contents h1 span::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 80%, var(--yellow-color) 20%);
    z-index: -1;
    opacity: 0.6;
}
#main_visual .text_contents h1 span.color {
    color: var(--main-color);
    margin-top: 15px;
}
#main_visual .text_contents .box {
    position: relative;
    padding-inline: 15px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin-top: 50px;
}
#main_visual .text_contents .box::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #000;
    transform: skewY(-15deg);
    transform-origin: left bottom;
}
#main_visual .text_contents .box::after {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    width: 50%;
    height: 1px;
    background-color: #000;
    transform: skewY(15deg);
    transform-origin: right bottom;
}
#main_visual .text_contents .detail {
    font-size: min(3.7cqi, 16px);
    text-align: center;
    margin-bottom: 30px;
}
#main_visual .text_contents .detail span {
    color: var(--green-color02);
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}
@media (min-width: 767px) {
    #main_visual .text_contents {
        container-type: normal;
        width: fit-content;
        margin-inline: auto;
        padding: 50px 30px 30px;
    }
    #main_visual .text_contents ul {
        margin-bottom: 40px;
    }
    #main_visual .text_contents ul li {
        font-size: 18px;
    }
    #main_visual .text_contents h1 {
        font-size: 60px;
    }
    #main_visual .text_contents .catch {
        font-size: 24px;
    }
    #main_visual .text_contents .detail {
        font-size: 18px;
    }
    #main_visual .text_contents {
        width: fit-content;
    }
}
@media (min-width: 1024px) {
    #main_visual {
        padding: 10% 15px;
    }
    #main_visual .text_contents {
        margin-left: 5%;
    }
    #main_visual .image img {
        object-position: left;
    }
    #main_visual .text_contents .detail span {
        font-size: 20px;
    }
    #main_visual .text_contents .detail span br {
        display: none;
    }
    #main_visual .text_contents .catch span.large::after {
        top: -18px;
    }
    #main_visual .text_contents .btn001 a {
        font-size: 20px;
        padding-inline: 50px;
    }
    #main_visual .text_contents .btn001 a img {
        width: 70px;
        margin-top: -50px;
        margin-left: -50px;
        margin-right: 0;
    }
}

/* --------------------------
* バナー
* ---------------------------- */
#top_bnr {
    padding: 50px 0;
    background-color: #fff;
}
#top_bnr a {
    display: block;
    max-width: 800px;
    margin-inline: auto;
}
#top_bnr a picture {
    display: block;
}

/* --------------------------
* こんなお悩みありませんか
* ---------------------------- */
#top_problem {
    padding: 50px 15px;
    background-image: url(../images/bg-pink.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -5px;
}
#top_problem .title {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
#top_problem .title::before {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 20px;
    height: 15px;
    background-color: #fff;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
#top_problem .title h2 {
    margin: 0;
    text-align: center;
    color: var(--main-color);
    background-color: #fff;
    padding: 0px 1em;
    font-size: 5.2cqi;
    clip-path: polygon(1em 0%, 100% 0%, calc(100% - 1em) 100%, 0% 100%);
}
#top_problem .title h2 .large {
    display: inline-block;
    margin-inline: 3px;
    font-size: 125%;
}
#top_problem .contents {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
#top_problem .contents > div {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
#top_problem .contents > div .image {
    width: 35%;
}
#top_problem .contents > div img {
    object-fit: cover;
    height: 100%;
    aspect-ratio: 22 / 21;
}
#top_problem .contents > div .text {
    padding: 15px;
    font-family: var(--noto-sans);
    font-weight: bold;
    width: 65%;
    font-size: 14px;
}
#top_problem .contents > div .text .color {
    color: var(--main-color);
}
@media (min-width: 767px) {
    #top_problem .title h2 {
        font-size: 40px;
    }
    #top_problem .contents > div .text {
        font-size: 23px;
    }
}
@media (min-width: 1024px) {
    #top_problem {
        padding: 100px 15px;
    }
    #top_problem .title {
        margin-bottom: 50px;
    }
    #top_problem .contents {
        justify-content: center;
        gap: 0 20px;
    }
    #top_problem .contents > div {
        width: calc(50% - 10px);
        margin-bottom: 30px;
    }
}

/* --------------------------
* 3つのサポートで解決
* ---------------------------- */
#top_resolution {
    position: relative;
    z-index: 1;
    padding: 50px 15px 80px;
    background-color: #fff;
}
#top_resolution::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    background-image: radial-gradient(circle, var(--main-color) 2px, transparent 2px);
    background-position: 0 0;
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.1;
}
#top_resolution .title {
    margin-bottom: 50px;
}
#top_resolution .title h2 {
    font-size: 5.8cqi;
    margin: 0;
    font-style: italic;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
}
#top_resolution .title h2 > span {
    position: relative;
    z-index: 1;
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 15px;
}
#top_resolution .title h2 > span::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 80%, var(--yellow-color) 20%);
    z-index: -1;
    opacity: 0.6;
}
#top_resolution .title h2 > span:first-child .large {
    margin-right: 5px;
    font-size: 280%;
}
#top_resolution .title h2 > span .large {
    position: relative;
    color: var(--main-color);
    font-size: 230%;
    line-height: 1;
}
#top_resolution .title h2 > span:first-child .large::before {
    content: url(../images/icon_empha.svg);
    position: absolute;
    top: -30%;
    left: 100%;
    right: 0;
    width: 0.5em;
}
#top_resolution .item {
    container-type: inline-size;
    margin-bottom: 80px;
}
#top_resolution .contents > .item:last-child {
    margin-bottom: 0;
}
#top_resolution .item .image {
    margin-left: -15px;
    margin-bottom: 65px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#top_resolution .item .sub_title {
    position: relative;
    z-index: 1;
    padding: 0 15px 10px;
    padding-right: 0;
    margin-bottom: 30px;
}
#top_resolution .item .sub_title .number {
    position: absolute;
    font-size: 30cqi;
    top: -50px;
    right: 20px;
    color: var(--main-color);
    line-height: 1;
    opacity: 0.2;
    z-index: -1;
}
#top_resolution .item .sub_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: #000;
}
#top_resolution .item .sub_title .catch {
    color: var(--main-color);
}
#top_resolution .item .sub_title h3 {
    font-size: 6cqi;
    font-weight: normal;
    margin: 0;
}
#top_resolution .item .text {
    padding-inline: 15px;
    font-size: 14px;
}
@media (min-width: 767px) {
    #top_resolution .title h2 {
        font-size: 40px;
    }
    #top_resolution .item .sub_title .catch {
        font-size: 20px;
    }
    #top_resolution .item .sub_title h3 {
        font-size: 30px;
    }
    #top_resolution .item .sub_title .number {
        font-size: 18cqi;
    }
    #top_resolution .item .text {
        font-size: 18px;
    }
    #top_resolution .item .image {
        margin-right: 30px;
    }
    #top_resolution .item .text_contents {
        margin-left: 30px;
    }
}
@media (min-width: 1024px) {
    #top_resolution {
        padding: 100px 15px 200px;
    }
    #top_resolution .title h2 {
        font-size: 40px;
    }
    #top_resolution .contents > .item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #top_resolution .contents > .item:nth-child(even) .image {
        position: relative;
        margin-left: 30px;
        margin-right: -15px;
        z-index: 2;
    }
    #top_resolution .item {
        display: flex;
        align-items: center;
        margin-bottom: 120px;
    }
    #top_resolution .item .image {
        width: 50%;
        margin-bottom: 0;
    }
    #top_resolution .item .text_contents {
        width: 50%;
    }
    #top_resolution .item .sub_title .number {
        font-size: 13cqi;
        top: 180%;
    }
}


/* --------------------------
* 地域密着の実績と信頼
* ---------------------------- */
#top_point {
    position: relative;
    z-index: 1;
    padding: 30px 15px;
    --bg-pink: #fcf1f1;
    background-color: var(--bg-pink);
}
#top_point::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 2%;
    background-color: var(--bg-pink);
    clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
}
#top_point .title {
    position: relative;
    margin-bottom: 80px;
}
#top_point .title h2 {
    font-size: 9cqi;
    margin: 0;
    font-style: italic;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
#top_point .title h2 img {
    display: inline-block;
    width: 70px;
    transform: translate(-5px, -15px);
}
#top_point .title h2 > span {
    font-size: 135%;
    display: inline-block;
    margin: 0 2px;
}
#top_point .title h2 > span.pink {
    color: var(--main-color);
}
#top_point .title h2 > span.green {
    color: var(--green-color02);
}
#top_point .contents .item {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    margin-bottom: 120px;
    container-type: inline-size;
    padding-bottom: 20px;
}
#top_point .contents > .item:last-child {
    margin-bottom: 0;
}
#top_point .contents .item .number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20cqi;
    color: #fff;
    background-color: var(--main-color);
    aspect-ratio: 1;
    border-radius: 50%;
    line-height: 1;
    width: 1.35em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#top_point .contents .item .number::before {
    content: url(../images/point_arch.svg);
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -90%);
}
#top_point .contents .item .image {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
}
#top_point .contents .item h3 {
    font-size: 6.5cqi;
    font-weight: normal;
    text-align: center;
    margin: 20px 0 0;
    line-height: 1.5;
    padding-inline: 15px;
    font-family: var(--noto-sans);
    font-weight: bold;
}
#top_point .contents .item .text {
    text-align: center;
    font-family: var(--noto-sans);
}
#top_point .detail {
    font-family: var(--noto-sans);
    color: #333;
    font-weight: 500;
    font-size: 4.9cqi;
    text-align: center;
    margin: 80px 0;
    line-height: 2.25;
}
#top_point .detail .empha {
    display: inline-block;
    position: relative;
}
#top_point .detail .empha::before {
    content: url(../images/icon_empha.svg);
    position: absolute;
    top: -45%;
    right: 100%;
    width: 2em;
    transform: scaleX(-1);
}
#top_point .detail u {
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    padding: 0 5px;
}
#top_point .detail u::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent 60%, var(--yellow-color) 40%);
    z-index: -1;
    opacity: 0.8;
}
#top_point .detail .color {
    color: var(--main-color);
}
@media (min-width: 767px) and (max-width: 1024px) {
    #top_point .title h2 {
        font-size: 45px;
    }
    #top_point::before {
        height: 1.5%;
    }
    #top_point .contents .item {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        padding: 0;
        margin-left: 7%;
        margin-bottom: 50px;
    }
    #top_point .contents .item .number {
        font-size: 10cqi;
        top: 50%;
        left: 0;
        transform: translate(-70%, -50%);
    }
    #top_point .contents .item .image {
        width: 40%;
        border-top-left-radius: 25px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 25px;
    }
    #top_point .contents .item .image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #top_point .contents .item .text_contents {
        width: 60%;
        padding: 30px;
    }
    #top_point .contents .item h3 {
        font-size: 30px;
        text-align-last: left;
        margin: 0;
        margin-bottom: 30px;
    }
    #top_point .contents .item .text {
        text-align: left;
        font-size: 18px;
        padding-left: 30px;
    }
}
@media (min-width: 1024px) {
    #top_point {
        padding-top: 80px;
    }
    #top_point .title h2 {
        font-size: 50px;
    }
    #top_point .contents {
        display: flex;
        justify-content: center;
        gap: 80px 30px;
        flex-wrap: wrap;
    }
    #top_point .contents .item {
        width: calc(33.333333% - 20px);
        margin-bottom: 0;
        container-type: normal;
        display: flex;
        flex-direction: column;
    }
    #top_point .contents .item .number {
        font-size: 40px;
    }
    #top_point .contents .item .image {
        margin-bottom: 15px;
    }
    #top_point .contents .item .text_contents {
        margin: auto;
    }
    #top_point .contents .item h3 {
        font-size: 20px;
        margin: 0;
    }
    #top_point .detail {
        font-size: 35px;
    }
}


/* --------------------------
* ご相談〜ご購入の流れ
* ---------------------------- */
#top_flow {
    position: relative;
    z-index: 1;
    padding: 50px 15px 80px;
}
.bg-image {
    position: fixed;
    inset: 0;
    z-index: -1;
}
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15%;
}
#top_flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}
#top_flow .ttl001 {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 50px;
}
#top_flow .contents {
    width: 80%;
    margin-inline: auto;
}
#top_flow .contents .item {
    position: relative;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    container-type: inline-size;
    margin-bottom: 80px;
}
#top_flow .contents .item::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 20px;
    background-color: var(--main-light-color);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
#top_flow .contents > .item:last-child {
    margin-bottom: 0;
}
#top_flow .contents > .item:last-child::before {
    content: none;
}
#top_flow .contents .item .catch {
    font-size: 13cqi;
    font-weight: bold;
    font-family: var(--noto-sans);
    color: var(--main-color);
    text-align: center;
    line-height: 1;
}
#top_flow .contents .item .catch .number {
    font-size: 130%;
}
#top_flow .contents .item .image {
    height: 70px;
    margin: 30px 0;
}
#top_flow .contents .item .image img {
    height: 100%;
    width: auto;
    margin-inline: auto;
}
#top_flow .contents .item h3 {
    position: relative;
    margin: 0;
    font-size: 12cqi;
    font-weight: normal;
    text-align: center;
    padding-bottom: 10px;
}
#top_flow .contents .item h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2.5em;
    height: 1px;
    background-color: var(--main-color);
    transform: translateX(-50%);
}
#top_flow .contents .item .text {
    text-align: center;
    font-family: var(--noto-sans);
}
@media (min-width: 767px) and (max-width: 1024px) {
    #top_flow {
        padding: 80px 15px;
    }
    #top_flow .contents {
        width: 60%;
    }
    #top_flow .contents .item .catch {
        font-size: 35px;
    }
    #top_flow .contents .item h3 {
        font-size: 35px;
    }
    #top_flow .contents .item .image {
        height: 100px;
    }
}
@media (min-width: 1024px) {
    #top_flow {
        padding: 80px 0;
    }
    #top_flow .contents {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    #top_flow .contents .item {
        width: calc(25% - 30px);
        container-type: normal;
        margin: 0;
        padding-inline: 15px;
    }
    #top_flow .contents .item .catch {
        font-size: 35px;
    }
    #top_flow .contents .item h3 {
        font-size: 24px;
    }
    #top_flow .contents .item::before {
        bottom: auto;
        top: 50%;
        left: auto;
        right: -15px;
        transform: translate(100%, -50%);
        width: 15px;
        height: 60px;
        clip-path: polygon(0 0, 0 100%, 100% 50%);
    }
}


/* --------------------------
* ご購入いただいたお客様の声
* ---------------------------- */
#top_voice {
    position: relative;
    z-index: 1;
    padding: 50px 15px;
    background-image: linear-gradient(to right, #f7e9e9 0, #f8d3d4 100%);
}
#top_voice .ttl001 {
    padding-left: 20px;
}
#top_voice .ttl001 img {
    margin-left: 0;
    margin-bottom: 0;
}
#top_voice .ttl001 .image {
    position: relative;
    margin-bottom: 10px;
}
#top_voice .ttl001 .image::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    width: 100vw;
    height: 1px;
    background-color: var(--main-color);
}
#top_voice .ttl001 h2 {
    text-align: left;
    color: #000;
}
#top_voice .content > .item:last-child {
    margin-bottom: 0;
}
#top_voice .item {
    margin-bottom: 50px;
}
#top_voice .item .icon {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1;
    overflow: hidden;
    margin-inline: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
#top_voice .item .icon img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: bottom;
}
#top_voice .item .text_contents {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 15px 15px;
    container-type: inline-size;
    margin-top: 20px;
}
#top_voice .item .text_contents::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 35px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 50% 0, 0 100%);
}
#top_voice .item .text_contents h3 {
    position: relative;
    font-size: 6.5cqi;
    font-family: var(--noto-sans);
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}
#top_voice .item .text_contents .text {
    font-family: var(--noto-sans);
}
#top_voice .item .text_contents .text .color {
    color: var(--main-color);
    font-weight: bold;
}
#top_voice .item .text_contents .detail {
    font-size: 14px;
    text-align: right;
    margin-top: 15px;
}
@media (min-width: 767px) {
    #top_voice .contents > .item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #top_voice .item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #top_voice .item .icon {
        width: 180px;
        margin: 0;
        flex-shrink: 0;
    }
    #top_voice .item .text_contents {
        container-type: normal;
        width: calc(100% - 250px);
        margin-top: 0;
    }
    #top_voice .item .text_contents h3 {
        font-size: 25px;
    }
    #top_voice .item .text_contents::before {
        bottom: auto;
        top: 50%;
        left: auto;
        transform: translateY(-50%);
        height: 30px;
        width: 40px;
    }
    #top_voice .contents > .item:nth-child(odd) .text_contents::before {
        right: calc(100% - 1px);
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
    }
    #top_voice .contents > .item:nth-child(even) .text_contents::before {
        left: calc(100% - 1px);
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
    }
}
@media (min-width: 1024px) {
    #top_voice {
        padding: 100px 0;
    }
    #top_voice .item .text_contents {
        padding: 30px;
    }
    #top_voice .item .text_contents .detail {
        font-size: 14px;
    }
}


/* --------------------------
* 担当からのメッセージ
* ---------------------------- */
#top_message {
    position: relative;
    z-index: 1;
    padding: 50px 15px 80px;
    background-color: #fff;
    background-image: url(../images/bg-message.webp);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
#top_message::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: -1;
}
#top_message .item {
    container-type: inline-size;
    padding-inline: 15px;
    margin-bottom: 50px;
}
#top_message .contents > .item:last-child {
    margin-bottom: 0;
}
#top_message .item .image img {
    aspect-ratio: 1;
    border-radius: 50%;
}
#top_message .item .image img[src="blank"] {
    background-color: #ccc;
}
#top_message .item .text_contents {
    position: relative;
    margin-top: -7.5%;
}
#top_message .item .text_contents h3 {
    font-size: 7cqi;
    font-weight: normal;
    margin: 0;
    margin-bottom: 30px;
}
#top_message .item .text_contents h3 span {
    display: block;
    width: fit-content;
    padding: 0 0.5em;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-bottom: 15px;
}
#top_message .item .text_contents .name {
    margin-bottom: 15px;
}
#top_message .item .text_contents .name .large {
    font-size: 175%;
    display: inline-block;
    margin-left: 0.5em;
}
@media (min-width: 767px) {
    #top_message {
        padding: 80px 0;
    }
    #top_message .item {
        display: flex;
        align-items: center;
        padding: 0;
    }
    #top_message .item .image {
        width: 35%;
    }
    #top_message .item .text_contents {
        margin-top: 0;
        width: 65%;
        padding-left: 30px;
    }
    #top_message .item .text_contents h3 {
        font-size: 30px;
    }
}


/* --------------------------
* よく頂くご質問
* ---------------------------- */
#top_faq {
    position: relative;
    z-index: 1;
    padding: 50px 15px;
    background-color: #fcf1f1;
}
#top_faq .item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    container-type: inline-size;
    margin-bottom: 20px;
    font-family: var(--noto-sans);
}
#top_faq .item .question {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    line-height: 1.5;
}
#top_faq .item .question::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 150%;
    background-color: var(--main-color);
    width: 1.25em;
    height: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#top_faq .item .answer {
    position: relative;
    font-size: 14px;
    padding-left: 45px;
}
#top_faq .item .answer::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    color: var(--main-color);
    font-size: calc(16px * 1.5);
    background-color: #fff;
    width: 1.25em;
    height: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 767px) {
    #top_faq .item {
        padding: 30px;
    }
    #top_faq .item .question {
        font-size: 24px;
        margin-bottom: 30px;
    }
    #top_faq .item .question::before {
        font-size: calc(16px * 1.5);
        width: 1.5em;
        height: 1.5em;
        padding-bottom: 5px;
        box-sizing: border-box;
    }
    #top_faq .item .answer::before {
        font-size: calc(16px * 1.5);
        width: 1.5em;
        height: 1.5em;
    }
}
@media (min-width: 1024px) {
    #top_faq {
        padding: 100px 0;
    }
    #top_faq .item .answer {
        font-size: 18px;
    }
}


/* --------------------------
* お問い合わせ
* ---------------------------- */
#top_contact {
    position: relative;
    z-index: 1;
    padding: 50px 15px;
}
#top_contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}
#top_contact .title h2 {
    color: #fff;
    font-size: 10cqi;
    text-align: center;
    margin: 0;
    margin-bottom: 15px;
}
#top_contact .catch {
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 50px;
}
#top_contact .text {
    text-align: center;
    color: #fff;
    margin: 30px 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: var(--noto-sans);
    font-size: 14px;
}
#top_contact .text u {
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    padding: 0 5px;
}
#top_contact .text u::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent 60%, var(--yellow-color) 40%);
    z-index: -1;
    opacity: 0.6;
}
#top_contact .contents {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#top_contact a {
    width: 90%;
    justify-content: center;
}
#top_contact .tel_contents a {
    display: block;
    font-family: var(--noto-sans);
    color: #fff;
    margin-inline: auto;
}
#top_contact .tel_contents a .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}
#top_contact .tel_contents a .number img {
    width: 28px;
    filter: brightness(0) invert(1);
    margin-right: 5px;
}
#top_contact .tel_contents a .time {
    text-align: center;
}
footer .copyright {
    background-color: #fff;
    font-size: 10px;
    text-align: center;
    padding: 7px 0 calc(7px + 47px);
    margin: 0;
}
@media (min-width: 767px) {
    #top_contact .title h2 {
        font-size: 5cqi;
    }
    #top_contact .contents {
        flex-direction: row;
        align-items: center;
    }
    #top_contact .contents > .item {
        width: 50%;
    }
    #top_contact .contents > .item .btn001 a {
        width: fit-content;
        padding: 20px 30px;
        font-size: 23px;
    }
    #top_contact .contents > .item:first-child a {
        margin-right: 15px;
    }
    #top_contact .contents > .item:first-child a img {
        width: 70px;
        margin-top: -50px;
        margin-left: -50px;
        margin-right: 0;
    }
    #top_contact .contents > .item:last-child a {
        margin-left: 15px;
    }
    #top_contact .contents > .item:last-child a img {
        width: 25px;
    }
    footer .copyright {
        font-size: 14px;
        padding-bottom: 7px;
    }
    #top_contact .tel_contents a .number {
        font-size: 38px;
    }
    #top_contact .text {
        font-size: 16px;
    }
}
@media (min-width: 1024px) {
    #top_contact {
        padding: 100px 0;
    }
    #top_contact .title h2 {
        font-size: 3.2cqi;
        margin-bottom: 0;
    }
    #top_contact .contents > .item a {
        padding-inline: 50px;
    }
}

/* --------------------------
* fix CTA
* ---------------------------- */
.fix_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.fix_btn .contents {
    display: flex;
    align-items: stretch;
}
.fix_btn .contents > div {
    width: 50%;
}
.fix_btn .contents > div > div {
    height: 100%;
}
.fix_btn .contents > div a {
    padding: 10px 5px;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.fix_btn .btn001 a {
    position: relative;
}
.fix_btn .btn001 a img {
    display: none;
}
.fix_btn .btn001 a .catch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffd100;
    color: #000;
    border-radius: 100vh;
    padding: 5px 1em;
    width: fit-content;
    margin-inline: auto;
    line-height: 1;
    font-size: 12px;
    white-space: nowrap;
}
.fix_btn .contents > div .tel_btn a img {
    width: 18px;
    margin-right: 5px;
}
.fix_btn .contents > div .tel_btn.pc {
    display: none;
}
.fix_btn .contents > div .tel_btn.sp {
    display: block;
}
@media (min-width: 767px) {
    .fix_btn {
        left: auto;
        bottom: 10%;
        right: 0;
        width: auto;
        background-color: transparent;
        box-shadow: none;
    }
    .fix_btn .contents {
        flex-direction: column;
    }
    .fix_btn .contents > div {
        background-color: #fff;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }
    .fix_btn .contents > div a {
        position: relative;
        font-size: 18px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 15px;
        white-space: nowrap;
        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }
    .fix_btn .contents > div a img {
        margin-bottom: 10px;
    }
    .fix_btn .btn001 a img {
        margin-top: -50px;
        margin-left: -30px;
    }
    .fix_btn .contents > div {
        width: auto;
        height: auto;
        margin-bottom: 15px;
    }
    .fix_btn .btn001 a .catch {
        display: none;
    }
    .fix_btn .btn001 a img {
        display: block;
        margin-top: -40px;
        margin-left: -30px;
    }
    .fix_btn .contents > div a div {
        writing-mode: vertical-lr;
        margin-inline: auto;
    }
    .fix_btn .contents > div .tel_btn a img {
        width: 21px;
        margin-inline: auto;
    }
    .fix_btn .contents > div .tel_btn.pc {
        display: block;
    }
    .fix_btn .contents > div .tel_btn.sp {
        display: none;
    }
}