/* style.css */
@charset "UTF-8";

/* ========================
   Main Visual
======================== */
.fv {
    background: linear-gradient(180deg, #C8B189 0%, #D9CA9B 29.81%, #B39C74 99.04%);
    padding: 0;
}

.fv__text {
    background: url('../image/fv_bg_01.png') center/cover no-repeat;
    color: #FFECC7;
    text-align: center;
    min-height: 1.1rem;
    line-height: 1.17rem;
    font-weight: 700;
    padding: 0.25rem;
    font-size: 0.975rem;
    position: relative;
}

.fv__text::before {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    background: url('../image/fv_bg_02.png') center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.fv__text::after {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    background: url('../image/fv_bg_03.png') center/cover no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
}

.fv__image {
    z-index: 100;
    position: relative;
    max-width: 800px;
    margin: -8px auto -11px;
    overflow: hidden;
}

.fv__image::after {
    content: '東京、神奈川、千葉、埼玉、茨城、栃木、群馬、大阪、京都、兵庫、奈良、滋賀、和歌山、三重の駆除依頼増加中！　東京、神奈川、千葉、埼玉、茨城、栃木、群馬、大阪、京都、兵庫、奈良、滋賀、和歌山、三重の駆除依頼増加中！';
    color: #BB220B;
    font-size: 0.8rem;
    letter-spacing: -0.05rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    background: #FFD502;
    white-space: nowrap;
    width: auto;
    padding: 0.15rem;
    animation: scroll-text 20s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================
   CV
======================== */

.cv {
    background: #D5C2AA;
    padding: 0;
}

.cv__label {
    background: linear-gradient(90deg, #9A0006 0%, #B80519 48.56%, #8C0107 100%);
    color: #fff;
    text-align: center;
    min-height: 1.1rem;
    line-height: 1.17rem;
    padding: 0.25rem;
    font-size: 0.875rem;
    z-index: 1000;
    position: relative;
    padding: 0.5rem;
}

.cv__label .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 390px;
    padding: 0;
    position: relative;
}

@media (min-width: 900px) {
    .cv__label .cv__label-imag-wrap {
        padding-right: 25.5rem;
    }
}

@media (max-width: 900px) {
    .cv__label .wrapper.cv__label-imag-wrap {
        padding-right: 0;
    }
}

.cv__label b {
    font-size: 1.1em;
    font-weight: 700;
    white-space: nowrap;
}

.cv__text:last-of-type {
    color: #FFDC38;
    font-size: 2.6rem;
    font-weight: 700;
    white-space: nowrap;
}

.cv__text--tel-label {
    animation: burst-subtle 2s infinite;
    display: inline-block;
    transform-origin: center;
}

.cv__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 900px) {
    .cv__list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-end;
    }

    .cv__item:first-of-type {
        width: 70%;
    }

    .cv__item:last-of-type {
        width: 30%;
        height: 5.5rem;
        padding-top: 0.3rem;
    }
}

.cv__link--tel {
    padding: 0.5rem 0.5rem 0 0.5rem;
    font-size: 1.25rem;
    text-align: center;
    color: #fff;
    border-radius: 0.625rem;
    background: linear-gradient(180deg, #FF7F70 3.37%, #C81501 49.04%, #B71503 100%);
    box-shadow: 0 -4px 0 0 #ED301B, 0 4px 0 0 #640A00;
    transition: transform 0.3s ease;
    position: relative;
}

.cv__link--tel:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('../image/cv_tel-arrow.svg') center/cover no-repeat;
    position: absolute;
    top: calc(50% - 0.6rem);
    right: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
}

.cv__link--tel:hover {
    transform: scale(1.05);
    opacity: 1;
}

.cv__text--tel-icon {
    position: absolute;
    top: calc(50% - 23px);
    left: 15px;
    width: 31px;
    height: 31px;
    background: url('../image/cv_tel-btn.svg') center/cover no-repeat;
}

@media (min-width: 900px) {
    .cv__text--tel-icon {
        position: absolute;
        top: calc(50% - 28px);
        left: 60px;
        width: 41px;
        height: 41px;
        background: url('../image/cv_tel-btn.svg') center/cover no-repeat;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-8px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(8px);
    }
}

@keyframes burst {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1) translateX(-3px);
    }

    50% {
        transform: scale(1.05) translateX(3px);
    }

    75% {
        transform: scale(1.1) translateX(-3px);
    }
}

@keyframes burst-subtle {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.05) translateX(-2px);
    }

    50% {
        transform: scale(1.02) translateX(2px);
    }

    75% {
        transform: scale(1.05) translateX(-2px);
    }
}

@keyframes shake-subtle {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-3px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(3px);
    }
}

.cv__text--tel-label {
    background: linear-gradient(90deg, #FFD502 0%, #FFDF3D 52.4%, #FFD502 100%);
    z-index: 1000;
    position: relative;
    color: #CB1400;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.04375rem;
    text-align: center;
    position: relative;
    top: 10px;
    left: 5%;
    width: 90%;
    margin: 0 auto;
}

.cv__link--tel b {
    color: #FFF;
    font-family: "Arial Black", "Arial", "Helvetica", "Helvetica Neue", "Roboto", "Noto Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    top: 8px;
}

.cv__link--tel b.cv__link--ja {
    font-size: 1.8rem;
}

.cv__link--tel span {
    color: #FFF;
    font-size: 0.875rem;
    line-height: 0.8;
}

.cv__link--mail {
    padding: 0.5rem;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0.625rem;
    background: linear-gradient(180deg, #6BCD14 0%, #469400 51.92%, #3D8001 100%);
    box-shadow: 0 -4px 0 0 #5DAC16, 0 4px 0 0 #73786E;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    justify-content: space-around;
}

@media (min-width: 900px) {
    .cv__link--mail {
        padding-left: 2rem;
    }
}

.cv__link--mail:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('../image/cv_mail-arrow.svg') center/cover no-repeat;
    position: absolute;
    top: calc(50% - 0.6rem);
    right: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
}

.cv__link--mail:hover {
    transform: scale(1.05);
}

.cv__link--mail img {
    position: absolute;
    left: 20px;
}

/* PCでのみホバー効果を適用 */
@media (min-width: 900px) {
    .cv__link--tel:hover {
        transform: scale(1.05);
    }

    .cv__link--mail:hover {
        transform: scale(1.05);
    }
}

.cv__link--mail:hover {
    opacity: 1;
}

.cv__mail-text {
    font-size: 1.1rem;
    line-height: 1.1;
}

.cv__link--mail-text {
    font-size: 0.8rem;
    font-weight: normal;
    display: inline-block;
    margin-top: 0.5rem;
}

.cv__label-image {
    position: absolute;
    right: -3rem;
    width: 5.6rem;
    height: 5.3rem;
    bottom: -0.5rem;
}

.cv__notice {
    display: flex;
    flex-direction: column;

    @media (min-width: 900px) {
        align-items: center;
    }
}

.cv__notice-text {
    background: #C81501;
    color: #FFDC38;
    padding: 0.1rem 0.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    display: inline-block;
}

.cv__notice-disclaimer {
    color: #CB1400;
    font-size: 0.6rem;
    margin-bottom: 1rem;

    @media (min-width: 900px) {
        width: 93%;
        text-align: right;
    }
}

/* ========================
   Media
======================== */

.media {
    background-image: url(../image/media_bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.media__title {
    color: #fff;
}

.media__title small {
    font-size: 0.7em;
}

.media__image {
    width: 100%;
    max-width: 23rem;
    margin: 0 auto;
    display: block;
}

/* ========================
   Cost
======================== */
.cost {
    background: #D0C192;
    position: relative;
}

.cost::before {
    content: '';
    background-image: url(../image/cost_bg_01.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    width: 9.1875rem;
    height: 4.9375rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}


.cost::after {
    content: '';
    background-image: url(../image/cost_bg_02.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    width: 9.1875rem;
    height: 4.9375rem;
    position: absolute;
    top: 9rem;
    left: 0;
    z-index: 0;
}

.cost__title-sub {
    text-align: center;
    position: relative;
    z-index: 100;
}

.cost__title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #333;
    position: relative;
    z-index: 100;
}

.cost__grid {
    margin: 0 auto;
    display: grid;
    gap: 0.5rem;
    position: relative;
    z-index: 100;
}

@media (min-width: 900px) {
    .cost__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.cost__item {
    background: #333;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.cost__item img {
    width: 10rem;
    height: auto;
}

/* ========================
   Result
======================== */


.result__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 1rem;
}

.result__item {
    font-size: 0.875rem;
}

/* ========================
   Flow
======================== */
.flow {
    background-color: #E9E2D5;
}

.flow__list {}

.flow__item {
    display: flex;
    align-items: center;
    background: #FDFAF3;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

.flow__number {
    background: #8D8983;
    color: white;
    width: 1.5rem;
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
}

.flow__name {
    font-size: 1rem;
    text-align: center;
}

.flow__name--free::after {
    content: '無料';
    color: #FFDC38;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
    background: #C81501;
    display: block;
    width: 2rem;
    text-align: center;
    margin: 0 auto;
}

.flow__description {
    font-size: 0.875rem;
    color: #666;
}

.flow__image {
    width: 10rem;
    height: 6.5rem;
    object-fit: cover;
}

@media (min-width: 900px) {
    .flow__image {
        width: 12rem;
    }
}

.flow-card {
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.90);
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    max-width: 600px;
    margin: 1rem auto 0.5rem;
}

.flow-card img {
    width: 12.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* ========================
   Voice
======================== */
@media (min-width: 900px) {
    .voice .wrapper {
        max-width: 1200px;
    }
}

.voice__title-sub {
    text-align: center;
    font-size: 1rem;
}

.voice__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .voice__card {
        flex-direction: row;
    }

    .voice__card img {
        width: 33%;
        height: auto;
    }
}

/* ========================
   Reasons
======================== */
.reasons {
    background: #EEDC9E;
}

@media (min-width: 900px) {
    .reasons {
        background-image: url(../image/reason_bg.png);
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }
}

.reasons__title-sub {
    text-align: center;
    font-size: 1rem;
}

.reasons__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 900px) {
    .reasons__grid {
        flex-direction: row;
    }
}

.reasons__item {
    flex: 1;
    text-align: center;
    background-color: #fff;
    position: relative;
    align-content: flex-end;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.reasons__number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background-image: url(../image/reason_bg_01.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 3rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 1rem;
}

@media (min-width: 900px) {
    .reasons__number {
        left: 0.5rem;
    }
}

.reasons__name {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 1rem 0 3rem;
    line-height: 130%;
}

.reasons__description {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    padding: 1rem;
}

/* ========================
   Area
======================== */
.area__title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.area__grid {
    display: flex;
}

.area__title-sub {
    font-size: 1.125rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D9D9D9;
}

.area__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media screen and (min-width: 900px) {
    .area__grid {
        align-items: flex-start;
        flex-direction: row;
        gap: 2rem;
    }
}

.area__image {
    text-align: center;
    width: 15.625rem;
    height: 15.5rem;
    flex-shrink: 0;
    margin-top: -3rem;
}

@media screen and (min-width: 900px) {
    .area__image {
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
}

.area__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.area__description {
    font-size: 1rem;
    padding-top: 1rem;
}

.area__list {
    font-size: 0.875rem;
    background: #F6F6F1;
    margin-top: 1rem;
    padding: 1rem;
}

.area__list dl {
    display: grid;
    grid-template-columns: 3rem 1fr;
}

/* ========================
   Fee
======================== */

.fee {
    background: #E9E2D5;
}

.fee__text {
    font-size: 1rem;
}

.fee__title-sub {
    text-align: center;
    font-size: 1rem;
}

.fee__content {
    text-align: center;
}

.fee__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.fee__item {
    background-color: #fff;
}

.fee__name {
    background: #333;
    color: #FFD502;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.3rem;
}

.fee__label {
    border-radius: 0.125rem;
    background: #FFD502;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    margin-top: 0.5rem;
    line-height: 120%;
}

.fee__price {
    font-size: 1.25rem;
    font-weight: 700;
    font-size: 1.625rem;
    font-weight: 700;
}

.fee__price span {
    font-size: 0.875rem;
}

.fee__note {
    font-size: 0.625rem;
    text-align: left;
}


/* ========================
   FAQ
======================== */
.faq__item {
    margin-bottom: 1rem;
}

.faq__question {
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

.faq__answer {
    font-size: 1rem;
    border-left: 6px solid #C81501;
    padding: 0.2rem 1rem 0.2rem 1rem;
}