/*-----------------------------------------------------------------------

    common

-----------------------------------------------------------------------*/
/* ▼common-aside */
.common-aside {
    align-items: center;
}
.common-aside_info {
    font-size: 1.5rem;
    line-height: 1.6;
}
.aside_tel {
    line-height: 1;
    font-size: 1.3rem;
}
.aside_tel span {
    display: block;
    font-weight: 500;
    margin: 5px 0 0;
}
.aside_tel span::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 26px;
    margin: 0 4px 0 0;
    background: url(../images/common/ico_tel.png) no-repeat center / contain;
    font-weight: bold;
    vertical-align: -1px;
}
.common-aside_contact {
    width: 176px;
}
.common-aside_contact::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 15px;
    margin: 0 8px 0 0;
    background: url(../images/common/ico_mail.png) no-repeat center / contain;
    vertical-align: -1px;
}
@media screen and (min-width: 768px) {
    .aside_tel span {
        font-size: 3.3rem;
    }
    .aside_tel span::before {
        margin: 0 23px 0 0;
    }
    .common-aside_contact {
        margin: 0 0 0 20px;
    }
    .common-aside_sns {
        margin: 0 0 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .common-aside_info {
        width: 100%;
        margin: 0 0 20px;
    }
    .aside_tel span {
        font-size: 3rem;
    }
    .aside_tel span::before {
        margin: 0 15px 0 0;
        vertical-align: -3px;
    }
    .common-aside_contact {
        margin: 0;
    }
    .common-aside_sns {
        margin: 20px 0 0;
    }
}

/*-----------------------------------------------------------------------

    header

-----------------------------------------------------------------------*/
#nav_toggle {
    position: fixed;
    top: 23px; right: 50px;
    padding: 8px 8px;
    cursor: pointer;
    border: 1px solid #cfa972;
    background-color: #fff;
}
#nav_toggle::after {
    content: 'MENU';
    display: block;
    margin: 6px 0 0;
    font-size: 1.2rem;
    line-height: 1;
    color: #cfa972;
    font-weight: bold;
}
#nav_toggle span {
    display: block;
    width: 35px;
    height: 4px;
    margin: 0 auto;
    background-color: #cfa972;
    transition: .3s;
}
#nav_toggle span:not(:last-child) {
    margin-bottom: 6px;
}
/* #nav_toggle.active span:nth-of-type(1) {
    -webkit-transform: translate3d(0px, 8px, 0) rotate(45deg);
    transform: translate3d(0px, 7px, 0) rotate(45deg);
}
#nav_toggle.active span:nth-of-type(2) {
    -webkit-transform: translate3d(0px, -7px, 0) rotate(-45deg);
    transform: translate3d(0px, -9px, 0) rotate(-45deg);
} */
#nav_toggle.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}
#nav_toggle.active span:nth-of-type(2) {
    opacity: 0;
}
#nav_toggle.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}
.g_nav {
    overflow-y: auto;
    visibility: hidden;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    background: url(../images/top/greeting_bg.jpg) no-repeat center / cover;
    position: fixed;
    top: 0; bottom: 0; left: 0; right: 0;
    transition: 0.5s ease-in-out;
    z-index: 998;
    -webkit-overflow-scrolling: touch;
}
.h_nav li {
    width: 100%;
}
.h_nav li a {
    padding: 10px 0 10px 25px;
    font-weight: bold;
    line-height: 1.5;
    border-bottom: 1px solid #98c93f;
}
.h_nav li span {
    color: #7e66a6;
    margin: 0 10px 0 0;
    font-size: 1.6rem;
    text-transform: uppercase;
}
.g_nav .common-aside {
    margin: 20px 0 0;
}

@media screen and (min-width: 768px) {
    header {
        width: 100%;
        background-color: #fff;
        position: fixed;
        top: 0; left: 0;
        z-index: 999;
    }
    header .h_wrap {
        width: 100%;
        align-items: center;
        height: 100px;
        padding: 0 130px 0 50px;
        border-top: 7px solid #98c93f;
    }
    header .h_logo {
        margin: 0 auto 0 0;
    }
    header .common-aside_info {
        margin: 0 30px 0 0;
    }
    .g_nav {
        width: calc(100% - 60px);
        max-width: 450px;
        padding-top: 50px;
        right: 0; left: auto; top: 100px;
    }
    .g_nav .common-aside {
        margin-top: 30px;
    }
    .g_nav .aside_tel {
        margin-top: 20px;
    }
    .g_nav .common-aside_sns {
        margin: 20px 0 0;
    }
    .g_nav {
        pointer-events: none;
        transform: translateX(100%);
    }
    .g_nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateX(0);
    }
}
@media screen and (max-width: 767px) {
    /*▼sp_nav*/
    .h_logo img {
        height: 50px;
    }
    .h_wrap {
        align-items: center;
        flex-direction: row;
        width: 100%;
        padding: 0 20px;
        border-top: 6px solid #98c93f;
        background-color: #fff;
    }
    /* header {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 999;
        transition: .3s all;
    } */
    #nav_toggle {
        top: 20px; right: 20px;
        z-index: 999;
    }
    .g_nav {
        opacity: 0;
        pointer-events: none;
        padding-top: 25px;
        padding-bottom: 50%;
    }
    .g_nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }
    .g_nav .h_nav {
        transform: translateX(30vw);
        transition: all .4s;
        opacity: 0;
    }
    .g_nav.open ul {
        transform: translateX(0);
        opacity: 1;
    }
    .g_nav_logo {
        width: 150px;
        height: auto;
        margin: 0 0 30px;
    }
}

/*-----------------------------------------------------------------------

    key

-----------------------------------------------------------------------*/
.key {
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-image: url(../images/common/key_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    position: relative;
}
#top .key::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/common/key_deco.png) no-repeat bottom / contain;
    position: absolute;
    bottom: 0; left: 0;
    z-index: 10;
    pointer-events: none;
}
.key_ttl {
    position: relative;
    z-index: 10;
}
.key_video,
.key_video video {
    width: 100%;
    /* height: 100%; */
}
.key_video {
    position: absolute;
    top: 0; left: 0;
}
.key_ttl-sub {
    display: inline-block;
    width: auto;
    background-color: #fff;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
    .key {
        height: 300px;
        margin-top: 100px;
    }
    #top .key {
        align-items: flex-start;
        padding: 175px 0 0;
        height: calc(100vh - 100px);
        min-height: 720px;
    }
    .key_ttl-sub {
        padding: 10px 20px;
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 767px) {
    .key {
        height: 150px;
        /* margin-top: 60px; */
    }
    #top .key {
        height: 56.4vw;
        /* height: calc(60vh - 60px); */
        min-height: 211px;
    }
    .key_video,
    .key_video video {
        width: 100%;
        height: 100%;
    }
    .key_ttl {
        width: 335px;
        margin: 0 auto 30px;
    }
    .key_ttl-sub {
        padding: 6px 10px;
        font-size: 2rem;
        line-height: 1.4;
    }
}

/*-----------------------------------------------------------------------

    main

-----------------------------------------------------------------------*/
/*
    top-measures
--------------------*/
.top-measures_wrap {
    background-color: #eee;
}
.top-measures_ttl {
    text-align: center;
    line-height: 1.6667;
}
.top-measures_ttl span {
    color: #d46868;
}
.top-measures_list {
    text-align: center;
    line-height: 1.2;
}
@media screen and (min-width: 768px) {
    .top-measures {
        padding-top: 0;
    }
    .top-measures_wrap {
        padding: 40px 110px 50px;
        border-radius: 30px;
    }
    .top-measures_ttl {
        margin: 0 0 35px;
        font-size: 3rem;
    }
    .top-measures_list {
        font-size: 1.7rem;
    }
    .top-measures_list figcaption {
        display: flex;
        flex-flow: column;
        justify-content: center;
        margin: 16px 0 0;
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    .top-measures {
        padding-top: 30px;
    }
    .top-measures br {
        display: block;
    }
    .top-measures_wrap {
        padding: 20px;
        border-radius: 10px;
    }
    .top-measures_ttl {
        margin: 0 0 10px;
        font-size: 2rem;
    }
    .top-measures_list {
        justify-content: center;
        font-size: 1.6rem;
    }
    .top-measures_list li {
        margin: 10PX 5px;
    }
    .top-measures_list figcaption {
        margin: 10px 0 0;
    }
}

/*
    top-greeting
--------------------*/
.top-greeting {
    background: url(../images/top/greeting_bg.jpg) no-repeat center / cover;
}
.top-greeting_ttl {
    text-align: center;
    color: #82af31;
    position: relative;
    z-index: 10;
}
.top-greeting_ttl::before {
    content: '';
    background: url(../images/top/greeting_deco.png) no-repeat center / contain;
    position: absolute;
    z-index: -1;
}
.top-greeting_ttl span {
    color: #e0a810;
}
.img_bnr {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .top-greeting_ttl {
        margin: 0 0 52px;
        font-size: 4.3rem;
    }
    .top-greeting_ttl::before {
        width: 259px;
        height: 104px;
        right: calc(50% - 458px);
        bottom: -33px;
    }
    .top-greeting p {
        line-height: 3;
        text-align: center;
    }
    .top-greeting p:not(:last-child) {
        margin-bottom: 50px;
    }
    .img_bnr {
        margin-top: 60px;
    }
}
@media screen and (max-width: 767px) {
    .top-greeting_ttl {
        margin: 0 0 20px;
        font-size: 2.2rem;
    }
    .top-greeting_ttl span {
        display: block;
    }
    .top-greeting_ttl::before {
        width: 129.5px;
        height: 52px;
        right: calc(50% - 170px);
        bottom: -15px;
    }
    .top-greeting p {
        line-height: 3;
    }
    .img_bnr {
        margin-top: 30px;
    }
}

/*
    top-worries
--------------------*/
.top-worries {
    background: url(../images/top/worries_bg.jpg) no-repeat center / cover;
    position: relative;
}
.top-worries::before {
    content: '';
    background: url(../images/top/worries_person.png) no-repeat bottom / contain;
    position: absolute;
    bottom: 0;
}
.top-worries::after {
    content: '';
    background: url(../images/top/arrow01.png) space center / contain;
    position: absolute;
    z-index: 10;
}
.top-worries_ttl {
    margin: 0 0 15px;
    text-align: center;
}
.top-worries_ttl span {
    display: inline-block;
    color: #886890;
    padding-bottom: 21px;
    background: url(../images/top/worries_ttl.png) no-repeat bottom;
    line-height: 1;
}
.top-worries_list li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url(../images/top/worries_list01.png) no-repeat center;
    text-shadow: 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 29px #fff, 0 0 29px #fff, 0 0 29px #fff, 0 0 29px #fff, 0 0 29px #fff, 0 0 29px #fff;
    line-height: 1.5;
}
.top-worries_list li:nth-child(2) {
    background-image: url(../images/top/worries_list02.png);
}
.top-worries_list li:nth-child(3) {
    background-image: url(../images/top/worries_list03.png);
}
.top-worries_list li:nth-child(4) {
    background-image: url(../images/top/worries_list04.png);
}
.top-worries_list li:nth-child(5) {
    background-image: url(../images/top/worries_list05.png);
}
.top-worries_list li:nth-child(6) {
    background-image: url(../images/top/worries_list06.png);
}
@media screen and (min-width: 768px) {
    .top-worries {
        padding-bottom: 28px;
    }
    .top-worries::before {
        width: 354px;
        height: 548px;
        margin: auto;
        left: 0; right: 0;
    }
    .top-worries::after {
        width: 470px;
        height: 120px;
        margin: auto;
        left: 0; right: 0;
    }
    .top-worries_ttl {
        font-size: 4.3rem;
    }
    .top-worries_wrap {
        width: 890px;
    }
    .top-worries_list {
        justify-content: center;
    }
    .top-worries_list li {
        width: 179px;
        height: 182px;
        font-size: 2rem;
    }
    .top-worries_list li:nth-child(2) {
        margin: 0 0 0 444px;
    }
    .top-worries_list li:nth-child(4) {
        margin: 0 0 0 531px;
    }
    .top-worries_list li:nth-child(6) {
        margin: 0 0 0 444px;
    }
}
@media screen and (max-width: 767px) {
    .top-worries::before {
        width: 265.5px;
        height: 411px;
        right: 10px;
    }
    .top-worries::after {
        width: 230px;
        height: 60px;
        margin: auto;
        left: 0; right: 0; bottom: -50px;
    }
    .top-worries_ttl {
        font-size: 2.2rem;
    }
    .top-worries_ttl span {
        padding-bottom: 15px;
    }
    .top-worries_list {
        width: 335px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }
    .top-worries_list li {
        width: 164px;
        height: 165px;
        line-height: 2;
        background-size: contain;
    }
    .top-worries_list li:nth-child(n+3) {
        margin-top: 10px
    }
    .top-worries_list li br {
        display: block;
    }
}

/*
    top-about
--------------------*/
/* ▼top-about */
.top-about_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0a810;
    text-align: center;
}
.top-about_ttl::before,
.top-about_ttl::after {
    content: '';
    width: 1px;
    height: 35px;
    background-color: #4f3811;
    transform: skewX(20deg);
}
.top-about_ttl::after {
    transform: skewX(-20deg);
}
.top-about_ttl span {
    color: #82af31;
}
.top-about_txt {
    line-height: 3;
}
.top-about_txt span {
    color: #d46868;
}
@media screen and (min-width: 768px) {
    .top-about {
        padding-top: 140px;
        background: url(../images/top/reason_bg.png) no-repeat bottom / 100% auto,
        url(../images/top/about_bg.png) no-repeat center / 100% auto;
    }
    .top-about_ttl {
        margin: 0 0 100px;
        font-size: 4rem;
    }
    .top-about_ttl::before {
        margin: 5px 25px 0 0;
    }
    .top-about_ttl::after {
        margin: 5px 0 0 25px;
    }
    .top-about_txt {
        width: 470px;
    }
}
@media screen and (max-width: 767px) {
    .top-about {
        padding-top: 80px;
        background: url(../images/top/reason_bg.png) no-repeat bottom,
        url(../images/top/about_bg.png) no-repeat left;
    }
    .top-about_ttl {
        flex-wrap: wrap;
        margin: 0 0 30px;
        font-size: 2rem;
        position: relative;
    }
    .top-about_ttl span {
        display: block;
        width: 100%;
    }
    .top-about_ttl::before,
    .top-about_ttl::after {
        margin: auto;
        position: absolute;
    }
    .top-about_ttl::before {
        margin: 5px 15px 0 0;
        left: calc(50% - 160px);
    }
    .top-about_ttl::after {
        margin: 5px 0 0 15px;
        right: calc(50% - 160px);
    }
    .top-about_txt {
        width: 100%;
        margin: -100vw 0 0;
        padding: 0 20px;
        background-color: rgba(255, 255, 255, .5);
        box-shadow: inset 0 0 10px #fff;
        text-shadow: 0 0 3px #fff;
        position: relative;
        z-index: 10;
    }
}
/* ▼top-reason */
.top-reason_ttl {
    text-align: center;
    position: relative;
}
.top-reason_ttl span {
    display: block;
    color: #e0a810;
}
.top-reason_ttl::before,
.top-reason_ttl::after {
    content: '';
    margin: auto;
    background: url(../images/top/reason_ttl_deco01.png) no-repeat center / contain;
    position: absolute;
    top: 0; bottom: 0;
}
.top-reason_ttl::before {
    transform: scale(-1,1);
}
.top-reason_list {
    text-align: center;
}
.top-reason_list-num {
    color: #e0a810;
    font-size: 2rem;
}
.top-reason_list-num::before,
.top-reason_list-num::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 15px;
    margin: 0 15px 0 0;
    background-color: #2e9833;
    transform: skewX(20deg);
}
.top-reason_list-num::after {
    margin: 0 0 0 12px;
    transform: skewX(-20deg);
}
.top-reason_list-capt {
    line-height: 1.65;
}
.top-reason_list-capt span.color {
    color: #98c93f;
}
@media screen and (min-width: 768px) {
    .top-reason {
        padding-top: 150px;
    }
    .top-reason_ttl {
        margin: 0 0 100px;
        font-size: 2rem;
    }
    .top-reason_ttl span {
        margin: 10px 0 0;
        font-size: 4rem;
    }
    .top-reason_ttl::before,
    .top-reason_ttl::after {
        content: '';
        width: 74px;
        height: 118px;
    }
    .top-reason_ttl::before {
        left: calc(50% - 231px);
    }
    .top-reason_ttl::after {
        right: calc(50% - 231px);
    }
    .top-reason_list-num {
        margin: 18px 0 3px;
    }
    .top-reason_list-capt {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        height: 66px;
        font-size: 2rem;
    }
    .top-reason .c_btn {
        margin-top: 70px;
    }
}
@media screen and (max-width: 767px) {
    .top-reason {
        padding-top: 50px;
    }
    .top-reason_ttl {
        margin: 0 0 40px;
        font-size: 1.8rem;
    }
    .top-reason_ttl span {
        margin: 7px 0 0;
        font-size: 3rem;
    }
    .top-reason_ttl::before,
    .top-reason_ttl::after {
        content: '';
        width: 74px;
        height: 118px;
    }
    .top-reason_ttl::before {
        left: calc(50% - 190px);
    }
    .top-reason_ttl::after {
        right: calc(50% - 190px);
    }
    .top-reason_list li {
        width: 49%;
    }
    .top-reason_list li:nth-child(n+3) {
        margin-top: 15px;
    }
    .top-reason_list li br {
        display: block;
    }
    .top-reason_list-num {
        margin: 18px 0 3px;
    }
    .top-reason .c_btn {
        margin-top: 30px;
    }
}

/* ▼top-menu */
.top-menu {
    padding: 0;
}
.top-menu_ttl {
    background: url(../images/top/menu_ttl.jpg) no-repeat center / cover;
    text-align: center;
}
.top-menu_course-ttl {
    position: relative;
}
.top-menu_course-ttl::before {
    content: '';
    display: inline-block;
    background: url(../images/top/menu_ttl_deco.png) no-repeat center / contain;
}
.top-menu_course-ttl::after {
    content: '';
    width: 111px;
    height: 62px;
    background: url(../images/top/menu_balloon.png) no-repeat center / contain;
    position: absolute;
}
.top-menu_course-cnt .top-menu_course-lead {
    display: inline-block;
    color: #fff;
    background-color: #98c93f;
    padding: 5px 16px 6px;
    line-height: 1.5;
    position: relative;
}
.top-menu_course-lead::before {
    content: '';
    width: 10px;
    height: 100%;
    background: linear-gradient(to right bottom, #98c93f, #98c93f 49%, #fff 50%) no-repeat top / 100% 50%,
    linear-gradient(to right top, #98c93f, #98c93f 49%, #fff 50%) no-repeat bottom / 100% 50%;
    position: absolute;
    top: 0; left: 100%;
}
.top-menu_course-cnt p {
    line-height: 3;
}
.top-menu_course-table,
.top-menu_course-table tr {
    width: 100%;
}
.top-menu_course-table tr {
    align-items: center;
    border-bottom: 1px dotted;
}
.top-menu_course-table th {
    min-width: 66px;
    padding: 0 10px;
    color: #fff;
    background-color: #cfa972;
}
@media screen and (min-width: 768px) {
    .top-menu_ttl {
        padding: 100px 0;
        font-size: 4.3rem;
    }
    .top-menu_course {
        height: 1000px;
        background: url(../images/top/menu_cnt01.png) no-repeat right,
        url(../images/top/menu_bg01.png) no-repeat right 50vw center fixed;
    }
    .top-menu_course:nth-of-type(even) {
        background-position: left, left 50vw center;
    }
    .top-menu_course:nth-of-type(2) {
        background-image: url(../images/top/menu_cnt02.png),url(../images/top/menu_bg02.png);
    }
    .top-menu_course:nth-of-type(3) {
        background-image: url(../images/top/menu_cnt01.png),url(../images/top/menu_bg03.png);
    }
    .top-menu_course:nth-of-type(4) {
        background-image: url(../images/top/menu_cnt02.png),url(../images/top/menu_bg04.png);
    }
    .top-menu_course:nth-of-type(even) .top-menu_course-cnt {
        margin: 0 auto 0 0;
    }
    .top-menu_course-cnt {
        /* width: 540px; */
        width: 700px;
        margin: 0 0 0 auto;
        padding: 180px 0 100px;
    }
    .top-menu_course-ttl {
        margin: 0 0 34px;
    }
    .top-menu_course-ttl::before {
        width: 48px;
        height: 28px;
        margin: 0 20px 0 0;
    }
    .top-menu_course-ttl::after {
        left: 9px; bottom: calc(100% + 8px);
    }
    .top-menu_course-lead {
        margin: 14px 0 -9px;
        font-size: 1.8rem;
    }
    .top-menu_course-table {
        margin: 24px 0 0;
        font-size: 1.8rem;
    }
    .top-menu_course-table tr {
        padding: 20px 0;
    }
    .top-menu_course-table td {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .top-menu_ttl {
        padding: 30px 0;
        font-size: 2.4rem;
    }
    .top-menu_course {
        padding: 50px 0;
        background: url(../images/top/menu_bg01.png) no-repeat center / cover;
    }
    .top-menu_course:nth-of-type(2) {
        background-image: url(../images/top/menu_bg02.png);
    }
    .top-menu_course:nth-of-type(3) {
        background-image: url(../images/top/menu_bg03.png);
    }
    .top-menu_course:nth-of-type(4) {
        background-image: url(../images/top/menu_bg04.png);
    }
    .top-menu_course-cnt {
        width: 100%;
        padding: 20px;
        background-color: rgba(255, 255, 255, .5);
        box-shadow: inset 0 0 10px #fff;
    }
    .top-menu_course-ttl {
        margin: 71px 0 10px;
    }
    .top-menu_course-ttl::before {
        width: 48px;
        height: 28px;
        margin: 0 15px 0 0;
    }
    .top-menu_course-ttl::after {
        left: 9px; bottom: calc(100% + 8px);
    }
    .top-menu_course-lead {
        margin: 10px 0 -5px;
    }
    .top-menu_course-table {
        margin: 14px 0 0;
        font-size: 1.6rem;
    }
    .top-menu_course-table tr {
        padding: 15px 0;
    }
}

/*
    top-menuSub
--------------------*/
/* ▼top-menuSub */
.top-menuSub_list li {
    border-bottom: 1px dotted;
    line-height: 1.6667;
}
@media screen and (min-width: 768px) {
    .top-menuSub {
        padding-bottom: 176px;
    }
    .top-menuSub_wrap {
        width: 980px;
    }
    .top-menuSub .img_bnr {
        margin: 0 auto 100px;
    }
    .top-menuSub_list li {
        padding: 0 0 27px;
        font-size: 1.8rem;
    }
    .top-menuSub_list li dt {
        margin: 0 30px 0 0;
    }
    .top-menuSub_list li:not(:last-child) {
        margin: 0 0 47px;
    }
}
@media screen and (max-width: 767px) {
    .top-menuSub .img_bnr {
        margin: 0 auto 40px;
    }
    .top-menuSub_list li {
        padding: 0 0 20px;
    }
    .top-menuSub_list li span:last-child {
        flex: 1;
        text-align: right;
    }
    .top-menuSub_list li br {
        display: block;
    }
    .top-menuSub_list li .flex {
        width: 100%;
        margin-top: 10px;
    }
    .top-menuSub_list li dt {
        flex: 1;
        margin: 0 30px 0 0;
    }
    .top-menuSub_list li:not(:last-child) {
        margin: 0 0 20px;
    }
}

/*
    top-voice
--------------------*/
.top-voice,
.voice-detail {
    background: url(../images/top/voice_bg01.png) no-repeat bottom / 100% auto,
    url(../images/top/voice_bg02.png) no-repeat top / 100% auto,
    url(../images/common/pattern01.jpg);
}
.top-voice_ttl {
    color: #98c93f;
    text-align: center;
    position: relative;
}
.top-voice_ttl::after {
    content: '';
    display: inline-block;
    background: url(../images/top/voice_ttl.png) no-repeat center / contain;
    position: absolute;
}
.voice_cnt {
    /* background-image: url(../images/common/pattern03.jpg); */
    background-image: repeating-linear-gradient(#f3f3f3,#f3f3f3 2px, transparent 2px, transparent 24px),
    repeating-linear-gradient(to right, #f3f3f3,#f3f3f3 2px, transparent 2px, transparent 24px);
    background-color: #fff;
    border: 1px solid #cfa972;
    box-shadow: 1.888px 2.331px 14.24px 1.76px rgba(4, 4, 4, 0.11);
    position: relative;
}
.voice_cnt::before {
    content: '';
    background: url(../images/top/voice_ribbon.png) no-repeat center / contain;
    position: absolute;
}
.voice_cnt-age {
    border-bottom: 1px dotted;
}
.voice_cnt-list {
    background-color: #f6f6f6;
    border-radius: 10px;
}
.voice_cnt-lead {
    color: #98c93f;
    line-height: 1.2;
}
.voice_cnt-txt {
    line-height: 3;
}
.voice_cnt-btn {
    margin-top: 5px;
    color: #e0a810;
    text-align: right;
}
.voice_cnt-btn a {
    display: inline-block;
}
.voice_cnt-btn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 0 10px;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #e0a810;
    vertical-align: 2px;
}
.top-voice .c_btn::before {
    content: none;
}
@media screen and (min-width: 768px) {
    .top-voice,
    .voice-detail {
        padding: 224px 0;
    }
    .top-voice_ttl {
        margin: 0 0 115px;
        font-size: 4.3rem;
    }
    .top-voice_ttl::after {
        width: 116px;
        height: 96px;
        right: auto; top: -16px;
        transform: translateX(25px);
    }
    .voice_cnt {
        padding: 70px 50px 30px;
    }
    .top-voice .voice_cnt {
        align-self: stretch;
        width: 510px;
        padding: 70px 50px 50px;
    }
    .top-voice .voice_cnt:nth-of-type(n+3) {
        margin-top: 75px;
    }
    .voice_cnt::before {
        width: 206px;
        height: 76px;
        top: -22px; left: 10px;
    }
    .voice_cnt-ttl {
        font-size: 1.6rem;
    }
    .voice_cnt-ttl span {
        margin: 0 0 0 30px;
        font-size: 2.3rem;
    }
    .voice_cnt-age {
        margin: 10px 0 20px;
        padding: 0 0 10px;
        font-size: 1.6rem;
    }
    .voice_cnt-age span {
        margin: 0 0 0 30px;
        font-size: 1.8rem;
    }
    .voice_cnt-list {
        padding: 20px 75px 20px 40px;
    }
    .voice_cnt-list li {
        align-items: center;
    }
    .voice_cnt-star {
        align-items: center;
        width: 150px;
        font-size: 1.8rem;
        line-height: 1;
    }
    .voice_cnt-list span img {
        display: inline-block;
        margin: 0 25px 0 0;
    }
    .voice_cnt-lead {
        margin: 35px 0 15px;
        font-size: 2.3rem;
    }
    .voice_cnt-txt {
        line-height: 3;
    }
    .top-voice .c_btn {
        margin-top: 90px;
    }
    /* ▼detail */
    .voice-detail_ttl {
        width: 510px;
    }
    .voice-detail .voice_cnt-list {
        width: 420px;
    }
    .voice-detail .voice_cnt-lead {
        width: 100%;
    }
    .voice-detail .voice_cnt-txt {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .top-voice {
        padding: 80px 0;
    }
    .top-voice_ttl {
        margin: 0 0 50px;
        font-size: 2.4rem;
    }
    .top-voice_ttl::after {
        width: 58px;
        height: 48px;
        right: auto; top: -6px;
        transform: translateX(15px);
    }
    .voice_cnt {
        width: 100%;
        padding: 40px 20px 20px;
    }
    .top-voice .voice_cnt:nth-of-type(n+3) {
        margin-top: 30px;
    }
    .voice_cnt::before {
        width: 137.333333px;
        height: 50.666667px;
        top: -22px; left: -10px;
    }
    .voice_cnt-ttl {
        font-size: 1.4rem;
    }
    .voice_cnt-ttl span {
        margin: 0 0 0 20px;
        font-size: 2rem;
    }
    .voice_cnt-age {
        margin: 10px 0 20px;
        padding: 0 0 10px;
        font-size: 1.4rem;
    }
    .voice_cnt-age span {
        margin: 0 0 0 20px;
        font-size: 1.6rem;
    }
    .voice_cnt-list {
        padding: 15px 20px;
    }
    .voice_cnt-list li {
        align-items: center;
    }
    .voice_cnt-star {
        align-items: center;
        width: 135px;
        line-height: 1;
    }
    .voice_cnt-list span img {
        display: inline-block;
        margin: 0 15px 0 0;
    }
    .voice_cnt-lead {
        margin: 20px 0 10px;
        font-size: 1.8rem;
    }
    .top-voice .c_btn {
        margin-top: 30px;
    }
}

/*
    top-store
--------------------*/
.top-store {
    background: url(../images/top/access_bg.png) no-repeat bottom / 100% auto;
    background-color: #f3fae7;
}
.top-store_ttl {
    color: #fff;
    background-image: url(../images/common/pattern02.jpg);
    border-left: 15px solid;
    border-image: linear-gradient(to right, #28952e, #28952e 11px, #cfa972 11px, #cfa972 15px) 15;
}
/* ▼top-store_access */
.top-store_access_list li {
    position: relative;
}
.top-store_access_list li:not(:last-child)::after {
    content: '';
    margin: auto;
    position: absolute;
}
.top-store_calendar {
    background-color: #fff;
}
.top-store_calendar p {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .top-store_cnt:not(:last-child) {
        margin-bottom: 70px;
    }
    .top-store_item {
        width: 490px;
    }
    .top-store_ttl {
        margin: 0 0 30px;
        padding: 14px 20px;
        font-size: 2.5rem;
    }
    .map {
        width: 100%;
        height: 320px;
        margin-top: 65px;
    }
    /* ▼top-store_access */
    .top-store_access_list li {
        width: 225px;
    }
    .top-store_access_list li:not(:nth-child(4n)) {
        margin-right: 60px;
    }
    .top-store_access_list li:nth-child(n+5) {
        margin-top: 50px;
    }
    .top-store_access_list li:not(:last-child):not(:nth-child(4)):after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 13.5px 0 13.5px 24px;
        border-color: transparent transparent transparent #cfa972;
        top: 0; bottom: 0; left: calc(100% + 20px);
    }
    .top-store_access_list figcaption {
        margin: 18px 0 0;
    }
    .top-store_calendar {
        padding: 40px 50px;
    }
    .top-store_cnt-calendar {
        width: 700px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .top-store_cnt:not(:last-child) {
        margin-bottom: 40px;
    }
    .top-store_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .top-store_ttl {
        margin: 0 0 30px;
        padding: 14px 20px;
        font-size: 2rem;
    }
    .map {
        width: 100%;
        height: 200px;
    }
    /* ▼top-store_access */
    .top-store_access_list {
        display: block;
    }
    .top-store_access_list li {
        width: 225px;
        margin: 0 auto;
    }
    .top-store_access_list li:nth-child(n+2) {
        margin-top: 47px;
    }
    .top-store_access_list li:not(:last-child):not(:nth-child(4)):after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 25px 12px 0 12px;
        border-color: #cfa972 transparent transparent transparent;
        left: 0; right: 0; top: calc(100% + 10px);
    }
    .top-store_access_list figcaption {
        margin: 18px 0 0;
    }
    .top-store_calendar {
        padding: 20px;
    }
    .top-store_cnt-calendar {
        width: 100%;
        height: 400px;
    }
    .top-store_cnt-calendar iframe {
        width: 100%;
        height: 100%;
    }
}

/* ▼story */
.story_cnt {
    background-color: #fff;
}
.story_post {
    border-bottom: 1px dotted;
}
.story_post time {
    width: 100%;
    display: block;
    color: #98c93f;
}
.story_post span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.story_btn {
    width: 130px;
    color: #fff;
    background-color: #e0a810;
    border-radius: 20px;
    line-height: 30px;
    text-align: center;
}
.story_btn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 0 10px;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #fff;
    vertical-align: 2px;
}
@media screen and (min-width: 768px) {
    .story {
        position: relative;
    }
    .story_cnt {
        padding: 35px 40px;
    }
    .story .story_cnt {
        margin-top: -30px;
    }
    .story_post {
        padding: 0 0 12px;
    }
    .story_post:not(:last-child) {
        margin: 0 0 12px;
    }
    .story_post time {
        font-size: 1.5rem;
    }
    .story_btn {
        position: absolute;
        top: 16px; right: 29px;
    }
}
@media screen and (max-width: 767px) {
    .story {
        position: relative;
    }
    .story_cnt {
        padding: 20px;
    }
    .story_post {
        padding: 0 0 10px;
    }
    .story_post:not(:last-child) {
        margin: 0 0 10px;
    }
    .story_btn {
        position: absolute;
        top: 13px; right: 20px;
    }
}

/*
    page-contact
--------------------*/
.contact-form-table th {
    background-color: #eee;
}
.contact-form-table td {
    background-color: #fff;
}
.contact-form-table tr:focus-within th {
    background-color: #ddd;
}
.input_big {
    width: 100%;
}
.input_mid {
    width: 70%;
}
.input_min {
    width: 28%;
    max-width: 85px;
}
.contact-form-table {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
}
.contact-form-table td,
.contact-form-table th{
    vertical-align: middle;
    font-weight: 400;
}
.contact-form-table th {
    font-weight: bold;
    text-align: left;
}
.contact-form-table td a {
    display: inline;
    text-decoration: underline;
}
/* ▼button */
.contact_submits input[type='button'],
.contact_submits input[type='submit'] {
    margin: 7px;
    padding: 1em 2em;
    font-size: 16px;
    border: none;
    -webkit-appearance: none;
    transition: all 0.4s ease;
    background-color: #eee;
    border: 1px solid #ddd;
}
.contact-form-table td div:not(:last-child) {
    margin: 0 0 5px;
}
.contact_submits.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .contact-form-table {
        border: 1px solid #ddd;
    }
    .contact-form-table tr:not(:last-child) {
        border-bottom: 1px solid #ddd;
    }
    .contact-form-table td,
    .contact-form-table th {
        padding: 30px;
    }
    .contact-form-table th {
        width: 360px;
    }
    .required-mark {
        padding: 2px;
        border-radius: 4px;
    }
}
@media screen and (max-width: 767px) {
    .contact-form-table,
    .contact-form-table tbody,
    .contact-form-table tr,
    .contact-form-table th,
    .contact-form-table td {
        width: auto;
        display: block;
    }
    .contact-form-table tr {
        margin: 0 0 20px;
        border: 1px solid #ddd;
    }
    .contact-form-table th {
        padding: 0 0 0 5%;
        line-height: 40px;
    }
    .contact-form-table td {
        padding: 10px;
    }
    .contact-form-table .input_table tr:last-child {
        text-align: center;
    }
    .required-mark {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20%;
        margin: 0 0 0 auto;
        top: 0; bottom: 0; right: 0;
    }
    .contact-form-table input[type='submit']:not(:last-child) {
        margin-bottom: 20px;
    }
    .contact_submits {
        font-size: 14px;
    }
}
/*-----------------------------------------------------------------------

    footer

-----------------------------------------------------------------------*/
footer {
    background: url(../images/common/footer_leaf01.png) no-repeat top left,
    url(../images/common/footer_leaf02.png) no-repeat top right,
    url(../images/common/footer_line.png) repeat-x top;
    background-color: #fbfae9;
}
.copyright {
    color: #fff;
    background-color: #98c93f;
    text-align: center;
}
.aside-sns {
    position: fixed;
    z-index: 100;
}
@media screen and (min-width: 768px) {
    footer .f_wrap {
        align-items: center;
        padding: 50px 0 60px;
    }
    footer .footer_left {
        margin: 0 auto 0 0;
    }
    footer .f_logo {
        margin: 0 0 25px;
    }
    footer .f_nav {
        margin: 3px 0 0 8px;
        font-size: 1.5rem;
    }
    footer .common-aside_info {
        font-size: 1.6rem;
        line-height: 1.875;
    }
    footer .aside_tel {
        font-size: 1.6rem;
    }
    footer .aside_tel span {
        font-size: 4rem;
        letter-spacing: 0.05em;
    }
    .footer_sns {
        margin: 28px 0 0;
    }
    .footer_sns li:not(:last-child) {
        margin-right: 20px;
    }
    footer .footer_bnr {
        margin: 0 0 0 50px;
    }
    footer .footer_bnr li a img {
        box-shadow: 10px 5px 16px -6px rgba(0,0,0,0.6);
    }
    footer .footer_bnr li:not(:last-child) {
        margin: 0 0 15px;
    }

    .copyright {
        font-size: 1.4rem;
        padding: 7px;
    }
    .aside-sns {
        right: 30px; bottom: 70px;
    }
    .aside-sns li:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 767px) {
    footer {
        background-size: 100px auto, 100px auto, auto;
    }
    footer .f_wrap {
        justify-content: center;
        padding: 40px 0 30px;
    }
    footer .f_logo {
        display: block;
        width: 150px;
        margin: 0 auto 20px;
    }
    footer .aside_tel {
        width: 100%;
        text-align: center;
    }
    .footer_sns {
        justify-content: center;
        margin: 20px 0 0;
    }
    .footer_sns li:not(:last-child) {
        margin-right: 20px;
    }
    footer .footer_bnr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 15px 0 0 0;
    }
    footer .footer_bnr li {
        margin: 5px;
    }
    .copyright {
        font-size: 1.4rem;
        padding: 7px;
    }
}

.menu_txt_ttl{
 color: #3b7135;
 font-weight: bold;
 font-size: 1.8rem;
 margin-bottom: 20px;
}
.menu_txt_red{
 color: #c73643;
}
