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

a {
    color: #53d7ff;
    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: #222;
    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: 10001
}

.loader::after {
    -webkit-animation: loader 0.5s linear infinite;
    animation: loader 0.5s linear infinite;
    border: 1px solid #53d7ff;
    border-radius: 50%;
    border-right: 1px solid rgba(83, 215, 255, 0.2);
    border-top: 1px solid rgba(83, 215, 255, 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 {
    width: 100%;
    z-index: 50;
    position: fixed;
    top: 0;
    left: 0
}

#header .inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#header #logo {
    padding: 0 0 0 15px
}

#header .head-right-upper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 10px;
    margin-bottom: 10px
}

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

#header .head-comment {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
    margin-top: -10px
}

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

#header .head-tel {
    margin-right: 10px
}

#header .head-tel a {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 1.8rem;
    border-radius: 0 0 5px 5px;
    font-weight: normal;
    padding: 0 10px;
    background: #53d7ff;
    color: #fff;
    font-family: "YakuHanJP", "Noto Serif JP", serif
}

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

#header .head-tel a:hover {
    color: #ffd43d
}

#header .head-mail a {
    display: block;
    height: 40px;
    line-height: 40px;
    background: #933;
    border-radius: 0 0 5px 5px;
    color: #fff;
    padding: 0 10px;
    font-weight: normal;
    font-family: "YakuHanJP", "Noto Serif JP", serif
}

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

#header .head-mail a:hover {
    color: #ffd43d
}

#header.scrolled {
    position: fixed;
    right: 0;
    top: 0px;
    z-index: 90;
    -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);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: #333;
    border-radius: 5px 0 0 5px
}

#navi {
    padding: 5px 0
}

#navi ul {
    width: 690px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

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

#navi ul li a {
    display: block;
    position: relative;
    line-height: 1.4;
    font-size: 1.3rem;
    color: #ddd;
    font-weight: normal;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.1rem;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
}

#navi ul li a span {
    display: block;
    font-size: 1.8rem;
    font-weight: normal;
    color: #eee;
    font-family: "YakuHanMP", "Gelasio", serif
}

#navi ul li a:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #53d7ff;
    left: 50%;
    bottom: -12px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
}

#navi ul li a:hover,
#navi ul li a.active {
    color: #53d7ff;
    font-weight: bold
}

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

#navi .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 82px;
    width: 160px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999
}

#navi .dropdown .dropdown-li {
    border-right: 0
}

#navi .dropdown .dropdown-li a {
    display: block;
    width: 160px;
    color: #111
}

#navi .dropdown .dropdown-li a:hover {
    color: #fff
}

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

#page-top a {
    display: block;
    color: #3a200c;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #53d7ff;
    border-radius: 100%;
    text-align: center
}

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

.foot_navi ul {
    margin: 0 auto 20px;
    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;
    text-align: center
}

.foot_navi ul li a {
    color: #eee;
    font-size: 1.3rem;
    position: relative;
    font-weight: 700
}

.foot_navi ul li a span {
    display: none
}

.foot_navi ul li a:hover {
    color: #07c5ff
}

.foot_navi ul li .dropdown {
    display: none
}

.foot_navi ul li:not(:last-child) {
    border-right: 1px solid #ccc
}

#footer {
    background: #111
}

#footer .inner {
    padding: 40px 0;
    max-width: 1500px;
    margin: 0 auto
}

.address {
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative
}

.copyright {
    padding: 15px 0;
    background: #333;
    font-size: 1.2rem;
    background: #082b34;
    font-weight: normal;
    color: #fefefe
}

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

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }
}

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

    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }
}

#catch {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 49;
    opacity: 0;
    -webkit-transition: all 2s ease-in;
    transition: all 2s ease-in
}

#catch.on {
    opacity: 1
}

#slideshow {
    position: relative;
    overflow: hidden;
    margin: 83px auto 20px;
    width: calc(100% - 50px);
    height: calc(100vh - 103px)
}

@media all and (max-width: 800px) {
    #slideshow {
        margin-top: 67px;
        width: 95%;
        height: 50vh
    }
}

.swiper-slide {
    position: relative
}

.slide-img {
    overflow: hidden;
    position: relative;
    height: 90vh
}

.slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    z-index: 1;
    position: relative
}

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

.next_contents {
    display: block;
    position: absolute;
    z-index: 2000;
    bottom: 3%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 60px
}

.next_contents span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px
}

.next_contents span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: "";
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite
}

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

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes sdb {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

#mainView {
    position: relative
}

.bxslider.bx-1 {
    height: 39vw
}

@media all and (max-width: 800px) {
    .bxslider.bx-1 {
        height: auto
    }
}

.slide0:before,
.slide1:before,
.slide2:before,
.slide3:before {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100vw - 15vw);
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    background-attachment: scroll;
    padding: 0px 0
}

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

.slide1:before {
    background-image: url(../bxslider/images/1.jpg);
    background-position: 50% 20%
}

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

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

.slideimg {
    max-width: 1020px;
    margin-left: auto;
    height: 39vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.slideimg img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit:contain;"
}

@media all and (max-width: 800px) {
    .slideimg {
        height: auto
    }
}

.bg_contact {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    background: url(../img/bg_contact.png) no-repeat center bottom/100% auto;
    position: relative
}

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

@media all and (max-width: 800px) {
    .bg_contact {
        background-size: 300% auto
    }

    .bg_contact .inner {
        margin-top: 30px
    }
}

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

.contact-left {
    width: 30%;
    margin-right: 20px
}

.contact-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-left: 1px solid #eee
}

.flogo {
    margin-bottom: 15px
}

@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;
        max-width: 500px
    }

    .contact-left {
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        padding: 10px;
        border-bottom: 1px solid #eee
    }

    .contact-left .flogo {
        text-align: center
    }

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

.contact-txt {
    text-align: center
}

@media all and (max-width: 639px) {
    .contact-txt {
        padding: 0 20px
    }
}

.contact_bnr {
    text-align: center
}

.contact_bnr li {
    display: inline-block
}

.contact_bnr li .bnr_tel {
    border: 1px solid #1c9ab9;
    color: #111;
    background: #53d7ff
}

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

.contact_bnr li .bnr_tel:hover {
    background: #008eb9;
    color: #fefefe
}

.contact_bnr li .bnr_fax {
    background: #ffffff;
    border: 1px solid #53d7ff;
    color: #53d7ff
}

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

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

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

.contact_bnr li .bnr_mail:hover {
    background: #e35b00;
    border-color: #b04700
}

.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: calc(100% - 100px);
    margin: 0 auto;
    padding: 6.5em 0
}

@media all and (max-width: 1024px) {
    .single {
        max-width: calc(100% - 60px);
        padding: 50px 0
    }
}

@media all and (max-width: 639px) {
    .single {
        max-width: calc(100% - 30px);
        padding: 40px 0
    }
}

@media all and (max-width: 320px) {
    .single {
        max-width: calc(100% - 10px)
    }
}

.single02 {
    margin: 0 auto;
    padding: 6.5em 0;
    position: relative
}

.section-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto
}

@media all and (max-width: 639px) {
    .section-wrap {
        max-width: calc(100% - 30px)
    }
}

.section-div {
    width: 27%;
    position: relative;
    border-left: 1px solid #aaa
}

@media all and (max-width: 1024px) {
    .section-div {
        width: 100%;
        border: 0
    }

    .section-div:before {
        position: absolute;
        background: rgba(170, 170, 170, 0.4);
        height: 3px;
        top: 29px;
        width: 28%;
        content: ""
    }
}

.sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 100px
}

@media all and (max-width: 1024px) {
    .sticky-content {
        position: static
    }
}

.section-main {
    width: 71%;
    background: #252525;
    padding: 80px 64px
}

@media all and (max-width: 1024px) {
    .section-main {
        width: 100%;
        padding: 40px
    }
}

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

@media all and (max-width: 320px) {
    .section-main {
        padding: 10px
    }
}

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.mbox {
    overflow-y: hidden;
    padding: 20px
}

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

.mbox2 {
    padding: 20px;
    background: #fefefe;
    position: relative;
    border: 1px solid #f1edee;
    border-radius: 10px
}

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

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

.mbox4 {
    padding: 10px;
    border: 1px solid #efefe8;
    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)
}

.bg-gray {
    background: #555252
}

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

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

.mtitle {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    margin-bottom: 20px
}

.mtitle span {
    display: block;
    font-size: 5rem;
    font-family: "YakuHanMP", "Gelasio", serif;
    color: #53d7ff;
    font-weight: normal
}

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

    .mtitle span {
        font-size: 7vw
    }
}

.mtitle.type2 span {
    text-transform: inherit
}

.mtitle.white span {
    color: #fff
}

.mtitle2 {
    font-weight: bold;
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
    color: #3a200c
}

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

.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 span.red {
    color: #933
}

.mtitle2 span.green {
    color: #53d7ff
}

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

@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 {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 1px solid rgba(58, 32, 12, 0.5);
    padding-left: 10px;
    line-height: 1.4;
    color: #3a200c
}

.mtitle3:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    background: #efefe8;
    left: 0;
    bottom: -2px
}

.mtitle3 .point {
    display: inline;
    color: #efefe8;
    font-size: inherit
}

.mtitle3 span {
    font-size: 3rem;
    color: #643715;
    margin-right: 5px
}

@media all and (max-width: 639px) {
    .mtitle3 {
        padding-bottom: 5px
    }

    .mtitle3 span {
        font-size: 2.5rem
    }
}

.mtitle4 {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.4
}

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

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

.mtitle-area span {
    background: #53d7ff;
    color: #111;
    padding: 4px 10px;
    margin-right: 15px;
    font-size: 5rem;
    letter-spacing: 0.1rem;
    font-weight: normal;
    position: relative;
    font-family: "YakuHanMP", "Gelasio", serif
}

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

    .mtitle-area span {
        font-size: 3.8rem
    }
}

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

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

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

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

.mtitle_sub {
    line-height: 2;
    padding-left: 0.5em;
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
    border-left: 6px solid #53d7ff;
    margin: 8px 0
}

.mtitle_sub span {
    font-size: 1.3rem;
    font-weight: normal
}

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

.mtitle_box {
    background-image: linear-gradient(40deg, #53d7ff 0%, #53d7ff 90%, #1c9ab9 100%);
    color: #222;
    font-size: 2.2rem;
    position: relative;
    padding: 15px 10px 15px 30px;
    z-index: 2;
    overflow: hidden;
    font-weight: bold
}

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

.mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f7d9";
    font-weight: bold;
    display: block;
    font-size: 3.5rem;
    right: 10px;
    bottom: 5px;
    z-index: 0;
    color: rgba(255, 255, 255, 0.8)
}

@media all and (max-width: 639px) {
    .mtitle_box {
        margin: 0 -10px 30px;
        font-size: 1.8rem;
        line-height: 1.4
    }
}

.mtitle_box2 {
    background: #6dddff;
    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: #efefe8;
    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_category {
    font-weight: 700;
    color: #53d7ff;
    margin-bottom: 10px;
    font-size: 1.2em
}

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

.page-title {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.3rem
}

.page-title span {
    color: #53d7ff;
    display: block;
    font-size: 6rem;
    font-family: "YakuHanMP", "Gelasio", serif;
    font-weight: normal
}

@media all and (max-width: 639px) {
    .page-title {
        padding-left: 5px;
        text-align: center
    }

    .page-title span {
        font-size: 4rem
    }
}

.mtext1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5
}

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

.mtext2 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.1rem
}

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

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

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

.mtitle_bnr {
    font-size: 2rem;
    font-weight: 600;
    color: #53d7ff;
    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"
}

.btn01 a {
    background: #53d7ff;
    text-align: center;
    width: 270px;
    margin: 20px auto;
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    font-family: "YakuHanJP", "Lato", "Noto Sans Japanese";
    border: 1px solid #555;
    border-radius: 25px;
    color: #111;
    position: relative;
    font-size: 1.1em
}

.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 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #933
}

.btn01 a:hover {
    background: #20cbff
}

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

.btn01.btn-right a {
    margin-right: 0
}

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

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

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

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

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

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

.news {
    overflow: hidden
}

.news dt {
    float: left;
    width: 7em;
    padding-top: 10px;
    font-weight: bold;
    color: #999
}

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

.news dd {
    padding: 10px 0 10px 8em;
    background-image: linear-gradient(to right, #aaa, #ccc 2px, transparent 2px, transparent 5px);
    background-size: 6px 2px;
    background-position: bottom;
    background-repeat: repeat-x;
    margin: 0 0 10px
}

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

.news-bl dt {
    float: left;
    width: 7em;
    padding: 3px 5px;
    line-height: 1.3;
    background: #53d7ff;
    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 {
    margin-top: 90px;
    width: 100%;
    position: relative;
    z-index: 1;
    background: #222;
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto
}

.bg-greet:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../fullscreen/images/1.jpg) no-repeat center/cover;
    z-index: -2
}

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

.bg-greet .inner {
    width: 1020px;
    margin: 0 auto;
    padding: 80px 0
}

@media all and (max-width: 800px) {
    .bg-greet {
        margin-top: 65px;
        width: 95%
    }

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

.body_bg {
    background: url(../img/body_bg.png)
}

.bg-contact {
    position: relative
}

.bg-contact:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
    background: #333;
    z-index: -1
}

.bg-01 {
    background: url(../img/bg-01.png) no-repeat center bottom/100% auto
}

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

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

.bg-02 .box1 {
    max-width: 750px;
    margin: 100px auto 0;
    background: none;
    margin-top: 50px;
    position: relative;
    font-size: 1.6rem;
    padding: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
    border-radius: 10px
}

.bg-02 .box1:before {
    position: absolute;
    top: -80px;
    left: 50%;
    content: "";
    width: 1px;
    height: 80px;
    background: #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1
}

@media all and (max-width: 639px) {
    .bg-02 .box1 {
        padding: 10px;
        font-size: 1.3rem
    }
}

.bg-blue {
    position: relative;
    background: none
}

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

.border-gradient {
    padding: 20px 0;
    position: relative
}

.border-gradient:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 70%;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(-45deg, transparent 25%, rgba(68, 68, 68, 0.3) 25%, rgba(68, 68, 68, 0.3) 50%, transparent 50%, transparent 75%, rgba(68, 68, 68, 0.3) 75%, rgba(68, 68, 68, 0.3));
    background-size: 60px 60px
}

@media all and (max-width: 639px) {
    .border-gradient:before {
        background-size: 40px 40px
    }
}

.bg-grid {
    background: #fff;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(221, 221, 221, 0.3)), to(rgba(221, 221, 221, 0.3))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(221, 221, 221, 0.3)), to(rgba(221, 221, 221, 0.3)));
    background-image: linear-gradient(90deg, transparent 95%, rgba(221, 221, 221, 0.3) 50%, rgba(221, 221, 221, 0.3)), linear-gradient(0deg, transparent 95%, rgba(221, 221, 221, 0.3) 50%, rgba(221, 221, 221, 0.3));
    background-size: 20px 20px;
    background-repeat: repeat;
    position: relative
}

.bg-base {
    background: #53d7ff
}

.bg-sub {
    background: rgba(239, 239, 232, 0.8)
}

.bg-green {
    background: rgba(83, 215, 255, 0.2);
    padding: 20px 0
}

.bg-yellow {
    background: rgba(255, 218, 87, 0.8)
}

.bg-beige {
    background: rgba(239, 239, 232, 0.5)
}

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

.bg-map .map-inner {
    max-width: 600px;
    margin-right: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5)
}

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

    .bg-map .map-inner {
        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: 59%;
    overflow: hidden;
    background-size: cover;
    background: center
}

.article .article_image img {
    display: none
}

.article .article_detail {
    width: 41%;
    padding: 90px 0;
    background: #53d7ff
}

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

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

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

.article.article_02 .article_image {
    background-image: url(../img/article-bg02.jpg)
}

.article:nth-of-type(2n) .article_image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

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

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

    .article:nth-of-type(2n) .article_image {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .article .article_image {
        background: none
    }

    .article .article_image img {
        display: block
    }

    .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.schedule td {
    text-align: center
}

.tbl.schedule tr.tr-1 th {
    background: #efefe8;
    font-weight: 700
}

.tbl_new {
    width: 100%
}

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

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

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

.tbl-border {
    width: 100%
}

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

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

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

.tbl-border tr:last-of-type th,
.tbl-border tr:last-of-type td {
    border-bottom: 0
}

.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;
    background: rgba(239, 239, 232, 0.1)
}

.list_check li {
    font-weight: bold;
    font-size: 1.7rem;
    border-bottom: 1px dotted #cccccc;
    margin-bottom: 10px;
    padding-bottom: 8px
}

.list_check li .txt {
    font-weight: normal;
    font-size: 1.5rem
}

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

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

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

.menu-box {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(239, 239, 232, 0.2)
}

.menu-list li {
    padding: 5px;
    border-bottom: 1px dashed #efefe8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.menu-list .left {
    width: 70%
}

.menu-list .left:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: bold;
    margin-right: 5px;
    color: #53d7ff
}

.menu-list .left.left2:before {
    content: none
}

@media all and (max-width: 639px) {
    .menu-list .left {
        width: 77%
    }
}

.menu-list .right {
    width: 30%;
    text-align: right;
    font-weight: bold;
    color: #933
}

@media all and (max-width: 639px) {
    .menu-list .right {
        width: 23%
    }
}

.menu-list.itadaki-menu {
    max-width: 850px;
    margin: 40px auto 40px;
    -webkit-box-shadow: 0 0 5px rgba(58, 32, 12, 0.1);
    box-shadow: 0 0 5px rgba(58, 32, 12, 0.1);
    padding: 20px
}

@media all and (max-width: 639px) {
    .menu-list.itadaki-menu {
        margin: 20px auto;
        padding: 5px
    }
}

.menu-list.itadaki-menu li {
    padding: 10px;
    margin-bottom: 10px
}

.menu-list.itadaki-menu .left-inside {
    margin-left: 15px;
    display: block;
    padding: 5px;
    margin-top: 5px;
    color: #3a200c;
    font-size: 1.4rem;
    line-height: 2
}

@media all and (max-width: 639px) {
    .menu-list.itadaki-menu .left-inside {
        margin-left: 0px;
        font-size: 1.2rem
    }
}

.menu-list.itadaki-menu .inside-bg {
    background: rgba(239, 239, 232, 0.4)
}

.menu-list.itadaki-menu .inside-bg.right {
    padding: 5px;
    margin-top: 5px
}

.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: #efefe8;
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 50%;
    color: #111;
    margin-right: 0.3em
}

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

.ol-list2 {
    counter-reset: number;
    list-style-type: none;
    background: #fafafa;
    padding: 15px
}

.ol-list2 li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding: 3px 3px 3px 30px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 10px
}

.ol-list2 li:before {
    position: absolute;
    counter-increment: number;
    content: counter(number);
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #efefe8;
    color: #fff
}

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

.blog-wrap li {
    width: 24%;
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 0 4px rgba(58, 32, 12, 0.1);
    box-shadow: 0 0 4px rgba(58, 32, 12, 0.1);
    position: relative;
    margin: 0 0.5% 15px;
    background: rgba(0, 0, 0, 0.2)
}

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

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

.blog-wrap li:hover {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
}

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

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

.blog-wrap .blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden
}

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

@media all and (max-width: 639px) {
    .blog-wrap .blog-img {
        height: 150px
    }
}

.blog-wrap .blog-title {
    width: 100%;
    color: #53d7ff;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 10px;
    margin-bottom: 10px
}

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

.blog-info {
    margin-top: 10px;
    padding: 5px 10px 10px
}

.blog-time,
.blog-date {
    display: block;
    position: relative;
    font-weight: normal;
    color: #ddd;
    font-size: 1.3rem
}

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

.blog-more {
    position: relative;
    margin-right: 20px;
    padding-right: 10px;
    font-size: 1.2rem;
    width: 80px;
    margin-left: auto
}

.blog-more:before {
    content: "";
    position: absolute;
    width: 120%;
    height: 1px;
    left: 0;
    bottom: -3px;
    background: #999
}

.blog-more:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0 9px;
    border-color: transparent transparent transparent #999;
    right: -25%;
    bottom: -3px
}

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

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

.pages .page_next a,
.pages .page_prev a {
    color: #53d7ff
}

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

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

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

.cut {
    overflow: hidden;
    zoom: 1
}

.mincho {
    font-weight: normal;
    font-family: "YakuHanJP", "Noto Serif JP", serif
}

.mincho span {
    font-size: 6rem;
    color: rgba(83, 215, 255, 0.1)
}

@media all and (max-width: 639px) {
    .mincho span {
        font-size: 4rem;
        line-height: 1.4
    }
}

.img-radius {
    border-radius: 15px
}

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

.spbr {
    display: none
}

.color1 {
    color: #53d7ff
}

.color2 {
    color: #1c9ab9
}

.color3 {
    color: #e35b00
}

.yellow {
    color: #ffd43d;
    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 a: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 {
    padding-left: 0;
    font-size: 1.3rem
}

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

.breadcrumb li a {
    color: lemonchiffon
}

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

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

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

.form {
    margin: 0 auto;
    border: 3px solid #aaa;
    padding: 50px 40px
}

@media all and (max-width: 800px) {
    .form {
        padding: 20px 10px
    }
}

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

.form dl dt span {
    color: #fff;
    background: #53d7ff;
    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 solid #cccccc
}

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

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

.form .textarea {
    height: 30px
}

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

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

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

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

.form button:hover {
    background: #333;
    color: #53d7ff
}

.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: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
    background: transparent;
    border: 0;
    outline: none;
    line-height: 1.5
}

.form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #53d7ff
}

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

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

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

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

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

.thanks {
    padding: 40px;
    border: 3px solid #53d7ff;
    -webkit-box-shadow: 0 0 0 8px #555;
    box-shadow: 0 0 0 8px #555;
    max-width: 700px;
    margin: 40px auto;
    background: #222
}

.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-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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.gallery li {
    width: 32%;
    margin: 0 1.5% 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
}

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

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

.list3 li {
    width: 32%;
    margin-right: 1.5%
}

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

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

.list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1800px
}

.list2 li {
    width: 49%;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(83, 215, 255, 0.2)
}

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

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

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

.list2.top-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.list2.top-list li {
    width: auto;
    margin: 0;
    max-width: 480px;
    width: 49%
}

.list2.top-list li:nth-child(odd) {
    margin-right: 2%
}

.list2.top-list li a {
    display: block
}

.list2.top-list li a:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

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

    .list2.top-list li:nth-child(odd) {
        margin: 0 auto 10px
    }
}

.list2.point-list {
    margin-bottom: -30px
}

.list2.point-list li {
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(58, 32, 12, 0.1);
    box-shadow: 0 0 10px rgba(58, 32, 12, 0.1);
    position: relative;
    width: 48%;
    margin: 0 1% 30px
}

.list2.point-list li:nth-child(2n) .point-title {
    border-color: #efefe8
}

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

    .list2.point-list li {
        width: 95%;
        margin: 0 auto 25px
    }
}

.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: 1500px;
    margin: 0 auto 30px
}

.topbnr li {
    width: 31%;
    margin: 0 1% 0;
    background: rgba(0, 0, 0, 0.3);
    -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;
    -webkit-transition: -webkit-box-shadow 0.2s ease;
    transition: -webkit-box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease
}

.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 #53d7ff;
    border-bottom: 5px solid #53d7ff;
    z-index: 20
}

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

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

.top-bnr-wrap {
    position: relative;
    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 {
    position: relative;
    background: #53d7ff;
    display: block;
    width: 100%;
    color: #111;
    font-size: 2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 10px 15px;
    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 .top-bnr-title span {
    position: absolute;
    font-size: 5.5rem;
    top: -80px;
    left: 0;
    color: #fefefe
}

@media all and (max-width: 639px) {
    .top-bnr-wrap .top-bnr-title span {
        font-size: 4rem;
        top: -50px
    }
}

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

.top-bnr-wrap:hover .top-bnr-title {
    background: #111;
    color: #fdfdfd
}

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

.memo2 span {
    padding-right: 5px
}

.note {
    border: 3px solid #ffd43d;
    padding: 10px;
    background: url(../img/bg_body.png);
    border-radius: 10px;
    background: rgba(255, 250, 205, 0.7)
}

.txt1 {
    padding-left: 10px
}

.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 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .blog-month ul li {
        width: 49%
    }

    .blog-month ul li:nth-child(odd) {
        margin-right: 2%
    }
}

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

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

#main .mbox {
    min-height: 300px
}

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

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

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

.bnr-link01 {
    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
}

.bnr-link01 .bnr-link01-child {
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 33.3%;
    background: #ffffff
}

.bnr-link01 .bnr-link01-child * {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease
}

.bnr-link01 .bnr-link01-child img {
    opacity: 1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s
}

.bnr-link01 .bnr-link01-child figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.bnr-link01 .bnr-link01-child figcaption>div.one {
    height: 40%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.bnr-link01 .bnr-link01-child figcaption>div.two {
    height: 60%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.bnr-link01 .bnr-link01-child figcaption>div.two h3,
.bnr-link01 .bnr-link01-child figcaption>div.two p {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center
}

.bnr-link01 .bnr-link01-child figcaption>div.two h3 {
    bottom: 0;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    line-height: 1.3
}

.bnr-link01 .bnr-link01-child figcaption>div.two h3 span {
    display: block;
    font-size: 3.5vw
}

.bnr-link01 .bnr-link01-child figcaption>div.two p {
    display: none;
    top: 100px
}

.bnr-link01 .bnr-link01-child:hover {
    background: #53d7ff
}

.bnr-link01 .bnr-link01-child:hover figcaption>div.one {
    height: 25%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.bnr-link01 .bnr-link01-child:hover figcaption>div.two {
    height: 75%;
    overflow: hidden;
    width: 100%;
    position: relative
}

.bnr-link01 .bnr-link01-child:hover figcaption>div.two p {
    display: block
}

.bnr-link01 .bnr-link01-child:hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.bnr-link01 .bnr-link01-child a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute
}

@media all and (max-width: 800px) {
    .bnr-link01 .bnr-link01-child {
        width: 100%;
        min-height: initial
    }

    .bnr-link01 .bnr-link01-child figcaption>div.two h3 span {
        font-size: 12vw
    }
}

.bg-news {
    background: #555252
}

.news-box {
    width: 100%;
    padding: 15px;
    background: #fff;
    margin-top: -80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 400;
    -webkit-box-shadow: 0 0 12px rgba(83, 215, 255, 0.8);
    box-shadow: 0 0 12px rgba(83, 215, 255, 0.8);
    border: 5px solid #53d7ff
}

@media all and (max-width: 639px) {
    .news-box {
        margin-top: 0px;
        padding: 10px
    }
}

.tel-link {
    margin: 50px auto 10px;
    text-align: center;
    max-width: 280px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border: 1px solid #ddd;
    padding: 10px;
    position: relative;
    background: #fefefe
}

.tel-link:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    left: 50%;
    top: -40px;
    background: #ddd
}

.tel-link .num {
    margin-top: -20px
}

.tel-link a {
    font-weight: bold;
    padding: 5px 10px;
    color: #1c9ab9;
    border-radius: 5px;
    font-size: 3rem;
    position: relative
}

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

.tel-link:hover {
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1)
}

.tel-link:hover a {
    color: #29bbdf
}

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

.scrollin,
.scrollin-2col,
.scrollin-3col,
.scrollin-4col {
    opacity: 0;
    -webkit-transform: translate(0, 60px);
    transform: translate(0, 60px)
}

.scrollin.is-visible,
.scrollin-2col.is-visible,
.scrollin-3col.is-visible,
.scrollin-4col.is-visible {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.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%;
    background: url(../img/body_bg.png);
    padding: 10px;
    position: relative
}

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

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

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

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

.flex li:hover .linkbtn-more {
    background: #c5c5ac;
    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;
    max-width: 100%;
    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 {
    -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: #53d7ff
}

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

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

.snip1445 img {
    opacity: 0.9
}

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

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

.linkbtn-more {
    float: right;
    color: #00b5ec;
    padding: 3px;
    border: 1px solid #53d7ff
}

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

.greet-box {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.greet-box .inner {
    padding: 50px 80px 30px;
    width: 55%;
    line-height: 2;
    margin-left: auto;
    position: relative;
    z-index: 2;
    font-size: 1.1em;
    letter-spacing: 0.1rem
}

.greet-box .inner:before {
    position: absolute;
    width: 60%;
    height: 60%;
    content: "";
    background: url(../img/logomark.png) no-repeat left bottom/contain;
    opacity: 0.2;
    z-index: 1;
    left: 10%;
    bottom: 0
}

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

@media all and (max-width: 1024px) {
    .greet-box .inner {
        padding: 50px 40px
    }

    .greet-box:before {
        top: -5%
    }
}

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

    .greet-box .inner {
        padding: 30px 20px;
        width: 100%
    }

    .greet-box .inner:before {
        width: 60%;
        height: 60%;
        left: auto;
        right: 0
    }

    .greet-box:before {
        width: 100%;
        top: -100px;
        left: 0;
        height: 220px;
        opacity: 0.5
    }
}

.greet-title {
    line-height: 1.2;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 0.2rem
}

.greet-title span {
    display: block;
    font-size: 3.4vw;
    font-weight: normal;
    color: #53d7ff;
    font-family: "YakuHanMP", "Gelasio", serif
}

.greet-title:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 3px;
    left: 0;
    bottom: -25px;
    background: #ccc
}

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

    .greet-title span {
        font-size: 12vw
    }
}

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

.recruit-title {
    font-size: 2.2rem;
    border-bottom: 3px solid #53d7ff;
    padding-bottom: 10px;
    margin-bottom: 25px
}

.recruit-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
    background: #444;
    padding: 20px
}

.recruit-info .recruit-left {
    width: 20%;
    font-size: 2rem;
    border-right: 1px solid #ddd;
    padding-right: 20px;
    text-align: center
}

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

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

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

.form .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    background: #53d7ff;
}

.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: #53d7ff;
    border: 1px solid #53d7ff;
    border-radius: 25px;
    color: #111;
}

.form .form-pattern-1 .submit-btn:hover {
    background: #333;
    color: #53d7ff;
}

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

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