body {
    color: #323232;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 1.5rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.1rem;
    background-color: #fdfdfd
}

body:after {
    z-index: -1;
    content: "";
    max-width: 140px;
    width: 12%;
    height: 100%;
    background: #f1e5d6;
    position: absolute;
    top: 0px;
    left: 0
}

@media all and (max-width: 1200px) {
    body:after {
        width: 150px
    }
}

@media all and (max-width: 800px) {
    body:after {
        width: 95px
    }
}

@media all and (max-width: 639px) {
    body:after {
        width: 35px;
        z-index: -3
    }
}

a {
    color: #7f623b;
    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
}

h2,
h3 {
    line-height: 1.4;
    font-weight: 400
}

.mincho {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif
}

#wrapper {
    overflow: hidden
}

@-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 #b89668;
    border-radius: 50%;
    border-right: 1px solid rgba(184, 150, 104, 0.2);
    border-top: 1px solid rgba(184, 150, 104, 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)
    }
}

@-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%;
    padding-bottom: 5px;
    background: #f1e5d6
}

#l-header .pgttl {
    position: relative;
    top: 5px;
    line-height: 1.4;
    color: #694732;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
    animation: fadeIn 6s ease 0s 1 normal;
    -webkit-animation: fadeIn 6s ease 0s 1 normal
}

@media all and (max-width: 1200px) {
    #l-header .pgttl {
        display: none
    }
}

#l-header .inner {
    max-width: 97%;
    margin: 0 auto;
    min-width: 1024px;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

@media screen and (max-width: 1300px) {
    #l-header .inner {
        max-width: 99%
    }
}

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

#l-header.scrolled {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    -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(245, 236, 225, 0.95);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1)
}

#l-header.scrolled .pgttl {
    display: none
}

#l-header.scrolled #logo {
    width: 260px
}

@media all and (max-width: 639px) {
    #l-header.scrolled {
        background: none
    }
}

#l-header.scrolled .header-right_upper {
    display: none
}

#logo {
    padding: 5px;
    width: 300px
}

@media screen and (max-width: 1350px) {
    #logo {
        width: 260px
    }
}

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

.header-wrap {
    position: absolute;
    z-index: 500;
    left: 0;
    top: 0;
    padding: 20px 20px 30px;
    background: #b89668
}

.header-right_upper {
    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-top: 5px;
    margin-left: auto
}

.header-right_upper span {
    font-size: 90%
}

.header-right {
    margin-left: auto;
    margin-right: 20px
}

@media all and (max-width: 1200px) {
    .header-right {
        display: none
    }
}

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

.header-right_contact {
    position: relative;
    margin-right: 10px
}

.header-right_recruit {
    margin-left: 10px;
    width: 150px
}

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

.header-right_tel a,
.header-right_mail a,
.header-right_access a,
.header-right_reservation a {
    display: block;
    padding: 6px 0;
    line-height: 1.4;
    text-align: center;
    color: #694732;
    font-weight: 600;
    background: #f6d436
}

.header-right_tel a span,
.header-right_mail a span,
.header-right_access a span,
.header-right_reservation a span {
    padding-right: 5px
}

.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_access a:hover,
.header-right_reservation a:hover {
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.header-right_tel a {
    padding: 0;
    display: inline-block;
    color: #b89668;
    background: transparent;
    font-size: 2.2rem;
    border: 0
}

.header-right_tel a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f879";
    font-weight: 700;
    margin-right: 5px
}

.header-right_tel a:hover {
    color: #7f623b
}

.header-right_mail a,
.header-right_access a,
.header-right_reservation a {
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px
}

.header-right_mail {
    margin-right: 10px
}

.header-right_mail a {
    background: #c0a279;
    color: #fff;
    border-radius: 5px
}

.header-right_mail a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 700;
    margin-right: 5px
}

.header-right_mail a:hover {
    background: #b08a57
}

.header-right_reservation {
    margin-right: 10px
}

.header-right_reservation a {
    color: #fff;
    background: #b89668
}

.header-right_reservation a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f073";
    font-weight: 700;
    margin-right: 5px
}

.header-right_reservation a:hover {
    background: #c5b981
}

.header-right_access a {
    color: #fff;
    background: #4e4233
}

.header-right_access a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    font-weight: 700;
    margin-right: 5px
}

.header-right_access a:hover {
    background: #6d5c47
}

#header_nav {
    position: relative;
    z-index: 20;
    width: 550px
}

#header_nav ul {
    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
}

#header_nav ul li a {
    display: block;
    position: relative;
    line-height: 1.4;
    font-size: 1.5rem;
    color: #694732;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.15rem;
    padding: 10px 0
}

#header_nav ul li a:after {
    position: absolute;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #c5b981;
    border-radius: 5px;
    content: "";
    bottom: 4px;
    margin-left: -4px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header_nav ul li a span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
    color: #b89668;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal
}

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
    color: #6d5c47
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
    opacity: 1
}

#header_nav ul li.hd-none {
    display: none
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 54px;
    z-index: 310;
    background: #b89668
}

#header_nav .dropdown .dropdown-li {
    padding: 3px 5px;
    margin: 3px 0
}

#header_nav .dropdown .dropdown-li a {
    letter-spacing: 0.15em;
    display: block;
    width: 130px;
    text-align: center;
    font-size: 1.3rem;
    padding: 5px 0;
    border-right: 0;
    color: #694732;
    border-radius: 5px;
    background: #fff
}

#header_nav .dropdown .dropdown-li a mn {
    display: block;
    font-size: 12px
}

#header_nav .dropdown .dropdown-li a:after {
    display: none
}

#header_nav .dropdown .dropdown-li a:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: #fff5d9
}

#page {
    padding: 0;
    position: relative;
    z-index: 2;
    left: 0;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

#drawernav {
    background: #fff;
    overflow: auto;
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    height: 100%;
    color: #b89668;
    z-index: 9999899998;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
    box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

#drawernav .drawernav_ttl {
    text-align: center;
    font-size: 1.6rem;
    height: 50px;
    background: #b89668;
    color: #fff;
    line-height: 50px;
    letter-spacing: 0.2rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal
}

#drawernav ul.phone_navi {
    list-style: none;
    padding: 0
}

#drawernav ul.phone_navi:first-child {
    margin-top: 60px
}

#drawernav ul.phone_navi li {
    position: relative;
    border-bottom: 1px solid #b89668
}

#drawernav ul.phone_navi li a {
    color: #a17d4c;
    font-size: 1.3rem;
    display: block;
    padding: 8px;
    text-decoration: none;
    line-height: 1.3;
    font-weight: 600
}

#drawernav ul.phone_navi li a span {
    font-weight: 400;
    font-size: 1.1rem;
    display: block;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    color: #c5b981
}

#drawernav ul.phone_navi li a:hover {
    color: #b89668
}

#drawernav ul.phone_navi li p {
    color: #a17d4c;
    font-size: 1.3rem;
    display: block;
    padding: 8px;
    text-decoration: none;
    line-height: 1.3;
    font-weight: 600
}

#drawernav ul.phone_navi li p span {
    font-weight: 400;
    font-size: 1.1rem;
    display: block;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    color: #c5b981
}

#drawernav ul.phone_navi li p:hover {
    color: #b89668
}

#drawernav ul.phone_navi li ul li:last-child {
    border-bottom: 0px
}

#drawernav ul.phone_navi li ul li a {
    font-size: 1.1rem;
    color: #b89668;
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    border-top: none;
    border-bottom: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

#drawernav ul.phone_navi li ul li a:before {
    content: "・";
    margin-right: 3px
}

#drawernav ul.phone_navi li ul img {
    display: block;
    width: 90%;
    padding: 5px 0;
    margin: 0 auto
}

#drawernav ul.phone_navi .dropdown {
    display: none;
    background: #b89668
}

#drawernav ul.phone_navi .dropdown .dropdown-li {
    padding: 5px 5px;
    border-bottom: 1px solid #e3d6c6
}

#drawernav ul.phone_navi .dropdown .dropdown-li a {
    display: block;
    font-size: 1.3rem;
    padding: 5px 0;
    color: #ffffff
}

#drawernav ul.phone_navi .dropdown .dropdown-li a mn {
    display: block;
    font-size: 12px
}

#drawernav ul.phone_navi .dropdown .dropdown-li a:after {
    display: none
}

#drawernav ul.phone_navi .dropdown .dropdown-li a:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: #fff5d9
}

#drawernav .open_btn {
    position: absolute;
    font-weight: 900;
    font-size: 1.8rem;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#drawernav img {
    display: block;
    width: 90%;
    padding: 5px 0;
    margin: 0 auto
}

.fixed-content {
    right: inherit;
    width: 100%;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

#overlay {
    z-index: -1;
    opacity: 0;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

.humberger {
    font-size: 2.2rem;
    cursor: pointer;
    color: #b89668;
    text-align: center;
    line-height: 1.3;
    position: absolute
}

.humberger span {
    font-size: 1.1rem;
    display: block
}

header .humberger {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #b89668;
    color: #fff;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.drawer-opened .humberger {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.drawer-opened .close {
    padding: 10px 16px !important
}

.drawer-opened #page {
    left: -240px;
    -webkit-box-shadow: 1px 0 2px #000;
    box-shadow: 1px 0 2px #000
}

.drawer-opened .fixed-content {
    left: -240px
}

.drawer-opened #drawernav {
    left: 0
}

.drawer-opened .humberger .icon-menu {
    opacity: 0
}

.drawer-opened .humberger .icon-menu {
    opacity: 0
}

.drawer-opened #overlay {
    opacity: 0.5;
    right: -240px;
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%
}

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

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

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

@media all and (max-width: 1200px) {
    #page-top {
        bottom: 72px
    }
}

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

.swiper-slide {
    overflow: hidden
}

.slide-img {
    overflow: hidden;
    height: calc(100vh - 150px);
    width: 100%
}

.slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

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

    .slide-img img {
        -o-object-fit: cover;
        object-fit: cover
    }
}

@media all and (max-width: 800px) {
    .slide-img {
        height: 42vh;
        width: calc(100% - 20px)
    }
}

@media all and (max-width: 639px) {
    .slide-img {
        height: 40vh;
        width: calc(100% - 5px)
    }
}

.slide_bg {
    width: 100%;
    position: relative
}

.slide_bg:before {
    content: "";
    display: block;
    width: 50%;
    height: calc(100vh - 170px);
    position: absolute;
    z-index: -1;
    background: #f1e5d6;
    right: 0;
    margin: auto
}

@media all and (max-width: 1200px) {
    .slide_bg:before {
        height: 46vh
    }
}

@media all and (max-width: 800px) {
    .slide_bg:before {
        height: 38vh
    }
}

@media all and (max-width: 639px) {
    .slide_bg:before {
        height: 36vh
    }
}

#slideshow {
    width: calc(100% - 160px);
    position: relative;
    right: 20px;
    margin-left: auto
}

@media all and (max-width: 1200px) {
    #slideshow {
        width: calc(100% - 145px);
        right: 5px
    }
}

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

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

#catch {
    width: 260px;
    z-index: 10;
    position: absolute;
    left: 5%;
    top: 15%
}

@media all and (max-width: 800px) {
    #catch {
        width: 20%;
        max-width: 240px;
        top: 10%
    }
}

@media all and (max-width: 639px) {
    #catch {
        width: 35%;
        max-width: 160px
    }
}

#catch2 {
    position: absolute;
    top: 0;
    left: 35px
}

@media screen and (max-width: 1350px) {
    #catch2 {
        width: 40px;
        left: 25px
    }
}

@media screen and (max-width: 1300px) {
    #catch2 {
        width: 40px;
        left: 15px
    }
}

@media all and (max-width: 1200px) {
    #catch2 {
        left: 45px
    }
}

@media all and (max-width: 800px) {
    #catch2 {
        width: 35px;
        left: 25px
    }
}

@media all and (max-width: 639px) {
    #catch2 {
        width: 20px;
        left: 5px
    }
}

.contact_lead {
    font-size: 1.3em;
    color: #694732;
    text-align: center
}

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

.contact_wrap {
    max-width: 1200px;
    margin: 0 auto;
    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_left,
.contact_wrap .contact_right {
    width: 49%;
    padding: 20px
}

.contact_wrap .contact_right {
    text-align: center
}

.contact_wrap .contact_right .calendar-box {
    display: block
}

.contact_wrap .contact_right div.calendar {
    width: 100%
}

.contact_wrap .contact_left {
    margin-right: 2%;
    border-right: 1px solid #fff
}

@media all and (max-width: 800px) {
    .contact_wrap {
        margin-top: 30px;
        width: 94%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contact_wrap .contact_left,
    .contact_wrap .contact_right {
        width: 100%;
        padding: 0;
        font-size: 0.9em;
        letter-spacing: 0
    }

    .contact_wrap .contact_left {
        margin-right: auto;
        border-right: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid #fff;
        margin-bottom: 10px
    }
}

.contact_bnr li .bnr_tel {
    background: transparent;
    white-space: nowrap;
    color: #c5b981;
    font-size: 3.5rem;
    width: auto
}

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

.contact_bnr li .bnr_tel:hover {
    color: #b89668
}

@media all and (max-width: 639px) {
    .contact_bnr li .bnr_tel {
        font-size: 2.3rem
    }
}

.contact_bnr li .bnr_mobile {
    background: #b89668;
    border: 1px solid #a17d4c
}

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

.contact_bnr li .bnr_mobile:hover {
    color: #00a8ea
}

.contact_bnr li .bnr_fax {
    background: #fbf8ef;
    border: 1px solid #aaa;
    color: #333
}

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

.contact_bnr li .bnr_mail {
    background: #c5b981;
    color: #fefefe
}

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

.contact_bnr li .bnr_mail:hover {
    background: #fb8312
}

.contact_bnr li a,
.contact_bnr li span {
    display: block;
    padding: 5px 15px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    max-width: 300px;
    width: 90%
}

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

@media all and (max-width: 639px) {

    .contact_bnr li a,
    .contact_bnr li span {
        width: 100%;
        font-size: 1.5rem
    }
}

@media all and (max-width: 800px) {
    .contact_bnr li {
        margin: 0 auto 10px
    }
}

footer {
    background: #f1e5d6;
    padding-top: 5px
}

#l-footer {
    position: relative
}

#l-footer .yoyaku-txt {
    text-align: center;
    margin-bottom: -10px
}

#l-footer .yoyaku-txt span {
    background: #fb8312;
    color: #fefefe;
    padding: 4px 8px
}

#l-footer .contact-ttl {
    text-align: center;
    margin-bottom: 10px
}

#l-footer .contact-ttl span {
    background: #222;
    padding: 4px 15px;
    border-radius: 20px
}

#l-footer .footer-box {
    border-radius: 15px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 25px 15px;
    background: url(../img/bg-foot.jpg);
    position: relative;
    z-index: 5;
    overflow: hidden
}

@media all and (max-width: 1200px) {
    #l-footer .footer-box {
        max-width: 900px
    }
}

#l-footer .footer-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #694732;
    width: 100%;
    height: 100%;
    opacity: 0.7
}

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

    #l-footer .footer-box {
        padding: 30px 15px
    }
}

.footer-txt-wrap {
    position: relative;
    z-index: 4;
    margin: 20px auto;
    font-weight: bold;
    color: #fefefe
}

.footer-map {
    height: 250px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 15px rgba(105, 71, 50, 0.1);
    box-shadow: 0 0 15px rgba(105, 71, 50, 0.1);
    width: 100%
}

@media all and (max-width: 639px) {
    .footer-map {
        height: 180px
    }
}

.sns-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;
    margin-bottom: 10px
}

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

.sns-list li a {
    color: #fff;
    display: block;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 40px
}

.sns-list li a.fb {
    background-color: #1877f2
}

.flogo {
    max-width: 340px;
    width: 90%;
    text-align: center;
    margin: 20px auto 10px
}

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

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

.footer_navi {
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    font-size: 90%
}

.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 li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    text-align: center;
    margin: 0 0 4px;
    border-left: 1px solid #6d5c47
}

.footer_navi li:last-child {
    border-right: 1px solid #6d5c47
}

.footer_navi li a {
    color: #694732;
    font-size: 1.5rem;
    position: relative;
    font-weight: bold
}

.footer_navi li a span {
    display: none
}

.footer_navi li a:hover {
    color: #b89668
}

.footer_navi li .dropdown {
    display: none
}

.clm2 {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.clm2 .child {
    width: 57%
}

.clm2 .child.clm2-img {
    width: 41%;
    text-align: center
}

.clm2 .child.clm2-img img {
    max-width: 180px
}

@media all and (max-width: 639px) {
    .clm2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .clm2 .child {
        width: 100%
    }

    .clm2 .child.clm2-img {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 20px
    }

    .clm2 .child.clm2-img img {
        max-width: 140px
    }
}

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

@media all and (max-width: 800px) {
    .clm2 .child {
        width: 100%
    }
}

.column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.column2 .child1 {
    width: 35%
}

.column2 .child2 {
    width: 62%
}

@media all and (max-width: 800px) {

    .column2 .child1,
    .column2 .child2 {
        width: 100%;
        border: 0
    }
}

.address {
    text-align: center;
    font-size: 85%
}

.copyright {
    padding: 15px 0;
    background: #b89668;
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal
}

@media all and (max-width: 1200px) {
    .copyright {
        font-size: 12px;
        padding-bottom: 80px
    }
}

.top-col2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1000px;
    margin: 40px auto
}

.top-col2-wrap .top-col2-left {
    width: 15%
}

.top-col2-wrap .top-col2-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 70px
}

@media all and (max-width: 800px) {
    .top-col2-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .top-col2-wrap .top-col2-left {
        width: 100%
    }

    .top-col2-wrap .top-col2-right {
        width: 100%;
        margin: 30px 0 0
    }
}

.top-intro {
    position: relative;
    margin: auto
}

.top-intro:before {
    left: 3%;
    top: 0;
    background: url(../img/bg-intro.jpg) no-repeat left top/cover;
    opacity: 1;
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    z-index: 1
}

@media all and (max-width: 639px) {
    .top-intro:before {
        width: 120%;
        height: 30%;
        left: 0
    }
}

.top-lead {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    position: absolute;
    left: -15%;
    top: -8%;
    font-size: 3rem;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 400;
    letter-spacing: 0.2rem;
    color: #b89668;
    line-height: 1.5;
    text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff
}

.top-lead span {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    display: block;
    color: #6d5c47
}

@media all and (max-width: 800px) {
    .top-lead {
        font-size: 2.4rem;
        left: -20%;
        white-space: nowrap
    }
}

@media all and (max-width: 639px) {
    .top-lead {
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        font-size: 1.8rem;
        left: 0;
        top: -120px
    }
}

.top-box {
    max-width: 60%;
    background: rgba(238, 238, 238, 0.6);
    -webkit-box-shadow: 2px 2px 10px -3px rgba(105, 71, 50, 0.2);
    box-shadow: 2px 2px 10px -3px rgba(105, 71, 50, 0.2);
    padding: 40px;
    position: relative;
    z-index: 1;
    margin: 40px 0 20px auto;
    position: relative
}

@media all and (max-width: 800px) {
    .top-box {
        max-width: 70%;
        padding: 15px;
        background: rgba(242, 242, 242, 0.8)
    }
}

@media all and (max-width: 639px) {
    .top-box {
        max-width: 95%;
        background: rgba(244, 244, 244, 0.9);
        margin: 140px auto 0
    }
}

.top-intro_txt {
    line-height: 1.6
}

.top-intro_txt p:not(:last-child) {
    margin-bottom: 15px
}

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

.top-sec2 {
    position: relative
}

.top-sec2:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    height: 70%;
    background-image: -webkit-gradient(linear, left top, right top, from(#ebebeb), to(#d2d2d2));
    background-image: linear-gradient(to right, #ebebeb 0%, #d2d2d2 100%);
    opacity: 0.7;
    z-index: -1
}

@media all and (max-width: 639px) {
    .top-sec2:before {
        height: 90%;
        width: calc(100% - 40px)
    }
}

.top-sec3 {
    background: url(../img/bg-02.jpg) no-repeat center/cover
}

.top-info1 {
    background: #fefefe;
    padding: 25px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1)
}

.top-info2 {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    font-size: 98%;
    font-weight: normal
}

@media all and (max-width: 639px) {
    .top-info2 {
        padding: 15px;
        background: rgba(255, 255, 255, 0.9)
    }
}

/* .news-box {
    margin: -30px auto 40px;
    max-width: 1200px;
    width: 95%;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(248, 248, 248, 0.95);
    -webkit-box-shadow: 1px 1px 8px rgba(105, 71, 50, 0.1);
    box-shadow: 1px 1px 8px rgba(105, 71, 50, 0.1)
} */

.news-box {
    margin: -30px auto 40px;
    max-width: 1200px;
    width: 95%;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(248, 248, 248, 0.95);
    -webkit-box-shadow: 1px 1px 8px rgba(105, 71, 50, 0.1);
    box-shadow: 1px 1px 8px rgba(105, 71, 50, 0.1);
    top: 100px;
    margin-bottom: 180px;
}

.news-box02 {
    margin-bottom: 80px;
}

.blog-box {
    background: rgba(248, 248, 248, 0.95)!important
}

@media all and (max-width: 1200px) {
    .news-box {
        margin: 20px auto;
        max-width: 800px
    }
}

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

.news-title {
    text-align: center;
    font-weight: 700;
    padding: 10px 20px;
    width: 220px;
    color: #b89668;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center
}

.news-title span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0px;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    color: #c5b981
}

@media all and (max-width: 639px) {
    .news-title {
        padding: 5px 10px;
        width: 100%
    }

    .news-title span {
        font-size: 2.2rem
    }
}

.news-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px
}

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

.greet-txt {
    letter-spacing: 0;
    line-height: 2;
    padding: 15px;
    font-weight: normal
}

.title-mini {
    color: #c5b981;
    font-size: 1.15em;
    letter-spacing: 0.2rem
}

.comment-txt {
    font-weight: normal;
    font-size: 0.9em
}

.staff-name {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #694732;
    border-bottom: 0.9px solid #ccc;
    margin-bottom: 20px
}

.staff-name .upper {
    font-size: 1.5rem;
    color: #444
}

.staff-name .sub {
    color: #b89668;
    padding-left: 15px;
    font-size: 1.7rem;
    font-weight: 400
}

@media all and (max-width: 639px) {
    .staff-name {
        font-size: 2.2rem;
        line-height: 1.4
    }

    .staff-name .upper {
        font-size: 1.2rem
    }

    .staff-name .sub {
        font-size: 1.5rem;
        display: block;
        padding-left: 0
    }
}

.prod-name {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #694732;
    border-bottom: 0.9px solid #ccc;
    margin-bottom: 20px;
    line-height: 1.4
}

.prod-name .upper {
    font-size: 1.5rem;
    color: #444
}

.prod-name .sub {
    color: #b89668;
    font-size: 1.7rem;
    font-weight: 400;
    display: block
}

.prod-name mns {
    font-size: 1.6rem
}

@media all and (max-width: 639px) {
    .prod-name {
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.6
    }

    .prod-name mns {
        font-size: 1.4rem
    }

    .prod-name .upper {
        font-size: 1.2rem;
        display: block
    }

    .prod-name .sub {
        font-size: 1.5rem;
        display: block;
        padding-left: 0
    }
}

.price {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: bold;
    text-align: right;
    font-size: 1.2rem;
    padding-right: 5px
}

.price span {
    font-size: 1.8rem;
    line-height: 1.5
}

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

    .price span {
        font-size: 1.5rem;
        line-height: 1.5
    }
}

.price.price2 {
    font-size: 2.5rem
}

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

.course-title {
    text-align: center;
    font-size: 3rem;
    color: #392c1b;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    margin: -60px auto 50px
}

.course-title span {
    display: block;
    line-height: 1.4;
    font-size: 1.8rem;
    color: #7f623b
}

.course-title:before {
    position: absolute;
    content: "";
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -15px;
    z-index: 1;
    background: #b89668;
    width: 80px;
    height: 2px
}

@media all and (max-width: 639px) {
    .course-title {
        font-size: 2.2rem;
        margin-top: 0
    }
}

.treat-head-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.treat-head-list>li {
    width: calc(100% / 6);
    padding: 0 5px;
    line-height: 1.5
}

.treat-head-list>li figure {
    width: 80%;
    margin: 0 auto 5px
}

@media all and (max-width: 800px) {
    .treat-head-list {
        max-width: 600px;
        margin: 0 auto
    }

    .treat-head-list>li {
        width: calc(100% / 3);
        margin-bottom: 15px
    }
}

@media all and (max-width: 639px) {
    .treat-head-list>li {
        font-size: 13px
    }
}

.text-link {
    background: #fb8312;
    color: #fefefe;
    padding: 4px 8px
}

.text-link:before {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: 700;
    margin-right: 5px
}

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

.treat-list2>li {
    background: #f0f0f0;
    padding: 8px;
    width: calc((100% / 3) - 10px);
    margin: 0 15px 20px 0
}

.treat-list2>li:nth-child(3n) {
    margin-right: 0
}

@media all and (max-width: 800px) {
    .treat-list2>li {
        width: 48%;
        margin-right: 4%
    }

    .treat-list2>li:nth-child(3n) {
        margin-right: 4%
    }

    .treat-list2>li:nth-child(2n) {
        margin-right: 0
    }
}

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

    .treat-list2>li:nth-child(2n),
    .treat-list2>li:nth-child(3n) {
        margin-right: auto
    }
}

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

.single.phalf {
    padding: 30px 0
}

@media all and (max-width: 1200px) {
    .single {
        width: 94%
    }
}

.single02 {
    margin: 0 auto;
    padding: 80px 0
}

.single03 {
    max-width: 1500px;
    width: 95%;
    margin: 0 auto;
    padding: 80px 0;
    position: relative
}

.single04 {
    max-width: 1200px;
    width: 90%;
    margin: 80px auto 0;
    padding: 0;
    position: relative
}

@media all and (max-width: 639px) {
    .single04 {
        margin: 40px auto 0;
        width: 96%
    }
}

.single05 {
    width: calc(100% - 100px);
    margin: 0 auto;
    padding: 0;
    position: relative
}

@media all and (max-width: 639px) {
    .single05 {
        width: calc(100% - 40px)
    }
}

.margin-top {
    margin-top: -80px
}

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

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.mbox {
    background: #fefefe;
    padding: 40px 30px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    margin-right: auto
}

.mbox.transparent {
    background: none
}

.mbox.opa6 {
    background: rgba(254, 254, 254, 0.8)
}

.mbox.box-y {
    background: #fefefe;
    -webkit-box-shadow: 0 0 8px rgba(184, 150, 104, 0.5);
    box-shadow: 0 0 8px rgba(184, 150, 104, 0.5);
    border-radius: 10px
}

.mbox.box-y a img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.mbox.box-y a img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

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

.mbox2 {
    background: #fcf5f6;
    margin-right: auto;
    margin-left: auto;
    max-width: 1500px;
    padding: 30px
}

.mbox2.box_beige {
    background: rgba(252, 252, 252, 0.8);
    border: 2px solid #fbf8ef;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

.container-box {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto
}

.bg-grid {
    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 {
    background: url(../img/map.png) no-repeat right bottom
}

@media all and (max-width: 639px) {
    .bg-map {
        background-size: auto 200px;
        background-position: right top
    }
}

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

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

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

#main2 a {
    text-decoration: underline
}

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

@media all and (max-width: 639px) {
    #main2 .mbox {
        background: #fefefe;
        padding: 5px
    }
}

#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: 100%;
        position: static;
        margin-top: 40px
    }
}

#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 {
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 48px;
    font-size: 1.8rem;
    position: relative;
    text-align: center
}

.mtitle span {
    display: block;
    font-size: 3.2rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: -5px;
    color: #a17d4c;
    line-height: 1.8;
    letter-spacing: 0.2rem
}

.mtitle:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    height: 3px;
    width: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: -webkit-gradient(linear, left top, right top, from(#6d5c47), color-stop(#f6d436), to(#c5b981));
    background-image: linear-gradient(to right, #6d5c47, #f6d436, #c5b981)
}

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

.mtitle.white span {
    color: #fff
}

.mtitle.white:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    height: 3px;
    width: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: -webkit-gradient(linear, left top, right top, from(#c5b981), to(#f6d436));
    background-image: linear-gradient(to right, #c5b981, #f6d436)
}

.mtitle.center {
    text-align: center
}

.mtitle.center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.mtitle.mtitle_left {
    text-align: left
}

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

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

    .mtitle span {
        font-size: 2.6rem;
        line-height: 1.6;
        margin-bottom: 0px
    }
}

.mtitle.af_none {
    text-align: left;
    color: #694732
}

.mtitle.af_none.center {
    text-align: center
}

.mtitle.af_none span {
    color: #c5b981
}

.mtitle.af_none:after {
    content: none;
    left: 0;
    bottom: 0;
    height: 0;
    width: 0;
    background-image: none
}

.mtitle2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 5px;
    color: #222;
    border-bottom: 2px solid;
    -o-border-image: linear-gradient(to right, rgba(184, 150, 104, 0.6) 0%, #c5b981 100%);
    border-image: -webkit-gradient(linear, left top, right top, from(rgba(184, 150, 104, 0.6)), to(#c5b981));
    border-image: linear-gradient(to right, rgba(184, 150, 104, 0.6) 0%, #c5b981 100%);
    border-image-slice: 1;
    line-height: 1.3;
    font-weight: 600
}

.mtitle2 span {
    font-size: 2.6rem;
    margin-right: 15px;
    color: #b89668;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal
}

.mtitle2 b {
    font-size: 2.6rem;
    margin-right: 15px;
    color: #b89668;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif
}

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

    .mtitle2 span,
    .mtitle2 b {
        font-size: 1.8rem;
        display: block
    }
}

.mtitle3 {
    font-size: 1.8rem;
    font-weight: bold !important;
    color: #8c5e42;
    display: block;
    border-bottom: 1px solid #6d5c47;
    padding-bottom: 5px;
    margin-bottom: 20px
}

.mtitle3:before {
    content: "+";
    margin-right: 5px;
    color: rgba(197, 185, 129, 0.7)
}

.mtitle3 b {
    color: #694732;
    font-size: 90%;
    font-weight: normal;
    margin-left: 5px
}

.mtitle3 span {
    font-size: 90%;
    color: #694732;
    font-weight: normal;
    display: block
}

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

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

.mtitle-bll {
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid #ebebeb;
    position: relative;
    padding: 5px;
    padding-left: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #7f623b
}

.mtitle-bll span {
    font-weight: normal
}

.mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #b89668
}

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

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

.mtitle4 {
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.1rem
}

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

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

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

@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_big2 {
    line-height: 1.5;
    font-weight: bold;
    font-size: 2.4rem;
    position: relative;
    color: #b89668;
    letter-spacing: 0.2rem
}

.mtitle_big2 span {
    font-size: 5rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.8;
    margin-right: 20px
}

.mtitle_big2.blc span {
    display: block;
    margin-right: 0
}

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

    .mtitle_big2 span {
        font-size: 3.5rem;
        line-height: 1.6;
        margin-left: 0;
        display: block
    }
}

.mtitle_big {
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 48px;
    font-size: 2.4rem;
    position: relative;
    text-align: center;
    color: #b89668;
    letter-spacing: 0.2rem
}

.mtitle_big span {
    display: block;
    font-size: 5rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: -5px;
    line-height: 1.5
}

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

.mtitle_big.center {
    text-align: center
}

.mtitle_big.center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

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

    .mtitle_big span {
        font-size: 3rem;
        line-height: 1.2;
        display: block;
        margin-bottom: 10px
    }
}

.mtitle-vertical {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    line-height: 1.4;
    font-size: 1.8rem;
    font-weight: 600;
    max-height: 25em
}

.mtitle-vertical span {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3rem;
    display: block;
    color: #b89668
}

@media all and (max-width: 639px) {
    .mtitle-vertical {
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        font-size: 1.3rem
    }

    .mtitle-vertical span {
        font-size: 2rem
    }
}

.mtitle_sub {
    padding-left: 0.5em;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    border-left: 6px solid #d9c6ad;
    margin: 15px 0;
    font-size: 1.7rem;
    color: #694732;
    padding: 5px 0 5px 0.5em
}

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

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

.mtitle_box {
    background: #6d5c47;
    color: #fff;
    font-size: 2rem;
    position: relative;
    padding: 10px;
    margin-bottom: 15px;
    font-weight: bold
}

.mtitle_box.small-p {
    padding: 5px 10px;
    line-height: 1.4;
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: #c5b981
}

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

.mtitle_box span {
    font-weight: normal;
    font-size: 15px;
    padding-left: 10px
}

.mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: 700;
    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.4rem
    }
}

.mtitle_box2 {
    background: #b89668;
    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: #c5b981;
    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: 2rem;
    line-height: 1.5;
    position: relative
}

.mtext1.ls2 {
    letter-spacing: 0.2em
}

.mtext1 span {
    font-size: 1.7rem
}

.mtext1 span.mini {
    font-size: 13px;
    line-height: 1.4
}

.mtext1 en {
    line-height: 1.8;
    z-index: -1;
    display: block;
    font-size: 3.5rem;
    letter-spacing: 0.2em;
    color: #c5b981;
    font-family: "Varela Round", serif;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
}

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

    .mtext1 span {
        font-size: 1.2rem
    }

    .mtext1 span.mini {
        font-size: 12px;
        line-height: 1.4
    }

    .mtext1 en {
        font-size: 2rem
    }
}

.mtext2 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.6
}

.mtext2.ls2 {
    letter-spacing: 0.2em
}

.mtext2 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #a17d4c
}

.mtext2 mn {
    letter-spacing: 0.1em;
    font-size: 1.6rem
}

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

    .mtext2 span {
        font-size: 1.4rem
    }

    .mtext2 mn {
        font-size: 1.2rem
    }
}

.mtitle_category {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic;
    font-weight: 500
}

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

.btns.mauto a {
    margin: 10px auto
}

.btns a {
    background: #f4f4f4;
    text-align: center;
    max-width: 300px;
    width: 90%;
    color: #b89668;
    border: 1px solid #b89668;
    display: block;
    padding: 4px 5px;
    font-weight: bold;
    font-size: 95%;
    border-radius: 5px
}

.btns a:hover {
    background: #b89668;
    color: #fff
}

@media all and (max-width: 639px) {
    .btns a {
        margin: auto
    }
}

.btn01.smb a {
    max-width: 200px;
    width: 90%;
    border-radius: 10px
}

.btn01 a {
    background: #6d5c47;
    color: #fff;
    text-align: center;
    max-width: 300px;
    width: 95%;
    margin: 20px auto;
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    border-radius: 35px
}
.btn01_02 a{
    margin-top: 10px;
}

.btn01 a:hover {
    background: #b89668
}

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

.btn01.type1 a {
    margin: 20px 0
}

.btn02 {
    max-width: 300px;
    width: 95%;
    margin: 20px auto 20px
}

.btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #b89668;
    line-height: 24px;
    letter-spacing: 0.1rem;
    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 {
    background-color: #c0a279
}

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

@media all and (max-width: 639px) {
    .btn02 {
        width: 98%
    }
}

.btn03 {
    max-width: 300px;
    width: 95%;
    margin: auto
}

.btn03.col1 a {
    background: #b89668;
    color: #fff
}

.btn03.col1 a:hover {
    background: #c5b981;
    color: #fefefe
}

.btn03 a {
    background: #c5b981;
    text-align: center;
    min-width: 180px;
    margin: 20px auto;
    color: #fefefe;
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    border-radius: 35px
}

.btn03 a:hover {
    background: #b89668;
    color: #fff
}

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

.btn-blog a {
    display: block;
    max-width: 600px;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    background-image: -webkit-gradient(linear, left top, right top, from(#f6d436), to(#fb8312));
    background-image: linear-gradient(to right, #f6d436, #fb8312);
    font-size: 1.1em;
    line-height: 1.4;
    border-radius: 25px;
    margin: 15px auto
}

.btn-blog a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f35a";
    font-weight: 700;
    margin-right: 5px
}

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

.news dt {
    width: 7.5em;
    padding: 3px 5px;
    background: #c5b981;
    text-align: center;
    color: #333;
    border: 1px solid #694732;
    border-radius: 15px;
}


.news dd {
    padding: 5px;
    /* background: #fff; */
    /* width: calc(100% - 8.5em); */
    margin-left: 10px
}
/* 
.news dd a {
    color: #00a8ea
} */

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

.treat-dl {
    padding: 8px;
    background: #f0f0f0;
    font-size: 0.9em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.treat-dl dt {
    width: 5em;
    padding: 3px;
    color: #b89668
}

.treat-dl dd {
    width: calc(100% - 6em)
}

.news-bl dt {
    float: left;
    width: 8.5em;
    padding: 3px 5px;
    line-height: 1.3;
    border: 1px solid #694732;
    border-radius: 15px;
    color: #694732;
    font-weight: 400;
    text-align: center
}

.news-bl dd {
    padding: 0 0 10px 9.5em;
    line-height: 1.6;
    border-bottom: 1px dotted #dddddd;
    margin: 0 0 10px;
    margin-top: 5px;
}

.news-bl dd a {
    color: #694732;
    text-decoration: underline
}

.news-bl dd:last-child {
    /* margin: 0; */
    border-bottom: none
}

@media all and (max-width: 639px) {
    .news-bl dt {
        float: none
    }

    .news-bl dd {
        padding: 5px 0 10px
    }
}

.news-bl2 dt {
    float: left;
    width: 8.5em;
    line-height: 1.3;
    color: #694732;
    font-weight: 400;
    text-align: center
}

.news-bl2 dt:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 700;
    margin-right: 10px;
    color: #b89668
}

.news-bl2 dd {
    padding: 0 0 10px 9em;
    line-height: 1.6;
    border-bottom: 1px dotted #dddddd;
    margin: 0 0 10px
}

.news-bl2 dd a {
    color: #694732;
    background-image: -webkit-gradient(linear, left top, right top, from(#b89668), to(#d5cca4));
    background-image: linear-gradient(to right, #b89668, #d5cca4);
    padding-bottom: 0.25em;
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
    -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.news-bl2 dd a:hover {
    background-position: 0 100%;
    background-size: 100% 1px
}

.news-bl2 dd:last-child {
    margin: 0;
    border-bottom: none
}

@media all and (max-width: 639px) {
    .news-bl2 dt {
        float: none
    }

    .news-bl2 dd {
        padding: 5px 0 10px
    }
}

.top-blog-wrap .news-bl dd:first-of-type a {
    color: #a17d4c
}

.top-blog-wrap .news-bl dd:first-of-type a:before {
    color: #fb8312;
    content: "New";
    margin-right: 4px
}

.page-title {
    position: relative;
    z-index: 1;
    background: url(../img/pg_ttl.jpg) no-repeat 50%/cover;
    width: 100%
}

.page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5)
}

.page-title .inner {
    height: 300px;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto
}

.page-title .page-lead {
    margin: 0 auto;
    color: #b89668;
    border-radius: 20px 0 20px 0;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #fefefe
}

.page-title .page-lead span {
    display: block;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3rem
}

@media all and (max-width: 800px) {
    .page-title {
        background-attachment: scroll
    }

    .page-title .inner {
        width: 100%;
        height: 200px
    }

    .page-title .page-lead {
        width: 70%;
        border-radius: 10px 10px 0 0
    }
}

@media all and (max-width: 639px) {
    .page-title .inner {
        height: 180px
    }

    .page-title .page-lead {
        padding: 8px 0;
        font-size: 1.4rem;
        width: 80%
    }

    .page-title .page-lead span {
        font-size: 1.6rem
    }
}

.bg-01 {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(184, 150, 104, 0.1)), color-stop(50%, rgba(184, 150, 104, 0.1)), color-stop(50.1%, rgba(235, 235, 235, 0.5)), to(rgba(235, 235, 235, 0.5)));
    background-image: linear-gradient(to right, rgba(184, 150, 104, 0.1) 0%, rgba(184, 150, 104, 0.1) 50%, rgba(235, 235, 235, 0.5) 50.1%, rgba(235, 235, 235, 0.5) 100%)
}

@media all and (max-width: 639px) {
    .bg-01 {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(184, 150, 104, 0.1)), color-stop(55%, rgba(184, 150, 104, 0.1)), color-stop(55.1%, rgba(235, 235, 235, 0.5)), to(rgba(235, 235, 235, 0.5)));
        background-image: linear-gradient(to bottom, rgba(184, 150, 104, 0.1) 0%, rgba(184, 150, 104, 0.1) 55%, rgba(235, 235, 235, 0.5) 55.1%, rgba(235, 235, 235, 0.5) 100%)
    }
}

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

.bg-gradient {
    background-image: -webkit-gradient(linear, left top, right top, from(#f7f1df), to(#fcfcfc));
    background-image: linear-gradient(to right, #f7f1df 0%, #fcfcfc 100%)
}

.bg-contents {
    position: relative
}

.bg-contents:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
    background: #b89668;
    opacity: 0.8
}

@media all and (max-width: 800px) {
    .bg-contents:before {
        height: 78%;
        bottom: 2%
    }
}

.bg-maru1 {
    background: #fbf8ef;
    max-width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    margin: 40px auto
}

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

.bg-maru2 {
    background: #f3f3f3;
    max-width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    margin: 40px auto
}

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

.bg-base {
    position: relative;
    margin: 40px auto;
    max-width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    background: #e9ded0;
    border-radius: 20px
}

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

.bg-blue {
    background: #00a8ea
}

.bg-gray {
    position: relative;
    background: #ebebeb;
    max-width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    margin: 40px auto
}

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

.bg-beige {
    background: rgba(251, 248, 239, 0.8)
}
.bd-beige {
    border: 1px solid #c0a279;
    border-radius: 8px;
}

@media all and (max-width: 639px) {
    .scroll-table table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch
    }
}

.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 #b89668
}

@media all and (max-width: 639px) {

    .timetable th,
    .timetable td {
        font-size: 1.1rem;
        padding: 3px
    }
}

.timetable td {
    color: #694732;
    background: #fff
}

.timetable td .circle {
    color: #b89668;
    font-size: 1.7rem;
    font-weight: 600
}

@media all and (max-width: 639px) {
    .timetable td .circle {
        font-size: 10px
    }
}

.timetable td .yasumi {
    color: #694732;
    font-size: 1.5rem;
    font-weight: 600
}

@media all and (max-width: 639px) {
    .timetable td .yasumi {
        font-size: 11px
    }
}

.timetable td .time-txt {
    font-size: 12px;
    line-height: 1.3
}

.timetable .tr-01 td {
    background: rgba(184, 150, 104, 0.3);
    text-align: center;
    color: #694732
}

.timetable th {
    color: #fff;
    background: #c8ae8b
}

.tbl2 {
    width: 100%
}

.tbl2 th,
.tbl2 td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #35bac3;
    text-align: left
}

.tbl2 th {
    color: #694732;
    background: #d7eff0;
    font-weight: bold
}

.tbl2 th span {
    font-size: 1.3rem;
    line-height: 1.5
}

@media all and (max-width: 639px) {
    .tbl2 th span {
        font-size: 12px
    }
}

.tbl2 td {
    min-width: 100px;
    background: #fefefe
}

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

    .tbl2 th,
    .tbl2 td {
        padding: 10px
    }

    .tbl2 td {
        min-width: 50px
    }
}

.tbl {
    width: 100%
}

.tbl th,
.tbl td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #694732;
    text-align: center
}

.tbl th {
    background: #fbf8ef
}

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

.tbl th.th-1 {
    width: 25%
}

.tbl th.cell02 {
    width: 20%
}

.tbl th.cell03 {
    width: 22.5%
}

.tbl td {
    background: #fefefe
}

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

    .tbl th,
    .tbl td {
        padding: 10px
    }
}

.tbl .cell01 {
    width: 45%
}

.tbl .cell02 {
    width: 25%
}

.tbl_new {
    width: 100%
}

@media all and (max-width: 1200px) {
    .tbl_new {
        width: 95%
    }
}

@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: #694732
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
    background: #fbf8ef
}

.tbl-border {
    width: 100%
}

.tbl-border tr:first-child th,
.tbl-border tr:first-child td {
    border-top: 0.9px solid #aaa
}

.tbl-border th,
.tbl-border td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 0.9px solid #aaa;
    line-height: 1.6
}

@media all and (max-width: 639px) {

    .tbl-border th,
    .tbl-border td {
        padding: 10px 5px
    }
}

.tbl-border th {
    color: #694732
}

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

.tbl-plain {
    width: 100%
}

.tbl-plain th,
.tbl-plain td {
    padding: 10px 15px;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555
}

.tbl-plain th {
    color: #b89668;
    width: 30%
}

@media all and (max-width: 639px) {
    .tbl-plain th {
        width: 35%
    }
}

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

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

.company th {
    width: 15%;
    position: relative;
    background: #c5b981;
    color: #694732;
    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: #c5b981;
    margin-top: -10px
}

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

.tbl0 {
    width: 100%
}

.tbl0 th,
.tbl0 td {
    padding: 3px 5px;
    border: 0;
    border-bottom: 1px dashed #ddd
}

.tbl0 th {
    padding-left: 0;
    background: none;
    text-align: left;
    width: 35%;
    color: #111
}

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

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

.ggmap {
    position: relative;
    padding-bottom: 30.25%;
    height: 0;
    overflow: hidden
}

@media all and (max-width: 639px) {
    .ggmap.ggmap2 {
        padding-bottom: 90%
    }
}

@media all and (max-width: 639px) {
    .ggmap {
        padding-bottom: 46.25%
    }
}

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

.list_common.disc li:before {
    content: "・";
    margin-right: 5px;
    color: #6d5c47
}

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

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

.list_common li .check_num {
    width: 30px;
    height: 30px;
    background: #b89668;
    color: #fff;
    border-radius: 100px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px
}

.list_check {
    padding: 10px;
    background: #f4f4f4
}

.list_check.bg-w {
    background: #fff
}

.list_check.bg-none {
    background: none
}

.list_check.iconr li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 700;
    margin-right: 10px;
    color: #800e1d
}

.list_check li {
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
    font-size: 1.1em
}

.list_check li span {
    font-weight: normal;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    background: rgba(251, 248, 239, 0.2);
    margin-top: 10px
}

.list_check li:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc
}

.list_check li:last-child {
    padding-bottom: 0
}

.list_check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 10px;
    color: #c0a279
}

.list_check.w49 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: none
}

.list_check.w49 li {
    width: 49%;
    margin: 0.5%;
    padding: 5px;
    border-bottom: 0px dashed #ccc;
    background: rgba(197, 185, 129, 0.2)
}

@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;
    margin-bottom: 5px;
    margin-right: 1%;
    padding: 3px 10px;
    background: #fff;
    border-radius: 5px
}

.list_check2 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 700;
    margin-right: 6px;
    color: #6d5c47
}

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

.list_check3.bd_none li:not(:last-child) {
    border-bottom: 0px dashed #ccc
}

.list_check3 li {
    padding-bottom: 5px;
    font-weight: bold
}

.list_check3 li:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc
}

.list_check3 li:last-child {
    padding-bottom: 0
}

.list_check3 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 700;
    margin-right: 10px;
    color: #6d5c47
}

.ol-list {
    counter-reset: number;
    list-style: none;
    background: rgba(197, 185, 129, 0.5);
    padding: 20px
}

.ol-list>li {
    line-height: 2;
    border-bottom: 1px dashed #eee;
    margin-bottom: 10px;
    padding: 5px 0 8px;
    padding-left: 50px;
    font-weight: bold;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
    font-size: 1.8rem
}

.ol-list>li .small {
    font-weight: normal;
    display: block;
    padding: 10px;
    line-height: 1.6;
    font-size: initial
}

.ol-list>li:before {
    counter-increment: number;
    content: counter(number);
    background: #222;
    position: absolute;
    width: 2em;
    height: 2em;
    text-align: center;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2rem;
    line-height: 2em;
    color: #fefefe;
    left: 0;
    top: 0px;
    border-radius: 100%
}

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

.ol-list2 {
    counter-reset: number;
    list-style: none;
    background: rgba(197, 185, 129, 0.1);
    padding: 10px
}

.ol-list2>li {
    line-height: 1.4;
    border-bottom: 1px dashed #eee;
    margin-bottom: 10px;
    padding: 5px 0 8px;
    padding-left: 35px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
    font-weight: bold
}

.ol-list2>li:last-child {
    border-bottom: 0px dashed #eee;
    padding-bottom: 0px;
    margin-bottom: 0px
}

.ol-list2>li:before {
    counter-increment: number;
    content: counter(number);
    background: #222;
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    text-align: center;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 1.6rem;
    line-height: 1.6em;
    color: #fefefe;
    left: 0;
    top: 0px;
    border-radius: 100%
}

@media all and (max-width: 639px) {
    .ol-list2>li {
        padding-left: 25px
    }

    .ol-list2>li:before {
        font-size: 1.3rem;
        line-height: 1.3em;
        width: 1.3em;
        height: 1.3em
    }
}

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

.ol-list3.w50 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ol-list3.w50 li {
    width: 49%;
    margin-right: 2%
}

.ol-list3.w50 li:nth-child(2n) {
    margin-right: 0
}

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

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

.ol-list3 li:before {
    counter-increment: number;
    content: counter(number);
    background: #fff;
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    text-align: center;
    font-size: 1.8rem;
    color: #222;
    margin-right: 0.3em
}

@media all and (max-width: 639px) {
    .ol-list3 li {
        font-size: 1.2rem
    }

    .ol-list3 li:before {
        position: absolute;
        font-size: 1.4rem
    }
}

.list_profile li {
    font-size: 0.9em;
    padding: 5px;
    border-bottom: 0.9px solid #e7d49d
}

.list_profile li:before {
    content: "＋";
    margin-right: 5px;
    color: #b89668
}

.blog-wrap {
    margin: 0 auto
}

.blog-wrap * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.blog-wrap>li {
    margin-bottom: 10px
}

.blog-wrap>li a {
    display: block;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.blog-wrap>li a:hover .blog-title {
    color: #c8ae8b
}

.blog-wrap>li .blog-img {
    width: 30%;
    height: 90px
}

.blog-wrap>li .blog-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

.blog-wrap>li .blog-detail {
    padding: 15px;
    line-height: 1.4;
    width: 68%
}

.blog-wrap>li .blog-date {
    color: #b89668;
    font-size: 1.4rem
}

.blog-wrap>li .blog-date:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    font-weight: 700;
    margin-right: 5px;
    color: #b89668
}

.blog-wrap>li .blog-title {
    color: #b89668;
    font-size: 1.6rem
}

@media all and (max-width: 800px) {
    .blog-wrap>li {
        width: 48%;
        margin: 0 4% 4% 0
    }

    .blog-wrap>li:nth-child(2n) {
        margin-right: 0
    }
}

@media all and (max-width: 639px) {
    .blog-wrap>li {
        width: 90%;
        margin: 0 auto 20px;
        background: #fefefe
    }

    .blog-wrap>li .blog-date {
        font-size: 1.2rem
    }

    .blog-wrap>li .blog-title {
        font-size: 1.4rem
    }

    .blog-wrap>li:nth-child(2n),
    .blog-wrap>li:nth-child(4n) {
        margin-right: auto
    }
}

.blog-date2 {
    color: #906f44;
    font-size: 0.9em;
    margin-bottom: 5px;
    margin-right: 5px
}

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

.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: #7f623b;
    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: "FontAwesome";
    content: "\f0a9";
    margin-right: 5px
}

.category_nav li a:hover {
    background: #ebebeb
}

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

.cut_box {
    position: relative
}

.cut {
    overflow: hidden;
    zoom: 1
}

.cut._top {
    position: static;
    max-width: 450px;
    height: auto;
    top: 0;
    right: 35%
}

@media all and (max-width: 1366px) {
    .cut._top {
        right: 33%;
        position: unset;
        margin: 0 auto
    }
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
    .cut._top {
        position: absolute;
        width: 32%
    }
}

.w300 {
    width: 300px
}

.w500 {
    width: 500px
}

.spbr {
    display: none
}

.br_tablet {
    display: none
}

@media all and (max-width: 800px) {
    .br_tablet {
        display: block
    }
}

.color1 {
    color: #b89668
}

.color2 {
    color: #c3650d
}

.color3 {
    color: #694732
}

.color4 {
    color: #c5b981
}

.color5 {
    color: #6d5c47
}

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

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

.num a:hover {
    color: #c5b981
}

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

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

.breadcrumb {
    max-width: 1200px;
    margin: 20px auto 20px;
    font-size: 1.2rem;
    font-weight: 400
}

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

.breadcrumb li a {
    color: #b89668
}

.breadcrumb li a span {
    color: #6d5c47
}

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

.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: #ae1327;
    padding: 1px 5px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 10px;
    position: relative;
    top: -2px
}

.form dl dt span.nini {
    color: #fff;
    background: #777;
    padding: 1px 5px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 10px;
    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: #b89668;
    border: 1px solid #b89668;
    border-radius: 25px;
    color: #fff
}

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

.form button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 700;
    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: "FontAwesome";
    content: "\f0ab";
    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: #b89668
}

.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: 2px;
    top: 4px;
    background-color: #b89668;
    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 #b89668;
    border-bottom: 3px solid #b89668;
    -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
}

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

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

@media all and (max-width: 639px) {
    .select-content {
        display: block
    }
}

.form-txt {
    font-size: 0.9em;
    margin-bottom: 5px
}

.memo {
    border: 2px solid rgba(251, 248, 239, 0.5);
    background: url(../img/bg01.jpg);
    padding: 15px
}

.thanks {
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    background: #fbf8ef
}

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

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

.mtitle_small {
    position: relative;
    font-size: 1.8rem;
    color: #b89668;
    margin-bottom: 20px;
    font-weight: bold
}

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

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

.mtitle_small2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-weight: bold;
    color: #694732
}

.mtitle_small2.white {
    color: #fff
}

.mtitle_small2:not(:first-of-type) {
    margin-top: 20px
}

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

.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.p_none li p {
    display: none
}

.gallery.col2 li {
    width: calc((100% - 10px) / 2);
    margin: 0 10px 25px 0
}

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

.gallery.col2 li a img {
    height: 280px
}

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

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

.gallery.col3 li a img {
    height: 280px
}

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

.gallery.col4 li:nth-of-type(4n) {
    margin-right: 0
}

.gallery.col4 li a img {
    height: 200px
}

.gallery li a {
    text-align: center;
    padding: 0px
}

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

.gallery li p {
    line-height: 1.4;
    margin-top: 5px;
    font-weight: normal
}

@media all and (max-width: 800px) {
    .gallery.col2 li {
        width: 100%;
        margin: 0 0% 20px 0
    }

    .gallery.col2 li:last-child {
        margin: 0 0% 0 0
    }

    .gallery.col2 li a img {
        height: 140px
    }

    .gallery.col3 li {
        width: 48%;
        margin: 0 4% 20px 0
    }

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

@media all and (max-width: 800px) and (max-width: 639px) {
    .gallery.col3 li:nth-child(2n) {
        margin-right: auto
    }
}

@media all and (max-width: 800px) and (max-width: 639px) {
    .gallery.col3 li {
        width: 90%;
        margin: 0 auto 20px
    }
}

@media all and (max-width: 800px) {
    .gallery.col3 li:nth-child(3n) {
        margin: 0 4% 20px 0
    }
}

@media all and (max-width: 800px) and (max-width: 639px) {
    .gallery.col3 li:nth-child(3n) {
        margin: 0 auto 20px
    }
}

@media all and (max-width: 800px) {
    .gallery.col3 li a {
        height: 250px
    }
}

@media all and (max-width: 800px) and (max-width: 639px) {
    .gallery.col3 li a {
        height: 200px
    }
}

@media all and (max-width: 800px) {
    .gallery.col4 li {
        width: 49%;
        margin: 0 2% 2% 0
    }

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

    .gallery.col4 li a img {
        height: 100px
    }
}

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

.list2.mb0 {
    margin-bottom: -20px
}

.list2>li,
.list2 .child {
    width: 48%;
    margin: 0 4% 20px 0
}

.list2>li:nth-child(2n),
.list2 .child:nth-child(2n) {
    margin-right: 0
}

@media all and (max-width: 639px) {

    .list2>li:nth-child(2n),
    .list2 .child:nth-child(2n) {
        margin-right: auto
    }
}

@media all and (max-width: 639px) {

    .list2>li,
    .list2 .child {
        width: 100%;
        margin: 0 auto 20px
    }
}

.list2.border li {
    border: 2px solid rgba(197, 185, 129, 0.5);
    padding: 10px;
    background: #fefefe
}

.info-dl {
    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;
    font-weight: 400;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.info-dl dt {
    width: 80px;
    background: rgba(184, 150, 104, 0.5);
    text-align: center;
    border-radius: 15px
}

.info-dl dd {
    width: calc(100% - 100px);
    line-height: 1.6
}

.info-dl dt:not(last-of-type),
.info-dl dd:not(last-of-type) {
    margin-bottom: 5px
}

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

.list3 li {
    width: 32.5%;
    margin: 0 1.25% 15px 0
}

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

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

    .list3 li {
        width: 100%;
        margin: 0 auto 15px
    }

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

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

@media all and (max-width: 800px) {
    .list3.treat li {
        width: 48%;
        margin: 0 0 20px
    }

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

    .list3.treat li:nth-child(2n) {
        margin-left: 4%
    }
}

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

    .list3.treat li:nth-child(2n),
    .list3.treat li:nth-child(3n) {
        margin: 0 auto 20px
    }
}

.list3.treat li .treat-img {
    position: relative
}

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

.list3.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(37, 128, 164, 0.8) 0%, rgba(62, 239, 212, 0.8) 100%)
}

.list3.treat li a {
    display: block
}

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

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

.treat-box {
    position: relative;
    z-index: 2;
    background: rgba(254, 254, 254, 0.9);
    -webkit-box-shadow: 2px 2px 10px rgba(105, 71, 50, 0.1);
    box-shadow: 2px 2px 10px rgba(105, 71, 50, 0.1);
    margin: -25px auto 0;
    padding: 10px 0
}

.top-feature {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px auto 40px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.top-feature li {
    width: 210px;
    position: relative;
    padding: 40px 0
}

.top-feature li:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#00a8ea), to(rgba(105, 71, 50, 0.6)));
    background-image: linear-gradient(to right bottom, #00a8ea, rgba(105, 71, 50, 0.6));
    z-index: -2
}

.top-feature li:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/top-feature-bg01.jpg) no-repeat center/cover;
    z-index: -1;
    opacity: 0.4
}

.top-feature li.img2:after {
    background: url(../img/top-feature-bg02.jpg) no-repeat center/cover
}

.top-feature li.img3:after {
    background: url(../img/top-feature-bg03.jpg) no-repeat center/cover
}

.top-feature li img {
    width: 90%;
    margin: 0 auto
}

.top-feature li:not(:last-child) {
    margin-right: 15px
}

@media all and (max-width: 639px) {
    .top-feature li:not(:last-child) {
        margin-right: calc(2.33% + (2.33% / 2))
    }
}

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

    .top-feature li {
        width: 31%;
        margin: 0 calc(2.33% + (2.33% / 2)) 15px 0
    }

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

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

.list4 li {
    width: 24.25%;
    margin-right: 1%;
    margin-bottom: 1%
}

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

.list4.sml4 {
    margin-bottom: -4%
}

.list4.sml4 li {
    width: 22%;
    margin-right: 4%;
    margin-bottom: 4%
}

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

@media all and (max-width: 639px) {
    .list4 {
        margin-bottom: -4% !important
    }

    .list4.sml4 li,
    .list4 li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%
    }

    .list4.sml4 li:nth-child(2n),
    .list4 li:nth-child(2n) {
        margin-right: 0
    }
}

.list4.treat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -65px
}

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

.list4.treat li a {
    display: block
}

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

.list4.treat li a:hover .treat-box {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list4.treat li a:hover .treat-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(-45deg, rgba(184, 150, 104, 0.5) 0%, rgba(221, 214, 181, 0.5) 100%)
}

@media all and (max-width: 800px) {
    .list4.treat li {
        width: 49%;
        margin: 0 0 40px
    }

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

    .list4.treat li:nth-child(2n) {
        margin-left: 2%
    }

    .list4.treat li a .treat-box {
        width: 100%
    }

    .list4.treat li a p {
        letter-spacing: 0
    }
}

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

.list5 li {
    width: 19%;
    margin-right: 1.25%;
    margin-bottom: 1.25%
}

.list5 li:nth-child(5n) {
    margin-right: 0
}

@media all and (max-width: 639px) {
    .list5 {
        margin-bottom: -4% !important
    }

    .list5 li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%
    }

    .list5 li:nth-child(2n) {
        margin-right: 0
    }

    .list5 li:nth-child(5n) {
        margin-right: auto
    }
}

.list5.treat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.list5.treat li {
    padding: 0;
    margin-bottom: 45px
}

.list5.treat li a {
    display: block
}

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

.list5.treat li a:hover .treat-box {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list5.treat li a:hover .treat-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(-45deg, rgba(251, 131, 18, 0.3) 0%, rgba(165, 144, 117, 0.4) 100%)
}

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

.list6 li {
    width: 15%;
    margin-right: 2%;
    margin-bottom: 2%
}

.list6 li:nth-child(6n) {
    margin-right: 0
}

@media all and (max-width: 639px) {
    .list6 {
        margin-bottom: -4% !important
    }

    .list6 li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%
    }

    .list6 li:nth-child(2n) {
        margin-right: 0
    }

    .list6 li:nth-child(6n) {
        margin-right: auto
    }
}

.list6.treat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.list6.treat li {
    padding: 0;
    margin-bottom: 45px
}

.list6.treat li a {
    display: block
}

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

.list6.treat li a:hover .treat-box {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list6.treat li a:hover .treat-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(-45deg, rgba(109, 92, 71, 0.2) 0%, rgba(197, 185, 129, 0.2) 100%)
}

.note {
    padding: 15px;
    background: #fefefe;
    -webkit-box-shadow: 3px 3px 20px -10px rgba(105, 71, 50, 0.1);
    box-shadow: 3px 3px 20px -10px rgba(105, 71, 50, 0.1)
}

.note.transparent {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.note.wk {
    padding: 15px;
    background: #fefefe;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #c5b981;
    -webkit-box-shadow: border-box;
    box-shadow: border-box
}

.note2 {
    padding: 15px;
    background: #f7f1e9
}

.note2.opa3 {
    background: rgba(251, 248, 239, 0.3)
}

.note2.gra {
    background: #f4f4f4
}

.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 {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic;
    background: #b89668;
    font-size: 3rem;
    color: #fff;
    width: 80px;
    text-align: center;
    margin-right: 20px;
    height: 80px;
    padding-top: 8px;
    border-radius: 100%
}

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

.flow-dl dd {
    width: calc(100% - 110px);
    margin-top: 10px
}

.flow-dl dd:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 0.9px solid #c5b981
}

.flow-dl dt:not(:last-of-type),
.flow-dl dd:not(:last-of-type) {
    margin-bottom: 30px
}

@media all and (max-width: 800px) {
    .flow-dl dt {
        padding: 3px 0;
        border-radius: 5px;
        font-size: 1.8rem;
        width: 100%;
        margin: 0;
        height: auto;
        line-height: auto
    }

    .flow-dl dt:not(:last-of-type) {
        margin-bottom: 10px
    }

    .flow-dl dt span {
        letter-spacing: 0.1em;
        font-size: 1.3rem;
        display: inline;
        margin: 0 5px 0 0
    }

    .flow-dl dd {
        width: 100%;
        margin-top: 5px
    }

    .flow-dl dd:not(:last-child) {
        padding-bottom: 15px
    }

    .flow-dl dd:not(:last-of-type) {
        margin-bottom: 30px
    }
}

.txt1 {
    padding-left: 10px
}

.blog-month {
    margin-bottom: 10px
}

.blog-month ul {
    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
}

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

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

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

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#entry {
    display: block;
    padding-top: 100px;
    margin-top: -100px
}

.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 .faq-inner {
    padding: 10px;
    margin-bottom: 20px
}

.faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 35px;
    padding-bottom: 20px;
    background: url(../img/bg-border.png) repeat-x left bottom
}

.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: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    left: 0;
    top: 0
}

.faq-dl dt {
    color: #00a8ea;
    font-size: 1.05em
}

.faq-dl dt:before {
    content: "Q";
    color: #b89668;
    font-size: 2rem;
    background: rgba(184, 150, 104, 0.2)
}

.faq-dl dd {
    background: #fbf8ef
}

.faq-dl dd:before {
    content: "A";
    color: #ae1327;
    font-size: 2rem;
    background: rgba(246, 212, 54, 0.5)
}

.faq-dl dd:not(:last-of-type) {
    margin-bottom: 20px
}

.fukidashi {
    margin: 0.5em auto 1em;
    padding: 5px;
    text-align: center;
    max-width: 50%;
    border-radius: 10px;
    font-size: 2.2rem;
    background: #fefefe;
    border-radius: 5px;
    position: relative
}

.fukidashi a {
    color: #a71017
}

.fukidashi a:hover {
    color: #ae1327
}

.fukidashi:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #fefefe;
    z-index: 2
}

.info-txt {
    width: 95%;
    margin: 10px auto 0;
    background: rgba(197, 185, 129, 0.3);
    padding: 10px;
    border-radius: 10px
}

.title-big {
    font-weight: 600;
    color: #694732;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif
}

.title-big span {
    display: block;
    font-size: 4rem;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: 500;
    letter-spacing: 0;
    color: #b89668
}

@media all and (max-width: 800px) {
    .title-big {
        text-align: center
    }
}

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

    .title-big span {
        font-size: 2.6rem
    }
}

.top-sec1 {
    margin-bottom: -80px
}

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

.bnr-list li {
    height: 55px
}

.bnr-list li img {
    border: 1px solid #ccc;
    width: auto;
    height: 100%;
    background: #fff
}

.bnr-list li:first-child {
    margin-right: 20px
}

@media all and (max-width: 639px) {
    .bnr-list li:first-child {
        margin-right: 10px
    }
}

@media all and (max-width: 800px) {
    .bnr-list li {
        height: 45px
    }
}

@media all and (max-width: 639px) {
    .bnr-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .bnr-list li {
        height: 42px
    }

    .bnr-list li img {
        max-width: initial
    }
}

@media all and (max-width: 639px) and (max-width: 320px) {
    .bnr-list li {
        height: 37px
    }
}

.box-column2 {
    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
}

.box-column2 .box-container {
    width: 48.5%;
    position: relative
}

.box-column2 .box-container.single-column {
    margin: 0 auto
}

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

    .box-column2 .box-container.order {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.mtitle5 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    position: absolute;
    left: 2%;
    top: 0;
    font-size: 2.2rem;
    color: #b89668;
    font-weight: 600;
    letter-spacing: 0.3rem;
    border-top: 2px solid #aaa;
    padding-top: 20px
}

.mtitle5 span {
    font-family: "Varela Round", serif;
    font-size: 3rem;
    display: block;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.1rem
}

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

    .mtitle5 span {
        font-size: 1.7rem;
        color: rgba(105, 71, 50, 0.5)
    }
}

.vertical-box {
    position: relative
}

.vertical-box+.vertical-box {
    margin-top: 50px
}

.vertical-content {
    margin-left: 20%
}

@media all and (max-width: 639px) {
    .vertical-content {
        margin-left: 23%
    }
}

.listA {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(235, 235, 235, 0.5)
}

.listA li {
    padding: 4px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #ccc;
    width: 48%;
    margin: 0 4% 5px 0;
    font-weight: 600;
    color: #7f623b;
    font-size: 1.05em;
    line-height: 1.5
}

.listA li:before {
    content: "●●";
    color: #c5b981;
    letter-spacing: 0.3rem;
    margin-right: 5px;
    font-size: 14px
}

.listA li .inner {
    font-size: 0.9em;
    padding: 8px;
    background: #fefefe;
    margin-top: 4px;
    border-radius: 4px;
    font-weight: 400;
    color: #694732
}

.listA li:nth-child(2n) {
    margin-right: 0
}

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

@media all and (max-width: 639px) {
    .listA {
        background: transparent
    }

    .listA li {
        margin: 0 auto 5px;
        width: 100%
    }
}

.calendar_head {
    color: #fefefe;
    background: #a17d4c;
    padding: 4px
}

.calendar-info {
    text-align: center;
    font-weight: 600;
    color: #fefefe
}

.calendar-info span {
    color: #f6d436;
    font-size: 1.1em
}

.calendar-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0.9em
}

.calendar-box div.calendar {
    width: 48%
}

@media all and (max-width: 639px) {
    .calendar-box div.calendar {
        width: 100%;
        margin-bottom: 10px
    }
}

.calendar-box table {
    width: 100%
}

.calendar-box table th,
.calendar-box table td {
    width: 14.28%;
    border: 0.9px solid #666;
    font-weight: normal;
    padding: 5px;
    height: 45px;
    font-size: 1.3rem;
    color: #694732
}

@media all and (max-width: 639px) {

    .calendar-box table th,
    .calendar-box table td {
        height: 40px;
        font-size: 1.2rem
    }
}

.calendar-box table th {
    background: #fbf8ef;
    vertical-align: middle;
    font-weight: 600
}

.calendar-box table td {
    background: #fefefe
}

.calendar-box th.sun,
.calendar-box td.sun {
    color: #ae1327
}

.calendar-box th.sat,
.calendar-box td.sat {
    color: #00a8ea
}

.calendar-box .off {
    background: #f6d436
}

.calendar-box .item-td {
    background: #eadc8b
}

.calendar-box .item-td .days {
    color: #694732
}

.calendar-box .item-td .item {
    display: none
}

.top-gallery a {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: block
}

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

.list-title {
    text-align: center;
    color: #694732;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.7rem;
    position: relative;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif
}

.list-title span {
    font-size: 1.3rem
}

.list-title img {
    width: 70px
}

.list-title.b_none:before {
    display: none
}

.list-title:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background: #9b8365;
    left: 50%;
    bottom: -7px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

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

    .list-title span {
        font-size: 1.2rem
    }
}

.arrow {
    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;
    text-align: center;
    margin-bottom: 5px
}

.arrow a {
    display: block;
    background: #fefefe;
    color: #b89668;
    padding: 5px 8px;
    cursor: pointer
}

.arrow a:first-of-type {
    margin-right: 5px
}

.arrow a.arrow-before:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0d9";
    font-weight: 700;
    margin-right: 5px
}

.arrow a.arrow-after:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 700;
    margin-left: 5px
}

.top-treat-box {
    position: relative;
    z-index: 5;
    width: 80%;
    margin: -60px auto 10px;
    background: #fefefe
}

.feature-dl .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: rgba(254, 254, 254, 0.7);
    padding: 30px 20px;
    -webkit-box-shadow: 0 0 8px rgba(197, 185, 129, 0.3);
    box-shadow: 0 0 8px rgba(197, 185, 129, 0.3);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.feature-dl .inner dt {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2.8rem;
    line-height: 50px;
    letter-spacing: 0.2rem;
    color: #fefefe;
    position: relative;
    z-index: 1;
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic
}

.feature-dl .inner dt:before {
    position: absolute;
    content: "";
    left: -30px;
    top: 0;
    width: 160%;
    min-width: 80px;
    height: 50px;
    background: #b89668;
    z-index: -1;
    opacity: 0.9
}

.feature-dl .inner dt span {
    color: #d5cca4
}

.feature-dl .inner dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 6%
}

.feature-dl .inner:not(:first-child) {
    margin-top: 40px
}

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

    .feature-dl .inner dt {
        font-size: 1.3rem;
        display: none;
        margin-bottom: 0
    }

    .feature-dl .inner dt span {
        font-size: 3rem
    }

    .feature-dl .inner dt:before {
        display: none
    }

    .feature-dl .inner dd {
        width: 100%;
        margin: 0
    }
}

.feature-dl .feature-title {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2.2rem;
    color: #b89668;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: 1px solid #c5b981;
    margin-bottom: 20px
}

.feature-dl .feature-title .upper {
    color: #d9c6ad;
    display: block;
    font-size: 1.5rem
}

.feature-dl .feature-title .upper.en {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic
}

@media all and (max-width: 639px) {
    .feature-dl .feature-title {
        font-size: 1.8rem
    }

    .feature-dl .feature-title .upper {
        font-size: 1.3rem
    }
}

.top-covid {
    text-align: center;
    padding: 10px;
    margin-top: 40px
}

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

#video {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0px;
    position: relative
}

#video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.bg-fix {
    background-attachment: fixed !important
}

@media all and (max-width: 639px) {
    .bg-fix {
        background-attachment: scroll !important
    }
}

.mini {
    font-size: 90%
}

en {
    font-family: "Varela Round", serif
}

.big {
    font-size: 110%
}

.photo {
    width: 100%;
    margin: 10px auto 20px
}

.photo ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -1.25%
}

.photo li {
    width: 32.5%;
    margin-right: 1.25%;
    margin-bottom: 1.25%
}

@media screen and (min-width: 769px) {
    .photo li:nth-child(3n) {
        margin-right: 0
    }
}

.photo li a {
    background: rgba(247, 247, 247, 0);
    display: block;
    text-align: center;
    vertical-align: middle
}

.photo li a img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 220px;
    width: 100%
}

.photo li a:hover {
    color: #888
}

.photo li a:hover img {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.photo li p {
    text-align: center;
    color: #b89668 !important;
    font-weight: normal;
    font-size: 14px !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.photo.p_none li p {
    display: none
}

@media screen and (max-width: 768px) {
    .photo {
        margin: 5px auto 10px
    }

    .photo li {
        width: 100%;
        margin-bottom: 1%;
        margin-right: 0
    }

    .photo li:last-child {
        margin-bottom: 0%
    }

    .photo li a img {
        height: 150px
    }

    .photo.sp_falf li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%
    }

    .photo.sp_falf li:nth-child(2n) {
        margin-right: 0
    }

    .photo.sp_falf li a img {
        height: 140px
    }
}

.tcenter_pc {
    text-align: center
}

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

.reason {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 90px auto -90px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media all and (max-width: 639px) {
    .reason {
        display: block;
        margin: 40px auto -30px
    }
}

.reason li {
    width: 32%;
    margin-right: 2%;
    position: relative;
    margin-bottom: 70px
}

@media all and (max-width: 639px) {
    .reason li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px
    }
}

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

.reason li:nth-child(odd) {
    margin-top: -40px
}

@media all and (max-width: 639px) {
    .reason li:nth-child(odd) {
        margin-top: 0
    }
}

.reason li img {
    width: 95%;
    margin-left: auto;
    display: block;
    border-radius: 10px
}

@media all and (max-width: 639px) {
    .reason li img {
        width: 80%
    }
}

.reason li .nub {
    text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
    display: block;
    font-family: "Varela Round", serif;
    font-style: italic;
    font-size: 24px;
    margin-top: -10px;
    line-height: 1em;
    color: #c5b981;
    opacity: .7
}

.reason li .nub span {
    font-family: "Varela Round", serif;
    font-size: 40px
}

.reason li .item_teext {
    display: block;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: bold;
    font-size: 1.6rem;
    color: #b89668;
    margin-top: 10px
}

.reason li .item_main {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    color: #463022;
    line-height: 1.7em;
    margin-top: 11px
}

@media all and (max-width: 639px) {
    .reason li .nub {
        line-height: 0.5em;
        font-size: 22px
    }

    .reason li .nub span {
        font-size: 36px
    }

    .reason li .item_teext {
        font-size: 1.5rem
    }

    .reason li .item_main {
        line-height: 1.5em
    }
}

.w250 {
    max-width: 250px
}

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

.w200 {
    max-width: 200px
}

@media all and (max-width: 639px) {
    .w200 {
        width: 80%
    }
}

.innerB {
    display: table;
    width: 100%;
    table-layout: fixed
}

@media all and (max-width: 639px) {
    .innerB {
        display: block
    }
}

.innerB .left,
.innerB .right {
    width: 48%;
    float: left
}

@media all and (max-width: 639px) {

    .innerB .left,
    .innerB .right {
        width: 100%;
        float: none
    }
}

.innerB .right {
    margin-left: 4%
}

@media all and (max-width: 639px) {
    .innerB .right {
        margin-left: 0;
        margin-top: 15px
    }
}

.innerB .left_s {
    width: 30%;
    float: left
}

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

.innerB .right_l {
    width: 66%;
    float: left;
    margin-left: 4%
}

@media all and (max-width: 639px) {
    .innerB .right_l {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        float: none
    }
}

.small-box {
    max-width: 950px;
    margin-right: auto;
    margin-left: auto
}

.sp-wk {
    padding: 0 4px;
    margin: 0 2px;
    border: 0.8px solid #694732;
    border-radius: 5px;
    font-size: 92%
}

a.anchor {
    display: block;
    padding-top: 220px;
    margin-top: -220px
}

@media all and (max-width: 639px) {
    a.anchor {
        padding-top: 50px;
        margin-top: -50px
    }
}

.point-title {
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2.2rem;
    color: #b89668;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: 1px solid #a0c84d;
    margin-bottom: 20px
}

.point-title .upper {
    color: #6d5c47;
    margin-right: 10px;
    font-size: 1.5rem
}

.point-title .upper.en {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic
}

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

    .point-title .upper {
        margin-right: 0px;
        display: block;
        font-size: 1.3rem
    }
}

.eng {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: normal
}

.eng.ita {
    font-family: "Varela Round", serif;
    font-weight: 600;
    font-style: italic
}

.fb-wrap {
    text-align: center;
    min-height: 350px;
    margin: 0 auto
}

.sectionarrow_box {
    position: relative;
    height: 70px
}

.sectionarrow {
    display: block;
    width: 44px;
    height: 70px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

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

.sectionarrow:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    -webkit-animation: topArrow 2.5s ease infinite;
    animation: topArrow 2.5s ease infinite
}

@media all and (max-width: 639px) {
    .sectionarrow:after {
        height: 44px
    }
}

.sectionarrow.blue:after {
    background-color: #b89668
}

@keyframes topArrow {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        max-height: 0
    }

    30% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }

    70% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }

    100% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        max-height: 99999px
    }
}

@-webkit-keyframes topArrow {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0)
    }

    30% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }

    70% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }

    100% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%)
    }
}

.sentence p+p {
    margin-top: 10px
}

.sentence2 p+p {
    margin-top: 20px
}

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

.img-hv:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2)
}

.fixed_list {
    position: fixed;
    right: 0;
    bottom: 70px;
    z-index: 2
}

.fixed_list li {
    margin-bottom: 8px
}

.fixed_list li a {
    display: block;
    background: #b89668;
    background-image: -webkit-gradient(linear, left top, right top, from(#a17d4c), to(#b5a65e));
    background-image: linear-gradient(to right, #a17d4c, #b5a65e);
    background-position: right center;
    background-size: 130% auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
    padding: 10px 5px 10px 22px;
    border-radius: 100px 0 0 100px;
    text-align: center
}

.fixed_list li a:hover {
    background-position: left center;
    opacity: 0.9
}

.fixed_list li a i {
    font-size: 1.8rem
}

.fixed_list li a span {
    display: block;
    font-size: 1.1rem;
    font-weight: bold
}

@media all and (max-width: 1200px) {
    .fixed_list {
        display: none
    }
}

.top-box1 {
    max-width: 900px;
    margin: 55px auto 0;
    background: #fefefe;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    border: 3px solid #b89668
}

.top-box1:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 34px;
    top: -34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/board-top.png) no-repeat center bottom/contain
}

@media all and (max-width: 639px) {
    .top-box1 {
        padding: 20px 15px
    }
}

.mbox3 {
    padding: 25px 15px;
    -webkit-box-shadow: 0 0 0 3px #c5b981;
    box-shadow: 0 0 0 3px #c5b981;
    z-index: 2;
    position: relative
}

.mbox3:before,
.mbox3:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%
}

.mbox3:before {
    background: #fefefe;
    left: 0;
    top: 0;
    z-index: -1
}

.mbox3:after {
    bottom: -15px;
    right: -15px;
    background-image: radial-gradient(circle, #c5b981 15%, transparent 10%), radial-gradient(circle, #c5b981 15%, transparent 10%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    z-index: -2
}

@media all and (max-width: 639px) {
    .mbox3:after {
        bottom: -12px;
        right: -12px
    }
}

@media all and (max-width: 800px) {
    .mbox3 {
        width: 95%;
        margin: 0 auto 40px
    }
}

.hv:hover {
    -webkit-animation: rotate 0.7s ease-in-out both;
    animation: rotate 0.7s ease-in-out both
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
        transform: rotate(0deg) translate3d(0, 0, 0)
    }

    25% {
        -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
        transform: rotate(3deg) translate3d(0, 0, 0)
    }

    50% {
        -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
        transform: rotate(-3deg) translate3d(0, 0, 0)
    }

    75% {
        -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
        transform: rotate(1deg) translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
        transform: rotate(0deg) translate3d(0, 0, 0)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
        transform: rotate(0deg) translate3d(0, 0, 0)
    }

    25% {
        -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
        transform: rotate(3deg) translate3d(0, 0, 0)
    }

    50% {
        -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
        transform: rotate(-3deg) translate3d(0, 0, 0)
    }

    75% {
        -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
        transform: rotate(1deg) translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
        transform: rotate(0deg) translate3d(0, 0, 0)
    }
}

.bg-falf3 {
    position: relative
}

.bg-falf3:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 50px);
    height: calc(100% - 140px);
    bottom: 0;
    background: #fbf8ef;
    z-index: -1
}

@media all and (max-width: 639px) {
    .bg-falf3:before {
        width: 100%;
        height: calc(100% - 70px)
    }
}

.bg-falf {
    position: relative;
    margin-bottom: 40px
}

.bg-falf.bg-falf2:after {
    background: #f8f8f8
}

.bg-falf:after {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 50px);
    height: 60%;
    bottom: 0;
    background: #fbf8ef;
    z-index: -2
}

@media all and (max-width: 639px) {
    .bg-falf:after {
        height: 90%;
        width: 95%
    }
}

.w650 {
    width: 650px
}

@media all and (max-width: 639px) {
    .w40sp {
        width: 40%;
        max-width: 150px;
        margin: auto
    }
}

@media all and (max-width: 639px) {
    .w90sp {
        width: 90%;
        max-width: 280px;
        margin: auto
    }
}

.top_sub {
    position: relative
}

.top_sub:before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 55%;
    height: 100%;
    overflow: hidden
}

.top_sub:after {
    content: "";
    position: absolute;
    bottom: -80px;
    z-index: -1;
    background: #f3f3f3;
    background-image: -webkit-gradient(linear, left top, right top, from(#fdfdfd), to(#f1f1f1));
    background-image: linear-gradient(to right, #fdfdfd, #f1f1f1);
    width: 66%;
    height: 90%
}

.top_sub .top_sub_inner {
    padding: 40px 0
}

.top_sub .sub_detail {
    position: relative;
    z-index: 2;
    background: #fff;
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    width: 700px;
    padding: 80px
}

.top_sub.sub_right:before {
    left: 0
}

.top_sub.sub_right:after {
    right: -50px
}

.top_sub.sub_right .sub_detail {
    margin-left: auto
}

.top_sub.sub_left:before {
    right: 0
}

.top_sub.sub_left:after {
    left: -80px
}

.top_sub.sub_left .sub_detail {
    margin-right: auto
}

.top_sub.top_sub_01:before {
    background-image: url(../img/top_sub_01.jpg)
}

.top_main .inner {
    position: relative;
    margin: 40px 0 60px
}

.top_main .inner:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 5%;
    width: 1227px;
    height: 320px;
    max-width: 100%;
    background: #f3f3f3;
    background-image: -webkit-gradient(linear, right top, left top, from(#fdfdfd), to(#f1f1f1));
    background-image: linear-gradient(to left, #fdfdfd, #f1f1f1)
}

.top_main .inner .top_main_contents {
    position: relative;
    max-width: calc(100% - 100px);
    margin: 0 auto
}

.top_main .inner .top_main_contents .top_main_txt {
    position: relative;
    width: 700px;
    left: 5%;
    max-width: 100%;
    background-color: #fff;
    padding: 35px 50px
}

.top_main .inner .top_main_contents .top_main_img {
    overflow: hidden;
    position: absolute;
    left: 650px;
    top: 20px;
    width: 700px;
    max-width: 100%
}

.top_main .inner .top_main_contents .top_main_img img {
    width: 100%;
    height: 100%
}

@media all and (max-width: 639px) {
    .top_main .inner .top_main_contents .top_main_img {
        display: none
    }
}

@media all and (max-width: 639px) {
    .top_main .inner {
        margin: 30px 0
    }

    .top_main .inner:before {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#fdfdfd));
        background-image: linear-gradient(to bottom, #f1f1f1, #fdfdfd);
        left: 0%;
        height: 450px
    }

    .top_main .inner .top_main_contents {
        max-width: 90%;
        margin: auto
    }

    .top_main .inner .top_main_contents .top_main_txt {
        left: 0%;
        padding: 15px
    }
}

.maparea {
    width: calc(100% - 20px);
    margin: auto
}

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

.zure1 li {
    width: 35%;
    margin: 0 10% 20px 0
}

.zure1 li:nth-child(2n) {
    width: 55%;
    -webkit-transform: translate3d(0, 40px, 200px);
    transform: translate3d(0, 40px, 200px);
    margin-right: 0
}

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

    .zure1 li:nth-child(2n) img {
        max-width: 100%
    }
}

@media all and (max-width: 639px) {
    .zure1 li {
        width: 100% !important;
        margin: 0 auto 20px
    }

    .zure1 li img {
        max-width: 260px
    }

    .zure1 li:last-child {
        margin-bottom: 0
    }
}

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

.zure2 li {
    width: 48%;
    margin: 0 4% 20px 0
}

.zure2 li:nth-child(2n) {
    -webkit-transform: translate3d(0, 40px, 200px);
    transform: translate3d(0, 40px, 200px);
    margin-right: 0
}

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

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

.zure2 li.bg1 {
    background: url(../img/bg1.jpg);
    padding: 100px 20px 20px;
    background-size: cover
}

.zure2 li.bg2 {
    background: url(../img/bg2.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

.zure2 li.bg3 {
    background: url(../img/bg3.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

.zure2 li.bg4 {
    background: url(../img/bg4.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

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

.zure3 li {
    width: 48%;
    margin: 0 4% 20px 0
}

.zure3 li:nth-child(2n) {
    margin-right: 0
}

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

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

.zure3 li.bg1 {
    background: url(../img/bg1.jpg);
    padding: 100px 20px 20px;
    background-size: cover
}

.zure3 li.bg2 {
    background: url(../img/bg2.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

.zure3 li.bg3 {
    background: url(../img/bg3.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

.zure3 li.bg4 {
    background: url(../img/bg4.jpg);
    padding: 120px 20px 10px;
    background-size: cover
}

.merit_ttl {
    font-size: 3rem;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    color: #6d5c47;
    border-bottom: 3px solid #ddd9c3;
    padding-bottom: 10px;
    margin-bottom: 30px;
    letter-spacing: 0.2em
}

@media all and (max-width: 639px) {
    .merit_ttl {
        font-size: 1.8rem;
        padding-bottom: 5px;
        margin-bottom: 15px
    }
}

.merit_txt1 {
    font-size: 1.8rem;
    background: rgba(0, 112, 192, 0.63);
    padding: 8px;
    z-index: 0;
    color: #fff;
    line-height: 2.6
}

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

.merit_txt2 {
    font-size: 1.8rem;
    background: rgba(255, 192, 0, 0.63);
    padding: 8px;
    z-index: 0;
    color: #fff;
    line-height: 2.6
}

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

.invisalign_bg {
    background: url(../img/invisalign_bg.jpg) no-repeat;
    background-position: center right;
    background-size: cover;
    width: calc(100% - 50px);
    margin: 40px auto 0
}

.invisalign_bg .box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    width: 60%;
    margin: 40px 0
}

@media all and (max-width: 639px) {
    .invisalign_bg {
        background-position: center center;
        width: 100%
    }

    .invisalign_bg .box {
        padding: 10px;
        background: rgba(255, 255, 255, 0.8);
        margin: 20px auto;
        width: 100%
    }
}

.flow_bg {
    background: url(../img/flow_bg.png) no-repeat;
    background-size: contain;
    background-position: right
}

@media all and (max-width: 639px) {
    .flow_bg {
        background-size: cover;
        background-position: center
    }
}

.box2 {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    width: 100%
}

@media all and (max-width: 639px) {
    .box2 {
        background: rgba(255, 255, 255, 0.8);
        padding: 10px
    }
}

.symptoms_bg {
    background: url(../img/symptoms_bg.jpg) no-repeat;
    background-size: cover
}

.symptoms_bg .box {
    padding: 10px;
    width: 30%;
    margin: 20px 0 60px;
    margin-left: auto
}

@media all and (max-width: 639px) {
    .symptoms_bg {
        background-position: center
    }

    .symptoms_bg .box {
        margin: 10px auto 30px;
        width: 100%
    }
}

.img-sd2 {
    border-radius: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px
}

.menu_children {
    display: none
}

.menu_children li {
    border: 1px solid silver;
    padding-left: 10px;
    background: floralwhite
}

.menu_children li a {
    text-decoration: none
}

.menu_children li a:hover {
    text-decoration: underline
}

.footer_txt {
    max-width: 902px;
    margin: 20px auto;
}

.snip1446 {
    position: relative;
    overflow: hidden;
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    background: #000;
}

.snip1446 img {
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    vertical-align: top;
    opacity: 0.5;
}

.snip1446 figcaption {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
}

.snip1446 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
}

.snip1446 &:before,
&:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
}

.snip1446 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sectTitle {
    font-family: "Zen Old Mincho", serif;
    font-size: 3.3rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 40px;
}

.sectTitle span {
    line-height: 1.4;
    display: inline-block;
    padding-bottom: 0px;
    border-bottom: #261f11 solid 2px;
}

.snip1446 .sectTitle span {
    border-bottom: #fff solid 2px;
}

@media (max-width: 639px) {
    .sectTitle {
        font-size: 2rem;
    }

    .txt {
        font-size: 1rem;
    }
}

@media (max-width: 890px) {
    .snip1446 figcaption {
        width: 90%;
    }
}

/*# sourceMappingURL=basis.css.map */

.bg-maru2.type_pic01 {
    background-image: url(../img/type_pic01.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
@media (max-width: 800px) {
    .bg-maru2.type_pic01 {
        background-position: top right;
        background-size: 35%;
    }
}

.news-box_bottom {
    max-width: 1200px;
    background: #fefefe;
    padding: 40px 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
