body {
    color: #4A392F;
    font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.1rem;
    background: #fff
}

a {
    color: #cc5800;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer
}

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

.bold {
    font-weight: bold
}

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

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

#wrapper {
    overflow: hidden
}

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

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

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

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

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

    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

.animation {
    opacity: 0
}

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

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

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

.loader::after {
    -webkit-animation: loader 0.5s linear infinite;
    animation: loader 0.5s linear infinite;
    border: 1px solid #FF6E00;
    border-radius: 50%;
    border-right: 1px solid rgba(255, 110, 0, 0.2);
    border-top: 1px solid rgba(255, 110, 0, 0.2);
    content: "";
    height: 70px;
    width: 70px
}

.loader.off {
    display: none
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

#l-header {
    width: 100%;
    position: relative;
    z-index: 100;
    background: #4A392F;
    padding: 5px 0
}

#l-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    min-width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

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

#l-header.scrolled {
    width: 100%;
    position: relative;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: #4A392F;
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    margin: auto;
    left: 0;
    right: 0
}

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

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

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: -20px;
    padding: 20px 8px 8px 8px;
    border-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

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

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

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

.header-right_tel a,
.header-right_access a {
    display: block;
    padding: 6px 15px;
    border-radius: 40px;
    line-height: 1.4;
    text-align: center;
    color: #493121;
    border: 1px solid #493121;
    max-width: 350px;
    font-weight: 600;
    background: #ffe760
}

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

.header-right_tel a:hover,
.header-right_access a:hover {
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
    background: #FF517D
}

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

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

.header-right_mail a {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    background: #fefefe;
    color: #493121;
    padding-top: 30px;
    border: 2px solid #d3d3d3
}

.header-right_mail a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 700;
    position: absolute;
    font-size: 2rem;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.header-right_mail a:hover {
    color: #c1272d
}

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

#header_nav {
    position: relative;
    max-width: 1200px;
    margin: 5px auto 5px
}

#header_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

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

#header_nav ul li a {
    border-left: 1px solid #886957
}

#header_nav ul li:last-child a {
    border-right: 1px solid #886957
}

#header_nav ul li a {
    display: block;
    position: relative;
    line-height: 1.3;
    font-size: 1.7rem;
    color: #FF6E00;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0;
    padding: 3px 0
}

#header_nav ul li a span {
    display: block;
    font-weight: 400;
    color: #FF517D;
    font-size: 1.3rem;
    letter-spacing: 0.2rem
}

#header_nav ul li a:hover,
#header_nav ul li a.active {
    color: #FF517D;
    background: #FFFFFF
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 55px;
    z-index: 30;
    background: #ECECEC
}

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

#header_nav .dropdown .dropdown-li a {
    display: block;
    width: 160px;
    text-align: center;
    font-size: 1.5rem;
    padding: 10px 0;
    border-right: 0;
    color: #555;
    border-radius: 30px;
    background: #fff
}

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

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

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

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

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

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

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

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

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

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

.swiper-slide,
.swiper-container,
.swiper-wrapper {
    overflow: hidden
}

.slide-img {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto
}

.slide-img img {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

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

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

    .slide-img img {
        width: 100%
    }

    .slide-img img.left {
        -o-object-position: left;
        object-position: left
    }

    .slide-img img.right {
        -o-object-position: right;
        object-position: right
    }
}

#slideshow {
    position: relative;
    background: url(../img/slideshow.jpg) no-repeat center/cover
}

@media all and (max-width: 639px) {
    #slideshow {
        padding: 0
    }
}

#catch {
    z-index: 150;
    position: absolute;
    left: 50%;
    top: 45%;
    opacity: 0;
    width: 35%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center
}

#catch.on {
    opacity: 1;
    -webkit-transition: 2s;
    transition: 2s
}

#catch.sub {
    top: 50%
}

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

    #catch.sub {
        width: 60%
    }
}

#slidepro {
    width: 1020px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 10px 0
}

@media all and (max-width: 890px) {
    #slidepro {
        width: 100%;
        background-size: contain;
        bottom: 0
    }
}

#mainView {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 75vh;
    margin: 0 auto
}

@media all and (max-width: 639px) {
    #mainView {
        height: 85vw
    }
}

#flash {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative
}

.flashimg {
    position: absolute;
    left: 50%;
    -ms-left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-25%, -50%);
    display: block;
    z-index: 5
}

@media all and (-ms-high-contrast: none) {
    .flashimg .ie_img {
        max-width: 50% !important
    }
}

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

@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-slideup {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, 35px);
        transform: translate(0, 35px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

.animation {
    opacity: 0
}

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

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

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

.loader::after {
    -webkit-animation: loader 0.5s linear infinite;
    animation: loader 0.5s linear infinite;
    border: 1px solid #FF6E00;
    border-radius: 50%;
    border-right: 1px solid rgba(255, 110, 0, 0.2);
    border-top: 1px solid rgba(255, 110, 0, 0.2);
    content: "";
    height: 70px;
    width: 70px
}

.loader.off {
    display: none
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes zoom-out {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

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

@keyframes zoom-out {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

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

#slide-bg {
    background: url("../img/bg-sand.png")
}

#slideshow {
    position: relative;
    margin: 0 auto;
    max-width: 100%
}

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

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

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

#slideshow .slide04 {
    background: url(../img/slide4.png) no-repeat center/cover
}

#slideshow .slide05 {
    background: url(../img/slide5.png) no-repeat center/cover
}

.slide-img {
    margin: 0 auto;
    max-width: 100%
}

#catch {
    z-index: 10;
    position: absolute;
    right: 1%;
    bottom: 15%;
    opacity: 0;
    width: 600px;
    -webkit-transition: all 2s ease-in;
    transition: all 2s ease-in
}

#catch.on {
    opacity: 1
}

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

@media all and (max-width: 639px) {
    #catch {
        right: 0;
        width: 90%;
        bottom: 5%
    }
}

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

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

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

.contact_wrap .contact_left {
    width: 48%;
    padding: 20px 5px
}

.contact_wrap .contact_right {
    width: 48%
}

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

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

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

    .contact_wrap .contact_left {
        margin-right: auto;
        margin-bottom: 20px;
        border-right: 0;
        padding-bottom: 15px
    }
}

.footer-txt {
    max-width: 400px;
    background: #fefefe;
    padding: 15px;
    margin: 0px auto
}

.footer-info {
    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;
    border-top: 2px solid #aaa;
    border-bottom: 2px solid #aaa
}

.footer-info dt,
.footer-info dd {
    padding: 3px
}

.footer-info dt:not(:last-of-type),
.footer-info dd:not(:last-of-type) {
    border-bottom: 1px solid #ccc
}

.footer-info dt {
    width: 90px
}

.footer-info dd {
    width: calc(100% - 100px)
}

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

.contact_bnr>li:not(:last-child) {
    margin-right: 10px
}

@media all and (max-width: 890px) {
    .contact_bnr>li:not(:last-child) {
        margin-right: auto
    }
}

.contact_bnr>li .bnr_tel {
    background: transparent;
    white-space: nowrap;
    color: #FF6E00;
    font-size: 4rem;
    padding: 0 5px;
    width: auto
}

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

.contact_bnr>li .bnr_tel:hover {
    color: #FFF7F2
}

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

.contact_bnr>li .bnr_mobile {
    background: #FF6E00;
    border: 1px solid #cc5800
}

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

.contact_bnr>li .bnr_mobile:hover {
    color: #2F72D9
}

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

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

.contact_bnr>li .bnr_mail {
    background: transparent;
    white-space: nowrap;
    color: #FF6E00;
    font-size: 3.6rem;
    padding: 0 5px;
    width: auto
}

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

.contact_bnr>li .bnr_mail:hover {
    color: #FFAE7E
}

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

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

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

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

    .contact_bnr>li a,
    .contact_bnr>li span {
        width: 270px;
        font-size: 1.5rem
    }
}

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

#l-footer {
    position: relative
}

#l-footer:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
    opacity: 0.5
}

@media all and (max-width: 890px) {
    #l-footer:before {
        height: 70%
    }
}

#l-footer .inner {
    max-width: 1400px;
    margin: 0 auto
}

@media all and (max-width: 1200px) {
    #l-footer .inner {
        max-width: 900px;
        margin-top: 20px
    }
}

@media all and (max-width: 890px) {
    #l-footer .inner {
        max-width: 90%
    }
}

#l-footer .footer-box {
    margin: 0 auto 0;
    padding: 25px 10px;
    background: #fefefe;
    position: relative;
    z-index: 5;
    overflow: hidden
}

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

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

.footer-map {
    width: 100%;
    height: 300px
}

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

.sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px
}

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

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

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

.flogo {
    width: 400px;
    text-align: center;
    margin: 0 auto 10px
}

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

.footer-recruit {
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 231, 96, 0.4);
    padding: 10px;
    border: 1px solid #ffe760
}

@media all and (max-width: 639px) {
    .footer-recruit {
        font-size: 12px;
        text-align: left
    }
}

.recruit-title {
    text-align: center;
    font-size: 15px;
    color: #FF517D
}

.footer_navi {
    padding: 30px 0;
    margin: 0 auto
}

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

.footer_navi li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    text-align: center;
    border-left: 1px solid #FF517D
}

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

.footer_navi li a {
    color: #FF517D;
    font-size: 1.2rem;
    position: relative;
    font-weight: 400
}

.footer_navi li a span {
    display: none
}

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

.footer_navi li .dropdown {
    display: none
}

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

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

.column2 .child {
    width: 48%
}

.column2 .child1 {
    width: 35%
}

.column2 .child2 {
    width: 62%
}

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

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

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

.column2-2 .child {
    width: 48%
}

@media all and (max-width: 890px) {
    .column2-2 .child {
        width: 100%;
        border: 0
    }
}

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

.column3 .child {
    width: 32%
}

@media all and (max-width: 890px) {
    .column3 .child {
        width: 100%;
        border: 0
    }
}

.address {
    text-align: center;
    font-size: 1.2rem
}

.copyright {
    padding: 0 0 15px;
    font-size: 1.2rem
}

@media all and (max-width: 890px) {
    .copyright {
        padding-bottom: 20px
    }
}

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

.top-intro {
    position: relative;
    max-width: 1500px;
    margin: 40px auto 0
}

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

@media all and (max-width: 639px) {
    .top-intro:before {
        width: 100%;
        height: 40%;
        background-position: center
    }
}

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

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

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

.top-box {
    max-width: 60%;
    background: #fff;
    color: #4A392F;
    padding: 40px;
    position: relative;
    z-index: 5;
    font-size: 1.1em;
    margin: 30px 10px 30px auto;
    position: relative;
    font-weight: 400;
    border-radius: 30px;
    -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.3);
    box-shadow: 0 0 10px rgba(17, 17, 17, 0.3)
}

@media all and (max-width: 890px) {
    .top-box {
        max-width: 70%;
        padding: 20px;
        font-size: 1.1rem
    }
}

@media all and (max-width: 639px) {
    .top-box {
        max-width: 98%;
        margin: 140px auto 0
    }
}

.top-intro_txt {
    margin-bottom: 20px;
    padding-left: 30px
}

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

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

.top-sec2 {
    position: relative
}

.top-sec2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 60px);
    height: 50%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 110, 0, 0.5)), to(rgba(255, 110, 0, 0.8)));
    background-image: linear-gradient(to right, rgba(255, 110, 0, 0.5) 0%, rgba(255, 110, 0, 0.8) 100%);
    opacity: 0.4
}

@media all and (max-width: 639px) {
    .top-sec2:before {
        height: 100%;
        width: 95%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 110, 0, 0.5)), to(rgba(255, 110, 0, 0.8)));
        background-image: linear-gradient(to bottom, rgba(255, 110, 0, 0.5) 0%, rgba(255, 110, 0, 0.8) 100%)
    }
}

.top-sec2-ttl {
    position: relative;
    z-index: 2
}

.top-btn01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 25px
}

.top-btn01 li {
    width: 18%;
    position: relative
}

.top-btn01 li a {
    display: block;
    text-align: center;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.top-btn01 li .morebtn {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #493121;
    color: #fefefe;
    text-align: center;
    width: 200px;
    padding: 8px 0
}

.top-btn01 li .top-btn-title {
    position: relative;
    z-index: 3;
    background: url(../img/body_bg.png);
    margin: -40px auto 18px;
    width: 80%;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    color: #FF6E00;
    -webkit-box-shadow: 5px 5px rgba(255, 110, 0, 0.2);
    box-shadow: 5px 5px rgba(255, 110, 0, 0.2);
    border-radius: 10px
}

.top-btn01 li .top-btn-title span {
    display: block;
    font-size: 1.4rem;
    color: #493121
}

.top-btn01 li .top-btn-img {
    position: relative;
    border-radius: 10px;
    width: 100%;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -webkit-box-shadow: 0 0 8px rgba(73, 49, 33, 0.3);
    box-shadow: 0 0 8px rgba(73, 49, 33, 0.3)
}

.top-btn01 li .top-btn-txt {
    padding-bottom: 55px
}

.top-btn01 li:hover .top-btn-img {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
}

.top-btn01 li:hover .morebtn {
    background: #FF6E00
}

@media all and (max-width: 890px) {
    .top-btn01 {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .top-btn01 li {
        width: 90%;
        margin-bottom: 30px
    }
}

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

    .top-btn01 li .top-btn-title {
        font-size: 1.6rem;
        width: 220px
    }

    .top-btn01 li .top-btn-title span {
        font-size: 1.2rem
    }

    .top-btn01 li:first-of-type {
        margin-bottom: 30px
    }
}

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

.top-btn02 li {
    width: 48%
}

.top-btn02 a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px 0 10px 0
}

.top-btn02 a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #000
}

.top-btn02 a .top-btn02-img {
    width: 100%;
    height: 230px;
    overflow: hidden
}

.top-btn02 a .top-btn02-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
}

.top-btn02 a .top-btn02-title {
    line-height: 1.5;
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    color: #fefefe;
    font-size: 2rem
}

.top-btn02 a .top-btn02-title span {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #fefefe;
    display: block;
    border-bottom: 2px solid #fefefe;
    margin-bottom: 5px
}

.top-btn02 a:hover {
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.1);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.1)
}

.top-btn02 a:hover .top-btn02-img img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

@media all and (max-width: 639px) {
    .top-btn02 li {
        width: 90%;
        margin: 0 auto 25px
    }

    .top-btn02 a .top-btn02-title {
        font-size: 1.6rem
    }

    .top-btn02 a .top-btn02-title span {
        font-size: 3rem
    }
}

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

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

.news-title {
    text-align: center;
    font-weight: bold;
    padding: 5px 20px;
    color: #fefefe
}

.news-title span {
    font-size: 3.5rem;
    display: block;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600
}

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

    .news-title span {
        font-size: 2rem;
        margin-bottom: 0
    }
}

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

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

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

.top-blog li {
    width: 32%;
    margin: 0 1.5% 10px;
    position: relative
}

.top-blog li>a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2
}

.top-blog li>a:hover~.top-blog_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

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

.top-blog .top-blog_img {
    margin-bottom: 10px;
    overflow: hidden;
    height: 180px
}

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

.top-blog .top-blog_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.top-blog .top-blog_time {
    background: #FF6E00;
    padding: 8px 5px;
    color: #fff;
    width: 25%;
    text-align: center;
    line-height: 1.2
}

.top-blog .top-blog_time span {
    display: block;
    font-size: 1.3rem;
    letter-spacing: 0.1rem
}

.top-blog .top-blog_time span.day {
    font-size: 2.5rem;
    font-weight: bold
}

.top-blog .top-blog_detail {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 10px
}

.top-blog .top-blog_ttl {
    font-size: 1.7rem;
    font-weight: bold
}

@media all and (max-width: 890px) {
    .top-blog li {
        width: 49%;
        margin-right: 2%
    }

    .top-blog li:nth-child(3n) {
        margin-right: 2%
    }

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

@media all and (max-width: 639px) {
    .top-blog li {
        width: 85%;
        margin: 0 auto 20px
    }

    .top-blog li:nth-child(2n),
    .top-blog li:nth-child(3n) {
        margin-right: auto
    }

    .top-blog .top-blog_time span {
        font-size: 1.1rem
    }

    .top-blog .top-blog_time span.day {
        font-size: 1.8rem
    }

    .top-blog .top-blog_ttl {
        font-size: 1.3rem
    }
}

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

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

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

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

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

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

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

.anchor-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 35px
}

.anchor-list li {
    width: 100%;
    position: relative;
    background: rgba(255, 81, 125, 0.8)
}

.anchor-list li:not(last-child) {
    margin-bottom: 10px
}

.anchor-list li:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 700;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fefefe;
    font-size: 2rem
}

.anchor-list li a {
    display: block;
    text-align: center;
    color: #493121;
    padding: 5px 5px 5px 25px
}

.lead-txt {
    color: #493121;
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px
}

.lead-txt span {
    font-size: 3rem;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    color: #FF6E00;
    margin-right: 2px
}

.fee {
    text-align: center;
    font-size: 1.1em;
    max-width: 500px;
    margin: 0 auto 25px;
    background: rgba(255, 110, 0, 0.2);
    padding-bottom: 5px
}

.fee .small {
    font-size: 1.4rem;
    color: #493121
}

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

    .fee .small {
        font-size: 1.2rem
    }
}

.price {
    font-weight: bold;
    color: #FF6E00
}

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

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

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

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

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

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

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

.course-list li {
    width: calc((100% / 3) - 2%);
    margin: 0 3% 15px 0;
    background: #ECECEC;
    padding: 5px;
    color: #493121;
    font-size: 1.7rem;
    text-align: center;
    border-radius: 10px 0 10px 0;
    position: relative
}

.course-list li:after {
    position: absolute;
    right: -18px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 700;
    color: #d3d3d3;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2rem
}

.course-list li span {
    font-size: 1.4rem;
    display: block;
    line-height: 1.4;
    font-weight: 400
}

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

.course-list li:nth-child(3n):after {
    display: none
}

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

    .course-list li:nth-child(3n):after {
        display: block
    }
}

@media all and (max-width: 639px) {
    .course-list li {
        width: 90%;
        margin: 0 auto 20px;
        font-size: 1.4rem;
        padding: 10px 5px
    }

    .course-list li span {
        font-size: 0.9em
    }

    .course-list li:after {
        content: "\f107";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .course-list li:last-child:after {
        display: none
    }
}

.menu-title {
    font-size: 1.7rem;
    color: #cc5800;
    border-top: 1px solid rgba(255, 110, 0, 0.5);
    border-bottom: 1px solid rgba(255, 110, 0, 0.5);
    padding-bottom: 3px;
    line-height: 1.5;
    padding: 8px 5px;
    margin-bottom: 5px;
    background: rgba(255, 110, 0, 0.2)
}

.menu-title span {
    font-size: 0.8em
}

.menu-title span.recommend {
    background: #994200;
    padding: 2px 5px;
    margin-right: 5px;
    color: #fefefe;
    letter-spacing: 0
}

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

.price2 {
    font-size: 1.8rem;
    color: #ff813e
}

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

.menu-list {
    margin-bottom: 20px
}

.menu-list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 4px
}

.menu-list>li p {
    display: inline-block;
    line-height: 1.4
}

.menu-list>li:before {
    background: radial-gradient(#ddd 30%, transparent 0) center center/8px 8px;
    content: "";
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    margin: 0 1.2em
}

@media all and (max-width: 639px) {
    .menu-list>li:before {
        margin: 0 5px
    }
}

.menu-list>li .left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    max-width: 60%
}

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

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

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

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

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

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

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

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

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

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

.mbox.transparent {
    background: none
}

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

.mbox2 {
    background: url(../img/bg-sand.png);
    margin-right: auto;
    margin-left: auto;
    max-width: 1500px;
    padding: 30px
}

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

.mbox3 {
    background: rgba(255, 110, 0, 0.1);
    padding: 40px 30px;
    max-width: 80%;
    margin: 30px auto
}

.mbox3.w100 {
    max-width: 100%;
    background: #fff
}

.mbox3.bg-non {
    background: none
}

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

    .mbox3.w100 {
        max-width: 100%
    }
}

.container-box {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    position: relative
}

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

.bg-map {
    background: url(../img/map.png) no-repeat right bottom
}

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

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

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

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

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

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

#side {
    float: right;
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    top: 0;
    width: 21%;
    padding-right: 10px
}

@media all and (max-width: 890px) {
    #side {
        float: none;
        width: 100%;
        position: static;
        margin-top: 40px
    }
}

#col2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
}

#col2-wrap #col2-main {
    width: 78%
}

@media all and (max-width: 890px) {
    #col2-wrap #col2-main {
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

#col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0
}

@media all and (max-width: 890px) {
    #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px
    }
}

.mtitle {
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
    color: #FF6E00
}

.mtitle span {
    display: block;
    font-size: 4rem;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    margin-bottom: -5px;
    color: #4A392F;
    line-height: 1.5
}

.mtitle:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    height: 2px;
    width: 40px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: -webkit-gradient(linear, right top, left top, from(#FFAE7E), to(#FFF7F2));
    background-image: linear-gradient(to left, #FFAE7E, #FFF7F2)
}

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

.mtitle.white span {
    color: #fff
}

.mtitle.center {
    text-align: center
}

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

.mtitle.mtitle_left {
    text-align: left
}

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

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

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

.mtitle2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 5px;
    border-bottom: 3px solid;
    -o-border-image: linear-gradient(to right, rgba(255, 110, 0, 0.6) 0%, rgba(73, 49, 33, 0.5));
    border-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 110, 0, 0.6)), to(rgba(73, 49, 33, 0.5)));
    border-image: linear-gradient(to right, rgba(255, 110, 0, 0.6) 0%, rgba(73, 49, 33, 0.5));
    border-image-slice: 1;
    line-height: 1.3;
    font-weight: 600
}

.mtitle2 span {
    font-size: 3rem;
    margin-right: 15px;
    color: #FF6E00;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600
}

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

    .mtitle2 span {
        font-size: 2.2rem;
        display: block
    }
}

.mtitle3 {
    font-size: 3rem;
    font-weight: bold;
    color: #FF6E00;
    display: block;
    text-align: center;
    margin-bottom: 20px
}

.mtitle3 span {
    font-size: 1.7rem;
    color: #493121;
    display: block
}

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

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

.mtitle-bll {
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid #fff;
    position: relative;
    padding: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #994200
}

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

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

.mtitle_ff {
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid #fff;
    position: relative;
    padding: 5px;
    padding-left: 20px;
    margin: 20px 0 10px;
    line-height: 1.5;
    color: #994200
}

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

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

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

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

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

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

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

.mtitle4.white span:before,
.mtitle4.white span:after {
    background-color: #ffe760
}

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

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

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

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

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

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

.mtitle_box {
    background: #FF6E00;
    color: #fff;
    font-size: 1.7rem;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: bold
}

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

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

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

.mtitle_box2 {
    background: #2F72D9;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    font-weight: bold;
    letter-spacing: 0.1rem;
    padding: 15px 10px 15px 20px;
    margin-bottom: 25px
}

.mtitle_box2 span {
    position: absolute;
    font-size: 5rem;
    opacity: 0.5;
    left: 0;
    top: -75px;
    color: #555;
    letter-spacing: 0.2rem
}

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

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

    .mtitle_box2 span {
        font-size: 3rem;
        top: -40px;
        opacity: 0.3
    }
}

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

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

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

.mtext2 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #cc5800
}

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

    .mtext2 span {
        font-size: 1.5rem
    }
}

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

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

.mtitle_sand {
    padding: 5px 0;
    font-size: 2.3rem;
    border-bottom: 2px solid #FF6E00;
    border-top: 2px solid #FF6E00;
    color: #cc5800
}

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

.btn01 a {
    background: #fff;
    text-align: center;
    width: 300px;
    margin: 20px auto 0;
    color: #FF6E00;
    display: block;
    padding: 8px 5px;
    font-weight: 400;
    border: 1px solid #e66300;
    border-radius: 35px;
    line-height: 1.4
}

.btn01 a span {
    display: block;
    font-size: 0.9em
}

.btn01 a:hover {
    background: #cc5800;
    color: #fff
}

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

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

.btn01.orange a {
    background: #FF517D;
    border-color: #ff813e;
    color: #493121
}

.btn01.orange a:hover {
    background: #ff813e;
    color: #fefefe
}

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

.btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #FF6E00;
    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
    }
}

.btn03 a {
    background: #fff;
    text-align: center;
    margin: 20px auto 0;
    color: #FF6E00;
    display: block;
    padding: 8px 5px;
    font-weight: 400;
    border: 1px solid #e66300;
    border-radius: 35px;
    line-height: 1.4
}

.btn03 a span {
    display: block;
    font-size: 0.9em
}

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

@media all and (max-width: 639px) {
    .btn0
3 a {
        width: 95%
    }
}

.news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.news dt {
    width: 8em;
    padding: 3px 5px;
    background: #c6c6c6;
    text-align: center;
    font-weight: bold;
    color: #493121
}

.news dd {
    padding: 5px;
    width: calc(100% - 9.5em);
    margin-left: 10px;
    text-align: left
}

.news dd a {
    color: #2F72D9
}

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

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

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

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

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

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

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

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

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

.page-title {
    position: relative;
    z-index: 1;
    background: url(../img/page-title.jpg) no-repeat 50%/cover;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px
}

@media all and (max-width: 890px) {
    .page-title {
        max-width: calc(100% - 20px)
    }
}

.page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #FF6E00;
    opacity: 0.3
}

.page-title.mog {
    background: url(../img/page-title2.jpg) no-repeat 50%/cover
}

.page-title.mog:before {
    background: #ffe760
}

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

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

@media all and (-ms-high-contrast: none) {
    .page-title .page-lead {
        margin: 0
    }
}

.page-title .page-lead span {
    display: block;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    font-size: 5rem
}

.page-title .page-lead.mog {
    color: #fff;
    text-shadow: 0 0 3px #825002
}

@media all and (max-width: 890px) {
    .page-title {
        background-attachment: scroll;
        margin-top: 15px
    }

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

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

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

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

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

.bg-01 {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 110, 0, 0.8)), color-stop(50%, rgba(255, 110, 0, 0.8)), color-stop(50.1%, rgba(255, 81, 125, 0.5)), to(rgba(255, 81, 125, 0.5)));
    background-image: linear-gradient(to right, rgba(255, 110, 0, 0.8) 0%, rgba(255, 110, 0, 0.8) 50%, rgba(255, 81, 125, 0.5) 50.1%, rgba(255, 81, 125, 0.5) 100%)
}

@media all and (max-width: 639px) {
    .bg-01 {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 110, 0, 0.8)), color-stop(55%, rgba(255, 110, 0, 0.8)), color-stop(55.1%, rgba(255, 81, 125, 0.5)), to(rgba(255, 81, 125, 0.5)));
        background-image: linear-gradient(to bottom, rgba(255, 110, 0, 0.8) 0%, rgba(255, 110, 0, 0.8) 55%, rgba(255, 81, 125, 0.5) 55.1%, rgba(255, 81, 125, 0.5) 100%)
    }
}

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

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

.bg-contents {
    position: relative
}

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

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

.bg-maru1,
.bg-maru2 {
    position: relative;
    margin: 50px auto
}

.bg-maru1:before,
.bg-maru2:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: calc(100% - 60px);
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: #ECECEC;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

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

    .bg-maru1:before,
    .bg-maru2:before {
        width: 100%
    }
}

.bg-maru2:before {
    background: #f8f3ee;
    opacity: 0.8
}

.bg-base {
    position: relative;
    margin: 50px auto;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 110, 0, 0.5);
    border-radius: 20px
}

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

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

.bg-blue {
    background: #2F72D9
}

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

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

.tbl {
    width: 100%
}

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

.tbl th {
    background: rgba(236, 236, 236, 0.5);
    text-align: left
}

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

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

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

.tbl th.cell02 {
    width: 20%
}

.tbl th.cell03 {
    width: 22.5%
}

.tbl td {
    background: #fefefe
}

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

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

.tbl .cell01 {
    width: 45%
}

.tbl .cell02 {
    width: 25%
}

.tbl_new {
    width: 100%
}

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

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

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

.tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #2F72D9
}

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

.tbl-border {
    width: 100%
}

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

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

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

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

.tbl-border th {
    color: #ff84a3
}

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

.tbl-plain {
    width: 100%;
    margin-top: 20px
}

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

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

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

.tbl-plain th {
    color: #FF6E00;
    background: #F5F5F5
}

.tbl-plain.tl {
    width: 100%
}

.tbl-plain.tl td {
    text-align: left
}

.tbl-plain.tl th {
    width: 30%
}

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

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

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

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

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

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

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

.company th.bl {
    background: #2F72D9
}

.company th.bl::after {
    border-left-color: #2F72D9
}

.company th.og {
    background: #ff813e
}

.company th.og::after {
    border-left-color: #ff813e
}

.company th.gr {
    background: #43a608
}

.company th.gr::after {
    border-left-color: #43a608
}

.company th.pa {
    background: #874ADC
}

.company th.pa::after {
    border-left-color: #874ADC
}

.company th.beige {
    background: #AF9D7D
}

.company th.beige::after {
    border-left-color: #AF9D7D
}

.company th.yl {
    background: #D4C13E
}

.company th.yl::after {
    border-left-color: #D4C13E
}

.company th.gr2 {
    background: #43C175
}

.company th.gr2::after {
    border-left-color: #43C175
}

.company th.gr3 {
    background: #4ACCA6
}

.company th.gr3::after {
    border-left-color: #4ACCA6
}

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

.tbl0 {
    width: 100%
}

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

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

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

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

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

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

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

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

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

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

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

.list_check li span {
    font-weight: normal;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    margin-top: 10px
}

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

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

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

.list_check2 li {
    margin-bottom: 5px;
    border-bottom: 1px dashed #ccc;
    padding: 3px;
    background: #fefefe
}

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

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

.list_check2.type2 li:before {
    color: #FF517D
}

.list_check2.food li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f2e7";
    font-weight: 700;
    font-size: 1.8rem
}

.list_check2.nico li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f582";
    font-weight: 700;
    font-size: 1.8rem
}

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

.list_check3 li {
    margin-bottom: 5px;
    border-bottom: 1px dashed #ccc;
    padding: 5px 40px;
    background: #fefefe;
    margin: 5px;
    color: #cc5800
}

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

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

.list_check3.type2 li:before {
    color: #FF517D
}

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

.ol-list {
    counter-reset: number;
    list-style: none;
    background: rgba(255, 247, 242, 0.3);
    padding: 20px
}

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

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

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

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

    .ol-list>li span {
        font-size: 0.9em
    }

    .ol-list>li:before {
        font-size: 1.8rem
    }
}

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

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

.blog-wrap>li {
    width: 23%;
    margin: 0 2.33% 4% 0;
    background: rgba(236, 236, 236, 0.3);
    border-radius: 10px
}

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

.blog-wrap>li a {
    display: block;
    width: 100%;
    height: 100%
}

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

.blog-wrap>li .blog-img {
    width: 100%;
    height: 160px
}

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

.blog-wrap>li .blog-detail {
    padding: 15px;
    line-height: 1.5
}

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

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

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

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

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

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

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

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

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

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

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

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

.pages .page_next,
.pages .page_prev {
    width: 48%;
    position: relative
}

.pages .page_next a,
.pages .page_prev a {
    color: #994200;
    padding: 10px;
    background: #fff;
    font-size: 13px;
    line-height: 1.6;
    display: block;
    text-align: center
}

.pages .page_next:before,
.pages .page_prev:before {
    position: absolute;
    left: 50%;
    top: -15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.pages .page_next {
    margin-right: 3%
}

.pages .page_next:before {
    content: "Next"
}

.pages .page_next:after {
    position: absolute;
    content: "";
    right: -2%;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: 1;
    background: #ccc
}

.pages .page_prev:before {
    content: "Previous"
}

.category_nav {
    border: 1px solid #dddddd
}

.category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff
}

.category_nav li a:before {
    font-family: "FontAwesome";
    content: "\f0a9";
    margin-right: 5px
}

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

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

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.br_tablet {
    display: none
}

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

.round-box {
    border-radius: 20px;
    overflow: hidden
}

.color1 {
    color: #FF6E00
}

.color2 {
    color: #43a608
}

.color3 {
    color: #2F72D9
}

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

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

.num a:hover {
    color: #FF517D
}

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

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

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

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

.breadcrumb li a {
    color: #FF517D
}

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

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

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

.form dl dt span {
    color: #fff;
    background: #FF6E00;
    padding: 5px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px
}

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

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

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

.form .textarea {
    height: 30px
}

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

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

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

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

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

.form button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 700;
    margin-right: 10px
}

.form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333
}

.form .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
    display: block;
    width: 200%;
    width: -webkit-calc(100% + 5em);
    margin: 0;
    padding: 11px 35px 11px 11px;
    padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
    background: transparent;
    border: 0;
    outline: none;
    line-height: 1.5
}

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

.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: #FF6E00;
    z-index: 1
}

.form label.radio_text input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 0px;
    margin: 0px;
    -webkit-box-shadow: 20px -1px #fff;
    box-shadow: 20px -1px #fff
}

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

.form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    -webkit-box-shadow: 20px -1px #eeebda;
    box-shadow: 20px -1px #eeebda
}

.form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block
}

.form label.checkbox_text:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 0;
    border: 1px solid #ccc;
    z-index: 3;
    padding: 1px
}

.form label.checkbox_text:after {
    content: "";
    position: absolute;
    top: 40%;
    left: 5px;
    display: block;
    margin-top: -9px;
    width: 8px;
    height: 12px;
    border-right: 3px solid #FF6E00;
    border-bottom: 3px solid #FF6E00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1
}

.form label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    display: block;
    -webkit-box-shadow: 41px 0px #fff;
    box-shadow: 41px 0px #fff;
    z-index: 2;
    margin: 0px;
    padding: 0px
}

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

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

.form label.checkbox_text input[type="checkbox"]:focus {
    -webkit-box-shadow: 41px 0px #eee;
    box-shadow: 41px 0px #eee
}

.fm-txt {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px
}

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

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

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

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

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

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

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

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

.mtitle_small {
    position: relative;
    font-size: 2.2rem;
    color: #FF6E00;
    margin-bottom: 20px;
    letter-spacing: 0.2rem;
    font-weight: 600
}

.mtitle_small span {
    font-size: 13px;
    margin-left: 8px;
    background: #ECECEC;
    padding: 5px;
    color: #493121;
    border-radius: 5px
}

.mtitle_small:before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #ff8b33;
    position: absolute;
    left: 0;
    bottom: -10px
}

.mtitle_small.tcenter:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media all and (max-width: 639px) {
    .mtitle_small {
        font-size: 1.6rem;
        letter-spacing: 0.1rem
    }
}

.mtitle_small.type2 {
    color: #FF517D
}

.mtitle_small.type2:before {
    background-color: #FF517D
}

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

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

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

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

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

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

.gallery.col3 li a {
    height: 200px
}

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

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

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

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

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

.gallery li p {
    line-height: 1.6;
    margin-top: 5px
}

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

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

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

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

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

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

    .gallery.col3 li,
    .gallery.col4 li {
        width: 90%;
        margin: 0 auto 20px
    }
}

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

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

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

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

@media all and (max-width: 890px) {
    .gallery.col4 li a {
        height: 150px
    }
}

@media all and (max-width: 890px) and (max-width: 639px) {
    .gallery.col4 li a {
        height: 120px
    }
}

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

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

.list2>li img,
.list2 .child img {
    width: 100%;
    margin-bottom: 10px
}

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

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

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

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

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

.list2.info-list .child {
    background: #fefefe;
    padding: 10px
}

@media all and (max-width: 1200px) {
    .list2.info-list .child .fleft2 {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
        display: block
    }
}

.list2.salon-list li {
    background: rgba(255, 81, 125, 0.2);
    padding: 20px;
    border-radius: 15px 0 15px 0;
    font-size: 1.4rem
}

@media all and (max-width: 1200px) {
    .list2.salon-list li .fleft2 {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
        display: block
    }
}

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

.info-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

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

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

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

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

.list3 li {
    width: 31%;
    margin: 0 3% 15px 0
}

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

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

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

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

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

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

.list4 li {
    width: 23%;
    margin: 0 calc(2% + (2% / 3)) 20px 0
}

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

@media all and (max-width: 890px) {
    .list4 {
        max-width: 600px
    }

    .list4 li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 20px
    }

    .list4 li img {
        width: 100%
    }

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

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

    .list4 li:nth-child(2n) {
        margin-right: auto
    }
}

.advantage-box {
    max-width: 800px;
    padding: 20px;
    background: #fefefe;
    font-weight: bold;
    margin: 30px auto 0;
    text-align: center
}

.note {
    padding: 15px;
    margin-top: 10px;
    background: rgba(236, 236, 236, 0.5);
    border-radius: 10px
}

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

.flow-dl dt {
    background: url(../img/body_bg.png);
    font-size: 3rem;
    color: #43a608;
    width: 80px;
    border: 2px solid #FF6E00;
    text-align: center;
    margin-right: 20px;
    height: 80px;
    padding-top: 8px;
    border-radius: 100%
}

.flow-dl dt span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: -16px
}

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

.flow-dl dd:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc
}

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

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

    .flow-dl dt {
        font-size: 1.7rem;
        width: 55px;
        height: 55px;
        padding-top: 3px
    }

    .flow-dl dt span {
        font-size: 1.2rem;
        margin-bottom: -12px
    }

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

    .flow-dl dd {
        width: 100%
    }
}

.txt1 {
    padding-left: 10px
}

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

.blog-month ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

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

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

@media all and (max-width: 890px) {
    .blog-month ul li {
        width: 48%;
        font-size: 1.1rem
    }

    .blog-month ul li:nth-child(even) {
        margin-left: 1%
    }
}

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

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

.list-center li {
    max-width: 250px
}

.list-center li:not(:last-child) {
    margin: 0 5px 5px
}

@media all and (max-width: 639px) {
    .list-center li {
        width: 220px
    }

    .list-center li:not(:last-child) {
        margin: 0 0 5px
    }
}

.faq-dl .faq-inner {
    padding: 10px;
    margin-bottom: 20px
}

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

.faq-dl dt,
.faq-dl dd {
    position: relative;
    padding: 10px 10px 10px 55px
}

.faq-dl dt:before,
.faq-dl dd:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    left: 0;
    top: 0
}

.faq-dl dt {
    color: #2F72D9;
    font-size: 1.05em
}

.faq-dl dt:before {
    content: "Q";
    color: #2F72D9;
    font-size: 2rem;
    background: rgba(47, 114, 217, 0.2)
}

.faq-dl dd:before {
    content: "A";
    color: #fff;
    font-size: 2rem;
    background: rgba(255, 129, 62, 0.5)
}

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

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

.fukidashi a {
    color: #a71017
}

.fukidashi a:hover {
    color: #c1272d
}

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

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

.title-big {
    font-weight: 600;
    color: #493121;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px
}

.title-big span {
    display: block;
    font-size: 7rem;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    color: #FF6E00
}

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

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

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

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

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

.bnr-list li {
    height: 55px
}

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

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

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

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

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

    .bnr-list li {
        height: 42px
    }

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

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

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

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

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

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

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

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

.mtitle5 span {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    display: block;
    color: rgba(74, 57, 47, 0.5);
    font-weight: 400;
    letter-spacing: 0.1rem
}

@media all and (max-width: 639px) {
    .mtitle5 {
        font-size: 2rem;
        left: 0;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        display: block;
        position: inherit;
        border-bottom: 2px solid #aaa;
        border-top: 0px solid #aaa;
        margin-bottom: 30px;
        padding: 10px 0
    }

    .mtitle5 span {
        font-size: 1.3rem;
        color: rgba(73, 49, 33, 0.5)
    }
}

.vertical-box {
    position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

.calendar-info span {
    color: #ffe760
}

.calendar-box table {
    width: 100%
}

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

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

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

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

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

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

.calendar-box th.sat,
.calendar-box td.sat {
    color: #2F72D9
}

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

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

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

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

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

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

.service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px auto
}

.service-list li {
    width: 100px;
    text-align: center;
    padding: 15px 0 10px;
    border: 2px solid #FF6E00;
    border-radius: 10px;
    font-weight: 600;
    color: #493121;
    background: rgba(255, 110, 0, 0.3)
}

.service-list li i {
    color: #43a608;
    font-size: 4rem;
    display: block
}

.service-list li:not(:last-of-type) {
    margin-right: 10px
}

@media all and (max-width: 639px) {
    .service-list li:not(:last-of-type) {
        margin-right: calc(1% + (1% / 3))
    }
}

@media all and (max-width: 890px) {
    .service-list li {
        width: 90px
    }
}

@media all and (max-width: 639px) {
    .service-list li {
        width: 24%;
        margin: 0 calc(1% + (1% / 3)) 10px 0
    }

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

    .service-list li i {
        font-size: 3rem
    }
}

.service-list.type2 li {
    width: 200px;
    background: lemonchiffon;
    border-color: #FF517D;
    line-height: 1.4
}

.service-list.type2 li span {
    font-size: 0.9em;
    display: block
}

@media all and (max-width: 639px) {
    .service-list.type2 li {
        width: 140px
    }
}

.service-list.type2 li img {
    width: 100px
}

.title-mini {
    background: #f0f0f0;
    padding: 10px;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 10px
}

.facility1 .mtitle span {
    color: #43a608
}

.facility1 .mtitle5 {
    color: #43a608
}

.facility1 .mtitle_small {
    color: #1c4503
}

.facility1 .mtitle_small:before {
    background: #43a608
}

.facility2 .mtitle span {
    color: #ff813e
}

.facility2 .mtitle5 {
    color: #ff813e
}

.facility2 .mtitle_small {
    color: #d74b00
}

.facility2 .mtitle_small:before {
    background: #ff813e
}

.board-box {
    border-radius: 20px;
    padding: 20px;
    background: #f8f3ee
}

.timetable {
    font-size: 13px;
    width: 100%
}

.timetable th {
    background: #ECECEC
}

.timetable td {
    background: #fefefe
}

.timetable th,
.timetable td {
    text-align: center;
    padding: 5px 3px;
    vertical-align: middle
}

.timetable .time-txt {
    line-height: 1.2
}

.timetable tr:first-of-type th,
.timetable tr:first-of-type td {
    background: rgba(255, 255, 255, 0.5)
}

.timetable tr:last-of-type th {
    background: #d3d3d3
}

.timetable tr:last-of-type td {
    background: #f0f0f0
}

.title-lead {
    position: relative;
    background-image: url(../img/line.gif);
    background-repeat: repeat-x;
    background-position: bottom left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 600
}

@media all and (max-width: 639px) {
    .title-lead {
        font-size: 1.6rem;
        line-height: 1.5
    }
}

.bg-img1 {
    padding: 30px 0;
    background-image: url(../img/top_2_back.jpg);
    background-position: bottom right;
    background-size: contain
}

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

.contactbx {
    text-align: center;
    margin: 15px 0
}

.contactbx li {
    display: inline-block;
    margin: 0 5px 10px
}

.contactbx a {
    width: 100%;
    display: block
}

.contactbx .tl a {
    background: #fff;
    width: 100%;
    max-width: 100%;
    min-width: 350px;
    height: 60px;
    border-radius: 50px;
    font-weight: 900;
    line-height: 55px;
    font-family: 'Oswald', sans-serif;
    border: 1px solid #FF6E00;
    font-size: 2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.contactbx .ml a,
.contactbx .fax a {
    color: #fff;
    background: #FF6E00;
    width: 100%;
    max-width: 100%;
    min-width: 350px;
    height: 60px;
    border-radius: 50px;
    font-weight: 900;
    line-height: 55px;
    font-family: 'Oswald', sans-serif;
    border: 1px solid #FF6E00;
    font-size: 2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.contactbx .mp a {
    background: #fff;
    width: 100%;
    max-width: 100%;
    min-width: 350px;
    font-weight: normal;
    border-radius: 50px;
    padding: 5px 0px;
    border: 2px solid #FF6E00;
    font-size: 1.8rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #FF6E00
}

.contactbx .tl a:link,
.contactbx .tl a:visited {
    color: #FF6E00
}

.contactbx .tl a:hover {
    color: #fff;
    background: #FF6E00
}

.contactbx .tl a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f095";
    margin-right: 8px
}

.contactbx .ml a:link,
.contactbx .ml a:visited {
    color: #fff !important
}

.contactbx .ml a:hover {
    color: #FF6E00 !important;
    background: #fff
}

.contactbx .ml a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    margin-right: 5px
}

.contactbx .fax a:link,
.contactbx .fax a:visited {
    color: #fff !important
}

.contactbx .fax a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f15c";
    margin-right: 5px
}

.contactbx .mp a:link,
.contactbx .mp a:visited {
    color: #fff !important
}

.contactbx .mp a:hover {
    color: #FF6E00 !important;
    background: #fff
}

.contactbx .mp a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    margin-right: 5px
}

@media screen and (max-width: 768px) {
    .contactbx {
        padding: 30px;
        background: rgba(255, 255, 255, 0.6)
    }

    .contactbx .tl a,
    .contactbx .ml a,
    .contactbx .mp a,
    .contactbx .fax a {
        min-width: 280px;
        height: 40px;
        line-height: 40px;
        display: block;
        font-size: 1.5rem
    }

    .contactbx.mn {
        padding: 0px;
        background: none
    }
}

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

.gallery.col li {
    width: 100%;
    margin: 0 10px 25px 0
}

.gallery.col li a {
    height: 400px
}

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

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

.gallery.col3 li a {
    height: 200px
}

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

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

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

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

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

.gallery li p {
    line-height: 1.6;
    margin-top: 5px
}

@media screen and (max-width: 1200px) {
    .gallery.col li {
        margin: 0 4% 20px 0
    }
}

@media screen and (max-width: 1200px) and (max-width: 768px) {
    .gallery.col li {
        margin-right: auto
    }
}

@media screen and (max-width: 1200px) {

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

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

@media screen and (max-width: 1200px) and (max-width: 768px) {

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

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

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

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

@media screen and (max-width: 1200px) and (max-width: 768px) {
    .gallery.col3 li a {
        height: 200px
    }
}

@media screen and (max-width: 1200px) {
    .gallery.col4 li a {
        height: 150px
    }
}

@media screen and (max-width: 1200px) and (max-width: 768px) {
    .gallery.col4 li a {
        height: 120px
    }
}

.w80 {
    width: 80%
}

@media screen and (max-width: 768px) {
    .w80 {
        width: 100%
    }
}

.base {
    color: #FF6E00
}

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

.list-btn li {
    width: 32%;
    margin: 0 calc(1.33% + (1.33% / 2)) 10px 0
}

.list-btn li a {
    display: block;
    border: 1px solid #FF6E00;
    font-weight: 600;
    padding: 10px 3px;
    text-align: center;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    font-size: 1.5rem;
    letter-spacing: 0
}

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

.list-btn li a:hover {
    background: #FF6E00
}

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

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

    .list-btn li a {
        font-size: 1.2rem
    }

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

#introduction {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60vh;
    margin: 0 auto
}

@media all and (max-width: 639px) {
    #introduction {
        height: 50vw
    }
}

.bxslider.bx-1 {
    width: 100vw;
    height: 41vw;
    margin-bottom: 30px
}

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

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

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

.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;
    margin: 0 auto;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.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: 94vw
    }
}

.bx {
    margin: 50px auto
}

@media all and (max-width: 800px) {
    .bx {
        margin: 30px auto
    }
}

.flexbox_3 {
    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;
    margin-bottom: 32px
}

.flexbox_3.daily {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.flexbox_3 .bx {
    position: relative;
    margin-bottom: 32px;
    position: relative;
    width: calc((100% / 3) - 35px)
}

@media all and (max-width: 639px) {
    .flexbox_3 .bx {
        width: 100%
    }
}

.flexbox_3 .bx .bx_in {
    padding: 16px
}

.flexbox_ttl {
    background: #ec8335;
    position: absolute;
    top: -12px;
    left: -12px;
    color: #fff;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    line-height: 1;
    font-size: 2rem;
    border-radius: 50%;
    text-align: center
}

#blog_flexwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin: 40px auto
}

@media (max-width: 960px) {
    #blog_flexwrap {
        width: calc(100% - 16px)
    }
}

#blog_flexwrap #blog_side {
    width: 300px;
    margin-left: 40px
}

#blog_flexwrap #blog_side section {
    margin-bottom: 25px
}

#blog_flexwrap #blog_main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

#blog_flexwrap #blog_main section {
    padding: 24px;
    margin-bottom: 25px
}

.blog_sttl01 {
    text-indent: 5px;
    border-top: 2px solid #FF6E00;
    border-bottom: 2px solid #FF6E00;
    color: #FF6E00;
    background: #fff;
    padding: 5px 0;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: center
}

.blog_mttl {
    width: calc(100% - 20px);
    color: #FF6E00;
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
    overflow: hidden;
    font-weight: bold;
    margin: 0px 0 16px;
    line-height: 1.8
}

@media (max-width: 1200px) {
    .blog_mttl {
        font-size: 1.8rem
    }
}

.blog_time {
    padding-top: 0px;
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: right
}

@media (max-width: 479px) {
    .blog_time {
        font-size: 1.2rem
    }
}

.blog_time:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal
}

.blog_box {
    min-height: 500px;
    position: relative
}

.blog_box img {
    max-width: 100%;
    padding: 16px 0
}

.pages {
    width: calc(100% - 20px);
    margin-top: 40px;
    font-size: 1.2rem
}

.pages a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #FF6E00;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pages a:link,
.pages a:visited {
    color: #FF6E00
}

.pages a:hover {
    opacity: 0.6
}

.pages .page_next {
    float: left;
    width: calc(45% - 20px)
}

.pages .page_prev {
    float: right;
    text-align: right;
    width: calc(45% - 20px)
}

.archive * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.archive ul {
    margin: 8px 0 0
}

.archive li {
    background: #ECECEC;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
    background: #fff
}

.archive li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px
}

.archive li a:link,
.archive li a:visited {
    color: #333
}

.archive li a:hover {
    color: #FF6E00
}

.blog_side_list {
    position: relative;
    margin: 0 0 16px !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.blog_side_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(50% - 16px) !important;
    font-size: 12px;
    margin: 5px;
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #FF6E00;
    padding: 10px
}

.blog_side_list .blog_bx:nth-child(2) {
    margin-right: 0px
}

@media all and (max-width: 639px) {
    .blog_side_list .blog_bx {
        width: 100% !important;
        margin-right: 0px
    }

    .blog_side_list .blog_bx:nth-child(2) {
        margin-right: 0px
    }
}

.blog_side_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.blog_side_list .blog_bx .blog_bx_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
}

.blog_side_list .blog_bx .blog_bx_flex div {
    width: calc(100% - 120px);
    padding: 0
}

.blog_side_list .blog_bx:hover {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px;
    box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px
}

.blog_side_list .blog_bx figcaption {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 0px;
    -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
    box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px
}

.blog_side_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.blog_side_list .blog_bx img {
    vertical-align: middle;
    height: 100px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

.blog_side_list .blog_bx:hover img {
    opacity: 1 !important
}

.blog_side_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    color: #FF6E00;
    float: none;
    background: #fff;
    padding: 0 0px;
    border-bottom: 1px dashed #FF6E00
}

.blog_side_list .blog_bx .ttm {
    float: none;
    padding-top: 0px;
    font-size: 1.2rem;
    color: #888;
    font-weight: normal
}

.blog_side_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal
}

.blog_side_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: bold;
    color: #FF6E00;
    font-size: 1.5rem;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.blog_side_list.list .ttl {
    display: none
}

.blog_top_list {
    position: relative;
    margin: 0 0px 16px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    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
}

.blog_top_list:after {
    content: "";
    display: block;
    width: 31%
}

.blog_top_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100% !important;
    font-size: 12px;
    margin: 0 0 25px;
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #FF6E00;
    padding: 10px
}

.blog_top_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.blog_top_list .blog_bx .blog_bx_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;
    background: #fff
}

.blog_top_list .blog_bx .blog_bx_flex div {
    width: 100%;
    padding: 16px
}

.blog_top_list .blog_bx:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    -webkit-box-shadow: 3px 3px 10px #9E9E9E;
    box-shadow: 3px 3px 10px #9E9E9E
}

.blog_top_list .blog_bx figcaption {
    display: block;
    text-align: center;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    float: none
}

.blog_top_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.blog_top_list .blog_bx p {
    line-height: 1.6em;
    font-size: 13px
}

.blog_top_list .blog_bx img {
    vertical-align: middle;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

.blog_top_list .blog_bx:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.blog_top_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    float: left;
    background: #FF6E00;
    padding: 0 15px;
    margin-bottom: 5px
}

.blog_top_list .blog_bx .ttm {
    padding-top: 0px;
    font-size: 12px;
    font-weight: normal;
    color: #aaa
}

.blog_top_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin: 0 5px;
    font-weight: normal
}

.blog_top_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: bold;
    font-size: 1.6rem;
    color: #FF6E00
}

.blog_top_list .blog_bx .blog_text {
    margin-top: 5px
}

@media (max-width: 960px) {
    .blog_top_list {
        position: relative;
        margin: 0 0 16px !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .blog_top_list .blog_bx {
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        width: calc(50% - 16px) !important;
        font-size: 12px;
        margin: 5px;
        position: relative;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background-color: #FFFFFF;
        border: 1px solid #FF6E00;
        padding: 10px
    }

    .blog_top_list .blog_bx:nth-child(2) {
        margin-right: 0px
    }
}

@media all and (max-width: 960px) and (max-width: 639px) {
    .blog_top_list .blog_bx {
        width: 100% !important;
        margin-right: 0px
    }

    .blog_top_list .blog_bx:nth-child(2) {
        margin-right: 0px
    }
}

@media (max-width: 960px) {
    .blog_top_list .blog_bx a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1
    }

    .blog_top_list .blog_bx .blog_bx_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
    }

    .blog_top_list .blog_bx .blog_bx_flex div {
        width: calc(100% - 120px);
        padding: 0
    }

    .blog_top_list .blog_bx:hover {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px;
        box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px
    }

    .blog_top_list .blog_bx figcaption {
        width: 100px;
        height: 100px;
        display: block;
        text-align: center;
        background-position: center center;
        background-repeat: no-repeat;
        float: left;
        margin-bottom: 0px;
        -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
        box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px
    }

    .blog_top_list .blog_bx * {
        -webkit-transition: 0.3s;
        transition: 0.3s
    }

    .blog_top_list .blog_bx img {
        vertical-align: middle;
        height: 100px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover;"
    }

    .blog_top_list .blog_bx:hover img {
        opacity: 1 !important
    }

    .blog_top_list .blog_bx .ttl {
        font-weight: bold;
        font-size: 1.2rem;
        color: #FF6E00;
        float: none;
        background: #fff;
        padding: 0 0px;
        border-bottom: 1px dashed #FF6E00
    }

    .blog_top_list .blog_bx .ttm {
        float: none;
        padding-top: 0px;
        font-size: 1.2rem;
        color: #888;
        font-weight: normal
    }

    .blog_top_list .blog_bx .ttm:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f017";
        margin-right: 5px;
        font-weight: normal
    }

    .blog_top_list .blog_bx .blog_ttl {
        clear: both;
        font-weight: bold;
        color: #FF6E00;
        font-size: 1.5rem;
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .blog_top_list .blog_bx {
        width: 100%
    }

    .blog_top_list .blog_bx figcaption {
        border-radius: 0
    }

    #blog_flexwrap {
        display: -webkit-block;
        display: block;
        width: 95%;
        margin: 20px auto 30px
    }

    #blog_flexwrap #blog_main {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-bottom: 32px
    }

    #blog_flexwrap #blog_side {
        width: 100%;
        margin-left: 0px
    }

    .pages {
        width: 100%
    }

    .pages .page_next {
        float: none;
        width: calc(100% - 20px);
        margin-bottom: 8px
    }

    .pages .page_prev {
        float: none;
        text-align: left;
        width: calc(100% - 20px)
    }
}

.recruit_box .tbl-border th {
    width: 35%
}

.saiyou:before {
    position: absolute;
    content: "";
    width: 800px;
    height: 280px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 1;
    display: block
}

@media all and (max-width: 639px) {
    .saiyou:before {
        width: 140px;
        height: 680px;
        background: url(../img/saiyou_sp.png) no-repeat center/cover
    }
}

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