@charset "utf-8";

/* * * Reset * * */
body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, blockquote, pre, table, th, td, form, figure, fieldset, input, textarea {
    margin: 0;
    padding: 0;
}
img {
    vertical-align: baseline;
}
a {
    color: #000;
}
a img {
    border: none;
}
ol, ul {
    list-style: none;
    list-style-type: none;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* * * Base * * */
html {
    scroll-behavior: smooth;
    font-size: 100%;
}
body {
    background: #fbf8ef;
    font-family: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Meiryo', sans-serif;
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.85;
    color: #35433c;
    text-align: left;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
}

.PC{
    display: none;
}


/* * * Variable * * */
:root {
    --green: #8bbd9a;
    --green-deep: #497a5a;
    --green-light: #edf7ee;
    --green-pale: #f5faf4;
    --ivory: #fbf8ef;
    --white: #fff;
    --coral: #e88b78;
    --coral-hover: #df765f;
    --coral-light: #fff1ed;
    --text: #35433c;
    --text-light: #6c7a72;
    --border: #d8e6da;
    --shadow: 0 0.6rem 1.8rem rgba(73, 122, 90, 0.12);
}

#header .inner,
.section .inner,
#footer .inner {
    width: 92%;
    max-width: 1120px;
    margin: 0 auto;
}

.section {
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
}

.bg_green_light {
    background: var(--green-light);
}

.bg_ivory {
    background: var(--ivory);
}

/* * * Common * * */
.section_head {
    text-align: center;
    margin-bottom: 1.8rem;
}

.section_head_left {
    text-align: left;
    margin-bottom: 1rem;
}

.section_label {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 0.35rem;
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section_label::before,
.section_label::after {
    content: "";
    display: block;
    width: 1.8em;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}



h2 {
    font-family: 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--green-deep);
}

h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
}

.section_lead {
    margin-top: 0.8rem;
    color: var(--text);
    line-height: 1.9;
}

.btn_wrap {
    margin-top: 1.6rem;
    text-align: center;
}

.btn {
    display: inline-block;
    min-width: 13.5rem;
    padding: 0.95em 1.8em;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 0.45rem 1rem rgba(232, 139, 120, 0.28);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    background: url("../img/mail.png") no-repeat center center;
    background-size: contain;
    vertical-align: -0.18em;
}


.btn:hover {
    background: var(--coral-hover);
    transform: translateY(-0.15rem);
    box-shadow: 0 0.65rem 1.2rem rgba(223, 118, 95, 0.32);
}

.note {
    margin-top: 1.2rem;
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.8;
}

/* * * Header * * */
#header {
    width: 100%;
    background: var(--ivory);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.site_title {
    color: var(--green-deep);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.5;
}

.site_logo {
    line-height: 1;
}

.site_logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--green-deep);
    text-decoration: none;
}

.site_logo_icon {
    position: relative;
    display: inline-block;
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
}

.site_logo_icon::before,
.site_logo_icon::after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 999px 999px 999px 0;
    background: var(--green);
    opacity: 0.75;
}

.site_logo_icon::before {
    width: 0.85rem;
    height: 1.25rem;
    left: 0.45rem;
    top: 0.05rem;
    transform: rotate(-28deg);
}

.site_logo_icon::after {
    width: 0.75rem;
    height: 1.05rem;
    left: 0.15rem;
    top: 0.55rem;
    transform: rotate(35deg);
}

.site_logo_text {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.site_logo_main {
    font-family: 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--green-deep);
}

.site_logo_sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--green-deep);
    opacity: 0.85;
}


.header_nav {
    display: none;
}

.header_btn a {
    display: inline-block;
    padding: 0.5em 0.9em;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
}
.header_btn a::before {
    content: "";
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.45em;
    background: url("../img/mail.png") no-repeat center center;
    background-size: contain;
    vertical-align: -0.15em;
}





/* * * Hero Area * * */
#hero_area {
    background:
        radial-gradient(circle at 92% 16%, rgba(139, 189, 154, 0.18) 0, rgba(139, 189, 154, 0.18) 16%, transparent 17%),
        var(--ivory);
    padding-top: 2.4rem;
}

.hero_area_inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.hero_area_text h2 {
    color: #2f4537;
    font-size: clamp(2rem, 8vw, 3rem);
}


.hero_area_lead {
    margin-top: 1rem;
    color: var(--text);
    line-height: 1.9;
}



.hero_area_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.1rem;
    margin-top: 1rem;
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero_area_tags li {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    line-height: 1.6;
}

.hero_area_tags li::before {
    content: "";
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.85;
    flex-shrink: 0;
}





.hero_area_image {
    text-align: center;
}

.hero_area_image img {
    width: 82%;
    max-width: 21rem;
}

/* * * Onayami * * */
#problem {
    position: relative;
}

.problem_inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.problem_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.problem_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 8rem;
    padding: 1rem 0.75rem;
    border-radius: 1.1rem;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.problem_card_wide {
    grid-column: 1 / -1;
}

.card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.55rem;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.problem_card p {
    color: var(--text);
    font-weight: 700;
    line-height: 1.6;
}

.problem_image {
    text-align: center;
}

.problem_image img {
    width: 82%;
    max-width: 22rem;
}

/* * * Omakase * * */
#service {
    background: var(--white);
}

.service_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.service_list li {
    padding: 1.2rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    background: var(--white);
    box-shadow: 0 0.4rem 1.3rem rgba(73, 122, 90, 0.08);
    text-align: center;
}

.service_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 auto 0.6rem;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-deep);
    font-weight: 700;
    line-height: 1;
}

.service_list p {
    color: var(--green-deep);
    font-weight: 700;
}

/* * * Person * * */
.profile_inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.profile_image {
    text-align: center;
}

.profile_image img {
    width: 8.5rem;
    height: 8.5rem;
    padding: 0.45rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--green-pale);
    object-fit: cover;
}

.profile_name {
    margin-bottom: 0.8rem;
    color: var(--green-deep);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.profile_text p {
    color: var(--text);
    line-height: 1.9;
}

.profile_points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.profile_points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
}

.profile_points li img {
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* 以前のチェックマークは使わない */
.profile_points li::before {
    content: none;
}

/* * * Naiyou * * */
#naiyou {
    background: var(--white);
}

.naiyou_inner {
    display: grid;
    gap: 1rem;
}

.naiyou_box {
    padding: 1.4rem;
    border-radius: 1.2rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.naiyou_box h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.naiyou_box li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.55rem;
    line-height: 1.7;
}

.naiyou_box li:last-child {
    margin-bottom: 0;
}

.naiyou_box li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.can_do {
    border: 1px solid var(--border);
}

.can_do h3 {
    color: var(--green-deep);
}

.can_do li::before {
    content: "✓";
    color: var(--green-deep);
}

.cannot_do {
    border: 1px solid #f0c7bd;
    background: #fffafa;
}

.cannot_do h3 {
    color: #b85f51;
}

.cannot_do li::before {
    content: "×";
    color: #b85f51;
}

/* * * Ryoukin * * */
.price_list {
    display: grid;
    gap: 0.9rem;
}

.price_card {
    padding: 1.25rem;
    border-radius: 1.1rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.price_card h3 {
    color: var(--green-deep);
    margin-bottom: 0.5rem;
    font-size: 103%;
}

.price_card p {
    color: var(--text);
}
.price_detail{
    font-size: 84%;
    line-height: 1.2em;
}
.price_amount{
    font-weight: 500;
}




/* * * Nagare * * */
#nagare {
    background: var(--white);
}

.nagare_list {
    display: grid;
    gap: 0.9rem;
    counter-reset: flow;
}

.nagare_list li {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 4.2rem;
    border-radius: 1.1rem;
    background: var(--green-pale);
    border: 1px solid var(--border);
}

.nagare_list span {
    position: absolute;
    left: 1.2rem;
    top: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    line-height: 1;
}

.nagare_list h3 {
    color: var(--green-deep);
    margin-bottom: 0.2rem;
}

.nagare_list p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* * * CTA Area * * */
#cta_area {
    background: var(--ivory);
}

.cta_area_box {
    padding: 2rem 1.2rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at 8% 18%, rgba(139, 189, 154, 0.16) 0, rgba(139, 189, 154, 0.16) 14%, transparent 15%),
        radial-gradient(circle at 92% 84%, rgba(139, 189, 154, 0.18) 0, rgba(139, 189, 154, 0.18) 16%, transparent 17%),
        var(--green-light);
    text-align: center;
}

.cta_area_box h2 {
    font-size: clamp(1.55rem, 5vw, 2.2rem);
}

.cta_area_box p {
    margin-top: 1rem;
    color: var(--text);
    line-height: 1.9;
}

/* * * Page Top * * */
#page_top {
    width: 3.4rem;
    height: 3.4rem;
    position: fixed;
    right: 0.8rem;
    bottom: 1rem;
    z-index: 50;
}

#page_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    background: rgba(73, 122, 90, 0.55);
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#page_top a:hover {
    opacity: 1;
    transform: translateY(-0.12rem);
}

#page_top a span {
    position: relative;
    display: block;
    width: 0.95rem;
    height: 0.95rem;
    transform: rotate(-45deg);
    border-top: 0.18rem solid #fff;
    border-right: 0.18rem solid #fff;
    margin-top: 0.35rem;
}

/* * * Footer * * */
#footer {
    width: 100%;
    background: var(--green-deep);
}

#footer .inner {
    padding: 1.2rem 0;
    text-align: center;
}

#copy {
    color: var(--white);
    font-size: 0.78rem;
}




.small{
    font-size: 80%;
}

.t1em{
    margin-top: 1em;
}

.accent {
    color: #d97867;
    font-weight: 700;
}

.marker {
    font-weight: 700;
    color: var(--green-deep);
    background: linear-gradient(transparent 62%, rgba(139, 189, 154, 0.28) 62%);
}




/* * * Animation * * */
.js-fade {
    opacity: 0;
    transform: translateY(1.4rem);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* ファーストビュー用 */
#hero_area .hero_area_text,
#hero_area .hero_area_image {
    opacity: 0;
    transform: translateY(1.2rem);
    animation: heroFadeUp 0.9s ease forwards;
}

#hero_area .hero_area_image {
    animation-delay: 0.25s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(1.2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 動きを少なくしたい設定の人向け */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .js-fade,
    #hero_area .hero_area_text,
    #hero_area .hero_area_image {
        opacity: 1 !important;
        transform: none !important;
    }
}








/* * * PC * * */
@media screen and (min-width: 768px) {
    body {
        font-size: clamp(17px, 1.25vw, 19px);
    }

    .SP{
        display: none;
    }
    .PC{
        display: block;
    }


    #header .inner,
    .section .inner,
    #footer .inner {
        width: 90%;
    }

    .section {
        padding: 4.2rem 0;
    }

    .section_head {
        margin-bottom: 2.4rem;
    }

    h2 {
        font-size: clamp(2.3rem, 3.4vw, 3.2rem);
    }

    .header_inner {
        padding: 1rem 0;
    }


    .site_logo_icon {
        width: 2rem;
        height: 2rem;
    }

    .site_logo_main {
        font-size: 1.55rem;
    }

    .site_logo_sub {
        font-size: 0.78rem;
    }




    

    .header_nav {
        display: block;
        margin-left: auto;
    }

    .header_nav ul {
        display: flex;
        align-items: center;
        gap: 1.6rem;
    }

    .header_nav a {
        color: var(--text);
        font-size: 0.86rem;
        font-weight: 700;
        transition: color 0.25s ease;
    }

    .header_nav a:hover {
        color: var(--green-deep);
    }

    .header_btn a {
        padding: 0.65em 1.2em;
        font-size: 0.86rem;
        transition: background-color 0.25s ease;
    }

    .header_btn a:hover {
        background: var(--coral-hover);
    }

    #hero_area {
        padding-top: 4.5rem;
        padding-bottom: 5rem;
    }

    .hero_area_inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }


.hero_area_tags {
    gap: 0.45rem 1.4rem;
}

    .hero_area_text {
        width: 55%;
    }

    .hero_area_text h2 {
        font-size: clamp(3rem, 4.3vw, 4.1rem);
    }
    .hero_area_text h2 span {
        font-size: 80%;
    }

    




    .hero_area_image {
        width: 45%;
    }

    .hero_area_image img {
        width: 100%;
        max-width: 28rem;
    }

    .btn_wrap {
        text-align: left;
    }

    .section_head .btn_wrap,
    .cta_area_box .btn_wrap {
        text-align: center;
    }

    .problem_inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .problem_cards {
        width: 58%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .problem_card {
        min-height: 9rem;
        padding: 1.2rem;
    }

    .problem_image {
        width: 42%;
    }

    .problem_image img {
        width: 100%;
        max-width: 27rem;
    }

    .service_list {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .service_list li {
        padding: 1.4rem 0.8rem;
    }

    .profile_inner {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .profile_image {
        width: 28%;
    }

    .profile_image img {
        width: 11rem;
        height: 11rem;
    }

    .profile_text {
        flex: 1;
    }

    .profile_points {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.9rem;
    }

    .profile_points li {
        justify-content: center;
        padding: 0.85rem 1rem;
        text-align: left;
    }

    .profile_points li img {
        width: 1.9rem;
        height: 1.9rem;
    }



    .naiyou_inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }

    .naiyou_box {
        padding: 2rem;
    }

    .price_list {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .price_card {
        padding: 1.5rem 1.1rem;
    }

    .nagare_list {
        grid-template-columns: repeat(3, 1fr);
    }

    .nagare_list li {
        padding: 4rem 0.9rem 1.2rem;
        text-align: center;
    }

    .nagare_list span {
        left: 50%;
        top: 1.2rem;
        transform: translateX(-50%);
    }

    .cta_area_box {
        padding: 3.2rem 2rem;
    }

    .cta_area_box .btn_wrap {
        margin-top: 2rem;
    }

    #page_top {
        right: 1.3rem;
        bottom: 1.3rem;
    }
}