body {
    color: #333;
    font-family: "YakuHanMP", "Noto Serif JP", serif;
    font-size: 1.5rem;
    line-height: 1.8;
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh
}

a {
    color: #1B3B34;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

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

.bold {
    font-weight: bold
}

@-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: #fff;
    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: 999
}

.loader::after {
    -webkit-animation: loader .5s linear infinite;
    animation: loader .5s linear infinite;
    border: 1px solid #1B3B34;
    border-radius: 50%;
    border-right: 1px solid rgba(27, 59, 52, 0.2);
    border-top: 1px solid rgba(27, 59, 52, 0.2);
    content: '';
    height: 70px;
    width: 70px
}

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

#header {
    background: #1B3B34;
    width: 100%;
    border-top: 4px solid #D7A700;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000
}

#header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0;
    padding: 5px 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#header .inner #logo {
    width: 150px
}

#header .head-right {
    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
}

@media all and (max-width: 639px) {
    #header .head-right {
        border-top: 1px solid #eee;
        padding-top: 3px;
        width: 100%;
        margin: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

#header .head-comment {
    font-size: 1.3rem;
    color: #555
}

@media all and (max-width: 639px) {
    #header .head-comment {
        font-size: 11px;
        width: 100%;
        text-align: center
    }
}

#header .head-tel,
#header .head-mail {
    font-size: 1.7rem
}

#header .head-tel a,
#header .head-mail a {
    color: #fff;
    display: block;
    max-width: 200px;
    height: 45px;
    font-weight: bold;
    line-height: 45px;
    padding: 0 10px;
    text-align: center;
    background: #a1a480
}

#header .head-tel a:hover,
#header .head-mail a:hover {
    background: #7b7d5a
}

#header .head-tel a:before,
#header .head-mail a:before {
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    margin-right: 5px
}

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

    #header .head-tel,
    #header .head-mail {
        font-size: 1.5rem
    }
}

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

    #header .head-tel,
    #header .head-mail {
        font-size: 1.4rem
    }

    #header .head-tel a,
    #header .head-mail a {
        width: 148px
    }
}

#header .head-tel a {
    background: #1B3B34
}

#header .head-tel a:before {
    content: "\f095"
}

#header .head-tel a:hover {
    background: #0b1815
}

#header .head-mail a {
    font-size: 1.4rem;
    color: #111
}

#header .head-mail a:before {
    content: "\f0e0"
}

@media all and (max-width: 639px) {
    #header .head-mail a {
        line-height: 1.3;
        padding: 4px 0
    }
}

#header.scrolled {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    -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)
}

#header.scrolled #head-contact {
    display: none
}

#navi ul {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: "YakuHanMP", "Noto Serif JP", serif
}

#navi ul li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    text-align: center;
    padding: 2px 10px
}

#navi ul li a {
    display: block;
    letter-spacing: .1rem;
    position: relative;
    line-height: 1.5;
    font-size: 1.2rem;
    padding: 8px 0;
    color: #fff;
    font-weight: bold;
    text-align: center
}

#navi ul li a span {
    display: block;
    color: #2b5e53;
    text-transform: uppercase;
    color: #fff
}

#navi ul li a span.eng {
    font-family: "Didact Gothic", sans-serif;
    font-size: 1.5rem
}

#navi ul li a span.ja {
    font-family: "YakuHanMP", "Noto Serif JP", serif;
    font-size: 1.2rem;
    color: rgba(215, 167, 0, 0.7)
}

#navi ul li a:before {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B7B99E;
    content: '';
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 0%
}

#navi ul li a:hover {
    color: #2b5e53;
    opacity: 0.9
}

#navi ul li a:hover:before {
    width: 100%
}

#navi ul li:first-child:before {
    display: none
}

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

#page-top a {
    display: block;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #1B3B34;
    border-radius: 100%;
    text-align: center
}

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

.foot_navi {
    border-top: 1px solid #ccc;
    padding: 10px 0 20px;
    background: #1B3B34
}

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

.foot_navi ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 4px;
    text-align: center
}

.foot_navi ul li a {
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    padding-left: 20px
}

.foot_navi ul li a span.eng {
    display: none
}

.foot_navi ul li a:before {
    content: "";
    background-color: #B7B99E;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .45em;
    left: 0
}

.foot_navi ul li a:hover {
    color: #D7A700
}

#footer {
    color: #111;
    background: #ddd
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 30px;
    position: relative
}

#footer .inner .flogo {
    width: 260px;
    margin: 10px auto 0;
    min-height: 0;
    text-align: center
}

#footer .inner .footer_contact {
    margin: 10px 0 10px;
    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
}

#footer .inner li:not(:last-child) {
    margin-right: 10px
}

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

#footer .inner a {
    color: #D28742;
    display: block;
    text-align: center;
    padding: 8px 0
}

#footer .inner .bnr_tel {
    white-space: nowrap;
    color: #D28742;
    background: #fff;
    border: 1px solid #D28742;
    font-size: 2rem;
    width: 280px
}

#footer .inner .bnr_tel:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold
}

#footer .inner .bnr_tel:hover {
    background: #D28742;
    color: #fff
}

#footer .inner .bnr_mail {
    color: #fff;
    font-size: 2rem;
    background: #1B3B34;
    width: 280px
}

#footer .inner .bnr_mail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold
}

#footer .inner .bnr_mail:hover {
    background: #8bc57b;
    color: #333
}

#footer .inner .address {
    padding: 20px 0;
    text-align: center
}

.copyright {
    padding: 3px 0;
    background: linear-gradient(45deg, #B67B03 0%, #d6af11 45%, #FEE9A0 70%, #d6af11 85%, #B67B03 90% 100%);
    color: #333;
    font-size: 1.2rem
}

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

#slideshow {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative
}

@media all and (max-width: 800px) {
    #slideshow {
        height: 70vh
    }
}

#catch {
    z-index: 1000;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#catch.catchOn {
    opacity: 1;
    -webkit-transition: 3s;
    transition: 3s
}

#slider {
    height: 90vh
}

@media all and (max-width: 639px) {
    #slider {
        height: 70vh
    }
}

#flash {
    background: url(../bxslider/images/0.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    position: relative
}

@media all and (max-width: 639px) {
    #flash {
        height: 70vh
    }
}

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

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

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

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

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

.slideimg {
    max-width: 1200px;
    height: auto;
    margin: 0 auto
}

@media all and (max-width: 639px) {
    .slideimg {
        height: 70vh
    }
}

.bg_contact {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    background: #eee
}

.contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.5rem
}

.contact-wrap .contact-left {
    width: 30%;
    font-size: 1.2rem;
    border-right: 1px solid #ccc
}

.contact-wrap .contact-left .mtitle-contact {
    border-bottom: none;
    padding-left: 0
}

.contact-wrap .contact-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 20px
}

@media all and (max-width: 800px) {
    .contact-wrap {
        font-size: 1.3rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contact-wrap .contact-left {
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        border-right: 0
    }

    .contact-wrap .contact-right {
        width: 100%;
        margin: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        text-align: center
    }
}

.contact-txt {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px
}

.contact_bnr li {
    display: inline-block
}

.contact_bnr li .bnr_tel {
    border: 1px solid #1B3B34;
    color: #fff;
    background: #1B3B34
}

.contact_bnr li .bnr_tel:before {
    content: "\f095"
}

.contact_bnr li .bnr_tel:hover {
    background: #000
}

.contact_bnr li .bnr_fax {
    background: #FFFFFF;
    border: 1px solid #1B3B34;
    color: #1B3B34
}

.contact_bnr li .bnr_fax:before {
    content: "\f1ac"
}

.contact_bnr li .bnr_mail {
    border: 1px solid #ffcf26;
    background: #ffda59;
    color: #222
}

.contact_bnr li .bnr_mail:before {
    content: "\f0e0"
}

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

.contact_bnr li a,
.contact_bnr li span {
    display: block;
    padding: 8px 5px;
    width: 270px;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center
}

.contact_bnr li a:before,
.contact_bnr li span:before {
    font-family: 'FontAwesome';
    margin-right: 5px
}

.single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0
}

.single02 {
    margin: 0 auto;
    padding: 50px 0;
    max-width: 1800px
}

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

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

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.mbox {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px
}

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

.mbox2 {
    text-align: center;
    padding: 10px;
    margin-bottom: 100px
}

.mbox3 {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff
}

.mbox4 {
    padding: 10px;
    border: 1px solid #B7B99E;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1)
}

.bg01 {
    background: url(../img/bg_body2.jpg)
}

.bg02 {
    background: rgba(27, 59, 52, 0.2);
    padding-bottom: 200px
}

.bg-grid {
    background: rgba(255, 255, 255, 0.9);
    background-image: -webkit-linear-gradient(transparent 95%, rgba(136, 136, 136, 0.2) 50%, rgba(136, 136, 136, 0.2)), -webkit-linear-gradient(0deg, transparent 95%, rgba(136, 136, 136, 0.2) 50%, rgba(136, 136, 136, 0.2));
    background-size: 20px 20px;
    background-repeat: repeat
}

.bg-gray {
    background: #f1edee
}

#main {
    float: left;
    width: 70%;
    min-height: 350px
}

#side {
    float: right;
    width: 26%
}

.mtitle {
    color: #333;
    line-height: 1.9;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.7rem
}

.mtitle span {
    display: block;
    font-size: 5rem;
    color: #1B3B34;
    position: relative;
    font-family: "Catamaran", sans-serif;
    text-transform: uppercase
}

.mtitle span:after {
    content: "";
    height: 2px;
    width: 20px;
    border-radius: 10px;
    background: #1B3B34;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 2px
}

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

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

.mtitle.white span:after {
    background-color: #eee
}

.mtitle.mtitle_left {
    text-align: left
}

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

.mtitle2 {
    font-weight: bold;
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.5
}

.mtitle2 span {
    position: relative;
    display: inline-block;
    min-width: 20%
}

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

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

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

.mtitle2.white span:before,
.mtitle2.white span:after {
    background-color: #ffda59
}

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

@media all and (max-width: 320px) {
    .mtitle2 span:before {
        left: -3px
    }

    .mtitle2 span:after {
        right: -3px
    }
}

.mtitle3 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: #0b1815;
    margin: 65px 0 30px;
    z-index: 10;
    line-height: 1.4;
    padding-left: 10px
}

.mtitle3 span {
    position: absolute;
    z-index: 0;
    color: rgba(27, 59, 52, 0.15);
    font-weight: bold;
    text-shadow: none;
    font-size: 12rem;
    font-family: "Catamaran", sans-serif;
    z-index: -1;
    top: -80px;
    left: -10px;
    text-transform: uppercase
}

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

    .mtitle3 span {
        font-size: 5rem;
        top: -54px
    }
}

.mtitle-area {
    font-size: 2.2rem
}

.mtitle-area span {
    background: #1B3B34;
    color: #fff;
    padding: 4px 10px;
    margin-right: 15px;
    font-size: 4.2rem;
    letter-spacing: .1rem;
    position: relative;
    font-family: "Catamaran", sans-serif;
    text-transform: uppercase
}

.mtitle_point {
    margin-bottom: 15px;
    font-size: 1.7rem;
    position: relative;
    text-align: center
}

.mtitle_point:after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #1B3B34;
    display: block;
    margin: 10px auto 0
}

.mtitle-bll {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 2px solid #EEEEEE;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333
}

.mtitle-bll:before {
    font-family: 'FontAwesome';
    content: "\f105";
    margin-right: 5px;
    color: #1B3B34
}

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

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

.mtitle_sub {
    color: #3a200c;
    line-height: 2.0;
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #B7B99E;
    margin: 8px 0
}

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

.mtitle_box {
    background: #B7B99E;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    padding: 8px 10px;
    margin-bottom: 10px
}

.mtitle_box span {
    font-weight: normal;
    font-size: 14px
}

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

.mtitle_box2 {
    background: #234c43;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    font-weight: bold;
    overflow: hidden;
    padding: 5px 10px;
    margin-bottom: 15px
}

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

.mtitle_box2:before {
    background-color: #B7B99E;
    content: '';
    display: block;
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
    position: absolute;
    bottom: 0px;
    right: -100px;
    width: 300px;
    height: 280px
}

@media all and (max-width: 639px) {
    .mtitle_box2 {
        font-size: 15px;
        line-height: 1.5;
        padding-right: 40px
    }

    .mtitle_box2 span {
        font-size: 12px
    }

    .mtitle_box2:before {
        width: 215px;
        right: -120px
    }
}

.mtitle-contact {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid rgba(58, 32, 12, 0.5);
    padding-left: 10px
}

.mtitle-contact:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    background: #1B3B34;
    left: 0;
    bottom: -2px
}

.mtitle-contact span {
    font-size: 3.5rem;
    color: #1B3B34;
    font-family: "Catamaran", sans-serif;
    margin-right: 5px;
    text-transform: uppercase
}

.mtitle-contact span:first-letter {
    color: #555
}

@media all and (max-width: 639px) {
    .mtitle-contact span {
        font-size: 2.7rem
    }
}

.mtitle-contact.white {
    font-size: 2.2rem;
    border-bottom-color: #fff
}

.mtitle-contact.white:before {
    background: #4ba491
}

.mtitle-contact.white span {
    font-size: 5rem;
    display: block;
    line-height: 1.3;
    color: #fff
}

.mtitle-contact.white span:first-letter {
    color: #ffda59
}

@media all and (max-width: 639px) {
    .mtitle-contact.white span {
        font-size: 3.5rem
    }
}

.mtext1 {
    font-size: 1.9rem;
    font-weight: bold
}

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

.mtext2 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .1rem
}

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

.mtext3 {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    color: #1B3B34;
    line-height: 1.4
}

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

.mtitle_bnr {
    font-size: 2rem;
    font-weight: 600;
    color: #1B3B34;
    text-align: center;
    margin-bottom: 10px
}

.mtitle_bnr:before {
    font-family: 'FontAwesome';
    font-weight: bold;
    margin-right: 5px
}

.mtitle_bnr.mtitle_bnr_01:before {
    content: "\f015"
}

.mtitle_bnr.mtitle_bnr_02:before {
    content: "\f0ad"
}

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

.mtitle_category:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f0ca";
    margin-right: 5px;
    color: #1B3B34
}

.mtitle_catch {
    font-weight: bold;
    margin: 10px 0;
    color: #0b1815;
    border-bottom: 1px solid #1B3B34;
    font-size: 1.8rem;
    background: #f5f5f5
}

.btn01 a {
    background: #1B3B34;
    text-align: center;
    width: 270px;
    margin: 0 auto;
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    border: 1px solid #1B3B34;
    border-radius: 25px;
    color: #FFFFFF;
    position: relative
}

.btn01 a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.btn01 a:hover {
    background: #000;
    border-color: #1B3B34
}

.btn01 a:hover:after {
    right: 10px
}

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

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

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

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

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

.news {
    overflow: hidden
}

.news dt {
    float: left;
    width: 8em;
    padding-top: 10px;
    font-weight: normal
}

.news dd {
    padding: 10px 0 10px 8em;
    border-bottom: 1px dotted #DDDDDD
}

.news dd:last-child {
    border-bottom: none
}

.news-bl {
    overflow: hidden;
    margin: 15px auto 30px
}

.news-bl dt {
    float: left;
    width: 7em;
    padding: 3px 5px;
    line-height: 1.3;
    background: #1B3B34;
    color: #fff;
    text-align: center
}

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

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

.bg-greet {
    background: url(../img/3.jpg) no-repeat 50%;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 1
}

.bg-greet.greet02 {
    background: url(../img/2.jpg) no-repeat 50% 50%/cover
}

.bg-greet.greet03 {
    background: url(../img/12.jpg) no-repeat 50% 50%/cover
}

.bg-greet.greet04 {
    background: url(../img/14.jpg) no-repeat 79% 38%/cover
}

.bg-greet.greet05 {
    background: url(../img/9.jpg) no-repeat 50% 50%/cover
}

.bg-greet:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.1)
}

.bg-greet .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0 20px
}

.bg-greet .inner>.mtitle {
    color: #fff;
    text-shadow: 0 0 4px rgba(58, 32, 12, 0.8);
    font-weight: bold
}

.bg-greet .inner>.mtitle span {
    color: #fefefe
}

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

    .bg-greet .inner {
        width: 99%;
        padding: 38px 0 5px
    }
}

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

.bg-01:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-01.jpg) no-repeat center left;
    opacity: .7;
    background-size: cover
}

.bg-01 .mbox {
    z-index: 2;
    position: relative
}

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

.bg-02 {
    background: url(../img/bg-01.jpg) no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    margin-top: 40px
}

.bg-02:before {
    background: #1B3B34;
    opacity: 0.5;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px
}

@media all and (max-width: 639px) {
    .bg-02 {
        background: url(../img/bg-01_s.jpg) no-repeat 68% 50%
    }
}

.bg-02 .mbox {
    max-width: 700px;
    background: none;
    margin: 0 auto;
    color: #fff;
    position: relative;
    font-size: 1.6rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.9);
    padding: 35px
}

.bg-02 .mbox:before {
    position: absolute;
    top: -180px;
    left: 50%;
    content: "";
    width: 1px;
    height: 200px;
    background: #bbb;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

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

    .bg-02 .mbox {
        width: 100%;
        margin: 0 auto;
        font-size: 1.3rem
    }

    .bg-02 .mbox:before {
        height: 140px;
        top: -160px
    }
}

.bg-gradient {
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(254, 254, 254, 0.5)), color-stop(50%, rgba(254, 254, 254, 0.5)), color-stop(50%, rgba(183, 185, 158, 0.5)), to(rgba(183, 185, 158, 0.5)));
    background-image: linear-gradient(to right bottom, rgba(254, 254, 254, 0.5) 0%, rgba(254, 254, 254, 0.5) 50%, rgba(183, 185, 158, 0.5) 50%, rgba(183, 185, 158, 0.5) 100%)
}

.bg-03 {
    background: rgba(183, 185, 158, 0.5)
}

.bg-recruit {
    background: url(../img/bg-recruit.jpg) no-repeat center bottom;
    padding: 50px 0;
    background-size: cover
}

.bg-recruit .inner {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
}

.bg-beige {
    background: rgba(183, 185, 158, 0.5)
}

.bg-rental {
    background: url(../img/bg-rental.jpg) no-repeat center top;
    background-size: cover
}

.bg-map {
    background: url(../img/map.png) no-repeat right bottom;
    padding: 60px 0
}

.bg-map .map-inner {
    width: 450px;
    margin-right: auto;
    padding: 10px
}

@media all and (max-width: 639px) {
    .bg-map {
        background-size: contain
    }

    .bg-map .map-inner {
        background: rgba(0, 0, 0, 0.2);
        margin-bottom: 80px;
        width: 90%
    }
}

.article {
    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
}

.article .article_image {
    width: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.article .article_detail {
    width: 40%;
    padding: 70px 0
}

.article .article_detail .inner {
    margin: 0 auto;
    width: 80%
}

.article .article_detail .inner>.btn01 a {
    background: lemonchiffon;
    font-size: 1.7rem
}

.article .article_detail .inner>.btn01 a:hover {
    background: #333
}

@media all and (max-width: 800px) {
    .article .article_detail .inner {
        width: 90%
    }
}

.article.article_01 {
    background: #1B3B34;
    color: #fff
}

.article.article_01 .article_image {
    background-image: url(../img/article-bg.jpg)
}

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

    .article .article_image,
    .article .article_detail {
        width: 100%
    }

    .article .article_image {
        display: none
    }

    .article .article_detail {
        padding: 30px 0
    }
}

.tbl {
    width: 100%
}

.tbl th,
.tbl td {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #CCCCCC
}

.tbl th {
    background: #F9F9F9;
    font-weight: 500
}

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

.tbl .cell01 {
    width: 25%
}

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

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

.tbl_new {
    width: 100%
}

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

.tbl_new tr th {
    font-weight: 500
}

.tbl_new tr th span {
    font-size: 1.4rem
}

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

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

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

.company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #ccc;
    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: #ccc;
    margin-top: -10px
}

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

.tbl0 {
    width: auto
}

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

.tbl0 th {
    padding-left: 0;
    font-weight: normal;
    background: none
}

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

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

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

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

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

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

.list_check {
    padding: 15px;
    border: 3px solid #B7B99E
}

.list_check li {
    font-weight: bold;
    font-size: 1.7rem
}

.list_check li:not(:last-child) {
    border-bottom: 1px dotted #CCCCCC;
    margin-bottom: 10px;
    padding-bottom: 8px
}

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

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

    .list_check li {
        font-size: 1.6rem
    }
}

.corporate li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px
}

.corporate li a {
    text-decoration: underline
}

.corporate li:before {
    content: "●";
    color: #aaa;
    margin-right: 4px
}

.corporate li:not(:last-child):after {
    content: "/";
    margin-left: 8px
}

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

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

.ol-list li .ol-txt {
    font-weight: normal;
    font-size: 1.5rem;
    padding-left: 45px
}

.ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: #B7B99E;
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 50%;
    color: #111;
    margin-right: .3em
}

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

.list-biz {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden
}

.list-biz li {
    padding: 5px 5px 5px 10px;
    background: #ffda59;
    width: 48%;
    font-weight: bold;
    position: relative;
    margin-bottom: 10px
}

.list-biz li span {
    font-size: .9em
}

.list-biz li:nth-child(even) {
    padding-left: 25px
}

.list-biz li:before {
    position: absolute;
    top: 50%;
    right: -10px;
    content: "";
    width: 35px;
    height: 100%;
    background: #ffda59;
    border-radius: 100%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.list-biz li:after {
    position: absolute;
    top: 50%;
    right: -16px;
    content: "";
    width: 36px;
    height: 100%;
    background: #fff;
    border-radius: 100%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media all and (max-width: 639px) {
    .list-biz li {
        padding-right: 28px
    }
}

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

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

.blog-wrap>li {
    width: 19%;
    margin: 0 0.5% 15px 0.5%;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    background: #fcfcfc
}

@media all and (max-width: 800px) {
    .blog-wrap>li {
        width: 49%
    }
}

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

.blog-contents {
    padding: 10px 10px 15px
}

.blog-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #eee
}

.blog-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-family: 'object-fit: cover;'
}

.blog-img:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.blog-date {
    color: #1B3B34;
    font-size: 14px
}

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

.blog-title {
    font-weight: bold;
    color: #1B3B34;
    line-height: 1.5;
    margin-bottom: 5px
}

.blog-txt {
    font-size: 13px;
    line-height: 1.5;
    color: #3a200c
}

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

.pages {
    text-align: center;
    margin-top: 30px
}

.pages .page_next,
.pages .page_prev {
    display: inline;
    margin: 0 20px
}

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

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

.column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid rgba(58, 32, 12, 0.5);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px
}

.column2 .child1 {
    width: 40%;
    margin-right: 20px
}

.column2 .child2 {
    width: 57%
}

.column2.type1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

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

    .column2 .child1,
    .column2 .child2 {
        width: 100%
    }

    .column2 .child1 {
        margin-bottom: 10px
    }
}

.column3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -3%
}

.column3 .child {
    width: 31.3%;
    margin: 0 3% 3% 0;
    position: relative
}

.column3 .child:nth-child(3n) {
    margin: 0 0 3% 0
}

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

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

.column4 .child {
    width: 23.5%;
    margin: 0 2% 2% 0;
    position: relative
}

.column4 .child:nth-child(4n) {
    margin: 0 0 2% 0
}

.tcenter_pc {
    text-align: center
}

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

.cut {
    overflow: hidden;
    zoom: 1
}

.pr {
    min-height: 240px;
    background-size: cover
}

.spbr {
    display: none
}

.color1 {
    color: #1B3B34
}

.color2 {
    color: #f76740
}

.color3 {
    color: #3b8172
}

.yellow {
    color: #ffda59;
    text-shadow: 0 0 5px rgba(58, 32, 12, 0.5)
}

.num {
    color: #c00;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center
}

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

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

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

.sns {
    text-align: center
}

.sns li {
    display: inline-block
}

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

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

.sns li a.sns-insta {
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat
}

.sns li a.sns-insta:before {
    background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat
}

.breadcrumb {
    margin-bottom: 30px;
    padding-left: 0;
    font-size: 1.3rem
}

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

.breadcrumb li a {
    color: #ffda59
}

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

.breadcrumb li .home {
    font-family: 'FontAwesome'
}

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

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

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

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

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

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

.form .textarea {
    height: 30px
}

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

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

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

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

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

.form button,
.form .form-pattern-1 .submit-btn {
    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: #1B3B34;
    border: 1px solid #1B3B34;
    border-radius: 25px;
    color: #fff
}

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

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

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

.form button:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f0e0";
    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: .6875rem 2.1875rem .6875rem .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: .75rem;
    margin-top: -8px;
    margin-top: -.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #1B3B34
}

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

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

.form label.radio_text:after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #1B3B34;
    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 #fff;
    box-shadow: 20px -1px #fff
}

.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 #1B3B34;
    border-bottom: 3px solid #1B3B34;
    -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
}

.memo {
    background: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    padding: 10px
}

.bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.bnr li {
    width: 33.3333333%
}

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

    .bnr li {
        float: none;
        width: 100%
    }
}

.top_bnr {
    position: relative;
    overflow: hidden;
    min-width: 220px;
    width: 100%;
    background: #000000;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #FFFFFF
}

.top_bnr * {
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out
}

.top_bnr img {
    max-width: 100%;
    position: relative;
    opacity: 0.9
}

.top_bnr figcaption {
    position: absolute;
    top: 45%;
    left: 7%;
    right: 7%;
    bottom: 45%;
    border: 1px solid white;
    border-width: 1px 1px 0
}

.top_bnr .heading {
    overflow: hidden;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    bottom: 0;
    width: 100%
}

.top_bnr h2 {
    display: table;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    text-align: center;
    width: auto;
    font-size: 2.2rem;
    text-transform: uppercase;
    text-shadow: -2px 1px 0 rgba(0, 0, 0, 0.6);
    font-weight: bold
}

.top_bnr h2:before,
.top_bnr h2:after {
    position: absolute;
    display: block;
    width: 1000%;
    height: 1px;
    content: '';
    background: white;
    top: 50%
}

.top_bnr h2:before {
    left: -1000%
}

.top_bnr h2:after {
    right: -1000%
}

.top_bnr p {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    padding: 0 20px;
    margin: 0;
    opacity: 0;
    line-height: 1.6em
}

.top_bnr a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1
}

.top_bnr:hover img,
.top_bnr.hover img {
    opacity: 0.25;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.top_bnr:hover figcaption,
.top_bnr.hover figcaption {
    top: 7%;
    bottom: 7%
}

.top_bnr:hover p,
.top_bnr.hover p {
    opacity: 1;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s
}

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

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

.gallery li {
    width: calc((100% - 30px) /3);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 15px 20px 0
}

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

.gallery li a {
    background: #f2f2f2;
    display: block;
    text-align: center;
    padding: 0px;
    height: 180px
}

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

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

.gallery.gallery2 li {
    width: calc((100% - 32px) /5);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 8px 20px 0
}

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

@media all and (max-width: 639px) {
    .gallery.gallery2 li {
        width: calc((100% - 40px) /3);
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        margin: 0 6px 10px
    }

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

    .gallery.gallery2 li:nth-child(5n) {
        margin-right: 6px
    }
}

@media screen and (max-width: 800px) {
    .gallery li {
        width: 48%;
        margin: 0 1% 20px
    }

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

    .gallery li:nth-child(3n) {
        margin: 0 1% 20px
    }

    .gallery li a {
        height: 100px
    }
}

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

.list2 li {
    width: 49%;
    margin: 0 0.5% 15px
}

.list2 li a {
    background: #f2f2f2;
    display: block;
    text-align: center;
    padding: 0px;
    height: 250px
}

.list2 li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

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

    .list2 li a {
        height: 200px
    }
}

.list3 {
    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
}

.list3 li {
    width: 32%
}

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

.flex {
    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: 1400px;
    margin: 0 auto
}

.flex li {
    width: 32%;
    padding: 15px;
    position: relative
}

.flex li .border {
    position: absolute;
    background: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.flex li .border:nth-of-type(1) {
    top: 0;
    left: 0;
    border-left: 1px solid #B7B99E;
    border-top: 1px solid #B7B99E;
    width: 50px;
    height: 30px
}

.flex li .border:nth-of-type(2) {
    bottom: 0;
    right: 0;
    border-right: 1px solid #B7B99E;
    border-bottom: 1px solid #B7B99E;
    width: 50px;
    height: 30px
}

.flex li:hover .border {
    width: 102%;
    height: 105%
}

.flex li:hover .linkbtn-more {
    background: #1B3B34;
    color: #fff;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.flex li a {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.flex li:hover .snip1445 img,
.flex li:hover .snip1445 .hover img {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.4;
    opacity: 0.4
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after,
.flex li:hover .snip1445 figcaption div:before,
.flex li:hover .snip1445 .hover figcaption div:before,
.flex li:hover .snip1445 figcaption div:after,
.flex li:hover .snip1445 .hover figcaption div:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s
}

.snip1445 {
    position: relative;
    overflow: hidden;
    min-width: 230px;
    max-width: 100%;
    height: 200px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background-color: #111
}

.snip1445 * {
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.snip1445 *:before,
.snip1445 *:after {
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.snip1445 img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    vertical-align: top
}

.snip1445 figcaption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 10px 10px
}

.snip1445 figcaption:before,
.snip1445 figcaption:after {
    height: 1px;
    width: 100%;
    position: absolute;
    content: '';
    background-color: #ffffff
}

.snip1445 figcaption:before {
    top: 0;
    left: 0;
    -webkit-transform: translateX(200%);
    transform: translateX(200%)
}

.snip1445 figcaption:after {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%)
}

.snip1445 figcaption>div:before,
.snip1445 figcaption>div:after {
    width: 1px;
    height: 300px;
    position: absolute;
    content: '';
    background-color: #ffffff
}

.snip1445 figcaption>div:before {
    top: 0;
    left: 0;
    -webkit-transform: translateY(200%);
    transform: translateY(200%)
}

.snip1445 figcaption>div:after {
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%)
}

.snip1445 h2,
.snip1445 h4 {
    margin: 0;
    width: 150px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #1B3B34
}

.snip1445 h2 {
    font-size: 1.8rem;
    letter-spacing: 1px
}

.snip1445 .click {
    display: block;
    font-weight: bold;
    width: 150px;
    margin-left: auto;
    background-color: #B7B99E;
    padding: 3px 10px;
    color: #111;
    text-shadow: #fff 0px 0px 0px
}

.snip1445 img {
    opacity: 0.9
}

.linkbtn-ttl {
    font-size: 1.8rem;
    color: #1B3B34;
    margin-bottom: 10px;
    float: left
}

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

.linkbtn-more {
    float: right;
    color: #1B3B34;
    padding: 3px;
    border: 1px solid #1B3B34
}

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

@media screen and (max-width: 768px) {
    .flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .flex li {
        width: 80%;
        margin-bottom: 30px
    }

    .snip1445 {
        min-width: 230px;
        max-width: 100%;
        height: 200px
    }

    .snip1445 img {
        opacity: 0.6;
        width: 100%
    }
}

@media screen and (max-width: 480px) {
    .flex li {
        width: 95%
    }
}

.linkbtn-txt {
    color: #111;
    line-height: 1.5;
    margin-top: 10px
}

#works:before {
    content: "";
    height: 80px;
    margin-top: -80px;
    display: block;
    visibility: hidden
}

.topbnr {
    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;
    max-width: 1200px;
    margin: 0 auto 30px
}

.topbnr li {
    width: 31%;
    margin: 0 1% 0;
    background: #fff;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    position: relative
}

.topbnr li:before {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid #1B3B34;
    border-bottom: 5px solid #1B3B34;
    z-index: 20
}

.topbnr li:hover {
    -webkit-box-shadow: 0 0 0 3px #1B3B34;
    box-shadow: 0 0 0 3px #1B3B34
}

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

.top-bnr-wrap {
    position: relative;
    background: #fff;
    padding: 10px
}

.top-bnr-wrap a {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10
}

.top-bnr-wrap .top-bnr-title {
    background: #1B3B34;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 5px 5px 5px 10px;
    margin-bottom: 10px
}

.top-bnr-wrap .top-bnr-title:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a9";
    margin-right: 5px
}

.top-bnr-wrap:hover a {
    cursor: pointer
}

.top-bnr-wrap:hover .top-bnr-title {
    background: #030706
}

.name {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    max-width: 300px;
    margin: -30px 0 0 auto;
    font-size: 1.8rem;
    position: relative;
    z-index: 3;
    line-height: 1.6
}

.name span {
    display: block;
    font-size: 1.3rem
}

.memo2 {
    background: #ede5d8;
    padding: 10px
}

.memo2 span {
    padding-right: 5px
}

.note {
    border: 3px solid #ddd;
    padding: 10px;
    background: lemonchiffon
}

.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;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px
}

.flow-dl dt {
    background: #1B3B34;
    font-size: 3rem;
    font-family: "YakuHanMP", "Noto Serif JP", serif;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px
}

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

.txt1 {
    padding-left: 10px
}

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

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

.blog-month ul li {
    border: 1px solid #ccc;
    padding: 3px 0;
    margin-bottom: 5px;
    text-align: center;
    background: lemonchiffon
}

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

@media all and (max-width: 800px) {
    .blog-month ul li {
        width: 44%
    }
}

.blog-month2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.blog-month2 ul li {
    border-radius: 5px;
    padding: 2px 4px;
    width: 90px;
    display: block;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 10px 5px 0;
    background: rgba(45, 177, 236, 0.2)
}

.blog-month3 dt {
    display: none
}

.blog-month3 dd {
    border: 1px solid #ccc;
    padding: 3px 0;
    width: 23%;
    margin: 0.5% 10px;
    text-align: center;
    background: rgba(27, 59, 52, 0.2)
}

.blog-month3 dd a {
    color: #3a200c
}

@media all and (max-width: 639px) {
    .blog-month3 dd {
        width: 44%
    }
}

#flexwrap {
    top: 160px;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    float: left
}

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

#sidewrap {
    float: right;
    width: 300px;
    z-index: 10
}

#side {
    width: 22%;
    float: right
}

.sttl-1 {
    background: #000;
    color: #fff;
    text-indent: 5px;
    font-size: 1.7rem;
    padding: 5px 0
}

.sttl-1:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0ca";
    margin-right: 5px
}

@media screen and (max-width: 768px) {
    #flexwrap {
        width: 100%;
        margin-bottom: 30px
    }

    #main {
        float: none;
        width: 95%;
        margin: 0 auto 20px
    }

    #side {
        float: none;
        width: 95%;
        margin: 0 auto;
        height: auto;
        padding: 0
    }

    #sidewrap {
        display: none
    }
}

.voice-dl dt {
    position: relative;
    z-index: 2;
    width: 95%;
    padding: 10px;
    background: #333;
    color: #1B3B34;
    font-weight: bold
}

.voice-dl dd {
    position: relative;
    z-index: 1;
    width: 97%;
    margin: -15px 0 30px auto;
    padding: 25px 10px 10px;
    background: #f3f3f3
}

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

.works-wrap>li {
    width: 31%;
    margin: 0 1% 15px
}

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

.works-gallery {
    width: 100%;
    height: 240px;
    line-height: 240px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 10px
}

.works-gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: 50% 50%;
    object-position: 50% 50%
}

@media all and (max-width: 639px) {
    .works-gallery {
        height: 150px;
        line-height: 150px
    }
}

.works-detail {
    font-size: 1.4rem
}

.works-detail>.news-bl dt {
    width: 5.5em
}

.works-detail>.news-bl dd {
    padding-left: 6.5em
}

@media all and (max-width: 639px) {
    .works-detail {
        font-size: 1.2rem
    }
}

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

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

.category li {
    width: 32%;
    margin: 0 0.5% 10px;
    background: lemonchiffon;
    border: 2px solid #aaa;
    text-align: center;
    padding: 5px 0;
    font-weight: bold
}

.category li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    margin-right: 5px
}

@media all and (max-width: 639px) {
    .category li {
        width: 49%
    }
}

.top-halfmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 1300px;
    margin: 0 auto 20px
}

.top-halfmenu * {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.top-halfmenu>li {
    position: relative;
    width: 32%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px;
    -webkit-box-shadow: 0 0 5px rgba(27, 59, 52, 0.2);
    box-shadow: 0 0 5px rgba(27, 59, 52, 0.2)
}

.top-halfmenu>li a {
    position: absolute;
    z-index: 5;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.top-halfmenu>li .half-left {
    width: 55%;
    overflow: hidden
}

.top-halfmenu>li .half-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}

.top-halfmenu>li .half-right {
    background-image: -webkit-gradient(linear, left top, right top, from(#B7B99E), color-stop(25%, #B7B99E), color-stop(25%, #a1a480), color-stop(50%, #a1a480), color-stop(50%, rgba(27, 59, 52, 0.5)), to(rgba(27, 59, 52, 0.5)));
    background-image: linear-gradient(to right, #B7B99E 0%, #B7B99E 25%, #a1a480 25%, #a1a480 50%, rgba(27, 59, 52, 0.5) 50%, rgba(27, 59, 52, 0.5) 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    color: #fff;
    width: 45%;
    padding: 20px
}

.top-halfmenu>li:hover .half-left img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.top-halfmenu>li:hover .half-right {
    background-position: 101% 0
}

.top-halfmenu>li:hover i {
    width: 50px
}

.top-halfmenu>li i {
    position: absolute;
    display: block;
    width: 100px;
    height: 1px;
    background: #fff;
    right: 5px;
    bottom: 20px;
    z-index: 3
}

.top-halfmenu .half-title {
    color: #3a200c;
    font-weight: bold
}

.top-halfmenu .half-title span {
    font-size: 2.8rem;
    display: block
}

@media all and (max-width: 639px) {
    .top-halfmenu li {
        width: 90%;
        margin: 0 auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .top-halfmenu li .half-left,
    .top-halfmenu li .half-right {
        width: 100%
    }

    .top-halfmenu li .half-left {
        height: 170px
    }

    .top-halfmenu li:not(:last-child) {
        margin-bottom: 15px
    }
}

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

.list-center.recruit-list {
    font-family: "YakuHanJP", "Noto Sans Japanese"
}

.list-center.recruit-list li {
    padding: 5px 10px;
    font-weight: bold;
    font-size: 1.8rem;
    color: #fff
}

.list-center.recruit-list li:first-child {
    background: #1B3B34
}

.list-center.recruit-list li:last-child {
    background: #f76740
}

@media all and (max-width: 639px) {
    .list-center.recruit-list li {
        width: 90%;
        text-align: center
    }
}

.txt-01 {
    text-align: center;
    font-size: 1.6rem
}

@media all and (max-width: 639px) {
    .txt-01 {
        text-align: left;
        font-size: 1.4rem
    }
}

.snip {
    border-top: 2px solid #fff;
    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
}

.snip figure.snip1432 {
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    min-width: 230px;
    width: 33.3%;
    background: #FFFFFF
}

.snip figure.snip1432 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease
}

.snip figure.snip1432 img {
    opacity: 1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s
}

.snip figure.snip1432 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.snip figure.snip1432 figcaption>div.one {
    height: 40%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.snip figure.snip1432 figcaption>div.two {
    height: 60%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.snip figure.snip1432 figcaption>div.two h3,
.snip figure.snip1432 figcaption>div.two p {
    position: absolute;
    top: 0;
    text-transform: uppercase;
    width: 100%;
    text-align: center
}

.snip figure.snip1432 figcaption>div.two h3 {
    bottom: 0;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3)
}

.snip figure.snip1432 figcaption>div.two h3 span {
    display: block;
    font-size: 2rem
}

.snip figure.snip1432 figcaption>div.two p {
    display: none;
    top: 100px
}

.snip figure.snip1432:hover {
    background: #1B3B34
}

.snip figure.snip1432:hover figcaption>div.one {
    height: 25%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.snip figure.snip1432:hover figcaption>div.two {
    height: 75%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.snip figure.snip1432:hover figcaption>div.two p {
    display: block
}

.snip figure.snip1432:hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.snip figure.snip1432 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute
}

@media all and (max-width: 800px) {
    .snip figure.snip1432 {
        width: 100%;
        min-height: initial;
        height: auto
    }
}

.point-txt {
    font-weight: bold;
    font-size: 2.2rem;
    color: #fcf050
}

.recruit-txt {
    width: 90%;
    margin: 0 auto;
    border-left: 4px solid #B7B99E;
    border-right: 4px solid #B7B99E;
    padding: 10px 20px
}

.menu-btn-list2 {
    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: 0 auto
}

.menu-btn-list2 .child {
    width: calc((100% - 45px) / 3);
    margin-right: 15px;
    margin-bottom: 30px
}

.menu-btn-list2 .child:nth-child(5n) {
    margin-right: 0
}

@media all and (max-width: 639px) {
    .menu-btn-list2 .child:nth-child(5n) {
        margin-right: auto
    }
}

.menu-btn-list2 .child a {
    display: block;
    position: relative;
    height: 225px;
    overflow: hidden;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#111), to(#555));
    background-image: linear-gradient(to right bottom, #111, #555)
}

.menu-btn-list2 .child a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    opacity: 0.4;
    -webkit-transition: 0.2s all ease-in;
    transition: 0.2s all ease-in
}

.menu-btn-list2 .child a:hover img {
    opacity: .8;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.menu-btn-list2 .child:nth-child(even) a {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#555), to(#111));
    background-image: linear-gradient(to right bottom, #555, #111)
}

@media all and (max-width: 800px) {
    .menu-btn-list2 .child a {
        height: 35vmin
    }
}

@media all and (max-width: 639px) {
    .menu-btn-list2 .child {
        width: 100%;
        margin: 0 auto 25px
    }

    .menu-btn-list2 .child a {
        height: 30vmin
    }
}

.menu-btn-list2 .menu-btn-title {
    position: absolute;
    line-height: 1.2;
    left: 30px;
    top: 20px;
    left: 35px;
    bottom: 30px;
    color: #fefefe;
    font-weight: 500;
    z-index: 2;
    font-size: 1.6rem
}

.menu-btn-list2 .menu-btn-title span {
    font-size: 1.8rem;
    line-height: 1;
    padding-left: 5px;
    padding-bottom: 3px;
    border-left: 1px solid #fefefe;
    font-weight: 400;
    display: block
}

@media all and (max-width: 639px) {
    .menu-btn-list2 .menu-btn-title {
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
        font-size: 1.8rem;
        left: 15px;
        font-weight: bold
    }

    .menu-btn-list2 .menu-btn-title span {
        font-size: 1.4rem;
        margin-right: 20px;
        margin-bottom: 10px
    }
}

.arrow {
    position: absolute;
    stroke-miterlimit: 5;
    stroke-width: 1;
    stroke: #fefefe;
    right: 20px;
    bottom: 30px;
    z-index: 4;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 13px
}

.arrow:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid #fefefe;
    border-radius: 100%
}

@media all and (max-width: 639px) {
    .arrow {
        width: 35px;
        height: 35px;
        padding-top: 5px
    }

    .arrow .arrow-svg {
        -webkit-transform: scale(0.6);
        transform: scale(0.6)
    }
}

.policy {
    padding: 30px;
    background: #fff;
    color: #333
}

.policy .policy-boc {
    letter-spacing: 0
}

.list_disc li {
    padding: 3px 0
}

.list_disc li:not(:last-of-type) {
    margin-bottom: 3px
}

.list_disc li:before {
    content: "●";
    margin-right: 3px;
    color: #1B3B34
}

/*# sourceMappingURL=basis.css.map */