@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=M+PLUS+1+Code:wght@100..700&family=M+PLUS+1p:wght@500;700&family=M+PLUS+2:wght@100..900&display=swap');


/* ---------------------------------------
共通スタイル
--------------------------------------- */

html {
    font-size: 62.5%;
}

body {
    background: #f2f6f3;
    color: #333333;
    font-family: "M PLUS 1 Code", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
}


a {
    display: inline-block;
    cursor: pointer;
    transition: .3s
}

a:hover {
    color: #22AC38;
}

s {
    text-decoration: line-through;
}

strong {
    font-weight: 600;
}

.flex {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
}

.inner {
    width: 1080px;
    max-width: 1160px;
    margin: auto;
}

a.link-deco {
    text-decoration: underline;
}


.number {
    font-family: "M PLUS 1p", sans-serif;
    font-style: normal;
}

@media screen and (min-width: 1280px) {
    .sp {
        display: none;
    }

    .inner {
        width: 90%;
        margin: auto;
    }

}

@media screen and (max-width: 1279px) {
    .pc {
        display: none !important;
    }

    .inner {
        width: 92%;
        margin: auto;
    }
}

@media screen and (max-width: 560px) {
    html {
        font-size: 50%;
    }

    body {
        font-size: 1.8rem;
    }

    .flex {
        display: block;
    }
}


/* ---------------------------------------

ヘッダー

--------------------------------------- */

.header-inner {
    margin: 40px auto;
    width: 1200px;
}

h1 img {
    width: 200px;
}

/*メインメニュー*/
ul.main-menu li a {
    font-weight: 500;
    margin-right: 1.5em;
}

ul.main-menu li:last-child a {
    margin-right: 0;
}

.main-menu_btn {
    background: #22AC38;
    color: #ffffff;
    padding: 5px 20px 5px 45px;
    border-radius: 5px;
    position: relative;
}

.main-menu_btn::before {
    content: '';
    display: inline-block;
    background-image: url(../img/icon_mail.png);
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    top: 6px
}


@media screen and (min-width: 1280px) and (max-width: 1380px) {
    .header-inner {
        width: 1080px;
    }
}

@media screen and (max-width: 1279px) {
    .header-inner {
        margin: 30px 4%;
        width: auto;   
    }
}

@media screen and (max-width: 560px) {
    .header-inner {
        margin: 20px 15px;
        width: 50%;
    }

    h1 img {
        width: 160px;
    }
}


/*----------------------
ハンバーガーメニュー
----------------------*/
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger::after {
    content: "";
    position: absolute;
    top: -110px;
    right: -110px;
    z-index: -1;
    width: 200px;
    background-color: #ADCF32;
    aspect-ratio: 1 / 1;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

.hamburger-morph {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

@media screen and (max-width: 560px) {
    .hamburger {
        top: 10px;
        right: 10px;
    }

    .hamburger::after {
        top: -80px;
        right: -80px;
        width: 150px;
    }
}


.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}

.hamburger-morph__line {
    fill: none;
    stroke: #fff;
    stroke-width: 5;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.nav-morph {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(173, 207, 50, 0.98);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}

.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(5) {
    transition-delay: 0.7s;
}

.nav-morph.active .nav-morph__item:nth-child(6) {
    transition-delay: 0.8s;
}

.nav-morph.active .nav-morph__item:nth-child(7) {
    transition-delay: 1.0s;
}


.nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}


/*メインビジュアル*/
.mv-contents {
    position: relative;
}

/*キャッチコピー*/
.mv-catchcopy {
    display: inline-block;
    font-family: "M PLUS 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 6rem;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: center;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 120px;
    z-index: 2;
}

.mv-catchcopy ruby rt {
    font-size: 2rem;
}

.fadeIn1s {
    animation-name: fadeIn1s;
    animation-delay: 1.6s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}

@keyframes fadeIn1s {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 560px) {
    .mv-catchcopy {
        font-size: 4rem;
        line-height: 1.6;
        letter-spacing: 1px;
        left: 0%;
        right: 0%;
        top: 90px;
    }

    .mv-catchcopy ruby rt {
        font-size: 1.8rem;
    }
}

/*ロゴの動き*/
.mv-mcoco {
    width: 420px;
    height: 480px;
    position: relative;
    margin: auto;
}

.mcoco {
    width: 100%;
    height: 100%;
    background-image: url("../img/mv-bg_logo.png");
    background-size: cover;
    animation: purine 1.5s linear 1;
    animation-fill-mode: forwards;
    /*コレが最後停止*/
    transform-origin: center bottom;
    /* 上から落ちてくるスタート地点 */
    transform: translateY(-450px);
}

@keyframes purine {
    10% {
        /* 上から落ちてくる */
        transform: translateY(0);
    }

    15% {
        /* 落ちてきた衝撃で縦に少しつぶれる */
        transform: scale(1.1, 0.9);
    }

    20% {
        /* 落ちてきた衝撃で縦にさらに少しつぶれる */
        transform: scale(1.1, 0.8);
    }

    30% {
        /* 縦につぶれながらもつぶれた反動で少し横に伸びる */
        transform: scale(1.15, 0.7);
    }

    45% {
        /* 縦につぶれた反動で横に伸びる */
        transform: scale(1.2, 0.5);
    }

    50% {
        /* つぶれた反動で一気に縦に伸びる */
        transform: scale(0.85, 1.15);
    }

    60% {
        /* 伸びた反動で縦につぶれる */
        transform: scale(1.1, 0.9);
    }

    70% {
        /* つぶれた反動で縦に少し伸びる */
        transform: scale(0.95, 1.08);
    }

    90% {
        /* 伸びた反動でほんの少し縦につぶれる */
        transform: scale(0.98, 1.02);
    }

    100% {
        /* 通常のサイズになる */
        transform: scale(1, 1);
    }
}

@media screen and (max-width: 560px) {
    .mv-mcoco {
        width: 280px;
        height: 320px;
    }
}


/*新着情報*/
.mv-news {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);
    margin-bottom: 80px;
    margin-top: 40px;
    width: 90%;
}

.mv-news h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    width: 13%;
}

.mv-news_contents {
    width: 72%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0 1.5em;
}

.mv-news_date {
    color: #999;
    font-size: 1.5rem;
    margin-right: 1em;
}

.mv-news_all {
    width: 15%;
    position: relative;
    left: 1.5em;
    font-size: 1.5rem;
}

.mv-news_all::after {
    content: '';
    display: inline-block;
    background: url(../img/icon-right_green.png);
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5.5em;
    top: 0;
}

.mv-news_wrap .mv-sns {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);
    margin-bottom: 80px;
    margin-top: 40px;
    width: 8%;
    justify-content: space-around;
    color: #999;
    font-size: 1.4rem;
}

.mv-sns img {
    height: 20px;
}


@media screen and (max-width: 860px) {
    .mv-news_wrap {
        position: relative;
    }

    .mv-news {
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 0;
        margin-top: 30px;
        width: 100%;
    }

    .mv-news h2 {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }

    .mv-news_contents {
        width: 100%;
        border: none;
        padding: 15px 0;
    }

    .mv-news_all {
        width: calc(100% - 36px);
        text-align: right;
        font-size: 1.5rem;
        padding-right: 10px;
    }

    .mv-news_all::after {
        width: 16px;
        height: 16px;
        left: 100%;
        top: 0;
    }

    .mv-news_wrap .mv-sns {
        background: transparent;
        border-radius: 10px;
        padding: 10px;
        box-shadow: none;
        margin: 0;
        width: auto;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .mv-sns span {
        display: none
    }

    .mv-sns img {
        height: 20px;
    }
}

@media screen and (min-width: 760px) and (max-width: 859px) {
    .mv-news_wrap .mv-sns {
        position: absolute;
        top: 40px;
        right: 10px;
    }
}



/* ---------------------------------------

メインコンテンツ

--------------------------------------- */

#Top h2 {
    color: #666666;
    font-size: 1.7rem;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    margin: 10px 0 20px;
}

#Top h2::before {
    content: "";
    background-color: #ADCF32;
    border-radius: 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 3px;

}

#Top h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5em;
}

main section p {
    line-height: 1.8;
    margin-bottom: 1em;
}

.txt-point {
    color: #22AC38;
    font-weight: 600;
}

.txt-marker {
    font-size: 1.9rem;
    padding: 0 5px;
    background: linear-gradient(transparent 60%,
            #FCF16E 60%);
}

.btn-top a {
    display: block;
    width: 360px;
    height: 40px;
    margin: 40px auto 0;
    background: #666;
    border-radius: 40px;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

@media screen and (max-width: 560px) {
    main section h2 {
        font-size: 1.8rem;
    }

    main section h2::before {
        border-radius: 15px;
        width: 15px;
        height: 15px;
        top: 1px;
    }

    main section h3 {
        font-size: 2.2rem;
        margin-bottom: 1.5em;
    }

    main section p {
        line-height: 1.7;
        margin-bottom: 1em;
    }

    .btn-top a {
        width: 90%;
        height: 40px;
        margin: 30px auto 0;
        line-height: 40px;
    }
}


/* 動き */

.effect-fade {
    opacity: 0;
    transform: translate(0, 100px);
    /* フェードインで動く高さを指定 */
    transition: all 1600ms;
    /* フェードインにかかる時間を指定 */
}

.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

.effect-fade:nth-of-type(2) {
    -moz-transition-delay: 300ms;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
}

.effect-fade:nth-of-type(3) {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
}

.effect-fade:nth-of-type(4) {
    -moz-transition-delay: 900ms;
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
}

.effect-fade:nth-of-type(5) {
    -moz-transition-delay: 1200ms;
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
}


/*----------------------
エムココについて
----------------------*/

section.about {
    margin: 100px auto 80px;
}

.about-contents .flex {
    align-items: flex-start;
}

.about-contents h3 span {
    color: #22AC38;
    font-size: 4rem;
    font-weight: 600;
    padding: 0 5px;
}

.about-mcoco {
    background-color: #daedde;
    border-radius: 20px;
    padding: 2.5em;
    margin-bottom: 80px;
}

.about-mcoco_txt {
    width: 64%;
}

.about-mcoco_txt .txt-point {
    font-weight: 500;
    font-size: 1.8rem;
}

.about-mcoco_txt .txt-big {
    font-size: 2.15rem;
    font-weight: 600;
    margin-right: 10px;
}


.about-mcoco_img {
    width: 33%;
}


.about-support {
    text-align: center;
    margin-bottom: 80px;
}

.about-support_type {
    margin-left: 25px;
    margin-top: 75px;
}

.about-support_type ul li {
    background: #ffffff;
    box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);
    border-radius: 20px;
    width: 30%;
    padding: 25px;
    position: relative;
}

.about-support_type ul li span {
    display: inline-block;
    background: #22AC38;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -25px;
    top: -25px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
}

.about-support_type ul li img {
    height: 160px;
}

.about-support_type dl dt {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 1em 0;
}

.about-support_type dl dd {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
}

@media screen and (max-width: 860px) {
    section.about {
        margin: 80px auto 60px;
    }

    .about-contents h3 span {
        font-size: 3rem;
    }

    .about-mcoco {
        display: flex;
        flex-direction: column-reverse;
        border-radius: 15px;
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .about-mcoco_txt {
        width: 100%;
    }

    .about-mcoco_txt .txt-point {
        font-size: 1.8rem;
    }

    .about-mcoco_img {
        width: 80%;
        margin: 0 auto 30px;
        text-align: center;
    }

    .about-support {
        margin-bottom: 30px;
    }

    .about-support p {
        text-align: left;
    }

    .about-support_type {
        margin-left: 10px;
        margin-top: 40px;
    }

    .about-support_type ul li {
        border-radius: 15px;
        width: 90%;
        padding: 20px;
        margin: 30px auto;
        text-align: center;
    }

    .about-support_type ul li span {
        position: absolute;
        left: -15px;
        top: -15px;
    }

    .about-support_type ul li img {
        height: 120px;
    }

    .about-support_type dl dt {
        font-size: 2rem;
        margin: 12px 0;
    }

    .about-support_type dl dd {
        font-size: 1.6rem;
    }
}


/*専門家について*/

.about-expert {
    margin-top: 100px;
    text-align: center;
}

.about-expert_list {
    margin-top: 40px;
}

.about-expert_list ul li {
    background: #daedde;
    border: 2px solid #22AC38;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 8px;
    width: 24%;
    color: #22AC38;
    font-size: 1.8rem;
    font-weight: 500;
}


.about-expert_list p {
    color: #22AC38;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 1em;
}


@media screen and (max-width: 860px) {
    .about-expert {
        margin-top: 60px;
        line-height: 1.6;
    }

    .about-expert p {
        text-align: left;
    }

    .about-expert_list {
        margin-top: 30px;
    }

    .about-expert_list ul {
        display: flex;
    }

    .about-expert_list ul li {
        border-radius: 8px;
        margin-bottom: 10px;
        padding: 8px;
        width: 49%;
        font-size: 1.5rem;
        text-align: center;
    }

    .about-expert_list p {
        text-align: center;
        margin: 1em;
    }
}

/*----------------------
私たちについて
----------------------*/

section.company {
    background: #fff;
    padding: 80px 0;
}

.company-contents .company-txt {
    align-items: flex-start;
    margin-bottom: 55px;
}

.company-txt h3 {
    line-height: 1.5;
    width: 360px;
}

.company-txt h3 span {
    color: #22AC38;
}

.company-txt p {
    width: calc(100% - 360px);
}

.company-group_msg {
    border: 3px solid #22AC38;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.copmayu-group_h1 {
    display: inline-block;
    width: 400px;
    height: 50px;
    margin: auto;
    background: #22AC38;
    border-radius: 50px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1px;
    text-align: center;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
}

.campany-group_kcc {
    background: #f2f6f3;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.copmayu-group_h2 {
    color: #22AC38;
    font-size: 1.8rem;
    font-weight: 600;
}

.campany-group_kcc-list {
    align-items: flex-start;
    margin-top: 40px;
}

.campany-group_kcc-list li {
    width: 30%;
}

.campany-group_kcc-list dl {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 320px;
}

.campany-group_kcc-list dt {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    height: 70px;
    padding-top: 12px;
}

.campany-group_kcc-list li:first-child dt {
    padding-top: 0;
}

.campany-group_kcc-list dt span {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
}

.campany-group_kcc-list dd {
    margin-top: 30px;
}

.campany-group_kcc-list img {
    margin-bottom: 15px;
}

.campany-group_kcc-list li:first-child dd img {
    height: 42px;
}

.campany-group_kcc-list li:nth-child(2) dd img {
    height: 160px;
}

.company-group_other ul {
    margin-top: 40px;
}

.company-group_other ul li {
    display: table;
    width: 31%;
    height: 60px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
}

.company-group_other ul li:first-child,
.company-group_other ul li:nth-child(2),
.company-group_other ul li:nth-child(3) {
    margin-bottom: 15px;
}

.company-group_other ul li p {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.3;
    letter-spacing: 1px;
}

.company-group_other ul li span {
    display: block;
    font-size: 1.3rem;
}


@media screen and (max-width: 560px) {
    section.company {
        padding: 60px 0;
    }

    .company-contents .company-txt {
        margin-bottom: 60px;
    }

    .company-txt h3 {
        width: 100%;
        text-align: center;
    }

    .company-txt p {
        width: 100%;
    }

    .company-group_msg {
        border-radius: 16px;
        padding: 40px 20px 20px;
        position: relative;
    }

    .copmayu-group_h1 {
        width: 80%;
        height: 40px;
        border-radius: 40px;
        font-size: 1.8rem;
        line-height: 40px;
        top: -20px;
    }

    .campany-group_kcc {
        border-radius: 16px;
        padding: 20px;
    }

    .copmayu-group_h2 {
        font-size: 1.8rem;
    }

    .campany-group_kcc-list {
        margin-top: 20px;
    }

    .campany-group_kcc-list li {
        width: 94%;
        margin: 15px auto;
    }

    .campany-group_kcc-list dl {
        padding: 20px;
        border-radius: 20px;
        height: auto;
    }

    .campany-group_kcc-list dt {
        height: 40px;
        padding-top: 0px;
    }

    .campany-group_kcc-list li:first-of-type dt {
        height: 60px;
    }

    .campany-group_kcc-list dd {
        margin-top: 20px;
    }

    .campany-group_kcc-list li:first-child dd img {
        height: 36px;
    }

    .campany-group_kcc-list li:nth-child(2) dd img {
        height: 120px;
    }

    .company-group_other ul {
        display: flex;
        margin-top: 30px;
    }

    .company-group_other ul li {
        width: 48%;
        height: 60px;
        border-radius: 8px;
        padding: 8px;
    }

    .company-group_other ul li {
        margin-bottom: 10px;
    }

    .company-group_other ul li p {
        line-height: 1.3;
    }

    .company-group_other ul li span {
        font-size: 1.3rem;
    }
}

/*----------------------
支援までの流れ
----------------------*/

section.flow {
    margin: 80px auto;
}


.flow-list ul {
    margin: 40px 0 40px 80px;
    width: 65%;
    position: relative;
}

.flow-list ul::after {
    content: "";
    width: 10px;
    height: calc(100% - 100px);
    background: #daedde;
    position: absolute;
    left: 20px;
    top: 50px;
    z-index: -1
}

.flow-list ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.flow-list ul li span {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    background: #fff;
    border: 2px solid #22AC38;
    border-radius: 50px;
    color: #22AC38;
    font-weight: 600;
    font-size: 2rem;
    font-family: "M PLUS 1p", sans-serif;
    line-height: 46px;
    text-align: center;
}

.flow-list ul li dl {
    width: calc(100% - 50px);
}

.flow-list ul li dt {
    color: #22AC38;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.flow-list ul li dd {
    line-height: 1.6;
}

.flow-image {
    width: 20%;
    position: relative;
}


.flow-contact {
    background: #fff;
    border: 3px solid #22AC38;
    border-radius: 20px;
    box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);
    padding: 30px;
    text-align: center;
    position: relative;
    width: 94%;
    margin: auto;
}


.flow-contact > p {
    font-weight: 600;
}

.flow-contact_tel {
    width: 48%;
    position: relative;
}

.flow-contact_tel::after {
    content: "";
    background: #ccc;
    width: 1px;
    height: 100%;
    position: absolute;
    right: -3%;
    top: 0;
    margin: auto;
}

.flow-contact_tel p {
    line-height: 1;
    margin-bottom: 10px;
}

.flow-contact_tel p.telno {
    color: #22AC38;
}

.flow-contact_tel p.telno span {
    font-size: 3.2rem;
    font-weight: 600;
}

.flow-contact_form {
    width: 48%;
}

.flow-contact_form a {
    background: #22AC38;
    width: 80%;
    height: 60px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 60px;
}

.flow-contact_contents img.purupuru {
    width: 80px;
    position: absolute;
    right: -30px;
    top: -30px;
    z-index: 1;
}

.purupuru {
    position: absolute;
    z-index: 1;
    animation: purupuru 2.3s linear infinite;
}

/* purupuruの動きをここで設定 */
@keyframes purupuru {
    0% {
        transform: skew(0deg, 0deg);
    }

    5% {
        transform: skew(5deg, 4.2deg);
    }

    10% {
        transform: skew(-4deg, -3deg);
    }

    15% {
        transform: skew(3deg, 2.2deg);
    }

    20% {
        transform: skew(-2deg, -1.5deg);
    }

    25% {
        transform: skew(0.9deg, 0.9deg);
    }

    30% {
        transform: skew(-0.6deg, -0.6deg);
    }

    35% {
        transform: skew(0.3deg, 0.3deg);
    }

    40% {
        transform: skew(-0.2deg, -0.2deg);
    }

    45% {
        transform: skew(0.1deg, 0.1deg);
    }

    50% {
        transform: skew(0deg, 0deg);
    }
}


@media screen and (max-width: 860px) {
    .flow-list ul {
        margin: 40px 0 40px 60px;
    }
}

@media screen and (max-width: 560px) {
    section.flow {
        margin: 60px auto;
    }


    .flow-list ul {
        margin: 30px 0;
        width: 100%;
    }

    .flow-list ul::after {
        width: 10px;
        height: calc(100% - 80px);
        left: 15px;
        top: 40px;
    }


    .flow-list ul li span {
        width: 40px;
        height: 40px;
        border-radius: 40px;
        font-size: 2rem;
        line-height: 36px;
    }

    .flow-list ul li dl {
        width: calc(100% - 50px);
    }

    .flow-list ul li dt {
        color: #22AC38;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .flow-list ul li dd {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .flow-image {
        width: 40%;
        position: relative;
        margin: 0 auto 30px;
    }


    .flow-contact {
        border-radius: 15px;
        padding: 25px;
        width: 90%;
    }

    .flow-contact_tel {
        width: 100%;
    }

    .flow-contact_tel::after {
        content: none;
    }

    .flow-contact_tel p {
        font-size: 1.6rem;
        line-height: 1;
        margin-bottom: 10px;
    }

    .flow-contact_tel p.telno span {
        font-size: 3rem;
        font-weight: 600;
    }

    .flow-contact_form {
        margin-top: 20px;
        width: 100%;
    }

    .flow-contact_form a {
        width: 100%;
        height: 50px;
        line-height: 50px;
    }

    .flow-contact_contents img.purupuru {
        width: 60px;
        position: absolute;
        right: -20px;
        top: -25px;
        z-index: 1;
    }

    .purupuru {
        position: absolute;
        z-index: 1;
        animation: purupuru 2.3s linear infinite;
    }

}



/* ---------------------------------------

フッター

--------------------------------------- */
footer {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    text-align: center;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    width: 3600px;
    background-color: #76b580;
    aspect-ratio: 1 / 1;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);

}

.footer-contents {
    color: #fff;
    padding: 80px 0 20px;
    width: 800px;
    margin: auto;
}

.footer-contents img {
    height: 50px;
}

.footer-menu {
    margin: 40px auto 60px;
}

.footer-menu a {
    font-weight: 500;
    color: #fff;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-group {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin: 60px 0;
}

.footer-kcc {
    width: 45%;
}

.footer-kcc_ttl {
    font-size: 2rem;
    font-weight: 600;
    margin: 15px 0 10px;
}

.footer-kcc_add {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-kcc a {
    display: block;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 1.5rem;
    text-align: center;
    padding: 5px 10px;
}

.footer-kcc a:hover {
    background: #fff;
    color: #76b580;
}

.footer-copyright {
    font-size: 1.4rem;
    text-align: right;
    margin-top: 20px;
}

.footer-contact {
    width: 48%;
}

.footer-contact .telno {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}

.footer-contact-form a {
    background: #fff;
    border: 3px solid #fff;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    color: #76b580;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
}

.footer-contact-form a:hover {
    background: #76b580;
    color: #fff;
}

.footer-sns {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.footer-sns img {
    width: 20px;
    height: auto;
    margin-left: 1em;
}

/*コピーライト*/

.footer-copyright {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-copyright a {
    margin-right: 10px;
}

.footer-copyright a:hover {
    color: #fff;
    text-decoration: underline;
}


@media screen and (max-width: 860px) {
    footer::before {
        transform: translateX(-50%);
        width: 2400px;
    }

    .footer-contents {
        width: 92%;
    }
}

@media screen and (max-width: 560px) {
    footer {
        margin-top: 100px;
        text-align: center;
    }

    footer::before {
        transform: translateX(-50%);
        width: 1200px;
    }

    .footer-contents {
        padding: 60px 0 20px;
        width: 92%;
    }

    .footer-contents img {
        height: 40px;
    }

    .footer-menu {
        display: none;
    }

    .footer-group {
        display: block;
        justify-content: space-between;
        text-align: left;
        margin: 30px 0;
    }

    .footer-kcc {
        width: 100%;
    }

    .footer-kcc_ttl {
        font-size: 2rem;
        margin: 15px 0 10px;
    }

    .footer-kcc_add {
        font-size: 1.6rem;
    }

    .footer-kcc a {
        display: block;
        font-size: 1.6rem;
        padding: 10px 15px;
    }

    .footer-copyright {
        font-size: 1.4rem;
        text-align: right;
        margin-top: 20px;
    }

    .footer-contact {
        width: 100%;
        margin-top: 30px;
    }

    .footer-contact .telno {
        font-size: 3rem;
    }

    .footer-contact-form a {
        border-radius: 8px;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }

    .footer-sns {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-sns img {
        width: 20px;
        height: auto;
        margin-left: 1em;
    }

}


/* ---------------------------------------

投稿・固定ページ 共通

--------------------------------------- */

.tittle-area h1 {
    color: #76b580;
    font-size: 4.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;

}

.tittle-area {
    padding: 60px 0 100px;
}

#Post h3,
#Page h3 {
    background: #daedde;
    border-radius: 10px;
    color: #22AC38;
    font-size: 2.5rem;
    font-weight: 600;
    padding: 20px;
    margin: 1.5em 0 1em;
}

#Post h4,
#Page h4 {
    border-left: 5px solid #22AC38;
    color: ;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.6;
    padding-left: 15px;
    margin: 1.5em 0 1em;
}

#Post h5,
#Page h5 {
    color: #22AC38;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 1.5em 0 1em;
}


#Post section a {
    text-decoration: underline;
}


#Page section ul,
#Post section ul {
    margin: 1.2em 0.8em;
}

/*
#Page section ol,
#Post section ol {
    margin: 1.2em 0.8em;
    counter-reset: number;
}
*/

#Page section ul li,
#Post section ul li {
    line-height: 1.7;
    padding-left: 1.2em;
    position: relative;
}

#Page section ul li::before,
#Post section ul li::before {
    content: '';
    background-color: #ADCF32;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
}

/*
#Page section ol li,
#Post section ol li {
    padding: 5px;
    padding-left: 2em;
}


#Page section ol li::before,
#Single section ol li::before {
    counter-increment: number;
    content: counter(number);
    color: #fff;
    font-size: 1.4rem;
    line-height: 22px;
    text-align: center;
    background-color: #ADCF32;
    border-radius: 3px;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 6px;
}
*/


@media screen and (max-width: 560px) {
    .tittle-area h1 {
        font-size: 3.2rem;
    }

    .tittle-area {
        padding: 30px 0 60px;
    }


    #Post h3,
    #Page h3 {
        border-radius: 8px;
        font-size: 2.4rem;
        padding: 15px;
    }

    #Post h4,
    #Page h4 {
        color: ;
        font-size: 2.2rem;
    }

    #Post h5,
    #Page h5 {
        font-size: 2rem;
    }
}


/* ---------------------------------------

投稿ページ

--------------------------------------- */

.post-contents {
    background: #fff;
    border-radius: 40px;
    box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);
    padding: 80px;
    margin-bottom: 60px;
    position: relative;
}

.post-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 60px;
}

.post-date {
    display: block;
    color: #22AC38;
    margin-bottom: 20px;
}

#Post .post-contents h2 {
    font-size: 3.2rem;
    font-weight: 600;
}

.post-footer a {
    display: block;
    width: 360px;
    height: 40px;
    margin: 40px auto 0;
    background: #666;
    border-radius: 40px;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.post-contents .purupuru {
    position: absolute;
    right: 50px;
    top: -30px;
    width: 80px;
}

@media screen and (max-width: 860px) {
    .post-contents {
        padding: 60px;
    }
}

@media screen and (max-width: 560px) {
    .post-contents {
        border-radius: 10px;
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .post-header {
        padding-bottom: 15px;
        margin-bottom: 40px;
    }

    .post-date {
        margin-bottom: 10px;
    }

    #Post .post-contents h2 {
        font-size: 2.8rem;
    }

}


/* ---------------------------------------

投稿アーカイブ

--------------------------------------- */

.news-archive ul li {
    margin-bottom: 10px;
}

.news-archive ul li a {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    width: 100%;
}

.news-archive ul li a:hover {
    background: transparent;
}

.newes-pager {
    margin: 60px 0 40px;
}

.newes-pager ul {
    display: flex;
    justify-content: center;
    margin: auto;
}

.newes-pager ul li {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    margin: 5px;
}

.newes-pager ul li a {
    display: block;
    background: #fff;
    border-radius: 25px;
    color: #ADCF32;
    height: 50px;
    width: 50px;
    padding: 0 12px;
}

.newes-pager ul li a:hover {
    background: transparent;
}

.newes-pager ul li span {
    display: block;
    background: #ADCF32;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    height: 50px;
    width: 50px;
}

@media screen and (max-width: 560px) {

    .news-archive ul li a {
        border-radius: 8px;
        padding: 15px;
        width: 100%;
    }

    .news-archive_date {
        display: block;
        margin-bottom: 5px;
    }

    .newes-pager {
        margin: 60px 0 40px;
    }

}


/* ---------------------------------------

メールフォーム

--------------------------------------- */

.smf-progress-tracker {
    margin-bottom: 40px;
}

.smf-item__col--label {
    margin: 5px 0;
}

.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
    content: "必須";
    display: inline-block;
    padding: 5px 6px;
    color: #fff;
    background-color: #22AC38;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    margin-left: 1em;
    border-radius: 4px;
}

.snow-monkey-form input[type=text],
.snow-monkey-form input[type=email] {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

.smf-action .smf-button-control__control {
    background: #22AC38;
    border: solid 1px #22AC38;
    border-radius: 5px;
    color: #fff;
    width: 200px;
    height: 40px;
}
