body {
    color: #323232;
    font-family: 'Hiragino Kaku Gothic ProN', Meiryo, 'MS PGothic', Sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh
}

a {
    color: #094;
    text-decoration: none;
    transition: all 0.3s ease
}

img {
    max-width: 100%;
    height: auto
}

.bold {
    font-weight: bold
}

@keyframes view-zoomin {
    0% {
        opacity: 0;
        transform: scale(0.95)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0, 35px)
    }

    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

.animation {
    opacity: 0
}

.slideup.on {
    opacity: 1;
    animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1)
}

.zoomin.on {
    opacity: 1;
    animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1)
}

.loader {
    align-items: center;
    background: #fff;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999
}

.loader::after {
    animation: loader .5s linear infinite;
    border: 1px solid #094;
    border-radius: 50%;
    border-right: 1px solid rgba(0, 153, 68, 0.2);
    border-top: 1px solid rgba(0, 153, 68, 0.2);
    content: '';
    height: 70px;
    width: 70px
}

.loader.off {
    display: none
}

@keyframes loader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes hd-scrolled {
    0% {
        opacity: 0;
        transform: translate(0, -100%)
    }

    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

#header {
    box-sizing: border-box;
    margin: 0 auto
}

#header #head-txt {
    background: #ccc;
    padding: 2px 0
}

#header #head-txt>p {
    color: #111;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold
}

@media all and (max-width: 800px) {
    #header #head-txt>p {
        text-align: left;
        padding-left: 3px
    }
}

@media all and (max-width: 325px) {
    #header #head-txt {
        display: none
    }
}

#header #head-contact .inner {
    display: flex;
    flex-wrap: wrap;
    width: 1020px;
    margin: 0 auto 0;
    padding: 10px 0;
    align-items: center
}

#header .head-logo {
    margin-right: auto
}

#header .head-right {
    display: flex;
    flex-wrap: wrap;
    width: 450px;
    align-items: center;
    justify-content: flex-end
}

@media all and (max-width: 800px) {
    #header .head-right {
        display: none
    }
}

#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 a {
    color: #fff;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    width: 200px;
    padding: 5px 10px;
    text-align: center;
    background: #f60;
    border-radius: 30px;
    font-size: 1.9rem
}

#header .head-tel a:before {
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    content: "\f095"
}

#header .head-tel a:hover {
    background: #cc5200
}

@media all and (max-width: 639px) {
    #header .head-tel a {
        font-size: 1.4rem;
        width: 130px
    }
}

#header .head-mail {
    margin-left: 10px
}

#header .head-mail a {
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    padding-top: 30px;
    background: #00662d;
    line-height: 1.2;
    color: #fff;
    text-align: center
}

#header .head-mail a:before {
    position: absolute;
    font-size: 2.2rem;
    content: "\f0e0";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    top: 5px;
    left: 50%;
    transform: translateX(-50%)
}

#header .head-mail a:hover {
    background: #003317
}

#header .inner {
    width: 1020px;
    margin: 0 auto;
    position: relative
}

#header .inner #head-right {
    margin-left: auto
}

#header.scrolled {
    position: fixed;
    z-index: 9999;
    animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1)
}

#header.scrolled .inner #logo {
    float: left
}

#navi {
    width: 100%;
    background: #094;
    border-bottom: 3px solid #eee
}

#navi ul {
    margin: 0 auto;
    width: 1020px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-wrap: wrap
}

#navi ul li {
    position: relative;
    flex: 1 0 auto;
    text-align: center
}

#navi ul li:not(:first-child) {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 2px, transparent 2px, transparent 5px);
    background-size: 2px 6px;
    background-position: left;
    background-repeat: repeat-y
}

#navi ul li a {
    display: block;
    letter-spacing: .1rem;
    position: relative;
    line-height: 1.5;
    font-size: 1.5rem;
    padding: 45px 0 10px;
    text-shadow: 2px 2px 2px rgab(#000, 0.2);
    color: #fff;
    font-weight: bold;
    text-align: center
}

#navi ul li a:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    display: block;
    font-size: 2.6rem;
    left: 50%;
    font-weight: bold;
    transform: translateX(-50%);
    top: 5px
}

#navi ul li a:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #eee;
    content: '';
    transition: all 0.3s ease-in-out 0s;
    z-index: 0
}

#navi ul li a:hover {
    color: lemonchiffon
}

#navi ul li a:hover:before {
    background: #ffe533
}

#navi ul li:first-child a::after {
    content: "\f015"
}

#navi ul li:nth-child(2) a::after {
    content: "\f1ad"
}

#navi ul li:nth-child(3) a::after {
    content: "\f0d1"
}

#navi ul li:nth-child(4) a::after {
    content: "\f0b1"
}

#navi ul li:nth-child(5) a::after {
    content: "\f0e0"
}

#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999
}

#page-top a {
    display: block;
    background: #aaa;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-family: 'FontAwesome';
    font-size: 1.2rem;
    text-align: center
}

#page-top a:hover {
    opacity: 0.6
}

.foot_navi {
    padding: 10px 0
}

.foot_navi ul {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.foot_navi ul li {
    width: 32%;
    margin-bottom: 4px;
    margin: 0 0.5% 4px
}

.foot_navi ul li a {
    color: #111;
    font-size: 1.4rem;
    position: relative;
    padding-left: 20px;
    font-weight: bold
}

.foot_navi ul li a:before {
    content: "";
    background-color: #094;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .45em;
    left: 0
}

.foot_navi ul li a:hover {
    color: #094
}

#footer {
    border-top: 1px solid #eee;
    font-size: 1.2rem;
    color: #111
}

#footer .inner {
    width: 1020px;
    margin: 0 auto;
    padding: 15px 0
}

#footer .inner .address {
    margin-bottom: 10px
}

.copyright {
    padding: 3px 0;
    background: #00662d;
    color: #fff
}

#main_slide {
    overflow: hideen;
    position: relative
}

.catch {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate3d(-50%, 0, 0)
}

#catch {
    position: absolute;
    z-index: 999;
    width: 100%;
    font-weight: bold;
    text-align: center;
    top: 50%;
    left: 50%;
    max-width: 1020px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    padding: 20px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8)
}

#catch.is-hide {
    display: none
}

@media all and (max-width: 639px) {
    #catch {
        padding: 10px
    }
}

#flash {
    background: url(../bxslider/images/0.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    position: relative
}

.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: 1020px;
    height: auto;
    margin: 0 auto
}

.bg_contact {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    background: url(../img/bg01.jpg)
}

.bg_contact .single {
    padding: 30px 0
}

.bg_contact .news-bl {
    font-size: 1.4rem;
    margin: 5px 0
}

@media all and (max-width: 639px) {
    .bg_contact .single {
        padding: 20px 0
    }
}

.contact-txt {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px
}

.contact_bnr {
    text-align: center
}

.contact_bnr li {
    display: inline-block;
    margin: 0 15px
}

.contact_bnr li .bnr_tel {
    border: 1px solid #094;
    color: #FFFFFF;
    letter-spacing: .1em;
    background: #094
}

.contact_bnr li .bnr_tel:before {
    content: "\f095"
}

.contact_bnr li .bnr_tel:hover {
    background: #00cc5b;
    color: #FFFFFF
}

.contact_bnr li .bnr_fax {
    background: #FFFFFF;
    border: 1px solid #094;
    color: #094
}

.contact_bnr li .bnr_fax:before {
    content: "\f1ac"
}

.contact_bnr li .bnr_mail {
    border: 1px solid #f60;
    background: #fff;
    color: #111
}

.contact_bnr li .bnr_mail:before {
    content: "\f0e0"
}

.contact_bnr li .bnr_mail:hover {
    background: #f60;
    color: #fff
}

.contact_bnr li a,
.contact_bnr li span {
    display: block;
    padding: 8px 5px;
    width: 250px;
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: bold;
    border-radius: 25px
}

.contact_bnr li a:before,
.contact_bnr li span:before {
    font-family: 'FontAwesome';
    margin-right: 5px
}

.single {
    width: 1020px;
    margin: 0 auto;
    padding: 40px 0
}

.single02 {
    margin: 0 auto;
    padding: 40px 0
}

.margin-top {
    margin-top: -40px
}

@media all and (max-width: 639px) {
    .margin-top {
        margin-top: -30px
    }
}

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.mbox {
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px
}

@media all and (max-width: 639px) {
    .mbox {
        padding: 10px
    }
}

.mbox2 {
    box-sizing: border-box;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    font-size: 1.7rem
}

@media all and (max-width: 639px) {
    .mbox2 {
        font-size: 14px
    }
}

.mbox3 {
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem
}

@media all and (max-width: 639px) {
    .mbox3 {
        font-size: 1.2rem
    }
}

.mbox4 {
    padding: 10px;
    border: 1px solid #f60;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1)
}

.bg01 {
    background: url(../img/bg_body2.jpg)
}

.bg02 {
    background: rgba(0, 153, 68, 0.2);
    padding-bottom: 200px
}

.bg-grid {
    background: url(../img/body_bg.png);
    background-image: -webkit-linear-gradient(transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2)), -webkit-linear-gradient(0deg, transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2));
    background-size: 20px 20px;
    background-repeat: repeat
}

.bg-gray {
    background: #f7f7f7
}

.bg-map {
    background: url(../img/map.png) no-repeat right bottom;
    min-height: 250px;
    background-size: contain
}

@media all and (max-width: 639px) {
    .bg-map {
        -webkit-background-size: auto 200px;
        background-size: auto 200px;
        background-position: right top
    }
}

#main {
    float: left;
    width: 70%
}

@media all and (max-width: 639px) {
    #main {
        float: none;
        width: 100%;
        margin-bottom: 30px
    }
}

#side {
    float: right;
    width: 26%
}

@media all and (max-width: 639px) {
    #side {
        float: none;
        width: 100%
    }
}

.mtitle {
    color: #333;
    line-height: 1.9;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem
}

.mtitle span {
    display: block;
    font-size: 3.5rem;
    position: relative;
    color: #094
}

.mtitle span:after {
    content: "";
    height: 2px;
    width: 20px;
    border-radius: 10px;
    background: #00662d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px
}

.mtitle.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.1)
}

.mtitle.white span {
    color: lemonchiffon
}

.mtitle.white span:after {
    background-color: #eee
}

.mtitle.mtitle_left {
    text-align: left
}

.mtitle.mtitle_left span:after {
    left: 0;
    transform: none
}

.mtitle2 {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    color: #094
}

.mtitle3 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #00662d;
    margin: 20px 0 30px;
    text-shadow: 0 0 4px rgba(58, 32, 12, 0.2)
}

.mtitle3 span {
    position: absolute;
    z-index: 0;
    color: rgba(0, 0, 0, 0.2);
    font-weight: bold;
    text-shadow: none;
    font-size: 6rem;
    top: -55px;
    left: -10px
}

@media all and (max-width: 639px) {
    .mtitle3 {
        margin-top: 30px
    }

    .mtitle3 span {
        font-size: 3.3rem;
        top: -40px
    }
}

@media all and (max-width: 325px) {
    .mtitle3 span {
        font-size: 2.8rem
    }
}

.mtitle_point {
    margin-bottom: 15px;
    font-size: 1.7rem;
    position: relative;
    text-align: center
}

.mtitle_point:after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #094;
    display: block;
    margin: 10px auto 0
}

.mtitle-bll {
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 2px solid #EEEEEE;
    position: relative;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #094
}

.mtitle-bll:before {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #AAAAAA
}

.mtitle-bll:after {
    position: absolute;
    content: "";
    height: 2px;
    display: block;
    background: #094;
    bottom: -2px;
    width: 100px;
    left: 0
}

@media all and (max-width: 639px) {
    .mtitle-bll {
        font-size: 1.5rem;
        line-height: 1.5
    }
}

.mtitle_sub {
    color: #3a200c;
    line-height: 2.0;
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #094;
    margin: 8px 0
}

.mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: '';
    width: 6px;
    height: 50%;
    background-color: #f60
}

.mtitle_box {
    background: #00662d;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    padding: 5px 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%;
    transform: translateY(-50%);
    color: #fff
}

.mtitle_box2 {
    background: #fff;
    box-sizing: border-box;
    color: #111;
    font-size: 1.7rem;
    position: relative;
    font-weight: normal;
    border: 1px solid #555;
    overflow: hidden;
    padding: 5px 10px;
    margin-bottom: 10px
}

.mtitle_box2 .small-cap {
    font-weight: normal;
    font-size: 14px
}

.mtitle_box2:before {
    background-color: #555;
    content: '';
    display: block;
    transform: rotate(-40deg);
    position: absolute;
    bottom: 0px;
    right: -120px;
    width: 300px;
    height: 280px
}

@media all and (max-width: 800px) {
    .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
    }
}

.mtext1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: lemonchiffon;
    font-family: "YakuHanMP", "Noto Serif JP", serif
}

.mtext2 {
    font-size: 3.5rem;
    font-weight: normal;
    font-family: "YakuHanMP", "Noto Serif JP", serif;
    text-align: center;
    letter-spacing: .1rem
}

.mtitle_bnr {
    font-size: 2rem;
    font-weight: 600;
    color: #094;
    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;
    border-bottom: 1px solid #ccc
}

.mtitle_category:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f0ca";
    margin-right: 5px;
    color: #094
}

@media all and (max-width: 639px) {
    .mtitle_category {
        font-size: 1.5rem
    }
}

.mtitle_catch {
    font-weight: bold;
    margin: 10px 0;
    color: #00662d;
    border-bottom: 1px solid #094;
    font-size: 1.8rem;
    background: #f5f5f5
}

.btn01 a {
    background: #FFFFFF;
    text-align: center;
    width: 250px;
    margin: 0 auto;
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    border: 1px solid #094;
    border-radius: 25px
}

.btn01 a:hover {
    background: #094;
    color: #FFFFFF
}

.btn02 {
    width: 300px;
    margin: 20px auto 0
}

.btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #000;
    line-height: 24px;
    letter-spacing: .1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2)
}

.btn02 a i {
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 50px;
    height: 1px;
    background-color: #FFFFFF;
    transition: all 0.3s ease
}

.btn02 a:hover i {
    width: 34px
}

@media all and (max-width: 639px) {
    .btn02 {
        width: 280px
    }
}

.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
}

.news-bl dt {
    float: left;
    width: 7em;
    padding: 3px 5px;
    line-height: 1.3;
    background: #094;
    color: #FFFFFF;
    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/bg-04.jpg) no-repeat center bottom;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    background-attachment: fixed
}

.bg-greet .inner {
    width: 1020px;
    margin: 0 auto;
    padding: 40px 0 10px
}

.bg-greet .inner>.mtitle span {
    color: #094
}

@media all and (max-width: 800px) {
    .bg-greet {
        background-attachment: scroll
    }

    .bg-greet .inner {
        width: 99%;
        margin: 0 auto;
        padding: 50px 0 0px
    }
}

.bg-01 {
    background: url(../img/bg01.jpg)
}

.bg-02 {
    background: url(../img/bg-02.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover
}

.bg-03 {
    background: url(../img/bg-03.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover
}

.bg-gradient {
    background-image: linear-gradient(to top, rgba(0, 153, 68, 0.4) 0%, rgba(163, 232, 255, 0.2) 100%)
}

.article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.article .article_image {
    width: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.article .article_detail {
    width: 40%;
    box-sizing: border-box;
    padding: 100px 0
}

.article .article_detail .inner {
    margin: 0 auto;
    width: 80%
}

@media all and (max-width: 800px) {
    .article .article_detail .inner {
        width: 90%
    }
}

.article.article_01 {
    background: rgba(0, 153, 68, 0.8);
    color: #fff
}

.article.article_01 .article_image {
    background-image: url(../img/article_image_01.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 #7a7978
}

.tbl th {
    background: #a3e8ff;
    font-weight: 500
}

.tbl th span {
    font-size: 1.4rem
}

.tbl.timetable th,
.tbl.timetable td {
    text-align: center;
    font-size: 1.4rem
}

@media all and (max-width: 639px) {

    .tbl.timetable th,
    .tbl.timetable td {
        font-size: 1.2rem;
        padding: 5px
    }
}

.tbl.timetable td {
    color: #3a200c;
    background: #fff
}

.tbl.timetable .tr-01 td {
    background: lemonchiffon;
    text-align: center;
    font-weight: 500
}

.tbl_new {
    width: 100%
}

.tbl_new tr th,
.tbl_new tr td {
    vertical-align: middle;
    padding: 10px
}

.tbl_new tr th {
    font-weight: 700
}

.tbl_new tr th span {
    font-size: 1.4rem
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
    background: rgba(23, 130, 71, 0.2)
}

.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: #094;
    color: #FFFFFF;
    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: #094;
    margin-top: -10px
}

.company td {
    background: #F9F9F9;
    padding-left: 20px
}

.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: 10px;
    padding-left: 1rem;
    margin-bottom: 10px;
    border-bottom: 1px dotted #CCCCCC
}

.list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.list_check li {
    padding-bottom: 10px;
    margin-bottom: 10px
}

.list_check li:not(:last-child) {
    border-bottom: 1px dotted #CCCCCC
}

.list_check li:before {
    font-family: 'FontAwesome';
    content: "\f14a";
    margin-right: 5px;
    color: rgba(0, 153, 68, 0.8)
}

.ol-list {
    counter-reset: number;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.ol-list li {
    line-height: 2;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 1.6rem;
    box-sizing: border-box;
    width: 49%
}

.ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: #094;
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-right: .3em
}

@media all and (max-width: 639px) {
    .ol-list {
        font-size: 1.6rem
    }
}

.list-center {
    text-align: center
}

.list-center li {
    display: inline-block
}

.list-center.type01 li {
    border-radius: 30px;
    background: rgba(255, 102, 0, 0.8);
    color: #fff;
    border: 2px solid #f60;
    box-sizing: border-box;
    padding: 4px 10px;
    width: 20%;
    margin-bottom: 10px;
    font-weight: bold
}

@media all and (max-width: 639px) {
    .list-center.type01 li {
        width: 49%
    }
}

.point-wrap {
    border-bottom: 1px soldi #ccc;
    padding: 10px 0;
    margin-bottom: 5px
}

.point-wrap dt {
    position: relative;
    overflow: hidden;
    padding-left: 90px;
    font-size: 1.8rem;
    color: #094;
    border-bottom: 1px dashed #094;
    margin-bottom: 5px
}

.point-wrap dt span {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: #00662d;
    font-size: 4rem;
    color: #fff;
    left: 0;
    bottom: -30px;
    text-align: center
}

.point-wrap dd {
    padding: 5px
}

@media all and (max-width: 639px) {
    .point-wrap dt {
        font-size: 1.6rem;
        line-height: 1.6;
        overflow: visible;
        padding-left: 70px
    }

    .point-wrap dt span {
        width: 60px;
        height: 40px;
        line-height: 40px;
        bottom: 0;
        font-size: 2rem
    }
}

.blog_list {
    display: flex;
    justify-content: space-between
}

.blog_list .blog_img {
    width: 35%;
    overflow: hidden
}

.blog_list .blog_img img {
    transition: all 0.4s ease
}

.blog_list .blog_detail {
    width: 60%
}

.blog_list .blog_detail .blog_ttl {
    font-weight: 500;
    color: #094;
    margin-bottom: 5px
}

.blog {
    display: block;
    padding: 15px;
    background: #FFFFFF;
    box-sizing: border-box;
    color: #323232
}

.blog:hover .blog_img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.date {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px
}

.date.date_02 {
    margin-bottom: 15px
}

.date:before {
    font-family: 'FontAwesome';
    content: "\f017";
    margin-right: 5px
}

.pages {
    text-align: center;
    margin-top: 10px
}

.pages .page_next,
.pages .page_prev {
    display: inline;
    margin: 0 20px
}

.top-blog .pages {
    display: none
}

.category_nav {
    border: 1px solid #DDDDDD
}

.category_nav li a {
    display: block;
    padding: 5px 10px;
    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: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center
}

.column2 .child {
    position: relative;
    width: 49%
}

@media all and (max-width: 639px) {
    .column2 .child {
        width: 100%;
        margin: 0 auto 10px
    }
}

.column3 {
    display: flex;
    justify-content: start;
    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 {
    align-items: center
}

.column4 {
    display: flex;
    justify-content: start;
    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
}

.flickSlider {
    margin: 0 auto;
    text-align: left;
    display: none
}

.flickSlider .flickView {
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden
}

.flickSlider .flickView ul {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    overflow: hidden
}

.flickSlider .flickView ul li {
    width: 100%;
    float: left;
    display: inline;
    overflow: hidden
}

.flickSlider .flickView ul li img {
    width: 100%
}

.flickSlider .flickThumb {
    width: 100%;
    overflow: hidden
}

.flickSlider .flickThumb ul {
    width: 110%
}

.flickSlider .flickThumb ul li {
    float: left;
    cursor: pointer;
    display: inline
}

.flickSlider .flickThumb ul li img {
    width: 100%
}

.flickSlider .flickThumb ul li.active {
    filter: alpha(opacity=100) !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important
}

.flickSlider .btnPrev,
.flickSlider .btnNext {
    top: 0;
    width: 5%;
    height: 100%;
    position: absolute;
    cursor: pointer
}

.flickSlider .btnPrev {
    left: 0;
    background: url(../img/btnPrev.png) no-repeat center center #000
}

.flickSlider .btnNext {
    right: 0;
    background: url(../img/btnNext.png) no-repeat center center #000
}

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.color1 {
    color: #094
}

.color2 {
    color: #c8210b
}

.color3 {
    color: #003317
}

.num {
    color: #FF0000;
    font-weight: bold;
    margin-right: 5px
}

.breadcrumb {
    padding-left: 0;
    font-size: 1.3rem
}

.breadcrumb li {
    display: inline;
    color: #111;
    padding: 3px;
    background: rgba(255, 255, 255, 0.8)
}

.breadcrumb li a {
    color: #094
}

.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 {
    color: #fff;
    background: #094;
    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;
    box-sizing: border-box
}

.form .textarea {
    height: 30px
}

.form .textarea02 {
    width: 48.5%;
    margin-right: 3%
}

.form .textarea02:last-child {
    margin-right: 0
}

.form .textarea03 {
    width: 20%;
    margin-right: 1%
}

.form button {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #094;
    border: 1px solid #094;
    border-radius: 25px;
    color: #fff
}

.form button:hover {
    background: #fff;
    color: #094
}

.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: #094
}

.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: #094;
    z-index: 1
}

.form label.radio_text input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 0px;
    margin: 0px;
    box-shadow: 20px -1px #f5f5f5
}

.form label.radio_text input[type="radio"]:checked {
    box-shadow: none
}

.form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    box-shadow: 20px -1px #eeebda
}

.form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box
}

.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;
    box-sizing: border-box
}

.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 #094;
    border-bottom: 3px solid #094;
    transform: rotate(45deg);
    z-index: 1
}

.form label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    display: block;
    box-shadow: 41px 0px #FFF;
    z-index: 2;
    margin: 0px;
    padding: 0px
}

.form label.checkbox_text input[type="checkbox"]:checked {
    box-shadow: none
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
    box-shadow: 40px 0px #666;
    opacity: 0.1
}

.form label.checkbox_text input[type="checkbox"]:focus {
    box-shadow: 41px 0px #EEE
}

.fm-txt {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px
}

.memo {
    background: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    padding: 10px
}

.bnr {
    display: flex;
    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;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #FFFFFF
}

.top_bnr * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -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 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3)
}

.gallery {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap
}

.gallery li {
    width: calc((100% - 30px) /3);
    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;
    vertical-align: middle
}

.gallery li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}

.gallery li p {
    font-size: 13px;
    margin: 3px 0 10px
}

.gallery.gallery2 li {
    width: calc((100% - 32px) /5);
    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);
        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%;
        box-sizing: border-box;
        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
    }
}

.prv dt {
    color: #094;
    border-bottom: 1px solid #ccc;
    margin: 10px 0
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto
}

.flex li {
    width: 32%;
    padding: 15px;
    position: relative;
    box-sizing: border-box
}

.flex li .border {
    position: absolute;
    background: none;
    transition: all .3s ease-in-out
}

.flex li .border:nth-of-type(1) {
    top: 0;
    left: 0;
    border-left: 1px solid #f60;
    border-top: 1px solid #f60;
    width: 50px;
    height: 30px
}

.flex li .border:nth-of-type(2) {
    bottom: 0;
    right: 0;
    border-right: 1px solid #f60;
    border-bottom: 1px solid #f60;
    width: 50px;
    height: 30px
}

.flex li:hover .border {
    width: 102%;
    height: 105%
}

.flex li:hover .linkbtn-more {
    background: #094;
    color: #fff;
    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-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.snip1445 *:before,
.snip1445 *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease
}

.snip1445 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    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: #094
}

.snip1445 h2 {
    font-size: 1.8rem;
    letter-spacing: 1px
}

.snip1445 .click {
    display: block;
    font-weight: bold;
    width: 150px;
    margin-left: auto;
    background-color: #f60;
    padding: 3px 10px;
    color: #111;
    text-shadow: #fff 0px 0px 0px
}

.snip1445 img {
    opacity: 0.9
}

.linkbtn-ttl {
    font-size: 1.8rem;
    color: #094;
    margin-bottom: 10px;
    float: left
}

@media all and (max-width: 639px) {
    .linkbtn-ttl {
        font-size: 1.6rem
    }
}

.linkbtn-more {
    float: right;
    color: #094;
    padding: 3px;
    border: 1px solid #094
}

@media all and (max-width: 639px) {
    .linkbtn-more {
        font-size: 1.2rem
    }
}

@media screen and (max-width: 768px) {
    .flex {
        display: flex;
        flex-wrap: wrap;
        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: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 30px
}

.topbnr li {
    width: 48%;
    margin: 0 1% 0;
    background: #fff;
    box-sizing: border-box;
    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 #ffe533;
    border-bottom: 5px solid #ffe533;
    z-index: 20
}

.topbnr li:hover {
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(17, 17, 17, 0.4)
}

@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: #094;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    box-sizing: border-box;
    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: #f60
}

.name {
    background: rgba(0, 51, 23, 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>div {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #a3e8ff;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(0, 153, 68, 0.5)
}

.flow-dl dt {
    background: #cc5200;
    font-size: 4rem;
    color: #3a200c;
    width: 150px;
    text-shadow: 2px 2px 2px rgba(0, 153, 68, 0.2);
    font-weight: bold;
    text-align: center;
    margin-right: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-top: 10px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.flow-dl dt:before {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid #a3e8ff;
    border-bottom: 8px solid #a3e8ff;
    z-index: 20
}

.flow-dl dt span {
    font-size: 1.5rem;
    margin-right: 5px
}

.flow-dl dd {
    width: calc(100% - 180px);
    margin-bottom: 10px
}

@media all and (max-width: 639px) {
    .flow-dl dt {
        width: 80px;
        font-size: 2.7rem
    }

    .flow-dl dt span {
        font-size: 1.3rem
    }

    .flow-dl dd {
        width: calc(100% - 105px)
    }
}

.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
}

.list3 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto
}

.list3 li {
    width: 31%;
    box-sizing: border-box;
    margin: 0 1% 10px
}

@media all and (max-width: 639px) {
    .list3 li {
        width: 100%
    }
}

.list3.top-list {
    width: 87%
}

.list3.top-list img {
    transition: .2s all ease-in;
    border: 4px solid #fff
}

.list3.top-list img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 153, 68, 0.2)
}

.list3.top-list:first-of-type {
    margin-left: 0
}

.list3.top-list:last-of-type {
    margin-left: auto;
    margin-right: 0
}

@media all and (max-width: 639px) {
    .list3.top-list {
        width: 95%;
        margin: 0 auto
    }

    .list3.top-list:first-of-type,
    .list3.top-list:last-of-type {
        margin: 0 auto
    }
}

.fukidashi {
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: lemonchiffon;
    border-radius: 10px
}

.fukidashi:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid lemonchiffon
}

.fukidashi p {
    margin: 0;
    padding: 0
}

.fukidashi.fukidashi2 {
    background: rgba(0, 153, 68, 0.2)
}

.fukidashi.fukidashi2:before {
    border-bottom: 15px solid rgba(0, 153, 68, 0.2)
}

.list2 {
    display: flex;
    flex-wrap: wrap
}

.list2 li {
    width: 48%;
    margin: 0 1% 10px
}

@media all and (max-width: 639px) {
    .list2 li {
        width: 100%;
        margin: 0 auto 10px
    }
}

.blog-wrap {
    display: flex;
    flex-wrap: wrap
}

.blog-wrap * {
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.blog-wrap>li {
    width: 48%;
    margin: 0 1% 15px 1%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc
}

@media all and (max-width: 639px) {
    .blog-wrap>li {
        width: 100%
    }
}

.blog-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc
}

.blog-img img {
    height: 100%;
    object-fit: cover;
    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-contents {
    flex: 1
}

.blog-date {
    color: #094;
    font-size: 14px
}

.blog-date:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    margin-right: 5px
}

.blog-txt {
    height: 50px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    color: #094
}

@media all and (max-width: 639px) {
    .blog-txt {
        font-size: 12px
    }
}

.foot_list3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.foot_list3 .child {
    box-sizing: border-box;
    width: 39%
}

.foot_list3 .child.child1 {
    width: 20%
}

@media all and (max-width: 800px) {
    .foot_list3 .child {
        width: 100%;
        text-align: center
    }

    .foot_list3 .child.child1 {
        width: 100%;
        margin: 0 auto;
        order: 1;
        text-align: center
    }

    .foot_list3 .child.child1 img {
        max-width: 300px
    }

    .foot_list3 .child.child2 {
        order: 2
    }
}

.box1 {
    width: 90%;
    margin-top: -40px;
    border: 4px solid #999;
    padding: 20px;
    box-sizing: border-box;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.9)
}

.form-contents dl dt:not(.pattern-exclusion) span.required::before,.form-contents .submit-btn{
    background: #094!important;
    border: solid 2px #094!important;
  }
  .form-contents :not(.pattern-exclusion) button:hover {
    color: #094!important;
    background: #fff!important;
    border: solid 2px #094!important;
  }
  .form-contents .submit-btn:hover::before {
        background-color: #094!important;
  }
  
  .form-contents dl dt:not(.pattern-exclusion) span.optional::before {
    padding:0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px;
  }
  .form-contents dl dt:not(.pattern-exclusion) span.optional::before {
    content: '任意';
    color: #fff!important;
    background: #999!important;
  }
  
  
/*# sourceMappingURL=basis.css.map */