*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --header-h: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #2e2e2e;
    background: #fff;
    line-height: 1.6;
    padding-top: var(--header-h);
    letter-spacing: 0.06em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
	color:#2e2e2e;
}

.center {
    display: block;
    text-align: center;
}

.sp {
    display: none;
}

@media (Max-width:767px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}
main{
	margin:0;
}

/* =========================
   Header
========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background: #fff;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
    position: relative;
    margin: 0 auto;
    width: 1086px;
    max-width: calc(100% - 32px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__logo {
    display: inline-block;
    line-height: 1;
    flex-shrink: 0;
}

.site-header__logo img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 162px;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    flex-shrink: 0;
}

.site-header__tel-link {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-header__tel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-header__tel-icon svg {
    display: block;
    position: relative;
    top: 1px;
}

.site-header__tel-number {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    line-height: 1;
}

.site-header__time {
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1;
}

.site-header__cta {
    min-width: 205px;
    height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    background: #f2cb4d;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-header__menu-btn {
    display: none;
    appearance: none;
    border: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: #fff;
}

.site-header__menu-btn-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-header__menu-btn-lines span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #484848;
}

/* 1280～1440 */
@media (min-width: 1280px) and (max-width: 1440px) {
    .site-header__inner {
        width: calc(1086px + (1246 - 1086) * ((100vw - 1280px) / (1440 - 1280)));
    }
}

/* 1440～1920 */
@media (min-width: 1440px) and (max-width: 1920px) {
    .site-header__inner {
        width: calc(1246px + (1425 - 1246) * ((100vw - 1440px) / (1920 - 1440)));
    }
}

/* 1920以上 */
@media (min-width: 1920px) {
    .site-header__inner {
        width: 1425px;
    }
}

/* 1280以下 */
@media (max-width: 1280px) {
    .site-header__inner {
        width: calc(100% - 32px);
        max-width: 1086px;
    }

    .site-header__tel-link {
        font-size: 14px;
    }

    .site-header__time {
        font-size: 10px;
    }

    .site-header__cta {
        min-width: 170px;
        height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }
}

/* 1024以下 */
@media (max-width: 1024px) {
    :root {
        --header-h: 60px;
    }

    .site-header__inner {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 0;
        margin: 0;
        gap: 12px;
    }

    .site-header__logo img {
        height: 24px;
    }

    .site-header__right {
        display: none;
    }

    .site-header__menu-btn {
        display: inline-flex;
        margin-left: auto;
    }
}

/* =========================
   SP Menu
========================= */
.sp-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sp-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sp-menu__inner {
    position: relative;
    margin-left: auto;
    width: min(100%, 375px);
    min-height: 100%;
    background: #20B07B;
    padding: 18px 20px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.sp-menu.is-open .sp-menu__inner {
    transform: translateX(0);
}

.sp-menu__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.sp-menu__close-text {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
}

.sp-menu__close-icon {
    position: relative;
    width: 28px;
    height: 28px;
}

.sp-menu__close-icon::before,
.sp-menu__close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transform-origin: center;
}

.sp-menu__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sp-menu__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-menu__head {
    min-height: 60px;
}

.sp-menu__logo {
    display: inline-block;
    line-height: 1;
}

.sp-menu__logo img {
    display: block;
    height: 24px;
    width: auto;
}

.sp-menu__nav {
    display: flex;
    flex-direction: column;
}

.sp-menu__link {
    display: block;
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.03em;
    font-weight: 700;
    line-height: 1.8;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sp-menu__tel-wrap {
    margin-top: 34px;
    text-align: center;
}

.sp-menu__tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.sp-menu__tel span {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
	color:#fff;
}

.sp-menu__tel svg {
    position: relative;
    top: -3px;
}

.sp-menu__tel span.sp-menu__time {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    width: 100%;
}

@media (min-width: 1025px) {

    .sp-menu,
    .sp-menu.is-open {
        display: none !important;
    }
}


/*FV*/
/* =========================
   FV
========================= */
.fv {
    position: relative;
    overflow: hidden;
    background: url("images/fv-bg.png");
    background-size: cover;
    background-position: center;
    padding: 44px 0 36px;
    min-height: 561px;
}

.fv__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1160px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fv__content {
    width: 551px;
    max-width: 100%;
    padding-top: 6px;
}

.fv__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    background: #20B07B;
    color: #fff;
    width: 263px;
    font-size: 21.36px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.fv__label::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 15px solid #20B07B;
    border-right: 18px solid transparent;
}

.fv__subcopy {
    display: block;
    margin-top: 13px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.fv__title {
    margin-top: 16px;
    color: #20B07B;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.5;
}

.fv__text {
    margin-top: 29px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.55;
}

.fv__text span {
    color: #20B07B;
    font-weight: 700;
}

.fv__tags {
    margin-top: 47px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 4px;
    max-width: 538px;
}

.fv__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    background: #20B07B;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    padding: 0px 20px;
    white-space: nowrap;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.fv__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.fv__image img {
    display: block;
    width: 599px;
    height: 481px;
    object-fit: contain;
    margin-top: 32px;
}

/* =========================
   tablet
========================= */
@media (max-width: 1024px) {
    .fv {
        padding: 22px 0 14px;
    }

    .fv__inner {
        gap: 18px;
    }

    .fv__content {
        width: 500px;
    }

    .fv__subcopy {
        font-size: 16px;
    }

    .fv__title {
        font-size: 50px;
    }

    .fv__text {
        font-size: 15px;
    }

    .fv__image img {
        width: min(100%, 390px);
    }
}

/* =========================
   SP
========================= */
@media (max-width: 767px) {
    .fv {
        padding: 24px 0 0;
        background:url("images/fv-bg-sp.png");
        background-size: cover;
        background-position: center;
    }

    .fv::before {
        width: 84px;
        left: -8px;
        top: 110px;
        bottom: -20px;
        transform: skewX(-20deg);
    }

    .fv::after {
        width: 120px;
        right: -34px;
        top: 0;
        bottom: 0;
        transform: skewX(-20deg);
    }

    .fv__inner {
        width: 100%;
        padding: 0 0 0 24px;
        display: block;
    }

    .fv__content {
        width: auto;
        padding-right: 24px;
        padding-top: 0;
        max-width:348px;
        margin:auto;
    }

    .fv__label {
        min-height: 36px;
        padding: 0 10px;
        width:181px;
        font-size:15px;
    }

    .fv__label::after {
        left: 12px;
        bottom: -9px;
        border-top: 9px solid #20B07B;
        border-right: 9px solid transparent;
    }

    .fv__subcopy {
        margin-top: 24px;
        font-size: 15px;
    }

    .fv__title {
        margin-top: 16px;
        font-size: 40px;
    }

    .fv__text {
        margin-top:16px;
        font-size: 15px;
        line-height: 1.55;
    }

    .fv__tags {
        margin-top: 16px;
        max-width: 100%;
        gap: 12px 0px;
        padding-right:0;
    }

    .fv__tag {
        min-height: 32px;
        padding: 0 12px 0px 12px;
        font-size: 12px;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
        letter-spacing: 0.02em;
    }

    .fv__image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 10px;
        margin-top:24px;
        margin-bottom:17px;
    }

    .fv__image img {
        width: min(100%, 330px);
        height:auto;
        display:block;
        margin:auto;
    }
    
}



/*Problem*/
.problem {
    padding-top: 55px;
    padding-bottom: 53px;
    background: #E8F7F2;
}

.container {
    max-width: 1080px;
    width: 89.88%;
    margin: auto;
}

.sec-ttl-ja {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.06em;
	font-weight:bold;
}

.problem__lists {
    display: flex;
    justify-content: space-between;
    margin-top: 47px;
}

.problem__lists li {
    width: 255px;
    background: #fff;
    border-radius: 13px;
    padding-top: 30px;
    padding-bottom: 26px;
    box-shadow: 4px 4px 4px rgba(32, 178, 123, 0.25);
}

.problem__lists h3 {
    font-size: 20px;
    color: #0c734d;
    letter-spacing: 0.06em;
    font-weight: bold;
    line-height: 1.2;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.problem__lists li img {
    width: 184px;
    height: 190px;
    object-fit: contain;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.problem__lists li:nth-child(2) img {
    width: 205px;
    height: 190px;
}

.problem__lists li:nth-child(3) img {
    width: 185px;
    height: 190px;
}

.problem__lists li:nth-child(4) img {
    width: 182px;
    height: 190px;
}

.problem__lists li p {
    font-size: 16px;
    font-weight: 600;
    margin: auto;
}

.problem__lists li:first-child p {
    width: 170px;
}

.problem__lists li:nth-child(2) p {
    width: 154px;
}

.problem__lists li:nth-child(3) p {
    width: 137px;
}

.problem__lists li:nth-child(4) p {
    width: 205px;
}

@media (max-width:1200px) {
    .problem__lists {
        flex-wrap: wrap;
        max-width: 530px;
        margin: auto;
        gap: 20px;
        margin-top: 47px;
    }
}

@media (max-width:600px) {
    .problem__lists {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-top: 31px;
    }

    .problem__lists li {
        width: 100%;
        max-width: 335px;
        padding-bottom: 30px;
    }

    .sec-ttl-ja {
        font-size: 25px;
    }

    .problem .sec-ttl-ja {
        letter-spacing: 0.03em;
    }

    .problem__lists li img {
        margin-bottom: 4px;
    }
}

/*green-arrow*/
.green-arrow-wrap {
    background: #20B07B;
    padding: 33px 0px;
    text-align: center;
    color: #fff;
    position: relative;
}

.green-arrow-wrap:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid #20B07B;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
}

.green-arrow-wrap span {
    display: block;
    position: relative;
    width: 440px;
    margin: auto;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.green-arrow-wrap span::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 23px;
    background: url("images/green-arrow-wrap-before.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: -12px;
}

.green-arrow-wrap span::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 23px;
    background: url("images/green-arrow-wrap-after.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    top: -12px;
}

@media (max-width:767px) {
    .green-arrow-wrap span {
        font-size: 19px;
        width: 340px;
    }
}

/*reason*/
.reason {
    padding-top: 58px;
    padding-bottom: 60px;
}


.reason h2 .big {
    font-size: 64px;
    letter-spacing: -0.1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #20B07B;
}

.green {
    color: #20B07B;
}

.reason h2 .green {
    font-size: 36px;
}

.reason__lists {
    display: flex;
    justify-content: center;
    gap: 60px 24px;
    flex-wrap: wrap;
    margin-top: 72px;
}

.reason__list {
    width: 259px;
    background: #CFEEE8;
    border-radius: 13px;
    position: relative;
    min-height: 355px;
    padding-top: 44px;
    padding-bottom: 9px;
}

.reason__list .num {
    font-size: 56px;
    display: block;
    position: absolute;
    top: -53px;
    left: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #20B07B;
}

.reason__list h3 {
    text-align: center;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.06em;
}

.reason-wh-box {
    display: block;
    max-width: 241px;
    margin: auto;
    background: #fff;
    border-radius: 4px;
    padding-top: 13px;
    padding-bottom: 30px;
    margin-top: 27px;
    min-height: 249px;
}

.reason-wh-box img {
    height: 87px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.reason__list:nth-child(2) .reason-wh-box img {
    width: 126px;
    height: 79px;
}

.reason__list:nth-child(3) .reason-wh-box img {
    width: 110px;
    height: 102px;
}

.reason-img-wrap {
    height: 120px;
}

.reason-wh-lists {
    padding-left: 7px;
}

.reason-wh-lists li {
    font-weight: bold;
    padding-left: 20px;
    position: relative;
    list-style: none;
    line-height: 1.4;
}

.reason-wh-lists li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: url("images/reason-check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.reason-wh-lists li:first-child {
    height: 43px;
    margin-bottom: 9px;
}
.reason-wh-lists li:first-child .reason-indent{
	margin-left:-7px;
}

@media (max-width:767px) {
    .reason .sec-ttl-ja {
        line-height: 1.2;
    }

    .reason h2 .green {
        font-size: 27px;
    }

    .reason h2 .big {
        font-size: 40px;
    }

    .reason__lists {
        flex-direction: column;
        gap: 55px;
        align-items: center;
    }

    .reason__list {
        width: 100%;
        max-width: 335px;
    }

    .reason-wh-box {
        max-width: 311px;
        padding-top: 20px;
    }

    .reason__list:first-child ul {
        max-width: 243px;
        margin: auto;
    }

    .reason__list:nth-child(2) ul {
        max-width: 218px;
        margin: auto;
    }

    .reason__list:nth-child(3) ul {
        max-width: 200px;
        margin: auto;
    }

    .reason-wh-lists li:before {
        top: 2.5px;
    }
}

/*daikou*/
.daikou {
    padding-top: 70px;
    padding-bottom: 55px;
    background: #F6F6F6;
    text-align: center;
}

.daikou p {
    margin-top: 13px;
    line-height: 23px;
}

.daikou-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-top: 33px;
}

.daikou-scroll img {
    width: 910px;
    max-width: none;
    display: block;
}

@media (max-width:900px) {
    .daikou h2 .sp-big {
        font-size: 32px;
    }

    .daikou br.sp {
        display: block;
    }

    .daikou h2 {
        line-height: 1.2;
    }
}

@media (max-width:600px) {
    .daikou {
        padding-top: 37px;
        padding-bottom: 30px;
    }

    .daikou p {
        font-size: 14px;
        line-height: 26px;
        margin-top: 16px;
    }

    .daikou-scroll {
        margin-top: 50px;
    }
}


/*CTA*/
.cta {
    padding: 56px 0px 44px 0px;
    background: #20B07B;
}

.cta p {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
}

.cta a {
    display: block;
    margin: auto;
    max-width: 300px;
    padding: 15px 0px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
    border-radius: 100px;
    background: #FFDC64;
    margin-top: 21px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width:767px) {
    .cta {
        padding: 50px 0px;
    }

    .cta p {
        font-size: 18px;
    }

    .cta a {
        font-size: 20px;
        line-height: 1.5;
        max-width: 335px;
        margin-top: 32px;
    }
}

/*Feature*/
.feature {
    padding: 55px 0px;
    background: #E8F7F2;
}

.feature .center {
    margin-top: 33px;
}

.feature__lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1082px;
    margin: auto;
    margin-top: 33px;
    gap: 46px 0px;
}

.feature__list {
    width: 312px;
    min-height: 188px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 4px 4px 4px rgba(32, 176, 123, 0.25);
}

.feature__list h3 {
    background: #20B07B;
    color: #fff;
    padding: 11px 0px;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.feature__list img {
    display: block;
    margin: auto;
    margin-top: 21px;
    margin-bottom: 25px;
    object-fit: contain;
}

.feature__list:first-child img {
    width: 70px;
    height: 82px;
}

.feature__list:nth-child(2) img {
    width: 59px;
    height: 79px;
}

.feature__list:nth-child(3) img {
    width: 144px;
    height: 80px;
}

.feature__list:nth-child(4) img {
    width: 72px;
    height: 79px;
}

.feature__list:nth-child(5) img {
    width: 166px;
    height: 79px;
}

.feature__list.last {
    display: flex;
    align-items: flex-end;
    background: none;
    box-shadow: none;
}

.feature__list.last img {
    width: 100%;
    height: 138px;
    margin: 0;
}

@media (max-width:1160px) {
    .feature {
        padding: 50px 0px;
    }

    .feature__lists {
        justify-content: center;
        gap: 48px 24px;
    }

    .feature__list.last {
        display: block;
    }
}

@media (max-width:767px) {
    .feature .center {
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0;
    }

    .feature__lists {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 37px;
    }

    .feature__list {
        width: 335px;
    }

    .feature__list.last img {
        height: 153px;
    }
}

/*Service*/
.service {
    padding: 55px 0px 65px 0px;
    background: url("images/service-bg.jpg");
    background-size: cover;
    background-position: center;
}

.service .center {
    margin-top: 35px;
    font-size: 20px;
    margin-bottom: 46px;
}

.service__lists {
    max-width: 1080px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 35px 67px;
}

.service__list {
    width: 315px;
    min-height: 251px;
}

.service-icon-wrap {
    background: #E8F7F2;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 112px;
}

.service-icon-wrap img {
    display: block;
    margin: auto;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service__list h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 16px;
}

.service__list ul {
    margin: auto;
    margin-top: 16px;
    padding: 0;
}

.service__list ul li {
    margin-bottom: 4px;
}

.service__list:first-child ul {
    max-width: 258px;
}

.service__list:nth-child(2) ul {
    max-width: 170px;
}

.service__list:nth-child(3) ul {
    max-width: 120px;
}

.service__list:nth-child(4) ul {
    max-width: 178px;
}

.service__list:nth-child(5) ul {
    max-width: 174px;
}

.service__list.last .service-icon-wrap {
    background: #C7DAF8;
}

.service__list.last h3 {
    color: #326DC9;
}

.service__list.last span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

@media (max-width:767px) {
    .service {
        padding-top: 37px;
        padding-bottom: 50px;
        background: url("images/service-bg-sp.png");
        background-size: cover;
        background-position: center;
    }

    .service .center {
        font-size: 14px;
    }
}

/*Price*/
.price {
    padding-top: 43px;
    padding-bottom: 87px;
    background: #E8F7F2;
}

.price .center {
    font-size: 20px;
    line-height: 23px;
    font-weight: bold;
    margin-top: 33px;
    text-align: center;
}

.price-top-flex {
    display: flex;
    max-width: 549px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    margin-top: 53px;
}

.price-top-flex span:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 90px;
    background: #20B07B;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
}

.price-top-flex span:nth-child(2) {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #20B07B;
}

.price-top-flex span:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 255px;
    height: 90px;
    background: #20B07B;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
}

.price-top-flex span:last-child .min {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 20px;
}

/* =========================
   上部料金表
========================= */
.price-plan-wrap {
    margin-top: 52px;
}

.price-plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 41px;
    margin-top: 80px;
}

.price-plan-top__left {
    width: 64.4%;
    max-width: 688px;
}

.price-plan-top__right {
    width: 31.1%;
    max-width: 344px;
}

.price-plan-top__label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 385px;
    height: 60px;
    margin: 0 auto 38px;
    padding: 0 28px;
    border-radius: 100px;
    background: #20B07B;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

.price-plan-top__right .price-plan-top__label {
    min-width: 274px;
}

.price-plan-top__table {
    display: grid;
    background: #fff;
}

.price-plan-top__table--2col {
    grid-template-columns: 1fr 1fr;
}

.price-plan-top__table--1col {
    grid-template-columns: 1fr;
}

.price-plan-top__head {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75px;
    background: #2D3A35;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}


.price-plan-top__body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 98px;
    background: #fff;
    color: #0C734D;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.price-plan-top__body span {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    top: 5px;
    color: #2e2e2e;
    font-family: "Noto sans jp", sans-serif;
}

.price-plan-top__table--2col .price-plan-top__head:nth-child(1),
.price-plan-top__table--2col .price-plan-top__body:nth-child(3) {
    border-right: 1px solid #A8A8A8;
}

/* =========================
   注釈・中央コピー
========================= */
.price-note {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.price-middle-copy {
    margin-top: 92px;
    font-size: 20px;
    font-weight: bold;
    line-height: 23px;
    text-align: center;
}

/* =========================
   カスタマイズボックス
========================= */
.price-custom-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    align-items: flex-start;
}

.price-custom-box {
    width: 335px;
    background: #fff;
    height: auto;
    min-height: 327px;
}

.price-custom-box__head {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    background: #20B07B;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

.price-custom-box__body {
    padding: 29px 20px;
}

.price-custom-item {
    border: 1px solid #20B07B;
    border-radius: 4px;
    padding: 18px 14px 16px;
    background: #fff;
}

.price-custom-item__label {
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateY(-31px);
    background: #fff;
    font-weight: bold;
    line-height: 23px;
}

.price-custom-item__content {
    margin-top: -20px;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}

.price-custom-item__content ul {
    padding: 0;
    list-style: none;
    text-align: left;
    width: 118px;
    margin: auto;
    display: block;
}

.price-custom-item__content ul.second {
    width: 82px;
}

.price-custom-item__content li {
    margin-bottom: 2px;
}

.price-custom-item__content li:last-child {
    margin-bottom: 0;
}

.price-custom-cross {
    margin: 5px 0 20px;
    color: #20B07B;
    font-size: 24px;
    font-weight: bold;
    line-height: 23px;
    text-align: center;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .price-plan-top {
        flex-direction: column;
        gap: 32px;
    }

    .price-plan-top__left,
    .price-plan-top__right {
        width: 100%;
        max-width: none;
    }

    .price-plan-top__right {
        max-width: 400px;
        margin: 0 auto;
    }

    .price-custom-flex {
        flex-direction: column;
        gap: 24px;
    }

    .price-custom-box {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .price {
        padding-top: 52px;
        padding-bottom: 50px;
    }

    .price .center {
        font-size: 14px;
        line-height: 26px;
        margin-top: 37px;
    }

    .price-top-flex {
        gap: 11px;
        max-width: 335px;
        margin-top: 34px;
    }

    .price-top-flex span:first-child,
    .price-top-flex span:last-child {
        width: 100%;
        height: 74px;
        font-size: 20px;
    }

    .price-top-flex span:last-child .min {
        font-size: 16px;
    }

    .price-top-flex span:nth-child(2) {
        font-size: 22px;
        line-height: 1;
    }

    .price-plan-wrap {
        margin-top: 38px;
    }

    price-plan-top {
        margin-top: 37px;
    }

    .price-plan-top__table{
        background:none;
    }

    .price-plan-top__label {
        min-width: 0;
        width: 100%;
        max-width: 335px;
        height: 50px;
        margin-bottom: 18px;
        padding: 0 16px;
        font-size: 20px;
        line-height: 1.5;
    }

    .price-plan-top__table--2col {
        grid-template-columns: 1fr;
    }

    .price-plan-top__table--2col .price-plan-top__head:nth-child(1),
    .price-plan-top__table--2col .price-plan-top__body:nth-child(3) {
        border-right: none;
    }

    .price-plan-top__head {
        min-height: 70px;
        font-size: 29px;
    }


    .price-plan-top__head:nth-child(2) {
        order: 3;
        margin-top: 24px;
    }

    .price-plan-top__body:nth-child(1) {
        order: 2;
    }

    .price-plan-top__body:nth-child(4) {
        order: 4;
    }

    .price-plan-top__body {
        min-height: 104px;
        font-size: 44.3px;
    }

    .price-plan-top__body span {
        font-size: 22.15px;
    }

    .price-note {
        margin-top: 37px;
        line-height: 1.5;
    }

    .price-middle-copy {
        margin-top: 48px;
        font-size: 18px;
        line-height: 1.8;
    }

    .price-custom-flex {
        margin-top: 22px;
        gap: 20px;
    }

    .price-custom-box__head {
        min-height: 60px;
        font-size: 20px;
    }

    .price-custom-box__body {
        padding: 28px 14px 20px;
    }

    .price-custom-item {
        padding: 16px 12px 14px;
    }

    .price-custom-item__label {
        font-size: 15px;
        padding: 0 14px;
        transform: translateY(-28px);
    }

    .price-custom-item__content {
        font-size: 15px;
        line-height: 1.8;
    }

    .price-custom-cross {
        margin: 14px 0 20px;
        font-size: 32px;
    }
    .price-custom-box{
        min-height:inherit;
    }
}

/*Flow*/
/* =========================
   flow
========================= */
.flow {
    padding: 47px 0;
    background: #fff;
}

.flow__inner {
    width: min(100% - 32px, 1082px);
    margin: 0 auto;
}

.flow__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.flow__lead {
    margin-top: 22px;
    font-size: 16px;
    text-align: center;
}

.flow__scroll {
    margin-top: 42px;
}

.flow__list {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
}

.flow__item {
    position: relative;
    width: 216px;
    min-height: 258px;
    padding: 20px 18px 18px;
    padding-left: 8px;
    background: rgba(32, 176, 123, 0.6);
    color: #fff;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    flex: 0 0 216px;
}

.flow__item:nth-child(2) {
    background: rgba(32, 176, 123, 0.7);
}

.flow__item:nth-child(3) {
    background: rgba(32, 176, 123, 0.8);
}

.flow__item:nth-child(4) {
    background: rgba(32, 176, 123, 0.9);
}

.flow__item:nth-child(5) {
    background: rgba(32, 176, 123, 1);
}



.flow__item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
	color:#fff;
}

.flow__icon {
    width: 70px;
    height: 70px;
    margin: 22px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow__icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.flow__text {
    font-size: 14px;
    line-height: 19px;
    margin: auto;
    margin-top: 23px;
	color:#fff;
}

.flow__item:first-child .flow__text {
    width: 140px;
}

.flow__item:nth-child(2) .flow__text {
    width: 124px;
    text-align: center;
}

.flow__item:nth-child(3) .flow__text {
    width: 136px;
    text-align: center;
}

.flow__item:nth-child(4) .flow__text {
    width: 168px;
    text-align: center;
}


.flow__item:nth-child(5) .flow__text {
    width: 164px;
    text-align: center;
}


.flow__note {
    margin-top: 33px;
    font-weight: 500;
    line-height: 23px;
    text-align: center;
    color: #2e2e2e;
}

.flow__note span {
    color: #20B07B;
    font-weight: 700;
}

/* =========================
   SP
========================= */
@media (max-width: 1120px) {
    .flow {
        padding: 48px 0 56px;
    }

    .flow__inner {
        width: 100%;
    }

    .flow__title {
        font-size: 28px;
        line-height: 1.5;
        padding: 0 16px;
    }

    .flow__lead {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.8;
        padding: 0 16px;
    }

    .flow__scroll {
        margin-top: 28px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 12px;
    }

    .flow__scroll::-webkit-scrollbar {
        height: 6px;
    }

    .flow__scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.15);
        border-radius: 999px;
    }

    .flow__list {
        width: 1082px;
        flex-wrap: nowrap;
    }

    .flow__item {
        width: 216px;
        min-height: 258px;
        flex: 0 0 216px;
    }

    .flow__note {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
        padding: 0 16px;
    }
}

@media (max-width:767px){
    .flow__lead{
        font-size:14px;
        line-height: 23px;
    }
}


/* =========================
   FAQ
========================= */
.faq {
    padding: 80px 0;
    background: #dfeeea;
}

.faq__content {
    width: min(100% - 32px, 1080px);
    margin: 0 auto;
}


.faq__list {
    margin-top: 42px;
}

.faq__item {
    margin-bottom: 28px;
}

.faq__q {
    width: 100%;
    min-height: 72px;
    padding: 20px 100px 20px 26px;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faq__q-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.faq__mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.faq__mark--q {
    background: #20B07B;
    color: #fff;
}

.faq__mark--a {
    background: #fff;
    color: #20B07B;
    border: 1px solid #20B07B;
}

.faq__q-text {
    display: block;
    padding-top: 2px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.faq__arrow {
    position: relative;
    width: 16px;
    height: 10px;
    flex: 0 0 16px;
}

.faq__arrow::before,
.faq__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 1.5px;
    background: #20B07B;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.faq__arrow::before {
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}

.faq__arrow::after {
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__a-inner {
    background: #98DAC2;
    padding: 18px 28px 18px 26px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq__a-inner p {
    margin: 0;
    padding-top: 2px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.faq__item.is-open .faq__a {
    max-height: 240px;
}

.faq__item.is-open .faq__arrow::before {
    transform: translateY(-50%) rotate(-45deg);
}

.faq__item.is-open .faq__arrow::after {
    transform: translateY(-50%) rotate(45deg);
}

/* =========================
   SP
========================= */
@media (max-width: 767px) {
    .faq {
        padding: 37px 0 50px;
    }

    .faq__content {
        width: calc(100% - 40px);
    }


    .faq__list {
        margin-top: 28px;
    }

    .faq__item {
        margin-bottom: 10px;
    }

    .faq__q {
        min-height: 60px;
        padding: 14px 14px 14px 12px;
        gap: 12px;
    }

    .faq__q-left {
        gap: 10px;
    }

    .faq__mark {
        width: 28px;
        height: 28px;
        font-size: 16px;
        flex:0 0 28px;
        align-items: flex-start;
        padding-top:4px;
    }

    .faq__q-text {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.07em;
    }

    .faq__a-inner {
        padding: 14px 13px;
        gap: 10px;
    }

    .faq__a-inner p {
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 0.07em;
    }

    .faq__item.is-open .faq__a {
        max-height: 360px;
    }
}

/*Footer*/
footer {
    padding: 67px 0px 74px 0px;
}

.footer-title {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 42px;
}

.footer-logo {
    display: block;
    padding-bottom: 9px;
    border-bottom: 2px solid #4D893C;
}

.footer-logo img {
    width: 169px;
    height: 49.88px;
    object-fit: contain;
    margin-left: 4px;
}

.footer-about-title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-top: 32px;
}

footer ul {
    margin-top: 9px;
}

footer ul li {
    font-size: 15px;
    line-height: 33px;
}

.copyrights {
    display: block;
    background: #2E2E2E;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 14px 0px;
}
@media (max-width:767px){
    footer{
        padding-top:37px;
        padding-bottom:50px;
    }
    .footer-title{
        font-size:25px;
    }
    .footer-logo img{
        width:95px;
        height:29px;
    }
    .footer-about-title{
        margin-top:20px;
        font-size:13px;
    }
    footer ul{
        margin-top:7px;
    }
    footer ul li{
        font-size:12px;
        line-height: 24px;
        letter-spacing: 0.04em;
    }
    .copyrights{
        font-size:11px;
    }
}

/*hover*/
@media (min-width:767px){
a,img{
    transition: 0.4s;
}
.site-header__logo:hover{
    opacity: 0.7;
    transition: 0.4s;
}
.site-header__cta:hover{
    background:#FFEEB2;
    transition: 0.4s;
}

.cta a:hover{
    background:#FFEEB2;
    transition: 0.4s;
}

.footer-logo:hover{
    opacity: 0.7;
    transition: 0.4s;
}
	.form-btn:hover{
		background:#FFEEB2;
		transition:0.4s;
	}
}

/* SP：タップ時のフィードバック */
@media (max-width: 766px){

  a,
  img{
    transition: 0.2s;
  }

  .site-header__logo:active{
    opacity: 0.7;
  }

  .site-header__cta:active{
    background:#FFEEB2;
  }

  .cta a:active{
    background:#FFEEB2;
  }

  .footer-logo:active{
    opacity: 0.7;
  }

  .form-btn:active{
    background:#FFEEB2;
  }

}


/*Contact*/
.contact{
	background:#F6F6F6;
	padding:70px 0px;
}
.contact .center{
	margin-bottom: 33px;
    text-align: center;
	font-size:14px;
	font-weight:400;
}
.contact .center a{
	text-decoration:underline;
		font-weight:400;
	font-size:14px;
	margin-top:33px;
}

.form-box {
  max-width: 959px;
  padding: 50px 37px 90px 125px;
  margin: 0 auto;
  background: #fff
}

.form-box .formtb{
	margin-top:-15px;
}

.form-box dl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.form-box dl.last{
	align-items:flex-start;
}
.form-box dl:nth-child(6)::before {
	top:14px;
}

.form-box dl:nth-child(6) input {
  margin-right: 10px
}

.form-box dl:nth-child(7)::before {
  display: none
}

.form-box dl:nth-child(7) dt {
  position: relative;
  bottom: 82px
}

.form-box dt.must::before {
  content: "必須";
  height: 26px;
  padding: 4px 10px 5px;
  background: #dc1414;
  font-family: "Noto Sans JP";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  position: absolute;
  top:50%;
	transform:translateY(-50%);
  left: -80px;
  bottom: 0
}

.form-box dl dt {
  width: 30%;
  font-family: "Noto Sans JP";
  color: #151515;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: normal
}

.form-box dl dt::after {
  display: none
}

input {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #fff;
  border: 1px solid #2E2E2E;
  color: #2e2e2e;
	font-weight:400;
}

.form-box dd {
  width: 70%
}

.formtb fieldset {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 10px 0 !important;
	border:none;
}

.wpcf7-list-item {
  margin: 0 10px 0 0
}

.wpcf7-list-item input {
  width: 19px;
  height: 25px;
  background: #fff;
  border: 1px solid #2e2e2e;
}

.wpcf7-list-item-label {
  width: 100%;
  max-width: 290px;
  font-family: "Noto Sans JP";
  color: #2e2e2e;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
	margin-left:8px;
	margin-right:14px;
	position:relative;
	top:-6px;
	font-weight:400;
}

textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #2e2e2e;
  color: #2e2e2e;
	height:132px;
}

.privacy a{
	text-decoration:underline;
}

.form-button-area {
    position: relative;
	width:195px;
	margin:auto;
}


.form-btn {
    display: block;
    width: 100%;
    height: 44px;
	padding-left:59px;
    background: #F9C81C;
	color:#000;
    border-radius: 100px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    text-align:left !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

/* SVGは親に付ける */
.form-button-area::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 55%;
    transform: translateY(-50%);
    width: 15px;
    height: 17px;
    background: url("/cms/wp-content/themes/hatme/ec-smart/images/submit-arrow.svg") no-repeat center / contain;
    pointer-events: none;
}

@media (max-width:767px){
	.contact{
		padding-top:37px;
		padding-bottom:30px;
	}
	.form-box{
		padding:30px 20px 30px 18px;
		max-width:100%;
		width:100%;
	}
	.form-box dl,
	.form-box dl.last{
		flex-direction:column;
		gap:8px;
		align-items:center;
	}
	.form-box dl dt,
	.form-box dd{
		width:100%;
		margin:auto;
	}
	.form-box dt.must::before{
		left:0;
		top:10px;
	}
	.form-box dt.must{
		padding-left:63px;
	}
	.wpcf7-list-item-label{
		margin-left:0px;
		font-size:12px;
		margin-right:4px;
	}
	.wpcf7-list-item{
		margin:0;
	}
	.form-btn{
		font-size:14px;
	}
	.wpcf7-list-item-label{
		margin-right:0;
	}
	.wpcf7-list-item-label::before, .wpcf7-list-item-label::after{
		display:none;
	}
	.wpcf7-form-control-wrap,
	.wpcf7-form-control{
		width:100%;
		display:block;
	}
	.wpcf7-list-item input{
		width:14px;
		height:22px;
	}
}