@charset "UTF-8";

/* アニメーションベンダープレフィックス込み指定 */


/* アニメーションベンダープレフィックス込み指定 */

body {
    color: #323232;
    font-family: "YakuHanJP", Lato, "Josefin Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 600;
    position: relative;
    background: #fefefe;
    letter-spacing: 0.1rem;
}

a {
    color: #52b361;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.bold {
    font-weight: bold;
}

@media all and (max-width: 639px) {
    #wrapper {
        overflow: hidden;
    }
}

h2,
h3 {
    line-height: 1.4;
}

.mincho {
    font-family: "YakuHanMP", Lato, "Josefin Sans", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: normal;
}


/* animation
----------------------------------*/

@-webkit-keyframes view-zoomin {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes view-zoomin {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes view-slideup {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, 35px);
        transform: translate(0, 35px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, 35px);
        transform: translate(0, 35px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.animation {
    opacity: 0;
}

.slideup.on {
    opacity: 1;
    -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
    opacity: 1;
    -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fdfdfd;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.loader::after {
    -webkit-animation: loader 0.5s linear infinite;
    animation: loader 0.5s linear infinite;
    border: 1px solid #64bb71;
    border-radius: 50%;
    border-right: 1px solid rgba(100, 187, 113, 0.2);
    border-top: 1px solid rgba(100, 187, 113, 0.2);
    content: "";
    height: 70px;
    width: 70px;
}

.loader.off {
    display: none;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* header
----------------------------------*/

@-webkit-keyframes hd-scrolled {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes hd-scrolled {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

#l-header {
    width: 100%;
    position: relative;
}

#l-header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    min-width: 1024px;
    margin: 0 auto;
    padding: 5px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 800px) {
    #l-header .inner {
        max-width: calc(100% - 20px);
    }
}

@media all and (max-width: 800px) {
    #l-header .inner {
        min-width: initial;
    }
}

#l-header #logo-wrap {
    padding-left: 10px;
}

@media all and (max-width: 639px) {
    #l-header #logo-wrap {
        padding-left: 0;
    }
}

#l-header #logo {
    width: 360px;
    position: relative;
    z-index: 200;
}

@media all and (max-width: 1200px) {
    #l-header #logo {
        width: 220px;
    }
}

#l-header .header-info {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a3a20;
    margin-right: 15px;
    text-align: right;
    color: #777;
}

#l-header .head-right {
    margin-left: auto;
}

@media all and (max-width: 800px) {
    #l-header .head-right {
        display: none;
    }
}

#l-header .head-right_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
}

#l-header .head-btn a {
    display: block;
    padding: 8px 10px;
    text-align: center;
    background-image: linear-gradient(-225deg, #9feef1 0%, #d4fea5 100%);
    color: #222;
    border-radius: 30px;
    width: 160px;
}

#l-header .head-btn:not(:last-of-type) {
    margin-right: 5px;
}

#l-header .head-btn00 a {
    background: #0000ff;
    color: #fefefe;
}

#l-header .head-btn00 a:hover {
    background: #64bb71;
}

#l-header .head-btn01 a {
    background: #ec6c00;
    padding: 8px 15px;
    width: 200px;
}

#l-header .head-btn02 a {
    width: 180px;
    padding: 0;
    background: none;
}

#l-header .head-btn02 a img {
    border-radius: 30px;
}

#l-header .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#l-header .sns li {
    margin-right: 8px;
}

#l-header .sns li a {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 100%;
    color: #fff;
    background: #fffaed;
}

#l-header .sns li a.facebook {
    background: #4267b2;
}

#l-header .sns li a.twitter {
    background: #1c9cea;
}

#l-header .sns li a.youtube {
    background: #ff0000;
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
    display: block;
    padding: 5px 10px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
    margin-right: 5px;
}

#l-header .head-right_tel {
    margin-right: 10px;
}

#l-header .head-right_tel a {
    color: #fefefe;
    background: url(../img/pattern-green01.jpg);
}

#l-header .head-right_tel a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f879";
    font-weight: bold;
}

#l-header .head-right_tel a:hover {
    background: #64bb71;
    color: #fff;
}

#l-header .head-right_tel a:hover:before {
    color: #ffcdcd;
}

#l-header .head-right_mail a {
    background: #fefefe;
    color: #333;
}

#l-header .head-right_mail a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold;
}

#l-header.scrolled {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    background: rgba(254, 254, 254, 0.95);
}


/* header_nav
----------------------------------*/

.footer-list {
    display: none;
}

#header_nav {
    position: relative;
    width: 800px;
    margin: 20px auto;
    position: relative;
    z-index: 300;
}

#header_nav ul {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

#header_nav ul li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    text-align: center;
    width: calc(100% / 6);
    border-left: 1px solid #aaa;
}

#header_nav ul li:last-child {
    margin-right: 0;
    border-right: 1px solid #aaa;
}

#header_nav ul li a {
    display: block;
    position: relative;
    line-height: 1.3;
    font-size: 1.7rem;
    /*padding: 10px 0 10px 50px;*/
    padding: 10px 0;
    font-weight: bold;
    color: #333;
    /*text-align: left;*/
    text-align: center;
    /*    &:before {
         position: absolute;
         left: 15px;
         top: 50%;
         transform: translateY(-50%);
         transition: color .2s ease-in;
         @include awesome(\f015);
         font-size: 2.4rem;
         color: #777;
        }*/
    /*    &.nav-2:before {
         @include awesome(\f82f);
        }

        &.nav-3:before {
         @include awesome(\f486);
        }

        &.nav-4 {
         padding-top: 5px;
         padding-bottom: 5px;

         &:before {
          @include awesome(\f48e);
          transform: inherit;
          top: 25%;
         }
        }

        &.nav-5:before {
         @include awesome(\f5e4);
        }

        &.nav-6:before {
         @include awesome(\f0c0);
        }*/
}

#header_nav ul li a span {
    display: block;
    font-size: 1.3rem;
    color: #777;
    position: absolute;
}

#header_nav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 0;
    height: 2px;
    background: #1a9b2d;
    -webkit-transition: 0.2s width ease-in;
    transition: 0.2s width ease-in;
    z-index: -2;
}

#header_nav ul li a:hover,
#header_nav ul li a.active {
    color: #388143;
    -webkit-transition: 0.2s color ease-in;
    transition: 0.2s color ease-in;
    /*     &:before {
           color: $orange;
          }*/
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
    width: 30px;
}

@media all and (max-width: 1200px) {
    #header_nav ul li a {
        font-size: 1.5rem;
        /*padding-left: 40px;*/
        /*     &:before {
           font-size: 2rem;
           left: 5px;
          }*/
    }
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 42px;
    z-index: 999;
    background-image: -webkit-gradient(linear, left bottom, right top, from(rgba(100, 187, 113, 0.5)), to(rgba(26, 155, 45, 0.8)));
    background-image: linear-gradient(to right top, rgba(100, 187, 113, 0.5) 0%, rgba(26, 155, 45, 0.8) 100%);
    border-radius: 0 0 10px 10px;
    padding: 10px;
}

#header_nav .dropdown .dropdown-li {
    border: 0;
    margin: 0 0;
}

#header_nav .dropdown .dropdown-li:not(:last-child) {
    margin-bottom: 10px;
}

#header_nav .dropdown .dropdown-li a {
    border-radius: 20px;
    text-align: center;
    display: block;
    width: 158px;
    background: #fff;
    color: #4a3a20;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0;
}

#header_nav .dropdown .dropdown-li.foot_only {
    display: none;
}

#header_nav .dropdown .dropdown-li:hover a {
    color: #fff;
    background: #1a9b2d;
}


/* page-top
----------------------------------*/

#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1500;
}

#page-top a {
    display: block;
    background: #1760a0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.5;
    color: #fefefe;
}

#page-top a span {
    display: block;
    line-height: 1.2;
    font-size: 1.8rem;
    margin-top: -10px;
}

#page-top a:hover {
    opacity: 0.6;
}

@media all and (max-width: 639px) {
    #page-top {
        bototm: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-left: 50px;
        right: auto;
    }
    #page-top a {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    #page-top a span {
        font-size: 1.2rem;
        margin-top: -7px;
    }
}


/* swiper
----------------------------------*/

@-webkit-keyframes zoom-out {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoom-out {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

#slideshow {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 60px);
}

#slideshow .swiper-slide {
    background: #fefefe;
    position: relative;
}

#slideshow .slide01 {
    background: url(../img/slide1.jpg) no-repeat center;
    background-size: cover;
}

#slideshow .slide02 {
    background: url(../img/slide2.jpg) no-repeat center/cover;
}

#slideshow .slide03 {
    background: url(../img/slide3.jpg) no-repeat center/cover;
}

@media all and (max-width: 639px) {
    #slideshow {
        width: calc(100% - 20px);
    }
}

.slide-img {
    height: 65vh;
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 50px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slide-img img {
    width: 30%;
    display: block;
}

@media all and (max-width: 1200px) {
    .slide-img {
        height: 45vh;
    }
    .slide-img img {
        width: 50%;
    }
}

@media all and (max-width: 639px) {
    .slide-img {
        height: 35vh;
        margin-top: 20px;
    }
    .slide-img img {
        width: 70%;
    }
}

#catch {
    z-index: 200;
    position: absolute;
    left: 50%;
    bottom: 3%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 600px;
    -webkit-transition: all 2s ease-in;
    transition: all 2s ease-in;
}

#catch.on {
    opacity: 1;
}

@media all and (max-width: 800px) {
    #catch {
        width: 50%;
    }
}


/* bg_contact
----------------------------------*/

.contact_lead {
    font-size: 1.1em;
    text-align: center;
}

@media all and (max-width: 639px) {
    .contact_lead {
        font-size: 1em;
    }
}

.contact_wrap {
    margin: 0 auto -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact_wrap .contact_right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    text-align: left;
}

.contact_wrap .contact_left {
    margin-right: 2%;
    width: 35%;
    margin-bottom: 0;
}

@media all and (max-width: 800px) {
    .contact_wrap .contact_left {
        padding: 0;
    }
}

@media all and (max-width: 639px) {
    .contact_wrap {
        margin-top: 30px;
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact_wrap .contact_left,
    .contact_wrap .contact_right {
        max-width: 100%;
        width: 100%;
        font-size: 0.9em;
        letter-spacing: 0;
        font-weight: 700;
    }
    .contact_wrap .contact_right {
        text-align: left;
        padding: 30px;
    }
    .contact_wrap .contact_left {
        margin: 0 auto;
    }
}

.contact_bnr {
    margin-top: 35px;
    text-align: center;
    margin-bottom: 15px;
}

.contact_bnr>li {
    display: inline-block;
    margin-bottom: 10px;
    width: 350px;
}

.contact_bnr>li:not(:last-child) {
    margin-right: 10px;
}

@media all and (max-width: 639px) {
    .contact_bnr>li:not(:last-child) {
        margin-right: auto;
    }
}

@media all and (max-width: 639px) {
    .contact_bnr>li {
        width: 100%;
    }
}

.contact_bnr>li .bnr_tel {
    color: #fff;
    background: url(../img/pattern-green02.jpg);
    white-space: nowrap;
    border: 2px solid #fff;
}

.contact_bnr>li .bnr_tel:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
}

.contact_bnr>li .bnr_tel:hover {
    background: #204515;
}

.contact_bnr>li .bnr_mobile {
    background: #64bb71;
    border: 2px solid #48a456;
}

.contact_bnr>li .bnr_mobile:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3cd";
    font-weight: bold;
}

.contact_bnr>li .bnr_mobile:hover {
    background: #ff6e1a;
}

.contact_bnr>li .bnr_fax {
    background: #ffffff;
    border: 2px solid #64bb71;
    color: #64bb71;
}

.contact_bnr>li .bnr_fax:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1ac";
    font-weight: bold;
}

.contact_bnr>li .bnr_mail {
    background: url(../img/pattern-orange.jpg);
    color: #fefefe;
    border: 2px solid #fff;
}

.contact_bnr>li .bnr_mail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold;
}

.contact_bnr>li .bnr_mail:hover {
    background: #ff6e1a;
    color: #fff;
}

.contact_bnr>li a,
.contact_bnr>li span {
    display: block;
    padding: 10px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    border-radius: 30px;
    letter-spacing: 0.1em;
}

.contact_bnr>li a:before,
.contact_bnr>li span:before {
    margin-right: 5px;
}

@media all and (max-width: 800px) {
    .contact_bnr>li a,
    .contact_bnr>li span {
        width: 100%;
        font-size: 1.5rem;
    }
}

@media all and (max-width: 639px) {
    .contact_bnr>li a,
    .contact_bnr>li span {
        font-size: 1.4rem;
        letter-spacing: 0.1rem;
    }
}


/* footer
----------------------------------*/

#l-footer {
    font-size: 1.4rem;
    position: relative;
    position: relative;
    padding: 40px 0;
}

#l-footer .inner {
    margin: 0 auto;
    position: relative;
    z-index: 4;
    text-align: center;
}

@media all and (max-width: 1200px) {
    #l-footer {
        background-attachment: scroll;
    }
}

@media all and (max-width: 639px) {
    #l-footer {
        font-size: 1.2rem;
    }
}

.footer-column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-column2 .footer-left {
    width: 25%;
    margin-right: 1%;
}

.footer-column2 .footer-right {
    width: calc(100% - 27%);
}

@media all and (max-width: 800px) {
    .footer-column2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-column2 .footer-left,
    .footer-column2 .footer-right {
        width: 95%;
        margin: 0 auto;
    }
    .footer-column2 .footer-left {
        text-align: center;
        margin-bottom: 20px;
    }
}


/* footer_navi
----------------------------------*/

.footer_navi {
    padding: 10px 0 20px;
    margin: 0 auto;
}

@media all and (max-width: 800px) {
    .footer_navi {
        display: none;
    }
}

.footer_navi ul {
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer_navi ul li {
    width: calc(100% / 5);
    margin-bottom: 4px;
    position: relative;
    text-align: left;
}

.footer_navi ul li.footer_none {
    display: none;
}

.footer_navi ul li a {
    font-size: 1.4rem;
    position: relative;
    padding-left: 20px;
    display: block;
    line-height: 1.5;
    color: #64bb71;
}

.footer_navi ul li a span {
    font-size: 1.2rem;
    display: block;
    color: #64bb71;
    font-weight: normal;
}

.footer_navi ul li a:before {
    content: "";
    background-color: #64bb71;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    display: block;
}

.footer_navi ul li a:hover {
    color: #48a456;
}

.footer_navi ul li .dropdown {
    display: none;
}

.footer_navi .footer-list {
    display: block;
    margin-top: 15px;
}

.footer_navi .footer-list ul {
    display: block;
    margin-top: 10px;
}

.footer_navi .footer-list ul li {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 10px;
}

.footer_navi .footer-list ul li a {
    font-size: 1.3rem;
    color: #333;
    font-weight: normal;
    letter-spacing: 0;
}

.footer_navi .footer-list ul li a:before {
    height: 4px;
    background-color: #4a3a20;
    width: 4px;
    border-radius: 100%;
    left: 5px;
}

@media all and (max-width: 800px) {
    .footer_navi .footer-list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 10px auto 0;
    }
    .footer_navi .footer-list ul li {
        width: 49.5%;
        border-bottom: 0;
        margin-bottom: 4px;
        margin-right: 1%;
        padding-right: 0;
    }
    .footer_navi .footer-list ul li:nth-child(2n) {
        margin-right: 0%;
    }
    .footer_navi .footer-list ul li a {
        font-size: 1.2rem;
    }
}

.flogo {
    width: 330px;
    margin: 0 auto 20px;
}

@media all and (max-width: 1200px) {
    .flogo {
        width: 100%;
    }
}

@media all and (max-width: 800px) {
    .flogo {
        position: static;
        margin: 0 auto;
        text-align: center;
        max-width: 280px;
        width: 90%;
    }
}

.footer-access {
    margin: 0 auto 20px;
}

.footer-access a {
    display: inline-block;
    width: 280px;
    background: #fefefe;
    text-align: center;
    margin-top: 10px;
    padding: 7px 0;
    border-radius: 30px;
}

.footer-access a:hover {
    background: #64bb71;
    color: #fefefe;
}

@media all and (max-width: 800px) {
    .footer-access a {
        margin: 10px auto;
    }
}

.address {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 10px auto;
}

@media all and (max-width: 639px) {
    .address {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
    }
}

.copyright {
    font-size: 1.2rem;
    position: relative;
    z-index: 4;
    font-weight: 400;
    text-align: center;
    color: #fff;
    background: #1a9b2d;
    padding: 15px 0;
}

@media all and (max-width: 639px) {
    .copyright {
        font-size: 12px;
        padding: 10px 0 60px;
        text-align: center;
    }
}


/*----------------------------------
 top-contents
----------------------------------*/

.top-box1 {
    margin: 0 auto;
    padding: 30px;
    background: #fefefe;
    border-radius: 20px;
    max-width: 750px;
}

@media all and (max-width: 639px) {
    .top-box1 {
        max-width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
}

.top-box2 {
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    color: #4a3a20;
    position: relative;
    z-index: 5;
    font-size: 1.1em;
}

@media all and (max-width: 800px) {
    .top-box2 {
        width: 90%;
        margin: 0 auto;
    }
}


/* --news--
----------------------------------*/

.news-area {
    width: calc(100% - 60px);
    margin: 20px auto 0;
    border: 10px solid #1a9b2d;
    background: #1a9b2d;
    border-radius: 10px;
}

@media all and (max-width: 800px) {
    .news-area {
        width: 95%;
    }
}

.news-ttl {
    font-weight: bold;
    width: 230px;
    padding: 38px 0;
    vertical-align: middle;
    text-align: left;
    text-align: center;
    color: #fff;
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.2rem;
}

.news-box {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media all and (max-width: 639px) {
    .news-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10px;
    }
}

.news-title {
    border-radius: 10px 0 0 0;
    text-align: center;
    font-weight: bold;
    background: #ffec81;
    padding: 0 15px;
    color: #333;
}

.news-title span {
    font-size: 2.75rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

@media all and (max-width: 639px) {
    .news-title {
        border-radius: 10px;
        padding: 5px 10px;
        width: 100%;
        font-size: 1.2rem;
        -webkit-box-shadow: 3px 3px 10px -8px rgba(74, 58, 32, 0.8);
        box-shadow: 3px 3px 10px -8px rgba(74, 58, 32, 0.8);
    }
    .news-title span {
        font-size: 2rem;
    }
}

.news-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

@media all and (max-width: 639px) {
    .news-right {
        width: 100%;
        margin: 0;
        border-radius: 0px;
    }
}

.top-02 {
    position: relative;
}

.top-02:before {
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    background: url(../img/pattern-stripe.png) center, rgba(255, 205, 205, 0.1);
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .news-ttl {
        width: 100%;
        text-align: center;
        border-right: none;
        margin-bottom: 20px;
        padding: 0;
    }
}

.scrbr {
    width: 100%;
    padding: 0px 0px;
    max-height: 120px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.scrbr::-webkit-scrollbar {
    width: 5px;
}

.scrbr::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.scrbr::-webkit-scrollbar-thumb {
    background-color: rgba(50, 50, 50, 0.5);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
    .scrbr {
        width: 100%;
        padding: 2px 0px;
        max-height: 200px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
}

.top-title {
    font-size: 4rem;
    font-family: "YakuHanMP", Lato, "Josefin Sans", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: normal;
    color: #fff;
    letter-spacing: 1rem;
    padding-left: 20px;
}

.top-title span {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(100, 187, 113, 0.95)), to(#76dcdf));
    background-image: linear-gradient(to right, rgba(100, 187, 113, 0.95), #76dcdf);
    padding: 3px 5px 3px 8px;
    display: inline-block;
    margin-bottom: 20px;
}

@media all and (max-width: 1200px) {
    .top-title {
        font-size: 3.5rem;
    }
}

@media all and (max-width: 639px) {
    .top-title {
        font-size: 2.2rem;
        padding-left: 0;
        letter-spacing: 0.3rem;
    }
}

.top-img {
    position: relative;
    width: 130%;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}

.top-img img {
    width: 100%;
}

@media all and (max-width: 639px) {
    .top-img {
        width: 100%;
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
}

.top-txt {
    font-size: 1.7rem;
    line-height: 2;
    padding-left: 20px;
}

@media all and (max-width: 639px) {
    .top-txt {
        font-size: 1.2rem;
    }
}

.top-menulist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.top-menulist li {
    width: 31%;
    position: relative;
    text-align: center;
    padding: 20px;
}

.top-menulist li a {
    display: block;
    z-index: 4;
    margin-bottom: 20px;
    position: relative;
}

.top-menulist li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.2;
    background: #1a9b2d;
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1);
    border: 0.9px solid #fffaed;
}

.top-menulist li:hover:before {
    -webkit-transform: scale(0.97, 0.98);
    transform: scale(0.97, 0.98);
    border-radius: 20px;
}

.top-menulist li:hover .top-menulist_img {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
}

.top-menulist li:hover .top-menulist_img img {
    border-radius: 20px;
}

@media all and (max-width: 1200px) {
    .top-menulist {
        margin-top: 40px;
        padding: 10px;
    }
    .top-menulist li {
        width: 48%;
        margin-bottom: 25px;
    }
}

@media all and (max-width: 639px) {
    .top-menulist li {
        width: 90%;
        margin: 0 auto 5%;
    }
}

.top-menulist .more {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 100% 100% 100%;
    width: 70px;
    height: 60px;
    background: #ffcdcd;
    color: #4a3a20;
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 10px 0 5px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0;
    z-index: 20;
}

@media all and (max-width: 639px) {
    .top-menulist .more {
        font-size: 1.2rem;
    }
}

.top-menulist .top-menulist_img {
    width: 100%;
    height: 220px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-origin: 50% 90%;
    transform-origin: 50% 90%;
}

.top-menulist .top-menulist_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    display: block;
}

@media all and (max-width: 639px) {
    .top-menulist .top-menulist_img {
        height: 230px;
    }
}

.top-menulist .top-menulist_ttl {
    margin: -30px auto 0;
    position: relative;
    z-index: 5;
    text-align: center;
    font-size: 2.2rem;
    color: #64bb71;
    line-height: 1.4;
    padding-right: 8px;
    letter-spacing: 0.3rem;
}

.top-menulist .top-menulist_ttl span {
    font-size: 3.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    background: #64bb71;
    padding: 0 15px;
    border-radius: 20px;
    color: #fff;
}

@media all and (max-width: 639px) {
    .top-menulist .top-menulist_ttl {
        font-size: 1.3rem;
    }
    .top-menulist .top-menulist_ttl span {
        font-size: 2.5rem;
    }
}

.top-menulist .top-menulist_txt {
    padding: 15px;
    color: #333;
    text-align: left;
    font-weight: 400;
}

.top-bnr-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.top-bnr-list li {
    width: 19%;
    margin-bottom: 10px;
    margin-right: 1.2%;
}

.top-bnr-list li:nth-child(5n) {
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .top-bnr-list li:nth-child(5n) {
        margin-right: auto;
    }
}

.top-bnr-list li a {
    display: block;
    border: 1px solid #fffaed;
    width: 100%;
    background: #fff;
}

.top-bnr-list li a img {
    width: 100%;
}

.top-bnr-list li a {
    display: block;
    width: 100%;
}

@media all and (max-width: 639px) {
    .top-bnr-list li {
        width: 90%;
        margin: 0 auto 10px;
    }
}

.footer-bnr-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-bnr-list li:not(:last-child) {
    margin-right: 10px;
}

@media all and (max-width: 639px) {
    .footer-bnr-list li:not(:last-child) {
        margin-right: 0;
    }
}

.footer-bnr-list li img {
    max-height: 40px;
}

@media all and (max-width: 639px) {
    .footer-bnr-list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-bnr-list li {
        width: 49%;
        margin-bottom: 10px;
    }
    .footer-bnr-list li img {
        max-height: 35px;
    }
}

.link-txt {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.4;
}

@media all and (max-width: 639px) {
    .link-txt {
        font-size: 1.1rem;
    }
}

.info-box {
    max-width: 500px;
    margin: 20px auto 0;
}

.info-lead span {
    padding: 3px 8px;
    background: #111;
    color: #fefefe;
    font-size: 1.8rem;
    margin-bottom: 5px;
    display: inline-block;
}

@media all and (max-width: 639px) {
    .info-lead span {
        font-size: 1.4rem;
    }
}

.sns-box {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sns-box .box-container {
    text-align: center;
}


/*----------------------------------
 --others--
----------------------------------*/

.l-2column {
    position: relative;
    margin-top: 20px;
}

.l-side {
    float: left;
    margin-top: 130px;
    width: 20%;
    background: #fefefe;
    border: 1px solid #e7e7e7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media all and (max-width: 639px) {
    .l-side {
        float: none;
        max-width: 95%;
        width: auto;
        margin: -40px auto 80px;
    }
}

.side-title {
    text-align: center;
    color: #4a3a20;
    font-size: 2.2rem;
    margin-top: 10px;
}

.side-title span {
    display: block;
    text-align: center;
    color: #48a456;
    font-weight: bold;
    margin-bottom: 10px;
}

@media all and (max-width: 639px) {
    .side-title {
        font-size: 1.8rem;
    }
    .side-title span {
        font-size: 1.3rem;
        display: inline-block;
        margin-left: 10px;
    }
}

.side-list li {
    text-align: center;
    margin: 15px auto;
}

.side-list li:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
    .side-list {
        padding: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: left;
    }
    .side-list li {
        margin: 0 1% 15px 0;
        width: 49.5%;
    }
    .side-list li:nth-child(2n) {
        margin-right: 0;
    }
}

.l-main .mainbox {
    width: calc(80% - 40px);
    float: right;
}

@media all and (max-width: 639px) {
    .l-main .mainbox {
        float: none;
        width: 100%;
    }
}

.pv-wrap {
    max-width: 750px;
    margin: 0 auto;
}

.pdf-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
    border: 4px solid #f8f8f8;
    margin-bottom: 20px;
}

.pdf-list.column1 {
    display: block;
}

.pdf-list.column1 li {
    width: 100%;
    margin: 0 0 10px;
}

.pdf-list li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.pdf-list li:nth-child(2n) {
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .pdf-list li:nth-child(2n) {
        margin-right: auto;
    }
}

.pdf-list li a {
    display: block;
    padding: 3px 5px;
    color: #4a3a20;
}

.pdf-list li a:hover {
    color: #ff6e1a;
}

.pdf-list li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1c1";
    font-weight: bold;
    margin-right: 4px;
    font-size: 1.7rem;
    color: #ff3500;
}

.pdf-list li a.long {
    line-height: 1.4;
    padding-top: 10px;
}

.pdf-list li.jpg a:before {
    content: "\f1c5";
}

.pdf-list li a.xcel:before {
    content: "\f1c3";
    color: #1d6f42;
}

.pdf-list li a.word:before {
    content: "\f1c2";
    color: #0173c7;
}

@media all and (max-width: 639px) {
    .pdf-list li {
        width: 90%;
        margin: 0 auto 10px;
    }
    .pdf-list li a {
        font-size: 1.3rem;
    }
}

.pdf-link,
.word-link,
.excel-link {
    padding: 3px 5px;
    color: #fff;
    margin: 0 3px 5px;
}

.pdf-link:before,
.word-link:before,
.excel-link:before {
    margin-right: 4px;
    font-size: 1.6rem;
}

@media all and (max-width: 639px) {
    .pdf-link,
    .word-link,
    .excel-link {
        font-size: 12px;
        padding: 5px;
    }
}

.pdf-link {
    background-color: #ff3500;
}

.pdf-link:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1c1";
    font-weight: bold;
}

.word-link {
    background-color: #0173c7;
}

.word-link:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1c2";
    font-weight: bold;
}

.excel-link {
    background-color: #1d6f42;
}

.excel-link:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1c3";
    font-weight: bold;
}

.mail-txt {
    vertical-align: middle;
}

.window:before {
    font-family: "Font Awesome 5 Free";
    content: "\f2d2";
    font-weight: bold;
    margin-right: 5px;
}


/* training-list (CMS)
----------------------------------*/

.label_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    line-height: 1.2;
}

.label_list li {
    width: 24%;
    margin-right: 1.33%;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.label_list li:nth-child(4n) {
    margin-right: 0;
}

@media all and (max-width: 800px) {
    .label_list li {
        width: 48%;
        margin-right: 4%;
    }
    .label_list li:nth-child(2n) {
        margin-right: 0;
    }
}

@media all and (max-width: 639px) {
    .label_list li {
        width: 100%;
        margin: 0 auto 10px;
    }
    .label_list li:nth-child(2n) {
        margin-right: auto;
    }
}

.label_list li label {
    display: block;
    position: relative;
    padding: 15px;
    word-break: break-all;
}

.label_list li label span {
    display: inline-block;
}

.label_list li label input[type="checkbox"]+span,
.label_list li label input[type="radio"]+span {
    position: relative;
    padding: 3px 30px 0 35px;
}

.label_list li label input[type="radio"],
.label_list li label input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.label_list li label input[type="radio"]+span::before,
.label_list li label input[type="radio"]+span::after,
.label_list li label input[type="checkbox"]+span::before,
.label_list li label input[type="checkbox"]+span::after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.label_list li label input[type="radio"]+span::before,
.label_list li label input[type="checkbox"]+span::before {
    z-index: 0;
    background-color: transparent;
    width: 22px;
    height: 22px;
    border: 2px solid #64bb71;
}

.label_list li label input[type="radio"]+span::after,
.label_list li label input[type="checkbox"]+span::after {
    z-index: 1;
    margin: 5px 8px;
    width: 6px;
    height: 9px;
}

.label_list li label input[type="radio"]:checked+span::before,
.label_list li label input[type="checkbox"]:checked+span::before {
    background-color: #64bb71;
}

.label_list li label input[type="radio"]:checked+span::after,
.label_list li label input[type="checkbox"]:checked+span::after {
    border: 2px solid #ffffff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.application {
    padding: 3px 5px;
    font-size: 0.9em;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.application.before {
    background: #1a9b2d;
}

.application.period {
    background: #ffec81;
}

.application.after {
    background: #ddd;
}

.is-hide {
    display: none;
}


/* contents
----------------------------------*/

.single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5em 0;
    position: relative;
}

.single02 {
    margin: 0 auto;
    padding: 5.5em 0;
}

.single03 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.margin-top {
    margin-top: -60px;
}

@media all and (max-width: 639px) {
    .margin-top {
        margin-top: -30px;
    }
}

@media all and (max-width: 800px) {
    .container {
        width: 94%;
        margin-right: auto;
        margin-left: auto;
    }
}

.lsingle,
.rsingle {
    width: 48.44%;
}

.lsingle {
    float: left;
}

.rsingle {
    float: right;
}

.mbox {
    background: #fefefe;
    padding: 30px;
    max-width: 1200px;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
}

.mbox.transparent {
    background: none;
}

@media all and (max-width: 639px) {
    .mbox {
        padding: 10px;
        max-width: 95%;
    }
}

.mbox2 {
    border: 3px solid #f2f2f2;
    background: #fefefe;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
}

.mbox2.txtbox {
    max-width: 600px;
    width: 100%;
}

@media all and (max-width: 639px) {
    .mbox2 {
        padding: 15px;
    }
}

.small-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 0;
}

.bg-grid {
    background: rgba(255, 255, 255, 0.9);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
    background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
    background-size: 20px 20px;
    background-repeat: repeat;
}

.bg-map {
    padding: 60px 0 90px;
    background: url(../img/map.png) no-repeat right center/auto 130%;
}

@media all and (max-width: 639px) {
    .bg-map {
        background-size: auto 280px;
        padding: 80px 0 70px;
    }
}

#main {
    float: left;
    width: 76%;
}

#main .mbox {
    margin-bottom: 50px;
    border: 0.9px solid #ccc;
    -webkit-box-shadow: 12px 12px rgba(100, 187, 113, 0.2);
    box-shadow: 12px 12px rgba(100, 187, 113, 0.2);
    min-height: 250px;
}

#main .mbox a {
    color: #ff6e1a;
    text-decoration: underline;
}

@media all and (max-width: 800px) {
    #main {
        float: none;
        width: 100%;
    }
}

#side {
    float: right;
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    top: 0;
    width: 21%;
    padding-right: 10px;
}

@media all and (max-width: 800px) {
    #side {
        float: none;
        width: 95%;
        position: static;
        margin: 40px auto 0;
    }
}


/* 2column */

#col2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

#col2-wrap #col2-main {
    width: 78%;
}

@media all and (max-width: 800px) {
    #col2-wrap #col2-main {
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

#col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0;
}

@media all and (max-width: 800px) {
    #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px;
    }
}


/* mtitle
----------------------------------*/

.mtitle {
    line-height: 1.4;
    font-weight: bold;
    margin: 0 auto 50px;
    font-size: 1.7rem;
    text-align: center;
    color: #4a3a20;
    position: relative;
    z-index: 20;
}

.mtitle span {
    display: block;
    position: relative;
}

.mtitle .eng {
    font-size: 4.2rem;
    line-height: 1.4;
    position: relative;
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.2rem;
    color: #64bb71;
}

.mtitle .ja {
    letter-spacing: 0.3rem;
}

.mtitle .ja:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -15px;
    width: 60px;
    height: 2px;
    z-index: 1;
    background: #999;
    border-radius: 4px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mtitle.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white .ja:after {
    background: #fff;
}

.mtitle.black {
    color: #333;
}

.mtitle.black span {
    color: #555;
}

.mtitle.black span:after {
    background-color: #555;
}

.mtitle.mtitle_left {
    text-align: left;
}

.mtitle.mtitle_left span:after {
    left: 0;
    -webkit-transform: none;
    transform: none;
}

@media all and (max-width: 639px) {
    .mtitle.mtitle_left {
        padding-left: 10px;
    }
}

@media all and (max-width: 639px) {
    .mtitle {
        font-size: 1.3rem;
        line-heigth: 1.7;
        margin-top: -35px;
    }
    .mtitle .eng {
        font-size: 2.4rem;
        letter-spacing: 0;
        margin-bottom: 0px;
    }
    .mtitle .ja:after {
        bottom: -14px;
        width: 50px;
        letter-spacing: 0.1rem;
    }
}

.mtitle-big {
    display: block;
    margin: -140px 0 50px -20px;
    line-height: 1.4;
    font-size: 1.5rem;
    text-align: center;
}

.mtitle-big.type1 {
    margin-top: -150px;
    padding-top: 40px;
}

.mtitle-big .eng {
    font-size: 7rem;
    display: block;
    color: #64bb71;
}

@media all and (max-width: 800px) {
    .mtitle-big {
        margin-left: 10px;
        margin-top: -100px;
    }
    .mtitle-big .eng {
        font-size: 6rem;
    }
}

@media all and (max-width: 639px) {
    .mtitle-big {
        line-height: 1.4;
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    .mtitle-big .eng {
        font-size: 3rem;
        white-space: nowrap;
    }
}

.mtitle2 {
    color: #4a3a20;
    font-size: 1.6rem;
    margin-bottom: 30px;
    position: relative;
}

.mtitle2 span {
    font-size: 2.5rem;
    letter-spacing: 0;
    margin-right: 10px;
    font-family: "Josefin Sans", sans-serif;
    color: #48a456;
}

.mtitle2 span.ja {
    font-size: 2rem;
    font-family: "YakuHanJP", Lato, "Josefin Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media all and (max-width: 639px) {
    .mtitle2 {
        font-size: 1.2rem;
    }
    .mtitle2 span {
        font-size: 2rem;
    }
    .mtitle2 span.ja {
        font-size: 1.6rem;
    }
}

.mtitle2:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 2px;
    background: #1a9b2d;
}

.mtitle3 {
    font-size: 2.5rem;
    position: relative;
    color: #4a3a20;
    text-align: center;
    margin: 40px 0 40px;
}

.mtitle3 span {
    font-size: 1.4rem;
}

.mtitle3:before {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -15px;
    width: 60px;
    height: 3px;
    z-index: 1;
    background-image: linear-gradient(-225deg, #9feef1 0%, #d4fea5 100%);
}

@media all and (max-width: 639px) {
    .mtitle3 {
        font-size: 1.6rem;
    }
}

.mtitle-bll {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 3px solid #eeeeee;
    position: relative;
    color: #64bb71;
    margin-bottom: 15px;
    line-height: 1.5;
    padding-bottom: 5px;
}

.mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -3px;
    width: 100px;
    height: 3px;
    background: #64bb71;
}

@media all and (max-width: 639px) {
    .mtitle-bll {
        font-size: 1.4rem;
    }
}

.mtitle4 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
}

.mtitle4 span {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    min-width: 10%;
    letter-spacing: 1.5px;
}

.mtitle4 span:before,
.mtitle4 span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 2rem;
    background-color: #64bb71;
}

.mtitle4 span:before {
    left: -11px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

.mtitle4 span:after {
    right: -11px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

.mtitle4.white span:before,
.mtitle4.white span:after {
    background-color: #ffcdcd;
}

@media all and (max-width: 639px) {
    .mtitle4 {
        font-size: 1.6rem;
    }
}

@media all and (max-width: 320px) {
    .mtitle4 span:before {
        left: -3px;
    }
    .mtitle4 span:after {
        right: -3px;
    }
}

.mtitle-area {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.mtitle-area span {
    padding: 5px 8px;
    background: #222;
    color: #fff;
    font-size: 7rem;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
}

@media all and (max-width: 639px) {
    .mtitle-area {
        font-size: 2rem;
    }
    .mtitle-area span {
        font-size: 4rem;
    }
}

.mtitle_sub {
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #ffe677;
    margin: 8px 0;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #4a3a20;
}

.mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #1a9b2d;
}

@media all and (max-width: 639px) {
    .mtitle_sub {
        font-size: 1.4rem;
    }
}

.mtitle_box {
    background: url(../img/bg-pattern02.jpg);
    background-size: 300px;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.mtitle_box span {
    font-weight: 700;
    font-size: 14px;
    padding-left: 10px;
}

.mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: bold;
    display: block;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

@media all and (max-width: 639px) {
    .mtitle_box {
        font-size: 1.5rem;
    }
}

.mtitle_box2 {
    background: #64bb71;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    font-weight: bold;
    overflow: hidden;
    padding: 15px 10px 15px 20px;
    margin-bottom: 25px;
    letter-spacing: 0.1rem;
}

.mtitle_box2 .small-cap {
    font-weight: 700;
    font-size: 14px;
}

.mtitle_box2:before {
    background-color: #fff;
    content: "";
    display: block;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px;
}

@media all and (max-width: 639px) {
    .mtitle_box2 {
        font-size: 14px;
        line-height: 1.5;
        padding: 10px 10px 10px 15px;
        padding-right: 60px;
    }
    .mtitle_box2 span {
        font-size: 12px;
    }
    .mtitle_box2:before {
        width: 215px;
        right: -170px;
    }
}

.mtext1 {
    font-size: 2.3rem;
    line-height: 1.5;
}

.mtext1 span {
    font-size: 1.8rem;
}

@media all and (max-width: 639px) {
    .mtext1 {
        font-size: 1.6rem;
    }
    .mtext1 span {
        font-size: 1.4rem;
    }
}

.mtext2 {
    font-size: 3.5rem;
    line-height: 1.5;
    letter-spacing: 0.3em;
}

.mtext2 .eng {
    display: block;
    font-size: 4.5rem;
    color: #1a9b2d;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 20px;
}

@media all and (max-width: 639px) {
    .mtext2 {
        font-size: 1.9rem;
        letter-spacing: 0.1em;
    }
}

.mtitle_category {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #64bb71;
    border-bottom: 1px solid #1a9b2d;
}

.mtitle_category:before {
    font-family: "Font Awesome 5 Free";
    content: "\f187";
    font-weight: bold;
    margin-right: 5px;
    color: #1a9b2d;
}

@media all and (max-width: 639px) {
    .mtitle_category {
        font-size: 1.3rem;
    }
}


/* btn
----------------------------------*/

.btn01 a {
    background: #64bb71;
    text-align: center;
    width: 400px;
    margin: 0 auto;
    color: #fefefe;
    display: block;
    padding: 10px 5px;
    font-weight: bold;
    border-radius: 35px;
    font-size: 1.1em;
}

.btn01 a:hover {
    background: #87cb91;
    color: #fff;
}

@media all and (max-width: 639px) {
    .btn01 a {
        width: 95%;
    }
}

.btn02 {
    width: 300px;
    margin: 20px auto 20px;
}

.btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #333;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff;
}

.btn02 a i {
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 50px;
    height: 1px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn02 a:hover i {
    width: 34px;
}

@media all and (max-width: 639px) {
    .btn02 {
        width: 280px;
    }
    .btn02 a {
        font-size: 1.3rem;
    }
}

.btn02.type1 a {
    color: #64bb71;
    border: 1px solid #64bb71;
    background: #fefefe;
}

.btn02.type1 a:hover {
    background: rgba(26, 155, 45, 0.5);
}

.btn-application {
    display: block;
    width: 400px;
    font-weight: bold;
    background: #b80e0e;
    color: #fefefe;
    text-align: center;
    padding: 15px 0;
    margin: 20px auto;
}

.btn-application:hover {
    background: #ff6e1a;
}

@media all and (max-width: 639px) {
    .btn-application {
        width: 280px;
    }
}


/* news
----------------------------------*/

.news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news dt {
    width: 6em;
    padding: 3px 5px;
    background: #1a9b2d;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 7em);
    margin-left: 10px;
}

.news dt:not(:last-child),
.news dd:not(:last-child) {
    margin-bottom: 5px;
}

.news-bl {
    overflow: hidden;
}

.news-bl dt {
    float: left;
    width: 8em;
    padding: 5px 5px;
    line-height: 1.3;
    color: #fefefe;
    background: #52b361;
    text-align: center;
    font-weight: normal;
}

.news-bl dd {
    padding: 0 0 13px 9.2em;
    line-height: 1.6;
    color: #4a3a20;
}

.news-bl dd a {
    color: #b80e0e;
}

.news-bl dd:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(100, 187, 113, 0.7);
}

@media all and (max-width: 639px) {
    .news-bl {
        font-size: 0.95em;
    }
    .news-bl dt {
        float: none;
    }
    .news-bl dd {
        padding: 8px 0;
    }
}


/* page-title
----------------------------------*/

.page-title {
    position: relative;
    z-index: 1;
    background: url(../img/slide2.jpg) no-repeat 50% 60%/cover;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    margin-top: 10px;
}

@media all and (max-width: 800px) {
    .page-title {
        max-width: calc(100% - 20px);
    }
}

.page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #1a9b2d;
    opacity: 0.5;
}

.page-title .inner {
    margin: 0 auto;
    padding: 120px 0 140px;
    max-width: 1500px;
}

.page-title .inner .page-lead {
    text-align: left;
    color: #fefefe;
    margin-bottom: -50px;
    font-size: 2.2rem;
    position: relative;
    text-align: center;
    z-index: 4;
    text-shadow: 0 0 12px rgba(100, 187, 113, 0.3);
}

.page-title .inner .page-lead span {
    font-size: 5rem;
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

@media all and (max-width: 800px) {
    .page-title .inner .page-lead {
        padding-left: 15px;
        font-size: 1.5rem;
        line-height: 1.6;
    }
    .page-title .inner .page-lead span {
        font-size: 4rem;
        display: block;
        white-space: nowrap;
        letter-spacing: 0.2rem;
    }
}

@media all and (max-width: 639px) {
    .page-title .inner .page-lead {
        margin-bottom: 0;
        font-size: 1.4rem;
    }
    .page-title .inner .page-lead span {
        font-size: 2.4rem;
    }
}

@media all and (max-width: 800px) {
    .page-title .inner {
        width: 99%;
        padding: 50px 0 80px;
    }
}


/* background
----------------------------------*/

.bg-base {
    background: #64bb71;
    position: relative;
    z-index: 0;
}

.bg-base.bg-upper {
    background: none;
    position: relative;
}

.bg-base.bg-upper:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    z-index: -2;
    background: #64bb71;
}

.bg-base.bg-upper:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
    background: url(../img/bg.png);
    opacity: 0.2;
}

.bg-base:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg.png);
    opacity: 0.6;
    z-index: -1;
}

.bg-gray {
    background: #f8f8f8;
}

.bg-gray.bg-upper {
    background: none;
    position: relative;
}

.bg-gray.bg-upper:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    z-index: -1;
    background: #f8f8f8;
}

@media all and (max-width: 639px) {
    .bg-gray.bg-upper:before {
        height: 40%;
    }
}

.bg-beige {
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin: 30px auto;
    background: rgba(255, 250, 237, 0.9);
}

@media all and (max-width: 800px) {
    .bg-beige {
        max-width: calc(100% - 20px);
    }
}

.bg-beige2 {
    background: rgba(255, 250, 237, 0.7);
}

.bg-maru1 {
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    background: rgba(248, 248, 248, 0.9);
}

@media all and (max-width: 800px) {
    .bg-maru1 {
        max-width: calc(100% - 20px);
    }
}

.bg-wood {
    background: url(../img/bg-wood.png);
}

.bg-yellow {
    background: rgba(255, 205, 205, 0.7);
}

.bg-yellow.bg-upper {
    background: none;
    position: relative;
}

.bg-yellow.bg-upper:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 55%;
    z-index: -1;
    background: #ffcdcd;
}

@media all and (max-width: 639px) {
    .bg-yellow.bg-upper:before {
        height: 40%;
    }
}

.bg-img1 {
    position: relative;
    padding: 40px 0;
}

.bg-img1:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../img/bg.png);
    background: url(../img/bg-01.jpg) no-repeat center/cover;
    opacity: 0.7;
}

@media all and (max-width: 800px) {
    .bg-img1 {
        padding-top: 40px;
    }
}

.greet-txt {
    position: relative;
    z-index: 20;
}

.greet-deco {
    position: absolute;
    z-index: 2;
}

@media all and (max-width: 800px) {
    .greet-deco {
        opacity: 0.95;
        width: 180px;
    }
}

@media all and (max-width: 639px) {
    .greet-deco {
        width: 120px;
    }
}

.greet-deco01 {
    right: 0;
    top: -120px;
}

@media all and (max-width: 639px) {
    .greet-deco01 {
        top: -80px;
    }
}

.greet-deco02 {
    bottom: -120px;
    left: 0;
}

.bg-img2 {
    position: relative;
}

.bg-img2:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    z-index: -1;
    background: url(../img/bg-img02.jpg) no-repeat center/cover;
    opacity: 0.7;
}

@media all and (max-width: 800px) {
    .bg-img2 {
        padding-top: 40px;
    }
}


/* tbl
----------------------------------*/

.timetable {
    width: 100%;
    margin: 0 auto;
}

.timetable th,
.timetable td {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    vertical-align: middle;
    padding: 5px;
    border: 0.9px solid #64bb71;
}

@media all and (max-width: 639px) {
    .timetable th,
    .timetable td {
        font-size: 1.1rem;
        padding: 3px;
    }
}

.timetable td {
    color: #4a3a20;
    background: #fff;
}

.timetable td .circle {
    color: #64bb71;
}

.timetable .tr-01 td {
    background: rgba(23, 96, 160, 0.6);
    text-align: center;
}

.timetable th {
    background: #21c73a;
}

.tbl {
    width: 100%;
}

.tbl .table-category td {
    background: rgba(100, 187, 113, 0.5);
}

.tbl th,
.tbl td {
    padding: 10px;
    vertical-align: middle;
    border: 0.9px solid #dbd0b6;
    font-weight: 400;
    font-size: 1.5rem;
}

.tbl th {
    background: #f3f0e3;
    text-align: center;
    font-weight: bold;
}

.tbl th span {
    font-size: 1.4rem;
}

.tbl td {
    background: #fefefe;
}

.tbl .cell01 {
    width: 25%;
}

@media all and (max-width: 639px) {
    .tbl th,
    .tbl td {
        padding: 10px;
        font-size: 1.2rem;
    }
}

.tbl.kenshu-tbl th,
.tbl.kenshu-tbl td {
    text-align: center;
}

.tbl.kenshu-tbl .kenshu-td {
    text-align: left;
}

.tbl_new {
    width: 100%;
}

@media all and (max-width: 639px) {
    .tbl_new th {
        width: 36%;
    }
}

.tbl_new tr th,
.tbl_new tr td {
    vertical-align: middle;
    padding: 15px 10px;
}

.tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #4a3a20;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
    background: rgba(100, 187, 113, 0.3);
}

.tbl-border {
    width: 100%;
}

.tbl-border th,
.tbl-border td {
    padding: 10px;
    vertical-align: middle;
    border-bottom: 0.9px solid #ccc;
}

.tbl-border th {
    width: 25%;
}

@media all and (max-width: 639px) {
    .tbl-border th {
        width: 30%;
    }
}

.company {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

.company th,
.company td {
    padding: 15px 10px;
    vertical-align: middle;
}

.company th {
    text-align: center;
    width: 20%;
    position: relative;
    background: #64bb71;
    color: #fff;
    font-weight: bold;
}

.company th::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #f9f9f9;
    border-width: 10px;
    border-left-color: #64bb71;
    margin-top: -10px;
}

.company td {
    background: #f9f9f9;
    padding-left: 20px;
}

.tbl0 {
    width: 100%;
}

.tbl0 th,
.tbl0 td {
    padding: 3px 5px;
    border: 0;
}

.tbl0 th {
    padding-left: 0;
    font-weight: 700;
    background: none;
    width: 25%;
    color: #111;
}

.tbl0 th:after,
.tbl0 th:before {
    display: none;
}

@media all and (max-width: 639px) {
    .tbl0 th {
        width: 40%;
    }
}


/* ggmap
----------------------------------*/

.ggmap,
.youtube {
    position: relative;
    padding-bottom: 50.25%;
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

@media all and (max-width: 639px) {
    .ggmap,
    .youtube {
        padding-bottom: 60%;
    }
}

.ggmap iframe,
.ggmap object,
.ggmap embed,
.youtube iframe,
.youtube object,
.youtube embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* list
----------------------------------*/

.list_common li {
    padding-bottom: 5px;
    padding-left: 1rem;
    margin-bottom: 5px;
    border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.list_check {
    padding: 5px;
    margin-bottom: 10px;
}

.list_check.w24 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.list_check.w24 li {
    width: 24.25%;
    margin: 0 1% 10px 0;
    border-bottom: 0px solid #eee;
}

.list_check.w24 li:nth-child(4n) {
    margin-right: 0;
}

.list_check li {
    padding-bottom: 5px;
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.list_check li a {
    color: #4a3a20;
}

.list_check li a:hover {
    color: #64bb71;
}

.list_check li .inner {
    font-weight: 700;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    background: rgba(255, 250, 237, 0.2);
    margin-top: 10px;
}

.list_check li:not(:last-child) {
    margin-bottom: 15px;
}

.list_check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    margin-right: 10px;
    color: #1a9b2d;
}

.list_check li.link-icon a {
    text-decoration: underline;
    color: #000;
}

.list_check li.link-icon a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    font-weight: 900;
    color: #339AF0;
    margin-left: 10px;
}

@media all and (max-width: 639px) {
    .list_check li {
        width: 98%;
        margin: 0 auto 10px;
        font-size: 1.3rem;
    }
}

.list_check2 {
    margin-bottom: 20px;
}

.list_check2 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: bold;
    margin-right: 5px;
    color: #64bb71;
}

.list_check2 li:not(:last-child) {
    margin-bottom: 5px;
}

.ol-list {
    counter-reset: number;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ol-list li {
    line-height: 2;
    border-bottom: 1px dashed #1a9b2d;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 1.8rem;
    color: #4a3a20;
}

.ol-list li .small {
    display: block;
    padding: 15px;
    line-height: 1.6;
    font-size: 1.5rem;
    color: #333;
    width: 95%;
    margin-left: auto;
    background: #f8f8f8;
}

.ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: #1a9b2d;
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 2rem;
    color: #fefefe;
    margin-right: 0.5em;
}

@media all and (max-width: 639px) {
    .ol-list li {
        font-size: 1.3rem;
    }
    .ol-list li span {
        font-size: 0.9em;
    }
    .ol-list li:before {
        font-size: 1.8rem;
    }
}

.list_bnr {
    list-style: none;
    width: 75%;
    margin: 0 auto;
}

.list_bnr li {
    float: left;
    margin-right: 3%;
    width: calc(97% / 2);
}

.list_bnr li:nth-child(even) {
    margin-right: 0;
}


/* blog
----------------------------------*/

.top-blogwrap .pages {
    display: none;
}

.blog-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}

.blog-wrap li {
    width: 24%;
    margin: 0 0.5% 10px;
    position: relative;
    padding: 10px;
}

.blog-wrap li>a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.blog-wrap li:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: #fefefe;
    -webkit-box-shadow: 0 0 8px rgba(74, 58, 32, 0.1);
    box-shadow: 0 0 8px rgba(74, 58, 32, 0.1);
}

.blog-wrap li:hover .blog-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-wrap .blog-img {
    margin-bottom: 10px;
    overflow: hidden;
    height: 200px;
}

.blog-wrap .blog-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.blog-wrap .blog-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.blog-wrap .blog-time {
    background: #57bb38;
    padding: 8px 5px;
    color: #fff;
    width: 22%;
    text-align: center;
    line-height: 1.2;
}

.blog-wrap .blog-time span {
    display: block;
    font-size: 1.3rem;
}

.blog-wrap .blog-time span.day {
    font-size: 2.2rem;
}

.blog-wrap .blog-title {
    font-weight: bold;
    line-height: 1.6;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 4%;
}

@media all and (max-width: 800px) {
    .blog-wrap li {
        width: 49%;
        margin: 0 2% 20px 0;
    }
    .blog-wrap li:nth-child(2n) {
        margin-right: 0;
    }
}

@media all and (max-width: 639px) {
    .blog-wrap li {
        width: 85%;
        margin: 0 auto 30px;
    }
    .blog-wrap li:nth-child(2n),
    .blog-wrap li:nth-child(3n) {
        margin-right: auto;
    }
    .blog-wrap .blog-time span {
        font-size: 1.1rem;
    }
    .blog-wrap .blog-time span.day {
        font-size: 1.8rem;
    }
    .blog-wrap .blog-title {
        font-size: 1.3rem;
    }
}

.blog-information .blog-wrap li {
    width: 32%;
    margin: 0 1.5% 30px 0;
    border: 0.9px solid rgba(87, 187, 56, 0.3);
}

.blog-information .blog-wrap li:nth-child(3n) {
    margin-right: 0;
}

.blog-information .blog-wrap li::nth-child(4n) {
    margin-right: 1.5%;
}

@media all and (max-width: 800px) {
    .blog-information .blog-wrap li {
        width: 49%;
        margin: 0 2% 20px 0;
    }
    .blog-information .blog-wrap li:nth-child(2n) {
        margin-right: 0;
    }
    .blog-information .blog-wrap li:nth-child(3n) {
        margin-right: 2%;
    }
}

@media all and (max-width: 639px) {
    .blog-information .blog-wrap li {
        width: 85%;
        margin: 0 auto 30px;
    }
    .blog-information .blog-wrap li:nth-child(2n),
    .blog-information .blog-wrap li:nth-child(3n) {
        margin-right: auto;
    }
}

.blog-info-wrap {
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-info-category {
    margin-left: 5px;
    padding: 5px 10px;
    border: 1px solid #1a9b2d;
    color: #64bb71;
    border-radius: 20px;
    font-size: 0.9em;
}

.blog-info-category:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ca";
    font-weight: bold;
    margin-right: 5px;
}

.blog-date2 {
    color: #fff;
    background: #64bb71;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 20px;
}

.blog-date2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    font-weight: bold;
    margin-right: 5px;
}

.blog-txt {
    font-size: 14px;
    line-height: 1.5;
    color: #64bb71;
}

@media all and (max-width: 639px) {
    .blog-txt {
        font-size: 12px;
    }
}

.pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 45px;
}

.pages .page_next,
.pages .page_prev {
    width: 48%;
    position: relative;
}

.pages .page_next a,
.pages .page_prev a {
    color: #388143;
    padding: 10px;
    background: #fff;
    font-size: 13px;
    line-height: 1.6;
    display: block;
    text-align: center;
}

.pages .page_next:before,
.pages .page_prev:before {
    position: absolute;
    left: 50%;
    top: -15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pages .page_next {
    margin-right: 3%;
}

.pages .page_next:before {
    content: "Next";
}

.pages .page_next:after {
    position: absolute;
    content: "";
    right: -2%;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: 1;
    background: #ccc;
}

.pages .page_prev:before {
    content: "Previous";
}

.category_nav {
    border: 1px solid #dddddd;
}

.category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff;
}

.category_nav li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: bold;
    margin-right: 5px;
}

.category_nav li a:hover {
    background: #f8f8f8;
}

.category_nav li:last-child a {
    border-bottom: none;
}


/* etc
----------------------------------*/

.cut {
    overflow: hidden;
    zoom: 1;
}

.w300 {
    width: 300px;
}

@media all and (max-width: 639px) {
    .w300 {
        width: 90%;
    }
}

.w250 {
    width: 250px;
}

@media all and (max-width: 639px) {
    .w250 {
        width: 90%;
    }
}

.spbr {
    display: none;
}

.color1 {
    color: #64bb71;
}

.color2 {
    color: #4a3a20;
}

.color3 {
    color: #ff6e1a;
}

.color4 {
    color: #40924c;
}

.num a {
    color: #4a3a20;
    font-weight: bold;
    font-size: 2.3rem;
    text-align: center;
}

.num a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 5px;
}

.num a:hover {
    color: #1a9b2d;
}

.telbox {
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #eee;
}

.telbox .inner {
    background: #fff;
    padding: 10px;
}

.coming {
    padding: 50px 0;
}


/* breadcrumb
----------------------------------*/

.breadcrumb {
    max-width: 30%;
    background: #fefefe;
    margin: -30px auto 40px 0;
    position: relative;
    padding: 10px 20px;
    z-index: 4;
    font-size: 1.2rem;
    text-align: right;
}

.breadcrumb li {
    display: inline;
    color: #222;
}

.breadcrumb li a {
    color: #64bb71;
}

.breadcrumb li+li:before {
    margin: 0 10px;
    content: ">";
}

@media all and (max-width: 639px) {
    .breadcrumb {
        max-width: 70%;
        padding: 8px 10px;
        margin-top: -20px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}


/* form
----------------------------------*/

.form {
    margin: 0 auto;
    width: 90%;
}

.form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px;
    font-weight: bold;
}

.form dl dt span {
    color: #fff;
    background: #64bb71;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px;
}

.form dl dt b {
    color: #fff;
    background: #777;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px;
}

.form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
    border-bottom: none;
}

.form .textarea,
.form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}

.form .textarea {
    height: 30px;
}

.form .textarea02 {
    width: 48.5%;
    margin-right: 3%;
}

.form .textarea02:last-child {
    margin-right: 0;
}

.form .textarea03 {
    width: 20%;
    margin-right: 1%;
}

.form button {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #64bb71;
    border: 1px solid #64bb71;
    border-radius: 25px;
    color: #fff;
}

.form button:hover {
    background: #fff;
    color: #64bb71;
}

.form button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold;
    margin-right: 10px;
}

.form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333;
}

.form .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
    display: block;
    width: 200%;
    width: -webkit-calc(100% + 5em);
    margin: 0;
    padding: 11px 35px 11px 11px;
    padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
    background: transparent;
    border: 0;
    outline: none;
    line-height: 1.5;
}

.form .entypo-down-open-mini:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ab";
    font-weight: bold;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #64bb71;
}

.form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block;
}

.form label.radio_text:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: 0px;
    top: 2px;
    content: "";
    z-index: 3;
}

.form label.radio_text:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #64bb71;
    z-index: 1;
}

.form label.radio_text input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 0px;
    margin: 0px;
    -webkit-box-shadow: 20px -1px #fff;
    box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    -webkit-box-shadow: 20px -1px #eeebda;
    box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block;
}

.form label.checkbox_text:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 0;
    border: 1px solid #ccc;
    z-index: 3;
    padding: 1px;
}

.form label.checkbox_text:after {
    content: "";
    position: absolute;
    top: 40%;
    left: 5px;
    display: block;
    margin-top: -9px;
    width: 8px;
    height: 12px;
    border-right: 3px solid #64bb71;
    border-bottom: 3px solid #64bb71;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    display: block;
    -webkit-box-shadow: 41px 0px #fff;
    box-shadow: 41px 0px #fff;
    z-index: 2;
    margin: 0px;
    padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
    -webkit-box-shadow: 40px 0px #666;
    box-shadow: 40px 0px #666;
    opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
    -webkit-box-shadow: 41px 0px #eee;
    box-shadow: 41px 0px #eee;
}

.fm-txt {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px;
}

.normal {
    font-weight: normal;
}

.select-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select-content+.select-content {
    margin-top: 5px;
}

.select-content .select-txt {
    padding: 0 5px;
}

@media all and (max-width: 639px) {
    .select-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .select-content+.select-content {
        margin-top: 15px;
    }
    .select-content span {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
}

.memo {
    border: 2px solid rgba(255, 250, 237, 0.5);
    background: url(../img/bg01.jpg);
    padding: 15px;
}

.thanks {
    padding: 40px;
    border: 3px solid #64bb71;
    -webkit-box-shadow: 0 0 0 8px rgba(100, 187, 113, 0.2);
    box-shadow: 0 0 0 8px rgba(100, 187, 113, 0.2);
    max-width: 700px;
    margin: 0 auto;
    background: #fefefe;
}

@media all and (max-width: 639px) {
    .thanks {
        max-width: 90%;
        padding: 30px 20px;
    }
}

.shadow {
    -webkit-box-shadow: 0 0 10px rgba(74, 58, 32, 0.15);
    box-shadow: 0 0 10px rgba(74, 58, 32, 0.15);
}

.policy {
    padding: 30px;
    background: #777;
    color: #fefefe;
    font-weight: 700;
}

@media all and (max-width: 639px) {
    .policy {
        font-size: 1.1rem;
    }
}

.mtitle_small {
    position: relative;
    font-size: 2rem;
    color: #4a3a20;
    margin-bottom: 30px;
}

.mtitle_small:before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #ff6e1a;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.mtitle_small2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: #388143;
    font-size: 1.6rem;
    font-weight: 600;
}

.mtitle_small2:before {
    content: "";
    background-color: #1a9b2d;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.6em;
    left: 0;
}

@media all and (max-width: 639px) {
    .mtitle_small2 {
        font-size: 1.4rem;
    }
}


/*photoギャラリー*/

.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery li {
    width: calc((100% - 30px) / 3);
    margin: 0 15px 25px 0;
}

.gallery li:nth-child(3n) {
    margin-right: 0;
}

.gallery li a {
    background: rgba(255, 250, 237, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 220px;
}

.gallery li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    /*IE対策*/
}

.gallery li p {
    font-size: 13px;
    margin: 3px 0 10px;
}

@media all and (max-width: 800px) {
    .gallery li {
        width: 48%;
        margin: 0 1% 20px;
    }
    .gallery li:nth-child(2n) {
        margin-right: 0;
    }
    .gallery li:nth-child(3n) {
        margin: 0 1% 20px;
    }
    .gallery li a {
        height: 120px;
    }
}

.top-works-gallery li a {
    background: rgba(255, 250, 237, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 220px;
}

.top-works-gallery li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    /*IE対策*/
}

@media all and (max-width: 639px) {
    .top-works-gallery li a {
        height: 140px;
    }
}

.list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
}

@media all and (max-width: 639px) {
    .list2 {
        margin-bottom: 0;
    }
}

.list2.type1 li {
    background: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.list2>li,
.list2>.child {
    width: 49%;
    margin-bottom: 20px;
}

.list2>li:nth-child(2n),
.list2>.child:nth-child(2n) {
    margin-left: 2%;
}

@media all and (max-width: 639px) {
    .list2>li:nth-child(2n),
    .list2>.child:nth-child(2n) {
        margin-left: auto;
    }
}

@media all and (max-width: 639px) {
    .list2>li,
    .list2>.child {
        width: 100%;
        margin: 0 auto 15px;
    }
}

.list3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
}

@media all and (max-width: 639px) {
    .list3 {
        margin-bottom: 0;
    }
}

.list3 li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
}

.list3 li:nth-child(3n) {
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .list3 li {
        width: 100%;
        margin: 0 auto 15px;
    }
}

.list4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list4 li {
    width: 24.25%;
    margin: 0 1% 15px 0;
}

.list4 li:nth-child(4n) {
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .list4 {
        margin: 0 auto;
    }
    .list4 li {
        width: 49%;
        margin: 0 2% 10px 0;
    }
    .list4 li:nth-child(2n) {
        margin-right: 0;
    }
}

.list4.treat li {
    padding: 0;
    margin-bottom: 25px;
}

@media all and (max-width: 800px) {
    .list4.treat li {
        width: 49%;
        margin: 0 2% 10px 0;
    }
    .list4.treat li:nth-child(2n) {
        margin-right: 0;
    }
}

.list4.treat li .treat-img {
    position: relative;
}

.list4.treat li .treat-img img {
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}

.list4.treat li .treat-img:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(-45deg, rgba(173, 245, 154, 0.8) 0%, rgba(236, 236, 148, 0.8) 100%);
}

.list4.treat li a {
    display: block;
}

.list4.treat li a:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.list4.treat li a:hover .treat-img img {
    opacity: 0.5;
}

.treat-box {
    position: relative;
    z-index: 2;
    background: #fefefe;
    width: 80%;
    margin: -55px auto 0;
    padding: 10px 0;
}

.prv dt {
    color: #64bb71;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}

.list-title {
    text-align: center;
    color: #388143;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2rem;
    position: relative;
    font-family: "YakuHanJP", Lato, "Josefin Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.3;
}

.list-title span {
    font-size: 1.5rem;
    color: #4a3a20;
}

@media only screen and (max-width: 1250px) {
    .list-title {
        font-size: 1.8rem;
    }
    .list-title span {
        font-size: 1.4rem;
    }
}

.list-title:after {
    position: absolute;
    content: "●●●";
    left: 50%;
    bottom: -20px;
    font-size: 6px;
    letter-spacing: 0.8em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #ffec81;
}

@media all and (max-width: 639px) {
    .list-title {
        font-size: 1.4rem;
    }
    .list-title span {
        font-size: 1.2rem;
    }
}

.note {
    padding: 10px;
    background: rgba(255, 250, 205, 0.7);
    margin: 10px auto 30px;
    border-radius: 10px 0 10px 0;
}

.note.note_important {
    font-size: 1.2em;
    background: #ffec81;
}

.flow-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0;
}

.flow-dl dt {
    background: #64bb71;
    font-size: 3rem;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px;
}

.flow-dl dt span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: -10px;
}

.flow-dl dd {
    width: calc(100% - 80px);
}

.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
    margin-bottom: 20px;
}

.txt1 {
    padding-left: 10px;
}

.fee-box {
    margin: 10px 0 20px;
    font-weight: bold;
    background: lemonchiffon;
    padding: 5px;
}

.fee-box span {
    display: block;
    font-weight: 700;
}

.blog-month {
    margin-bottom: 15px;
}

.blog-month ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-month ul li {
    width: 90%;
    padding: 3px;
    text-align: center;
    font-size: 1.4rem;
    background: #f8f8f8;
    margin: 0 0 5px;
}

.blog-month ul li a {
    color: #4a3a20;
}

@media all and (max-width: 800px) {
    .blog-month ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .blog-month ul li {
        width: 48%;
        font-size: 1.1rem;
    }
    .blog-month ul li:nth-child(even) {
        margin-left: 1%;
    }
}

.price {
    color: #64bb71;
    font-size: 1.3em;
    padding-right: 5px;
}

.list-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-center li {
    max-width: 250px;
}

.list-center li:not(:last-child) {
    margin: 0 5px 5px;
}

@media all and (max-width: 639px) {
    .list-center li {
        width: 220px;
    }
    .list-center li:not(:last-child) {
        margin: 0 0 5px;
    }
}

.faq-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.faq-dl .faq-inner {
    width: 49%;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(255, 205, 205, 0.6);
    margin-bottom: 35px;
    padding-bottom: 20px;
}

.faq-dl .faq-inner:nth-child(even) {
    margin-left: 2%;
}

@media all and (max-width: 639px) {
    .faq-dl .faq-inner:nth-child(even) {
        margin-left: auto;
    }
}

@media all and (max-width: 639px) {
    .faq-dl .faq-inner {
        width: 100%;
        margin-bottom: 20px;
    }
}

.faq-dl dt,
.faq-dl dd {
    position: relative;
    padding: 10px 10px 10px 55px;
}

.faq-dl dt:before,
.faq-dl dd:before {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    left: 0;
    top: 0;
}

.faq-dl dt {
    color: #64bb71;
    margin-bottom: 10px;
}

.faq-dl dt:before {
    content: "Q";
    font-size: 3rem;
    color: #64bb71;
}

.faq-dl dd:before {
    content: "A";
    color: #ff6e1a;
    font-size: 3rem;
    background: #fff;
}

.top-btnlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1700px;
    margin: 0 auto;
}

.top-btnlist li {
    width: 31%;
    margin: 0 1% 5%;
    position: relative;
    text-align: center;
}

.top-btnlist li a {
    display: block;
    z-index: 4;
    margin-bottom: 20px;
}

.top-btnlist li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1);
}

.top-btnlist li:hover:before {
    -webkit-transform: scale(0.97, 0.98);
    transform: scale(0.97, 0.98);
    border-radius: 20px;
    background: #fffaed;
}

.top-btnlist li:hover .top-btnlist_img {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
}

.top-btnlist li:hover .top-btnlist_img img {
    border-radius: 20px;
}

.top-btnlist .top-btnlist_img {
    width: 100%;
    height: 250px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-origin: 50% 90%;
    transform-origin: 50% 90%;
}

.top-btnlist .top-btnlist_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    display: block;
}

.top-btnlist .top-bglogo {
    margin: -40px auto 10px;
    width: auto;
    display: block;
}

.top-btnlist .top-bglogo img {
    max-height: 80px;
}

.top-btnlist .top-btnlist_ttl {
    font-size: 1.7rem;
    margin: -30px auto 0;
    position: relative;
    z-index: 5;
    letter-spacing: 0.2rem;
    width: 90%;
    padding: 20px;
}

@media all and (max-width: 800px) {
    .top-btnlist {
        margin-top: 40px;
    }
    .top-btnlist li {
        width: 48%;
    }
}

@media all and (max-width: 639px) {
    .top-btnlist li {
        width: 90%;
        margin: 0 auto 5%;
    }
    .top-btnlist .top-bglogo img {
        max-height: 60px;
    }
    .top-btnlist .top-btnlist_ttl {
        font-size: 1.4rem;
        margin: -20px auto 0;
        padding: 10px;
    }
    .top-btnlist .top-btnlist_img {
        height: 200px;
    }
}

.top-btnlist.shoplist2 {
    max-width: 900px;
}

.top-btnlist.shoplist2 li {
    width: 100%;
    margin-bottom: 0;
}

@media all and (max-width: 639px) {
    .top-btnlist.shoplist2 li {
        width: 90%;
    }
}

.box-column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.box-column2.around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.box-column2.between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.box-column2 .box-container {
    width: 48%;
    padding: 10px;
    position: relative;
    z-index: 3;
}

@media all and (max-width: 800px) {
    .box-column2 .box-container {
        width: 95%;
        margin: 0 auto;
        padding: 20px;
    }
    .box-column2 .box-container:nth-child(2) {
        margin-top: 30px;
    }
    .box-column2 .box-container.order {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.bg-02 {
    background: #fffaed;
}

.padding-box {
    padding: 80px 20px;
}

@media all and (max-width: 639px) {
    .padding-box {
        padding: 40px 10px;
    }
}


/* category_tab
----------------------------------*/

.category_tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.category_tab:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background: #fffaed;
}

.category_tab li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background: #fffaed;
    border-top: 2px solid #fffaed;
    border-right: 2px solid #fffaed;
    border-left: 2px solid #fffaed;
    color: #4a3a20;
    padding: 8px;
    cursor: pointer;
    margin-left: 15px;
}

.category_tab li:last-child {
    margin-right: 15px;
}

.category_tab li.active {
    background: #fefefe;
    color: #64bb71;
    border-radius: 10px 10px 0 0;
}

.category_tab li.active:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: #ffffff;
}

@media all and (max-width: 639px) {
    .category_tab {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 90%;
        margin: 0 auto;
    }
    .category_tab:before {
        display: none;
    }
    .category_tab li {
        width: 33.33%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        margin: 0;
        line-height: 1.4;
    }
    .category_tab li:last-child {
        margin-right: 0;
    }
    .category_tab li.active {
        border-radius: 0;
    }
}

.panel {
    display: none;
}

.category_contents {
    background: #fefefe;
    padding: 35px 20px 20px;
    margin: 0 auto;
    border: 2px solid #fffaed;
    border-top: 0;
}

@media all and (max-width: 639px) {
    .category_contents {
        max-width: 90%;
    }
}

.top-info-dl {
    max-width: 1200px;
    margin: 0 auto;
}

.top-info-dl .info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 2px;
}

.top-info-dl .info-inner:not(:last-of-type) {
    margin-bottom: 15px;
    border-bottom: 0.9px dashed #ccc;
}

.top-info-dl .info-inner dt {
    width: 16em;
    color: #64bb71;
}

.top-info-dl .info-inner dt span {
    color: #64bb71;
    border: 1px solid #1a9b2d;
    padding: 4px 8px;
    margin-left: 5px;
    margin-top: 1px;
    letter-spacing: 0;
    font-size: 0.9em;
    font-weight: normal;
}

.top-info-dl .info-inner dd {
    width: calc(100% - 17em);
}

.top-info-dl .info-inner dd a {
    color: #261e11;
}

@media all and (max-width: 639px) {
    .top-info-dl .info-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .top-info-dl .info-inner dd {
        width: 100%;
        margin-top: 10px;
    }
}

.bg-footer {
    background: url(../img/bg-footer.jpg) no-repeat center/cover;
    background-attachment: fixed;
}

@media all and (max-width: 1200px) {
    .bg-footer {
        background-attachment: scroll;
    }
}

.kaikan {
    text-align: center;
    padding: 15px;
    background: #f0f0f0;
}

.kaikan span {
    display: block;
    font-size: 2.5rem;
    color: #b80e0e;
}

@media all and (max-width: 639px) {
    .kaikan span {
        font-size: 1.8rem;
    }
}

.kenshu-title {
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: #ff6e1a;
    font-size: 1.2em;
}

.kenshu-month-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.kenshu-month-list li {
    width: calc((100% - 25px) / 6);
    padding: 10px;
    border: 1px solid #1a9b2d;
    text-align: center;
    margin: 0 5px 10px 0;
    color: #64bb71;
    background: rgba(26, 155, 45, 0.2);
}

.kenshu-month-list li:nth-child(6n) {
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .kenshu-month-list li:nth-child(6n) {
        margin-right: 5px;
    }
}

.kenshu-month-list li:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    cursor: pointer;
    background: rgba(26, 155, 45, 0.5);
}

@media all and (max-width: 639px) {
    .kenshu-month-list li {
        width: calc((100% - 20px) / 4);
    }
    .kenshu-month-list li:nth-child(4n) {
        margin-right: 0;
    }
}

.kenshu-month-list li label {
    display: block;
    position: relative;
    word-break: break-all;
}

.kenshu-month-list li label span {
    display: inline-block;
}

.kenshu-month-list li label input[type="checkbox"]+span,
.kenshu-month-list li label input[type="radio"]+span {
    position: relative;
    padding-left: 35px;
}

@media all and (max-width: 639px) {
    .kenshu-month-list li label input[type="checkbox"]+span,
    .kenshu-month-list li label input[type="radio"]+span {
        padding: 20px 0 0 0;
    }
}

.kenshu-month-list li label input[type="radio"],
.kenshu-month-list li label input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.kenshu-month-list li label input[type="radio"]+span::before,
.kenshu-month-list li label input[type="radio"]+span::after,
.kenshu-month-list li label input[type="checkbox"]+span::before,
.kenshu-month-list li label input[type="checkbox"]+span::after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kenshu-month-list li label input[type="radio"]+span::before,
.kenshu-month-list li label input[type="checkbox"]+span::before {
    z-index: 0;
    background-color: transparent;
    width: 22px;
    height: 22px;
    border: 2px solid #64bb71;
    border-radius: 100%;
}

.kenshu-month-list li label input[type="radio"]+span::after,
.kenshu-month-list li label input[type="checkbox"]+span::after {
    z-index: 1;
    margin: 5px;
    width: 12px;
    height: 12px;
}

.kenshu-month-list li label input[type="radio"]:checked+span::before,
.kenshu-month-list li label input[type="checkbox"]:checked+span::before {
    background-color: #fefefe;
}

.kenshu-month-list li label input[type="radio"]:checked+span::after,
.kenshu-month-list li label input[type="checkbox"]:checked+span::after {
    background: #1760a0;
    border-radius: 100%;
}

.btn-top01 {
    width: 55%;
    margin: 0 auto 30px;
    border: 2px solid #ed1c24;
    border-radius: 10px;
}

@media all and (max-width: 639px) {
    .btn-top01 {
        margin-bottom: 60px;
        width: 90%;
    }
}

.btn-top01 .read {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #ed1c24;
    color: #fefefe;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-top01 .read {
        max-width: 100%;
        font-size: 1.4rem;
        line-height: 1.5;
        /*   margin: -10px auto 40px;*/
    }
}

.btn-top01 a {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #fefefe;
    color: #72453C;
    border: 1px solid #ed1c24;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 10px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-top01 a {
        max-width: 90%;
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0 auto;
    }
}

.bg-gray01 {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #d2d2d2;
    color: #2e2d2d;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .bg-gray01 {
        font-size: 1.2rem;
    }
}

.w30 {
    float: left;
    width: 30%;
}

.w70 {
    float: left;
    width: 70%;
}

.btn-gray02 {
    width: 30%;
    margin: 0 auto 30px;
    border: 2px solid #d2d2d2;
    border-radius: 10px 10px 20px 20px;
}

@media all and (max-width: 639px) {
    .btn-gray02 {
        margin-bottom: 60px;
        width: 90%;
    }
}

.btn-gray02 .read01 {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #ed1c24;
    color: #fefefe;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-gray02 .read01 {
        max-width: 100%;
        font-size: 1.4rem;
        line-height: 1.5;
        /*   margin: -10px auto 40px;*/
    }
}

.btn-gray02 a {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #fefefe;
    color: #72453C;
    border: 1px solid #ed1c24;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 10px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-gray02 a {
        max-width: 90%;
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0 auto;
    }
}

.btn-gray01 {
    width: 100%;
    margin: 0 auto 30px;
    border: 2px solid #d2d2d2;
    border-radius: 10px 10px 50px 50px;
}

@media all and (max-width: 639px) {
    .btn-gray01 {
        margin-bottom: 60px;
        width: 90%;
    }
}

.btn-gray01 .read01 {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #ed1c24;
    color: #fefefe;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-gray01 .read01 {
        max-width: 100%;
        font-size: 1.4rem;
        line-height: 1.5;
        /*   margin: -10px auto 40px;*/
    }
}

.btn-gray01 a {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #fefefe;
    color: #72453C;
    border: 1px solid #ed1c24;
    font-weight: 600;
    width: 100%;
    margin: 0 auto 10px;
    font-size: 1.8rem;
    border-radius: 5px;
}

@media all and (max-width: 639px) {
    .btn-gray01 a {
        max-width: 90%;
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0 auto;
    }
}

.img-hv {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.img-hv:hover {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.cp_timeline03 {
    position: relative;
    margin: 3em auto;
}

.cp_timeline03:before {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    content: '';
    background-color: #64bb71;
    left: 30px;
}

.cp_timeline03 .timeline_group {
    position: relative;
    padding-top: 55px;
}

.cp_timeline03 .timeline_group:not(:first-of-type) {
    margin-top: 4rem;
}

.cp_timeline03 .time_year {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.5rem 1.5rem;
    color: #fff;
    background-color: #48a456;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_timeline03 .timeline_item {
    margin-bottom: 1em;
    position: relative;
    padding-left: 80px;
}

.cp_timeline03 .timeline_item:not(:last-of-type) {
    margin-bottom: 2em;
}

.cp_timeline03 .timeline_item:before {
    position: absolute;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background-color: #48a456;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cp_timeline03 .time {
    position: absolute;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 65px;
    min-height: 65px;
    padding: 0.5em 0.5em;
    text-align: center;
    color: #fff;
    background-color: #1a9b2d;
    top: 50%;
    margin-top: -33px;
    border-radius: 65px;
}

.cp_timeline03 .time_day {
    font-size: 1em;
    font-weight: 700;
    display: block;
}

.cp_timeline03 .time_month {
    font-size: 0.8em;
    display: block;
    text-transform: uppercase;
}

.cp_timeline03 .desc {
    padding: 0.5em 1em;
    border-left: 3px solid #1a9b2d;
    border-radius: 2px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
}

.cp_timeline03 .desc .flag {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    padding: 0;
    padding-bottom: 0.3em;
}

@media only screen and (max-width: 767px) {
    .cp_timeline03:before {
        left: 0;
    }
    .cp_timeline03 .timeline_group {
        padding-top: 40px;
    }
    .cp_timeline03 .timeline_item {
        padding-top: 60px;
        padding-left: 20px;
    }
    .cp_timeline03 .timeline_item:before {
        top: 90px;
    }
    .cp_timeline03 .time {
        top: 40px;
        border-radius: 0 20px 20px 0;
        min-height: 2em;
    }
    .cp_timeline03 .time_day,
    .cp_timeline03 .time_month {
        display: inline-block;
    }
    .cp_timeline03 .desc {
        font-size: 0.8em;
    }
}

.marker-g {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #b9eacc));
    background: linear-gradient(transparent 70%, #b9eacc 0%);
    z-index: 0;
}

.tcenter_pc {
    text-align: center;
}

@media all and (max-width: 639px) {
    .tcenter_pc {
        text-align: left;
    }
}

.column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.column2 .child1 {
    width: 60%;
    margin-right: 4%;
}

.column2 .child2 {
    width: 36%;
    margin-right: 0;
}

@media all and (max-width: 639px) {
    .column2 .child1,
    .column2 .child2 {
        width: 100%;
        margin: 0 0 10px;
    }
}

.mbox3 {
    margin-bottom: 50px;
    border: 0.9px solid #64bb71;
    -webkit-box-shadow: 12px 12px rgba(100, 187, 113, 0.2);
    box-shadow: 12px 12px rgba(100, 187, 113, 0.2);
    padding: 30px;
}

.mbox3.mb10 {
    margin-bottom: 10px;
}

@media all and (max-width: 639px) {
    .mbox3 {
        padding: 15px;
        width: 90%;
        margin: 0 auto 40px;
    }
}

.note_line {
    padding: 0 0.5em;
    background: linear-gradient(#dbf8e6 1px, transparent 1px) #fff;
    background-size: auto 3em;
    line-height: 3em;
    border-bottom: 1px solid #dbf8e6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

@media all and (max-width: 639px) {
    .note_line {
        background: none;
        line-height: 2.5em;
        border-bottom: 0px solid #dbf8e6;
    }
}

.support_zone_box {
    position: relative;
}

.support_zone_box::after {
    position: absolute;
    content: "+";
    color: #4472c4;
    top: 300px;
    right: 50%;
    font-size: 100px;
    width: 26px;
    margin: 0 auto;
}

.support_zone_ttl {
    text-align: center;
    font-size: 1.5em;
    font-weight: normal;
    position: relative;
}

.support_zone_ttl::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 2em;
    background: url(../img/kusuri.jpg) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.support_zone_ttl::after {
    content: "";
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url(../img/heart.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

@media all and (max-width: 639px) {
    .support_zone_ttl {
        font-size: 1em;
    }
}

.support_zone {
    width: 45%;
    margin: 0 2.5%;
    float: left;
}

.support_zone h4 {
    text-align: center;
    font-size: 1.3em;
    text-decoration: underline;
}

.support_zone dl {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.support_zone dt {
    font-size: 1.1em;
}

.support_zone dd {
    position: relative;
    margin-left: 27px;
}

.support_zone dd::before {
    position: absolute;
    content: "・";
    left: -10px;
}

.support_zone.bg_purple h4 {
    color: #4472c4;
}

.support_zone.bg_purple dl {
    background-color: #dae3f3;
}

.support_zone.bg_green h4 {
    color: #19b861;
}

.support_zone.bg_green dl {
    background-color: #c5e0b4;
}

.merit_box .merit_list li {
    background-color: #c3f0f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.merit_box .merit_list li:nth-child(odd) {
    background-color: #b8d4ed;
}

.merit_box .soudan {
    text-align: center;
    margin-top: 20px;
}

.flx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx2 .flx_in {
    width: 48%;
}

@media all and (max-width: 639px) {
    .flx2 .flx_in {
        width: 100%;
    }
}

.flx2.type2 .flx_in {
    width: 40%;
}

@media all and (max-width: 639px) {
    .flx2.type2 .flx_in {
        width: 100%;
    }
}

.flx2.type2 .flx_in:nth-of-type(2) {
    width: 55%;
}

@media all and (max-width: 639px) {
    .flx2.type2 .flx_in:nth-of-type(2) {
        width: 100%;
    }
}

.flx2.type3 .flx_in {
    width: 55%;
}

@media all and (max-width: 639px) {
    .flx2.type3 .flx_in {
        width: 100%;
    }
}

.flx2.type3 .flx_in:nth-of-type(2) {
    width: 40%;
}

@media all and (max-width: 639px) {
    .flx2.type3 .flx_in:nth-of-type(2) {
        width: 100%;
    }
}

.flx2.type4 .flx_in {
    width: 77%;
}

@media all and (max-width: 639px) {
    .flx2.type4 .flx_in {
        width: 100%;
    }
}

.flx2.type4 .flx_in:nth-of-type(2) {
    width: 20%;
}

@media all and (max-width: 639px) {
    .flx2.type4 .flx_in:nth-of-type(2) {
        width: 100%;
    }
}

.flx3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx3 .flx_in {
    width: 31%;
}

@media all and (max-width: 1200px) {
    .flx3 .flx_in {
        width: 48%;
    }
}

@media all and (max-width: 639px) {
    .flx3 .flx_in {
        width: 100%;
    }
}

@media all and (max-width: 1200px) {
    .flx3.type2 .flx_in {
        width: 48%;
    }
}

.flx4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx4 .flx_in {
    width: 23%;
}

@media all and (max-width: 639px) {
    .flx4 .flx_in {
        width: 48%;
    }
}

.flx6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx6 .flx_in {
    width: 15%;
}

@media all and (max-width: 639px) {
    .flx6 .flx_in {
        width: 48%;
    }
}

.r_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.ai_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ai_start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ai_end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.jc_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.jc_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.manufacturer {
    padding: 20px;
}

.manufacturer img {
    width: 100%;
}

#side_btn {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

@media all and (max-width: 639px) {
    #side_btn {
        display: none;
    }
}

#side_btn li {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

#side_btn li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 5px;
    background: #1a9b2d;
    color: #fff;
}

#side_btn li:nth-of-type(1) a {
    background: #64bb71;
}

.rec_link_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rec_link_list li {
    margin: 0 1rem;
}

.rec_link_list li a {
    display: inline-block;
    padding: 5px 20px;
}

.rec_link_list li a i {
    margin-right: 5px;
}

.rec_link_list .rec_link_tel a {
    font-size: 18px;
    letter-spacing: 0.2em;
}

.rec_link_list .rec_link_mail a {
    font-size: 18px;
    border: 1px solid #64bb71;
    color: #64bb71;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    background: #64bb71 !important;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.optional::before {
    background: #777 !important;
    content: "任意";
}

.form-pattern-1 .submit-btn {
    background: #64bb71 !important;
    border: 1px solid #64bb71 !important;
    border-radius: 30px !important;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif !important;
}

.form-pattern-1 .submit-btn:hover {
    background: #fff !important;
    color: #64bb71 !important;
}

.form-pattern-1 .submit-btn:hover::before {
    background-color: #64bb71 !important;
}