﻿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.6rem;
    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: #80b82f;
    text-decoration: none;
    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
}

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

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

.animation {
    opacity: 0
}

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

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

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

.loader::after {
    animation: loader 0.5s linear infinite;
    border: 1px solid #b0db72;
    border-radius: 50%;
    border-right: 1px solid rgba(176, 219, 114, 0.2);
    border-top: 1px solid rgba(176, 219, 114, 0.2);
    content: "";
    height: 70px;
    width: 70px
}

.loader.off {
    display: none
}

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

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

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

#l-header .inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 1024px;
    margin: 10px auto 8px;
    align-items: center
}

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

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

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

#l-header #logo {
    width: 380px;
    position: relative
}

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

#l-header .header-info {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a3a20;
    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: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 5px
}

#l-header .sns {
    display: flex;
    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: #c5b897
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
    display: block;
    padding: 5px 10px;
    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: #b0db72;
    color: #fff
}

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

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

#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;
    animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    background: rgba(254, 254, 254, 0.95)
}

#l-header.scrolled #header_nav ul li a span {
    display: none
}

#l-header.scrolled #header_nav ul li .dropdown {
    top: 30px
}

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

@media all and (max-width: 1200px) {
    #header_nav {
        width: 750px
    }
}

#header_nav ul {
    text-align: center;
    display: flex;
    flex-wrap: wrap
}

#header_nav ul li {
    position: relative;
    flex: 1 0 auto;
    text-align: center
}

#header_nav ul li:last-child {
    margin-right: 0
}

#header_nav ul li a {
    display: block;
    letter-spacing: 0;
    position: relative;
    line-height: 1.6;
    font-size: 1.4rem;
    padding: 5px 0;
    font-weight: bold;
    color: #5a3a20;
    text-align: center
}

#header_nav ul li a span {
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #57bb38;
    position: relative
}

#header_nav ul li a:hover,
#header_nav ul li a.active {
    color: #dc552c;
    transition: 0.2s color ease-in
}

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
    color: #dc552c;
    transition: 0.2s color ease-in
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 52px;
    z-index: 999;
    background-image: linear-gradient(to bottom, rgba(87, 187, 56, 0.8) 0%, rgba(255, 205, 60, 0.8) 100%);
    background: url(../img/pattern-green01.jpg);
    padding: 10px 5px
}

#header_nav .dropdown .dropdown-li {
    border-right: 0;
    margin: 0 0;
    background: #fff;
    border-radius: 10px
}

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

#header_nav .dropdown .dropdown-li a {
    display: block;
    width: 140px;
    color: #5a3a20;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0
}

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

#header_nav .sns-sp {
    display: none
}

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

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

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

@media all and (max-width: 639px) {
    #page-top {
        bototm: 20px
    }
}

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

#slideshow {
    position: relative;
    margin: 15px auto 0
}

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

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

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

.slide-img {
    height: 75vh;
    width: 94%
}

.slide-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    font-family: "object-fit: cover";
    border-radius: 0 25px 25px 0
}

@media all and (max-width: 1200px) {
    .slide-img {
        height: 60vh
    }
}

@media all and (max-width: 639px) {
    .slide-img {
        height: 45vh
    }
}

#catch {
    z-index: 200;
    position: absolute;
    left: 10px;
    top: 30px;
    opacity: 0;
    max-width: 550px;
    transition: all 2s ease-in
}

#catch.on {
    opacity: 1
}

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

#pickup {
    z-index: 200;
    position: absolute;
    right: 0;
    bottom: -5%;
    width: 30%;
    min-width: 500px;
    padding: 20px;
    min-height: 180px;
    background: #fefefe;
    border: 3px solid #b0db72;
    border-right: 0;
    font-weight: bold;
    box-shadow: 5px 5px rgba(176, 219, 114, 0.3)
}

#pickup .pickup-lead {
    position: absolute;
    top: -50px;
    font-weight: bold;
    color: #5a3a20;
    padding: 0 10px;
    font-size: 1.5rem;
    display: inline-block;
    background: #ffcd3c
}

#pickup .pickup-lead span {
    letter-spacing: 0.1em;
    font-size: 3rem;
    padding-right: 10px
}

@media all and (max-width: 800px) {
    #pickup {
        width: 90%;
        bottom: -100px;
        min-width: initial
    }
}

@media all and (max-width: 639px) {
    #pickup {
        bottom: -180px;
        padding: 10px
    }
    #pickup .pickup-lead {
        font-size: 1.4rem;
        top: -35px
    }
    #pickup .pickup-lead span {
        font-size: 1.8rem
    }
}

.slide0 {
    background-image: url(../bxslider/images/0.jpg);
    background-position: center center
}

.slide1 {
    background-image: url(../bxslider/images/1.jpg);
    background-position: center center
}

.slide2 {
    background-image: url(../bxslider/images/2.jpg);
    background-position: center center
}

.slide3 {
    background-image: url(../bxslider/images/3.jpg);
    background-position: center center
}

.slide0,
.slide1,
.slide2,
.slide3 {
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    background-attachment: scroll;
    padding: 0px 0
}

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

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

.contact_wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.contact_wrap .contact_left,
.contact_wrap .contact_right {
    width: 35%;
    padding: 20px
}

.contact_wrap .contact_right {
    flex: 1
}

.contact_wrap .contact_left {
    margin-right: 1%
}

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

@media all and (max-width: 639px) {
    .contact_wrap {
        margin-top: 30px;
        width: 94%;
        flex-direction: column
    }
    .contact_wrap .contact_left,
    .contact_wrap .contact_right {
        width: 100%;
        padding: 10px;
        font-size: 0.9em;
        letter-spacing: 0;
        font-weight: 700
    }
    .contact_wrap .contact_right {
        text-align: left
    }
    .contact_wrap .contact_left {
        margin-right: 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: #b0db72;
    border: 2px solid #99d149
}

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

.contact_bnr>li .bnr_mobile:hover {
    background: #dc552c
}

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

.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: #dc552c;
    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
    }
}

#l-footer {
    font-size: 1.4rem;
    position: relative;
    background: url(../img/bg_footer.jpg) no-repeat right top/cover;
    background: url(../img/footer-bg.png);
    color: #fff;
    margin-top: 180px
}

#l-footer:before {
    position: absolute;
    content: "";
    left: 0;
    top: -230px;
    width: 100%;
    height: 230px;
    background: url(../img/footer-illust.png) no-repeat right bottom/cover;
    opacity: 1;
    z-index: -1
}

#l-footer .footer-logo {
    position: absolute;
    right: 20%;
    top: -140px;
    max-width: 350px;
    transition: opacity 0.2s ease-in-out
}

#l-footer .footer-logo:hover {
    opacity: 0.8
}

@media all and (max-width: 1200px) {
    #l-footer .footer-logo {
        right: auto;
        left: 10px
    }
}

@media all and (max-width: 800px) {
    #l-footer .footer-logo {
        top: -100px;
        width: 200px
    }
}

#l-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 40px;
    position: relative;
    z-index: 4;
    text-align: center
}

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

@media all and (max-width: 800px) {
    #l-footer {
        margin-top: 120px
    }
    #l-footer:before {
        background-size: auto 120px
    }
}

@media all and (max-width: 639px) {
    #l-footer {
        font-size: 1.2rem
    }
    #l-footer .inner {
        width: 90%;
        padding: 20px
    }
}

.footer_navi {
    padding: 10px 0;
    max-width: 900px;
    margin: 0 auto
}

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

.footer_navi ul li {
    flex: 1 0 auto;
    margin-bottom: 4px;
    position: relative;
    text-align: left
}

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

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

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

.footer_navi ul li a:hover {
    color: #ffcd3c
}

.footer_navi ul li .dropdown {
    display: none
}

.flogo {
    max-width: 400px;
    text-align: center;
    margin: 0 auto 20px;
    min-height: 0
}

@media all and (max-width: 639px) {
    .flogo {
        margin: 0 auto 10px
    }
}

.address {
    font-size: 1.3rem;
    font-weight: normal;
    margin-top: 25px
}

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

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

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

#top-button-area {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

@media all and (max-width: 639px) {
    #top-button-area {
        flex-direction: column;
        top: 10px
    }
}

#top-board {
    width: 350px;
    margin-right: 15px
}

@media all and (max-width: 639px) {
    #top-board {
        width: 280px;
        margin: 0 auto 10px
    }
}

.top-button a {
    display: block;
    width: 240px;
    padding: 5px 0;
    text-align: center;
    background: #1760a0;
    color: #fefefe;
    margin-right: 15px
}

@media all and (max-width: 639px) {
    .top-button a {
        width: 280px;
        margin: 0 auto 10px
    }
}

.news-box {
    padding: 15px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    background: #fefefe;
    display: flex;
    align-items: flex-start
}

@media all and (max-width: 639px) {
    .news-box {
        flex-direction: column;
        width: 90%;
        padding: 10px
    }
}

.news-title {
    text-align: center;
    font-weight: bold;
    padding: 5px 20px;
    white-space: nowrap;
    border-bottom: 0;
    position: relative;
    color: #777
}

.news-title span {
    font-size: 4rem;
    font-weight: 400;
    color: #b0db72;
    text-transform: uppercase;
    display: block;
    margin-bottom: -10px
}

@media all and (max-width: 639px) {
    .news-title {
        padding: 5px 10px;
        width: 100%;
        transform: initial
    }
    .news-title span {
        font-size: 3rem
    }
}

.news-right {
    flex: 1;
    padding: 10px;
    background: #f6f4eb
}

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

.top-01 {
    background: #f6f4eb;
    margin-top: 180px;
    position: relative
}

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

@media all and (max-width: 800px) {
    .top-01 {
        margin-top: 250px;
        padding-top: 80px
    }
}

@media all and (max-width: 639px) {
    .top-01 {
        padding-top: 40px
    }
}

.top-02 {
    position: relative
}

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

.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: linear-gradient(to right, rgba(176, 219, 114, 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%;
    transform: translateX(-20%)
}

.top-img img {
    width: 100%
}

@media all and (max-width: 639px) {
    .top-img {
        width: 100%;
        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: flex;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: 0 auto;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

.top-menulist li {
    width: 24%;
    position: relative;
    text-align: center
}

.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;
    background: #fefefe;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1)
}

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

.top-menulist li:hover .top-menulist_img {
    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: #ffcd3c;
    color: #5a3a20;
    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: 290px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: 50% 90%
}

.top-menulist .top-menulist_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    display: block;
    border-radius: 10px 10px 0 0
}

@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;
    letter-spacing: 0.2rem;
    width: 90%;
    font-size: 2.2rem;
    color: #5a3a20;
    line-height: 1.4;
    background: #fff;
    border-radius: 80px 80px 0 0;
    padding: 10px 5px 5px
}

.top-menulist .top-menulist_ttl span {
    border-bottom: 1px dashed #dc552c
}

.top-menulist .top-menulist_ttl em {
    font-size: 12px;
    font-style: normal
}

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

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

.top-bnr-list {
    display: flex;
    
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.top-bnr-list li a {
    display: block;
    border: 1px solid rgba(90, 58, 32, 0.4);
    width: 100%
}

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

.top-bnr-list li:not(:last-child) {
    margin-right: 1%
}

@media all and (max-width: 639px) {
    .top-bnr-list li:not(:last-child) {
        margin-right: 2%
    }
}

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

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

.bnr-list-three{
    flex-wrap: wrap;
}

.top-restaurnat-logo {
    text-align: center;
    width: 280px;
    margin: -90px auto 15px
}

@media all and (max-width: 800px) {
    .top-restaurnat-logo {
        margin-top: -50px;
        width: 200px
    }
}

.bg-top-restaurant {
    padding-top: 80px;
    position: relative
}

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

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

.top-box1 {
    max-width: 900px;
    margin-right: auto;
    background: #fefefe;
    border-radius: 10px;
    border: 4px solid #f6f4eb;
    padding: 25px
}

.info-box {
    background: url(../img/bg-wood.png);
    padding: 30px 15px;
    border: 5px solid #d7ceb8
}

.sns-box {
    max-width: 1000px;
    margin: 0 auto
}

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

.l-2column {
    position: relative
}

.l-side {
    float: left;
    margin-left: 5%;
    width: 260px;
    background: #ff9234;
    top: 20px;
    position: sticky;
    z-index: 10;
    border: 3px solid #ffad67;
    border-radius: 10px
}

@media all and (max-width: 800px) {
    .l-side {
        float: none;
        max-width: 90%;
        width: auto;
        margin: 0 auto 20px;
        position: static
    }
}

@media all and (max-width: 639px) {
    .l-side {
        max-width: 95%
    }
}

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

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

.side-list {
    padding: 10px
}

.side-list li {
    padding: 8px;
    background: #fefefe
}

.side-list li a {
    color: #5a3a20;
    display: block;
    letter-spacing: 0
}

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

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

@media all and (max-width: 800px) {
    .side-list {
        display: flex;
        flex-wrap: wrap
    }
    .side-list li {
        width: 31%;
        margin-bottom: 10px;
        margin-right: 3%;
        line-height: 1.5
    }
    .side-list li:nth-child(3n) {
        margin-right: 0
    }
}

@media all and (max-width: 800px) and (max-width: 639px) {
    .side-list li:nth-child(3n) {
        margin-right: 2%
    }
}

@media all and (max-width: 639px) {
    .side-list {
        padding: 5px
    }
    .side-list li {
        width: 49%;
        margin-right: 2%
    }
    .side-list li:nth-child(2n) {
        margin-right: 0
    }
}

.l-main .single,
.l-main .mtitle {
    margin-left: calc(5% + 280px)
}

@media all and (max-width: 800px) {
    .l-main .single,
    .l-main .mtitle {
        margin-left: auto;
        margin-right: auto
    }
}

.section-head {
    width: 100%;
    height: 230px;
    margin-top: -30px;
    background: url(../img/head-sports.jpg) no-repeat center top/cover
}

.section-head.spa {
    background: url(../img/head-spa.jpg) no-repeat center top/cover
}

.section-head.other {
    background: url(../img/head-other.jpg) no-repeat center/cover
}

.section-head.shokudou {
    background: url(../img/head-shokudou.jpg) no-repeat center top/cover
}

@media all and (max-width: 639px) {
    .section-head {
        height: 160px
    }
}

.intro {
    margin: 20px 0;
    border-top: 2px solid #b0db72;
    border-bottom: 2px solid #b0db72;
    padding: 20px
}

@media all and (max-width: 639px) {
    .intro {
        padding: 18px 10px
    }
}

.eco-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.eco-list li {
    width: 31%;
    position: relative
}

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

.eco-list .eco-title {
    color: #57bb38;
    position: relative;
    font-size: 2.2rem;
    padding: 10px 10px 10px 90px
}

.eco-list .eco-title .eco-num {
    position: absolute;
    width: 80px;
    left: -10px;
    top: -20px;
    height: 56px;
    color: #fff;
    padding: 4px 0;
    background: #57bb38;
    font-size: 2rem;
    text-align: center;
    border-radius: 20px 0 20px 0
}

.eco-list .eco-title .eco-num span {
    font-size: 1.6rem;
    display: block;
    margin-bottom: -10px
}

@media all and (max-width: 639px) {
    .eco-list .eco-title {
        font-size: 1.7rem
    }
    .eco-list .eco-title .eco-num {
        font-size: 1.6rem;
        height: 60px
    }
    .eco-list .eco-title .eco-num span {
        font-size: 1.3rem
    }
}

.guidance-list {
    position: relative
}

.guidance-list:before {
    position: absolute;
    content: "";
    left: 35px;
    top: 0;
    width: 2px;
    height: 100%;
    z-index: 1;
    background: #ffcd3c
}

.guidance-list li {
    line-height: 1.6;
    padding: 12px 10px 12px 60px;
    background: #f0f0f0
}

.guidance-list li:nth-child(even) {
    background: #fff
}

@media all and (max-width: 639px) {
    .guidance-list li {
        font-size: 1.2rem;
        padding-left: 50px
    }
}

.pdf-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px
}

.pdf-list li {
    width: 31%;
    margin-right: 3%;
    margin-bottom: 10px
}

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

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

.pdf-list li a {
    display: block;
    background: #5a3a20;
    padding: 3px 5px;
    height: 65px;
    line-height: 65px;
    font-size: 1.5rem;
    text-align: center;
    color: #fff
}

.pdf-list li a:hover {
    background: #cc3636
}

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

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

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

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

.service-ttl {
    font-size: 6.2rem;
    font-family: "YakuHanMP", Lato, "Josefin Sans", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: normal;
    border-bottom: 0.9px solid #57bb38;
    position: relative;
    margin-left: 80px;
    margin-top: 50px
}

.service-ttl:before {
    position: absolute;
    content: "";
    left: -99px;
    bottom: 0;
    width: 100px;
    height: 150px;
    z-index: 1;
    border-right: 0.9px solid #57bb38;
    transform-origin: right bottom;
    transform: rotate(-40deg)
}

.service-ttl .eng {
    display: block;
    font-size: 4rem;
    color: #57bb38
}

@media all and (max-width: 800px) {
    .service-ttl {
        font-size: 4rem
    }
    .service-ttl .eng {
        font-size: 3rem
    }
}

@media all and (max-width: 639px) {
    .service-ttl {
        margin-left: 40px;
        font-size: 2.8rem
    }
    .service-ttl .eng {
        font-size: 2.2rem
    }
}

.service-list01 {
    margin-bottom: 35px
}

.service-list01 li {
    background: #002145;
    padding: 15px 12px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #fff;
    font-size: 1.1em
}

@media all and (max-width: 639px) {
    .service-list01 li {
        font-size: 1.3rem
    }
}

.service-list01 li .num {
    font-size: 3rem;
    position: absolute;
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background: #fefefe;
    line-height: 35px;
    text-align: center;
    left: 10px;
    color: #1760a0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    font-family: "Josefin Sans", sans-serif
}

.service-list01 li .smaller {
    display: block;
    font-size: 0.9em
}

.text-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff
}

#gallery-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative
}

@media all and (max-width: 639px) {
    #gallery-wrap {
        flex-direction: column
    }
}

.gallery-name {
    position: absolute;
    font-size: 4rem;
    left: 0;
    top: -20px;
    z-index: 4;
    letter-spacing: 1rem;
    font-weight: 400;
    display: inline-block;
    border: 2px solid #fff;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.95)
}

@media all and (max-width: 639px) {
    .gallery-name {
        font-size: 1.7rem;
        letter-spacing: 0.4rem
    }
}

.slider-gallery {
    width: 58%;
    margin: 0 auto;
    background: #fff;
    padding: 20px 0
}

@media all and (max-width: 639px) {
    .slider-gallery {
        width: 100%;
        padding: 0
    }
}

.slide-item {
    max-width: 100%;
    max-height: 550px
}

.slide-item img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    font-family: "object-fit: contain";
    display: block
}

#thumbnail-list {
    width: 40%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    #thumbnail-list {
        width: 100%;
        margin-top: 30px
    }
}

.thumbnail-item {
    flex: 0 1 31%;
    margin: 0 1% 10px;
    box-sizing: border-box;
    position: relative;
    height: 150px
}

.thumbnail-item:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.3s opacity linear
}

.thumbnail-item.thumbnail-current:after {
    opacity: 0
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

@media all and (max-width: 800px) {
    .thumbnail-item {
        height: 100px
    }
    .thumbnail-item img {
        height: 100px
    }
}

@media all and (max-width: 639px) {
    .thumbnail-item {
        height: 70px
    }
    .thumbnail-item img {
        height: 70px
    }
}

.delivery {
    margin-top: -30px
}

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

.catering-list li {
    position: relative;
    text-align: center
}

.price-box {
    margin: -10px auto 10px;
    position: relative;
    z-index: 2;
    max-width: 70%;
    background: #dc552c;
    border-radius: 30px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    padding: 5px 0
}

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

.box_type {
    background: rgba(255, 205, 60, 0.7);
    text-align: center;
    border-radius: 10px;
    padding: 18px 0;
    margin: 20px auto;
    max-width: 600px
}

.box_type .price-txt {
    color: #5a3a20
}

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

.single02 {
    margin: 0 auto;
    padding: 7em 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
    }
}

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.mbox {
    background: #fbfbfb;
    padding: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.mbox.transparent {
    background: none
}

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

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

@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: 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 #57bb38;
    box-shadow: 12px 12px rgba(176, 219, 114, 0.2);
    min-height: 250px
}

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

#side {
    float: right;
    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
    }
}

#col2-wrap {
    display: flex;
    flex-wrap: wrap;
    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;
        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 {
    line-height: 1.5;
    font-weight: bold;
    margin: 60px auto -15px;
    max-width: 1500px;
    font-size: 2rem;
    color: #444;
    position: relative;
    padding-left: 20px;
    z-index: 20
}

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

.mtitle .eng {
    font-size: 4rem;
    color: #b0db72;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3rem
}

.mtitle .ja {
    color: #6d4627;
    letter-spacing: 0.3rem;
    margin-bottom: -5px
}

.mtitle .ja:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -20px;
    width: 80px;
    height: 4px;
    z-index: 1;
    background-image: linear-gradient(to right, #ffcd3c 0%, #ff9234 100%);
    border-radius: 4px
}

.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.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;
    transform: none
}

@media all and (max-width: 1200px) {
    .mtitle {
        padding-left: 15px;
        margin-bottom: 0
    }
}

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

.mtitle2 {
    color: #5a3a20;
    font-size: 2.2rem;
    padding-left: 55px;
    background: url(../img/bg-border.png) repeat-x left bottom;
    position: relative;
    padding-bottom: 5px
}

.mtitle2:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 37px;
    left: 0;
    bottom: 0;
    background: url(../img/title-bg.png) no-repeat left bottom/contain
}

.mtitle2 span {
    font-size: 4rem;
    margin-right: 10px;
    color: #c5b897
}

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

.mtitle3 {
    font-size: 2.8rem;
    position: relative;
    letter-spacing: 0.2rem;
    text-align: center;
    color: #5a3a20;
    margin-bottom: 40px
}

.mtitle3:before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 60px;
    height: 3px;
    z-index: 1;
    background-image: linear-gradient(to right, #ffcd3c, #b0db72)
}

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

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

.mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: bold;
    margin-right: 5px;
    color: #b0db72
}

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

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

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

.mtitle4 span {
    position: relative;
    display: inline-block;
    min-width: 10%
}

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

.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: #ffcd3c
}

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

@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 #b0db72;
    margin: 8px 0;
    font-size: 1.1em;
    letter-spacing: 0.2rem
}

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

.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%;
    transform: translateY(-50%);
    color: #fff
}

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

.mtitle_box2 {
    background: #b0db72;
    font-size: 2rem;
    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;
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px
}

@media all and (max-width: 639px) {
    .mtitle_box2 {
        font-size: 15px;
        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
}

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

.mtext2 {
    font-size: 3rem;
    line-height: 1.4
}

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

@media all and (max-width: 800px) {
    .mtext2 .eng {
        font-size: 3rem
    }
}

@media all and (max-width: 639px) {
    .mtext2 {
        font-size: 2rem
    }
}

.mtitle_category {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700
}

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

.btn01 a {
    background: #ffcd3c;
    text-align: center;
    width: 300px;
    margin: 0 auto;
    color: #5a3a20;
    display: block;
    padding: 10px 5px;
    font-weight: bold;
    border-radius: 35px
}

.btn01 a:hover {
    background: #ff9234;
    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: #002d5e;
    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;
    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
    }
}

.news {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap
}

.news dt {
    width: 6em;
    padding: 3px 5px;
    background: #ff9234;
    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: url(../img/pattern-green01.jpg);
    text-align: center;
    font-weight: normal;
    border-radius: 20px
}

.news-bl dt:nth-of-type(2n) {
    background: url(../img/pattern-green02.jpg)
}

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

.news-bl dd a {
    color: #5a3a20
}

.news-bl dd:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dashed #a56a3b
}

@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 {
    position: relative;
    z-index: 1;
    background: url(../img/page-title01.jpg) no-repeat 80% 100%/cover;
    margin: 10px auto 0;
    border-bottom: 6px solid #f6f4eb
}

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

.page-title .inner .page-lead {
    text-align: left;
    color: lemonchiffon;
    margin-bottom: -50px;
    font-size: 2.2rem;
    position: relative;
    z-index: 4
}

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

@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
    }
}

.bg-skew {
    margin-top: 40px;
    padding: 80px 0 80px;
    position: relative;
    margin-bottom: -40px
}

.bg-skew:before {
    position: absolute;
    content: "";
    background: url(../img/bg-skew.jpg) no-repeat center/cover fixed;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform: skewY(2deg);
    top: 0;
    z-index: 1
}

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

@media all and (max-width: 639px) {
    .bg-skew {
        margin: 0 0 -20px
    }
}

.bg-skew .bg-skew_eng {
    color: rgba(255, 255, 255, 0.6);
    font-size: 8vw;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    z-index: 2;
    font-weight: 700;
    position: absolute;
    bottom: -5%;
    left: 0;
    line-height: 1
}

.bg-skew .bg-skew_eng:first-letter {
    transform: translateY(-1%)
}

@media all and (max-width: 800px) {
    .bg-skew .bg-skew_eng {
        font-size: 12vw;
        left: auto;
        right: -1.5%;
        bottom: 3%
    }
}

.bg-skew .bg-skew_box {
    margin: 0 5% 0 auto;
    color: #fff;
    padding: 30px;
    border-radius: 20px 0 20px 0;
    border: 2px solid #fefefe;
    position: relative;
    z-index: 3;
    max-width: 700px;
    font-weight: 700
}

.bg-skew .bg-skew_box:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    z-index: 2;
    border: 2px solid #fefefe;
    border-radius: 0 20px 0 20px
}

@media all and (max-width: 800px) {
    .bg-skew .bg-skew_box {
        margin: 0 auto
    }
}

@media all and (max-width: 639px) {
    .bg-skew .bg-skew_box {
        padding: 20px
    }
}

.bg-01 {
    position: relative
}

.bg-01:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: 97%;
    transform: translate(-50%, 0);
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right bottom, #fffacd 0%, #ff9234 100%)
}

@media all and (max-width: 639px) {
    .bg-01:before {
        width: 100%
    }
}

.bg-gradient {
    background-image: linear-gradient(to right bottom, rgba(254, 254, 254, 0.5) 0%, rgba(238, 238, 238, 0.7) 50%, rgba(170, 170, 170, 0.5) 100%)
}

.bg-base {
    background-image: linear-gradient(to right, rgba(176, 219, 114, 0.8) 0%, rgba(176, 219, 114, 0.6) 100%);
    position: relative
}

.bg-gray {
    background: #f6f4eb
}

.bg-beige {
    background: rgba(197, 184, 151, 0.8)
}

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

.tbl {
    width: 100%
}

.tbl .table-category th,
.tbl .table-category td {
    background: rgba(176, 219, 114, 0.5)
}

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

.tbl th {
    background: #f1f1e7;
    text-align: left
}

.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_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: #5a3a20
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
    background: rgba(176, 219, 114, 0.3)
}

.tbl-border {
    width: 100%
}

.tbl-border tr:nth-child(odd) th,
.tbl-border tr:nth-child(odd) td {
    background: rgba(87, 187, 56, 0.2)
}

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

.tbl-border th {
    width: 25%;
    border-right: 1px solid #002d5e
}

@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: left;
    width: 25%;
    position: relative;
    background: #ff9234;
    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: #ff9234;
    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 {
    position: relative;
    padding-bottom: 40.25%;
    height: 0;
    height: 400px;
    overflow: hidden
}

@media all and (max-width: 639px) {
    .ggmap {
        height: 250px
    }
}

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

.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: 30px
}

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

.list_check li a {
    color: #5a3a20
}

.list_check li .inner {
    font-weight: 700;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    background: rgba(197, 184, 151, 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: #dc552c
}

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

.list_check2 li {
    display: inline-block
}

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

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

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

.ol-list li {
    line-height: 2;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold
}

.ol-list li span {
    font-weight: 700;
    display: block;
    padding: 10px;
    line-height: 1.6
}

.ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: rgba(176, 219, 114, 0.3);
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-family: "YakuHanMP", Lato, "Josefin Sans", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2rem;
    color: #222;
    margin-right: 0.3em
}

@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
    }
}

.top-blogwrap .pages {
    display: none
}

.blog-wrap {
    display: flex;
    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 {
    transition: all 0.2s ease-in;
    background: #fefefe;
    box-shadow: 0 0 8px rgba(90, 58, 32, 0.1)
}

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

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

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

.blog-wrap .blog-detail {
    display: flex;
    flex-wrap: wrap;
    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;
    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-date2 {
    color: #fff;
    background: url(../img/pattern-green01.jpg);
    font-size: 0.9em;
    margin-bottom: 5px;
    padding: 5px 10px;
    text-align: right;
    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: #b0db72
}

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

.pages {
    display: flex;
    flex-wrap: wrap;
    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: #80b82f;
    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;
    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: #f6f4eb
}

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

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.color1 {
    color: #45942c
}

.color2 {
    color: #5a3a20
}

.color3 {
    color: #c5b897
}

.num a {
    color: #5a3a20;
    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: #ff9234
}

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

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

.coming {
    padding: 50px 0
}

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

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

.breadcrumb li a {
    color: #b0db72
}

.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 {
    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: #b0db72;
    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;
    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: #b0db72;
    border: 1px solid #b0db72;
    border-radius: 25px;
    color: #fff
}

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

.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: #b0db72
}

.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: 11px;
    height: 11px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #b0db72;
    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;
    box-shadow: 20px -1px #fff
}

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

.form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    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 #b0db72;
    border-bottom: 3px solid #b0db72;
    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;
    box-shadow: 41px 0px #fff;
    z-index: 2;
    margin: 0px;
    padding: 0px
}

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

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

.form label.checkbox_text input[type="checkbox"]:focus {
    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: flex;
    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 {
        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(197, 184, 151, 0.5);
    background: url(../img/bg01.jpg);
    padding: 15px
}

.thanks {
    padding: 40px;
    border: 3px solid #b0db72;
    box-shadow: 0 0 0 8px rgba(176, 219, 114, 0.2);
    max-width: 700px;
    margin: 0 auto;
    background: #fefefe
}

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

.shadow {
    box-shadow: 0 0 10px rgba(90, 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: #fff;
    margin-bottom: 30px
}

.mtitle_small:before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #ffcd3c;
    position: absolute;
    left: 0;
    bottom: -15px
}

.mtitle_small2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px
}

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

.gallery {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap
}

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

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

.gallery li a {
    background: rgba(197, 184, 151, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 170px
}

.gallery li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

.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(197, 184, 151, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 220px
}

.top-works-gallery li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

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

.jc-center {
    justify-content: center;
}

.list2 {
    display: flex;
    flex-wrap: wrap
}

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

.list2 li {
    width: 48%;
    margin: 0 1% 15px
}

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

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

.note {
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(176, 219, 114, 0.3)
}

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

.flow-dl dt {
    background: #b0db72;
    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: 10px
}

.blog-month ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

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

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

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

.price {
    font-weight: bold;
    color: #ffcd3c;
    font-size: 1.2em;
    padding-right: 5px
}

.greet-wrap {
    position: relative
}

.greet-wrap:before {
    position: absolute;
    content: "";
    width: 70%;
    height: 120%;
    left: 0;
    top: -20%;
    background: url(../img/greet-img.jpg) no-repeat center bottom/cover;
    z-index: -1;
    opacity: 0.7
}

@media all and (max-width: 800px) {
    .greet-wrap:before {
        height: 100%;
        top: -10%
    }
}

@media all and (max-width: 639px) {
    .greet-wrap:before {
        bottom: auto;
        top: -200px;
        width: 100%;
        height: 31%
    }
}

.greet-box {
    max-width: 800px;
    background: #fefefe;
    padding: 25px;
    position: relative;
    z-index: 2;
    margin: 40px 3% 0 auto;
    line-height: 1.9;
    color: #555;
    position: relative
}

@media all and (max-width: 800px) {
    .greet-box {
        width: 70%;
        padding: 15px;
        font-size: 1.1rem
    }
}

@media all and (max-width: 639px) {
    .greet-box {
        width: 95%;
        margin: 200px auto 0
    }
}

.greet_lead {
    font-size: 2.5rem;
    color: #99d149;
    text-align: center;
    margin-bottom: 10px
}

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

.list-center {
    display: flex;
    flex-wrap: wrap;
    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: flex;
    flex-wrap: wrap
}

.faq-dl .faq-inner {
    width: 49%;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(255, 205, 60, 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: #b0db72;
    margin-bottom: 10px
}

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

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

.top-btnlist {
    display: flex;
    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;
    transition: all 0.4s cubic-bezier(0.175, 0.4, 0.3, 1.1)
}

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

.top-btnlist li:hover .top-btnlist_img {
    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;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: 50% 90%
}

.top-btnlist .top-btnlist_img img {
    width: 100%;
    height: 100%;
    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: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

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

@media all and (max-width: 639px) {
    .box-column2 .box-container {
        width: 100%
    }
    .box-column2 .box-container.order {
        order: 2
    }
}

.box-column3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.box-column3 .box-container {
    width: 33%;
    padding: 10px;
    position: relative
}

@media all and (max-width: 639px) {
    .box-column3 .box-container {
        width: 100%
    }
    .box-column3 .box-container.order {
        order: 2
    }
}

.top-bg {
    position: relative
}

.top-bg01,
.top-bg02 {
    position: relative
}

.top-bg01:before,
.top-bg02:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: 95%;
    transform: translate(-50%, 0);
    height: 100%;
    z-index: -1
}

@media all and (max-width: 639px) {
    .top-bg01:before,
    .top-bg02:before {
        width: 100%
    }
}

.top-bg01 {
    margin-bottom: 40px
}

.top-bg01:before {
    background: url(../img/top-bg01.jpg) no-repeat center bottom/cover;
    opacity: 0.6
}

.top-bg02:before {
    position: absolute;
    content: "";
    background: url(../img/top-bg02.jpg) no-repeat center bottom/cover;
    opacity: 0.4
}

.bg-02 {
    background: #c5b897
}

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

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

.insta-card {
    display: flex;
    flex-wrap: wrap
}

.insta-card .card {
    width: 33.3%;
    margin-right: 1%;
    margin-bottom: 1%
}

.insta-card .card:nth-child(4n) {
    margin-right: 0
}

.insta-card .card a {
    display: block;
    position: relative;
    margin-bottom: 3px;
    border: 1px solid #ccc;
    box-sizing: border-box
}

.insta-card .card a:before {
    content: "";
    display: block;
    padding-top: 100%
}

.insta-card .card a img {
    position: absolute;
    top: 0;
    left: 0
}

@media screen and (max-width: 767px) {
    .insta-card .card {
        width: 32.5%
    }
    .insta-card .card:nth-child(4n) {
        margin-right: 1%
    }
    .insta-card .card:nth-child(3n) {
        margin-right: 0
    }
    .insta-card .card:nth-child(n+9) {
        display: block
    }
    .insta-card .card:nth-child(n+10) {
        display: none
    }
}

.form .form-contents {
    padding: 0;
    background: transparent;
}

.form .form-contents dl {
    margin-bottom: 0;
}

.form .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    color: #fff;
    background: #b0db72;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px;
}

.form .form-pattern-1 .submit-btn {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    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: #b0db72;
    border: 1px solid #b0db72;
    border-radius: 25px;
    color: #fff;
}

.form .form-pattern-1 .submit-btn:hover {
    background: #fff;
    color: #b0db72;
}

.form .form-pattern-1 .submit-btn::before {
    transition: all .2s ease-in-out 0s;
}

.form .form-pattern-1 .submit-btn:hover::before {
    background: #b0db72;
}