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

a {
    /* color: #a1340c; */
    color: #1b4a8e;
    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: 600
}

h2,
h3 {
    line-height: 1.4
}

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

@-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 #ef5a24;
    border-radius: 50%;
    border-right: 1px solid rgba(239, 90, 36, 0.2);
    border-top: 1px solid rgba(239, 90, 36, 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
}

#l-header.scrolled {
    position: fixed;
    width: 100%;
    background: #fefefe;
    z-index: 100;
}

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

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

#l-header .inner #logo {
    width: 280px;
    position: relative;
    /* background: #ef5a24; */
    padding: 10px
}

/* #l-header .inner #logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 0 0 45px;
  border-color: transparent transparent transparent #ef5a24;
  right: -45px
} */

@media all and (max-width: 1024px) {
    #l-header .inner #logo {
        width: 200px;
        padding: 15px 10px
    }
}

/* @media all and (max-width: 896px) {
  #l-header .inner #logo:before {
    display: none
  }
} */

#l-header .head-right {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 10px
}

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

#l-header .head-right_contact {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px
}

@media all and (max-width: 639px) {
    #l-header .head-right_contact {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
    display: block;
    padding: 6px 15px;
    background: #ffed47;
    color: #3a200c;
    letter-spacing: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
}

#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
    background: #ffed47
}

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

#l-header .head-right_mail {
    padding-left: 10px
}

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

#header_nav {
    position: relative;
    width: 450px;
    margin-left: auto
}

#header_nav.scrolled {
    position: fixed;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
    width: 750px;
    -webkit-transition: position 0.4s ease-out;
    transition: position 0.4s ease-out;
    background: #fefefe;
    -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1)
}

.only-scrolled {
    display: none;
}

.only-scrolled a:after {
    display: none;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
}

#header_nav.scrolled .only-scrolled {
    display: block;
}

#header_nav ul {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto
}

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

#header_nav ul li:last-child {
    margin-right: 0
}

#header_nav ul li:last-child a:after {
    display: none
}

#header_nav ul li a {
    display: block;
    letter-spacing: 0.1rem;
    position: relative;
    line-height: 1.5;
    font-size: 1.5rem;
    padding: 15px 0 15px;
    color: #222;
    text-align: center
}

#header_nav ul li a span {
    display: block;
    font-size: 2rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    position: relative;
    /* color: #ef5a24; */
    color: #333;
    text-transform: uppercase
}

#header_nav ul li a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background: #333;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in
}

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
    color: #1b4a8e;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
    width: 33px
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 999
}

#header_nav .dropdown .dropdown-li {
    border-right: 0;
    margin: 0 0 5px;
    background: url(../img/bg-wood03.jpg)
}

#header_nav .dropdown .dropdown-li a {
    display: block;
    width: 130px;
    color: #3a200c;
    border: solid 0.9px rgba(58, 32, 12, 0.4);
    color: #555
}

#header_nav .dropdown .dropdown-li.foot_only {
    display: none
}

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

#page-top a {
    display: block;
    background: #1b4a8e;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    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.12);
        transform: scale(1.12)
    }
}

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

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

.swiper-slide {
    position: relative
}

.swiper-slide:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    z-index: -1
}

.swiper-slide.slide1:before {
    background-image: url(../img/slide/01/01.jpg)
}

.swiper-slide.slide2:before {
    background-image: url(../img/slide/01/02.jpg)
}

.swiper-slide.slide3:before {
    background-image: url(../img/slide/01/03.jpg)
}

.swiper-slide.slide4:before {
    background-image: url(../img/slide/01/04.jpg)
}

.swiper-slide.slide5:before {
    background-image: url(../img/slide/01/05.jpg)
}

/*
.swiper-slide.slide6:before {
  background-image: url(../img/image3.jpeg)
}
*/

.slide-img {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 75vh;
    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
}

.slide-img img {
    width: 600px
}

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

@media all and (max-width: 896px) {
    .slide-img img {
        width: 60%
    }
}

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

    .slide-img img {
        width: 80%
    }
}

#slideshow {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    background: #555
}

#catch {
    z-index: 50;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    width: 700px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #fff;
    font-family: 'Zen Antique', serif;
}

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

@media all and (max-width: 1366px) {
    #catch {
        width: 450px;
        font-size: 3.5rem
    }
}

@media all and (max-width: 1024px) {
    #catch {
        width: 50%;
        font-size: 2.5rem
    }
}

@media all and (max-width: 639px) {
    #catch {
        width: 95%;
        font-size: 2rem
    }
}

.contact-lead-wrap {
    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-lead-wrap .contact-lead {
    padding-left: 20px;
    border-left: 2px solid #333;
    margin-left: 40px
}

@media all and (max-width: 639px) {
    .contact-lead-wrap .contact-lead {
        padding: 10px;
        border-left: 0;
        border-top: 2px solid #333;
        margin: 0 auto
    }
}

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

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

.contact_wrap .contact_right {
    padding: 5px
}

@media all and (max-width: 896px) {
    .contact_wrap {
        width: 94%;
        position: relative
    }

    .contact_wrap .contact_left {
        width: 100%;
        margin: 0 auto;
        text-align: center
    }

    .contact_wrap .contact_right,
    .contact_wrap .contact_center {
        width: 100%;
        font-size: 0.9em;
        letter-spacing: 0;
        font-weight: normal;
        margin-top: 10px
    }
}

.contact_bnr {
    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_bnr>li {
    text-align: center
}

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

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

.contact_bnr>li .bnr_tel {
    background: transparent;
    font-size: 5rem;
    white-space: nowrap;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    color: #111
}

.contact_bnr>li .bnr_tel:before {
    font-family: "Font Awesome 5 Free";
    content: "\f879";
    font-weight: bold;
    margin-right: 10px;
    font-size: 4rem
}

.contact_bnr>li .bnr_tel:hover {
    color: #ffed47;
    text-shadow: 0 0 10px rgba(58, 32, 12, 0.2)
}

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

    .contact_bnr>li .bnr_tel:before {
        font-size: 2.5rem
    }
}

.contact_bnr>li .bnr_mobile {
    background: #ef5a24;
    letter-spacing: 0.15em
}

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

.contact_bnr>li .bnr_mobile:hover {
    background: #555
}

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

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

.contact_bnr>li .bnr_mail {
    font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #1b4a8e;
    color: #fefefe
}

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

.contact_bnr>li .bnr_mail:hover {
    background: #f33d10;
    color: #fff
}

.contact_bnr>li a,
.contact_bnr>li span {
    display: block;
    margin: 0 auto;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    width: 450px;
    letter-spacing: 0.1rem
}

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

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

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

#l-footer {
    position: relative;
    background: #222
}

#l-footer:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 60%;
    height: 100%
}

@media all and (max-width: 639px) {
    #l-footer:before {
        width: 100%;
        height: 200px;
        top: -180px
    }
}

#l-footer .inner {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: auto;
    background: #222;
    color: #fefefe;
    padding: 60px 35px
}

@media all and (max-width: 639px) {
    #l-footer .inner {
        width: 100%;
        margin: 0 auto;
        padding: 40px 20px;
        /* margin-top: 180px */
    }
}

.footer_navi {
    padding: 10px 0;
    margin: 20px auto 0
}

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

.footer_navi ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 4px;
    margin: 0 0.5% 4px
}

.footer_navi ul li a {
    color: #f0f0f0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 20px;
    font-weight: 600
}

.footer_navi ul li a span {
    display: none
}

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

.footer_navi ul li a:hover {
    color: #999
}

.footer_navi ul li .dropdown {
    display: block
}

.footer_navi ul li .dropdown .dropdon-li a {
    font-size: 1.2rem
}

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

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

.logo-txt {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    font-weight: normal
}

.address {
    text-align: center;
    padding: 20px 0;
    color: #fefefe
}

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

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

.news-box {
    margin: 0 auto 0;
    padding: 15px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    background: #fefefe;
    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;
        border: 2px solid #eee;
        width: 90%;
        padding: 10px
    }
}

.news-left {
    padding-right: 15px;
    border-right: 2px solid #777
}

.news-left .mtitle {
    margin-bottom: 0
}

@media all and (max-width: 639px) {
    .news-left {
        padding: 5px;
        width: 100%;
        border-right: 0;
        border-bottom: 2px solid #777
    }
}

.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-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.top-list li {
    width: 48%;
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    position: relative;
    margin: 0 4% 5% 0
}

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

.top-list li .top-list_img {
    width: 93%;
    padding: 10px
}

.top-list li .top-list_img img {
    width: 100%;
    border: 3px solid #3a200c
}

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

.top-list .top-list_ttl {
    width: 80%;
    background: #ef5a24;
    border-radius: 15px 0 0 0;
    text-align: center;
    padding: 10px 0;
    position: relative;
    font-size: 1.8rem;
    margin: -30px 0 0 auto;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1rem;
    -webkit-box-shadow: 0 0 8px rgba(58, 32, 12, 0.2);
    box-shadow: 0 0 8px rgba(58, 32, 12, 0.2)
}

.top-list .top-list_ttl span {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 237, 71, 0.9);
    left: 50%;
    top: -35px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: "Anton", sans-serif;
    font-weight: 400
}

@media all and (max-width: 639px) {
    .top-list .top-list_ttl {
        font-size: 1.4rem;
        padding: 6px 0;
        width: 90%
    }

    .top-list .top-list_ttl span {
        font-size: 1.6rem;
        top: -30px
    }
}

.top-list .top-list_txt {
    padding: 15px;
    border-radius: 0 0 15px 0;
    width: 80%;
    margin-left: auto;
    background: #fefefe
}

@media all and (max-width: 639px) {
    .top-list .top-list_txt {
        font-size: 1.1rem;
        width: 90%;
        letter-spacing: 1.5
    }
}

.top-list .notes {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    color: #8f4f1d
}

.sec1 {
    position: relative;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd
}

.sec1:before {
    position: absolute;
    content: "";
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f0f0f0;
    border-right: 2px solid #ddd
}

@media all and (max-width: 639px) {
    .sec1:before {
        width: 20%
    }
}

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

.staff-wrap:not(:last-of-type) {
    margin-bottom: 50px;
    border-bottom: 2px solid #f6f4eb;
    padding-bottom: 50px
}

.staff-wrap .staff-left {
    width: 27%;
    text-align: center
}

.staff-wrap .staff-right {
    width: 70%
}

.staff-wrap .staff-name {
    font-size: 2.5rem;
    color: #1b4a8e
}

.staff-wrap .staff-name .category {
    display: inline-block;
    padding: 3px 5px;
    border: 2px solid #ef5a24;
    color: #ef5a24;
    font-size: 1.4rem
}

.staff-wrap .staff-name .eng {
    color: #794319
}

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

    .staff-wrap .staff-left,
    .staff-wrap .staff-right {
        width: 90%;
        margin: 0 auto
    }

    .staff-wrap .staff-left {
        padding: 10px 15px
    }

    .staff-wrap .staff-name {
        font-size: 2rem
    }

    .staff-wrap .staff-name .category {
        font-size: 1.2rem
    }

    .staff-wrap .staff-name .eng {
        font-size: 1.6rem
    }
}

.service-list>li {
    position: relative;
    padding: 10px 10px 20px 20px
}

.service-list>li:not(:last-child) {
    margin-bottom: 30px;
    border-bottom: 2px solid #f6f4eb
}

.service-list .service-ttl {
    font-size: 3rem;
    color: #ef5a24;
    letter-spacing: 0.2rem;
    margin-bottom: 10px
}

.service-list .service-ttl:before {
    font-family: "Font Awesome 5 Free";
    content: "\f7d9";
    font-weight: bold;
    margin-right: 5px;
    font-size: 2.2rem;
    color: #777
}

.service-list .service-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.service-list .service-container .service-img {
    display: block;
    margin-right: 40px;
    position: relative;
    width: 430px
}

.service-list .service-container .service-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

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

    .service-list .service-ttl {
        line-height: 1.5;
        font-size: 1.9rem;
        text-align: center
    }

    .service-list .service-ttl:before {
        font-size: 1.6rem
    }

    .service-list .service-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: colmun;
        flex-direction: colmun
    }

    .service-list .service-container .service-img {
        width: 90%px;
        margin: 0 auto 20px
    }

    .service-list .service-container .service-txt {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto
    }
}

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

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

.single03 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 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: rgba(255, 255, 255, 0.95);
    padding: 25px
}

.mbox.transparent {
    background: transparent
}

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

.mbox2 {
    border: 3px solid #ccc;
    background: #fefefe;
    margin-right: auto;
    margin-left: auto;
    padding: 30px
}

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

.small-box {
    max-width: 1200px;
    margin: 0 auto
}

.bg-grid {
    background: rgba(255, 255, 255, 0.9);
    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: 896px) {
    #main {
        float: none;
        width: 100%
    }
}

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

@media all and (max-width: 896px) {
    #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: 896px) {
    #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: 896px) {
    #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px
    }
}

.mtitle {
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem
}

.mtitle span {
    display: block;
    font-size: 4.5rem;
    /* color: #ef5a24; */
    color: #1b4a8e;
    position: relative;
    font-family: "Anton", sans-serif;
    font-weight: 400
}

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

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

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

.mtitle.black {
    color: #333
}

.mtitle.black span {
    color: #555
}

.mtitle.black span:after {
    background-color: #555
}

.mtitle.mtitle_left {
    text-align: left
}

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

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

    .mtitle span {
        font-size: 2.8rem
    }
}

.mtitle2 {
    color: #3a200c;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative
}

.mtitle2 span {
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    color: #ef5a24;
    font-weight: normal
}

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

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

.mtitle2:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 1px;
    background: #3a200c
}

.mtitle3 {
    font-size: 2.8rem;
    font-weight: normal;
    color: #3a200c;
    margin-bottom: 20px
}

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

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

.mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: bold;
    margin-right: 5px;
    color: #1b4a8e
}

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

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

.mtitle4 {
    font-weight: normal;
    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: #ef5a24
}

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

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

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

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

.mtitle_sub {
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #ef5a24;
    margin: 8px 0;
    font-size: 1.1em;
    letter-spacing: 0.2rem
}

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

.mtitle_box {
    background: #1b4a8e;
    color: #fefefe;
    font-size: 1.8rem;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: 600
}

.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: bold;
    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.5rem
    }
}

.mtitle_box2 {
    background: #ef5a24;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.1rem;
    -webkit-box-shadow: 0 5px 5px rgba(239, 90, 36, 0.2);
    box-shadow: 0 5px 5px rgba(239, 90, 36, 0.2);
    padding: 12px 10px 12px 20px;
    margin-bottom: 25px
}

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

.mtitle_box2:before {
    background-color: #fff;
    content: "";
    display: block;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px
}

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

    .mtitle_box2 span {
        font-size: 12px
    }

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

.mtitle5 {
    font-size: 2rem;
    color: #1b4a8e
}

.mtext1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600
}

.mtext1.type01 {
    line-height: 1.8;
    letter-spacing: 0.1em;
}

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

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

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

.mtext3 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    line-height: 1.4
}

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

.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: bold;
    margin-right: 5px;
    color: #ef5a24
}

.btn01 a {
    background: #ffed47;
    text-align: center;
    width: 300px;
    margin: 0 auto;
    color: #3a200c;
    display: block;
    padding: 8px 5px;
    font-weight: 600;
    border: 2px solid #3a200c;
    border-radius: 35px
}

.btn01 a:hover {
    background: #ef5a24;
    border-color: #1b4a8e;
    color: #fff
}

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

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

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

    .btn02 a {
        font-size: 1.4rem
    }
}

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

.news dt {
    width: 6em;
    padding: 3px 5px;
    background: #1b4a8e;
    text-align: center;
    font-weight: 600;
    color: #fff
}

.news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 7em);
    margin-left: 10px
}

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

.news-bl {
    overflow: hidden
}

.news-bl dt {
    float: left;
    width: 8em;
    padding: 5px;
    line-height: 1.3;
    color: #3a200c;
    background: #ffed47;
    text-align: center
}

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

.news-bl dd a {
    color: #892c0a
}

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

.page-title {
    position: relative;
    z-index: 1
}

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

.page-title .inner {
    margin: 0 auto;
    padding: 60px 0;
    max-width: 1200px
}

.page-title .inner>.mtitle {
    text-align: left;
    color: #fff;
    text-shadow: 0 0 8px rgba(58, 32, 12, 0.4);
    font-size: 2.2rem;
    margin-bottom: 0
}

.page-title .inner>.mtitle span {
    display: inline-block;
    font-size: 8rem;
    padding-right: 30px;
    /* padding-right: 10px; */
    color: #fff
}

.page-title .inner>.mtitle span:first-letter {
    color: #fff
}

@media all and (max-width: 639px) {
    .page-title .inner>.mtitle {
        padding-left: 15px;
        font-size: 1.5rem
    }

    .page-title .inner>.mtitle span {
        font-size: 2.5rem;
        padding-right: 10px;
        display: block
    }
}

@media all and (max-width: 896px) {
    .page-title .inner {
        padding: 60px 0
    }
}

.top-bg {
    position: relative
}

.top-bg:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 50%;
    z-index: -1;
    background: #ef5a24
}

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

.bg-01 {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(27, 74, 142, 0.5)), color-stop(50%, rgba(27, 74, 142, 0.4)), color-stop(50.1%, #eacd9a), to(#eacd9a));
    background-image: linear-gradient(to right, rgba(27, 74, 142, 0.5) 0%, rgba(27, 74, 142, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%)
}

@media all and (max-width: 639px) {
    .bg-01 {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 90, 36, 0.4)), color-stop(55%, rgba(239, 90, 36, 0.4)), color-stop(55.1%, #eacd9a), to(#eacd9a));
        background-image: linear-gradient(to bottom, rgba(239, 90, 36, 0.4) 0%, rgba(239, 90, 36, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%)
    }
}

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

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

.bg-pattern {
    background: url(../img/back01.gif);
    background-size: 400px
}

.bg-base {
    background: rgba(239, 90, 36, 0.9)
}

.bg-gray {
    background: #f1edee
}

.bg-beige {
    background: rgba(246, 244, 235, 0.8)
}

.bg-beige2 {
    background: rgba(246, 244, 235, 0.5)
}

.tbl {
    width: 100%
}

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

.tbl th {
    background: rgba(239, 90, 36, 0.4);
    font-weight: 500;
    text-align: left;
    width: 35%
}

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

.tbl .cell01 {
    width: 25%
}

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

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

.tbl_new {
    margin: 0 auto;
    width: 100%
}

@media all and (max-width: 1024px) {
    .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: #1b4a8e
}

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

.tbl-border {
    width: 100%
}

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

.tbl-border th {
    width: 25%
}

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

.tbl-b {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tbl-b dt {
    width: 30%;
    color: #fff;
    /* background-color: #ef5a24 */
    background-color: #1b4a8e
}

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

.tbl-b dd {
    width: 35%;
    background-color: #fff;
    word-wrap: break-word
}

.tbl-b dt,
.tbl-b dd {
    padding: 15px;
    vertical-align: middle
}

@media screen and (max-width: 480px) {

    .tbl-b dt,
    .tbl-b dd {
        width: 100%;
        background-color: none
    }
}

.tbl-c {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tbl-c dt {
    width: 30%;
    color: #fff;
    /* background-color: #ef5a24 */
    background-color: #1b4a8e
}

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

.tbl-c dd {
    width: 70%;
    background-color: #fff;
    word-wrap: break-word
}

.tbl-c dt,
.tbl-c dd {
    padding: 15px;
    vertical-align: middle
}

@media screen and (max-width: 480px) {

    .tbl-c dt,
    .tbl-c dd {
        width: 100%;
        background-color: none
    }
}

.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: #1b4a8e;
    color: #fff;
    font-weight: 600
}

.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: #1b4a8e;
    margin-top: -10px
}

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

.tbl0 {
    width: 100%
}

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

.tbl0 th {
    padding-left: 0;
    font-weight: normal;
    background: none;
    width: 25%;
    color: #111
}

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

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

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

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

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

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

.list_check li {
    padding-bottom: 5px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 5px 10px;
    line-height: 1.5;
    background: #fefefe
}

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

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

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

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

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

.ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: rgba(239, 90, 36, 0.3);
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 2rem;
    color: #222;
    margin-right: 0.3em
}

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

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

.blog-wrap>li {
    width: 24%;
    margin: 0 0.5% 15px 0.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    background: #fefefe;
    border: 1px solid #e6e1c8;
    position: relative
}

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

.blog-wrap>li>a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.blog-wrap>li>a:hover~.blog-img img {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

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

.blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

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

.blog-date {
    color: #ef5a24;
    background: #ef5a24;
    color: #fff;
    width: 100px;
    padding: 8px 5px;
    line-height: 1.3;
    text-align: center;
    font-size: 0.9em;
    margin: -20px 0 10px;
    display: block;
    position: relative;
    z-index: 10
}

.blog-date .year {
    margin-top: 10px;
    display: block;
    font-size: 1.5rem
}

.blog-date .month {
    font-size: 1.2rem
}

.blog-date .day {
    font-size: 1.8rem;
    display: inline-block
}

.blog-date .day:before {
    content: "/";
    padding: 0 3px 0 0
}

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

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

.blog-title {
    font-weight: 600;
    color: #3a200c;
    line-height: 1.3;
    border-left: 1px solid rgba(58, 32, 12, 0.3);
    padding-left: 15px;
    margin-bottom: 10px
}

.blog-txt {
    font-size: 14px;
    line-height: 1.5;
    color: #ef5a24
}

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

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

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

.pages .page_next a,
.pages .page_prev a {
    color: #a1340c;
    padding: 3px 5px;
    background: #fff
}

.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: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: bold;
    margin-right: 5px
}

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

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

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.color1 {
    color: #ef5a24
}

.color2 {
    color: #1b4a8e
}

.color3 {
    color: #f33d10
}

.num a {
    color: #3a200c;
    font-weight: 600;
    font-size: 2.7rem;
    text-align: center
}

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

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

.num a:hover {
    color: #1b4a8e
}

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

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

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

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

.breadcrumb li a {
    color: #1b4a8e
}

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

.form dl dt span {
    color: #111;
    background: #ffed47;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 15px;
    position: relative;
    top: -2px;
    font-weight: normal
}

.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: 600;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #ffed47;
    border: 1px solid #ffed47;
    border-radius: 25px;
}

.form button:hover {
    background: #1b4a8e;
    border: 1px solid #1b4a8e;
    color: #fff
}

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

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

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

.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: #ef5a24;
    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 #ef5a24;
    border-bottom: 3px solid #ef5a24;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1
}

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

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

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

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

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

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

.thanks {
    padding: 40px;
    border: 3px solid #ef5a24;
    -webkit-box-shadow: 0 0 0 8px rgba(239, 90, 36, 0.2);
    box-shadow: 0 0 0 8px rgba(239, 90, 36, 0.2);
    max-width: 700px;
    margin: 0 auto;
    background: #fefefe
}

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

.policy {
    padding: 30px;
    background: rgba(27, 74, 142, 0.3);
    border-top: 0
}

.mtitle_small {
    position: relative;
    font-size: 2rem;
    color: #1b4a8e;
    line-height: 1.4;
    margin-bottom: 30px
}

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

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

.mtitle_small2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px
}

.mtitle_small2:before {
    content: "";
    background-color: #ef5a24;
    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 li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 20px 0
}

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

.gallery li a {
    background: rgba(246, 244, 235, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 240px
}

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

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

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

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

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

    .gallery li a {
        height: 120px
    }
}

.top-works-gallery li a {
    background: rgba(246, 244, 235, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 220px
}

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

@media all and (max-width: 639px) {
    .top-works-gallery li a {
        height: 140px
    }
}

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

.list2.type1 li {
    background: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px
}

.list2>li {
    width: 48%;
    margin: 0 1% 35px
}

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

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

.list3>li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 30px 0
}

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

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

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

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

.lead-box {
    max-width: 750px;
    padding: 30px;
    margin: -150px auto 40px;
    background: #fefefe
}

.lead-box.type2 {
    margin-top: 0
}

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

@media all and (max-width: 639px) {
    .lead-box {
        max-width: 90%;
        padding: 20px;
        margin-bottom: 25px
    }
}

.top-tool-img {
    position: relative;
    padding: 10px
}

.top-tool-img img {
    width: 100%
}

.top-tool-img .top-tool-title {
    position: absolute;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fefefe;
    letter-spacing: 0.15em;
    right: 5%;
    bottom: 10%;
    white-space: nowrap;
    line-height: 1.4
}

@media all and (max-width: 896px) {
    .top-tool-img .top-tool-title {
        font-size: 2rem;
        letter-spacing: 0
    }
}

@media all and (max-width: 639px) {
    .top-tool-img .top-tool-title {
        letter-spacing: 0.15em
    }
}

.top-tool-txt {
    padding: 10px
}

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

.topbnr li {
    width: 48%;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative
}

.topbnr li figure {
    height: 300px
}

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

.topbnr li:hover {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
}

@media all and (max-width: 1024px) {
    .topbnr li {
        width: 48%;
        margin: 0 1% 3%
    }
}

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

.topbnr li:hover a {
    cursor: pointer
}

.topbnr li:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.topbnr li:hover .top-bnr-title {
    background: rgba(8, 43, 68, 0.9);
    color: #ffed47
}

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

.topbnr .top-bnr-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: rgba(27, 74, 142, 0.8);
    z-index: 2
}

.topbnr .top-bnr-title {
    position: absolute;
    display: block;
    left: -20%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #fefefe;
    color: #333;
    letter-spacing: 0.15em;
    padding: 4px 8px;
    text-align: center;
    font-size: 2.6rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 2px solid #fefefe;
    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;
    min-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.topbnr .top-bnr-title .eng {
    color: #ffed47;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 1.8rem
}

@media all and (max-width: 639px) {
    .topbnr .top-bnr-title {
        font-size: 1.5rem
    }
}

.top-box {
    max-width: 700px;
    margin: 30px auto -100px;
    background: #fefefe;
    padding: 20px
}

@media all and (max-width: 639px) {
    .top-box {
        max-width: 95%;
        padding: 15px;
        margin-bottom: -60px
    }
}

.notion {
    margin: -30px auto 20px;
    text-align: center
}

.notion span {
    background: #133463;
    color: #fefefe;
    font-size: 1.8rem;
    padding: 10px 40px
}

.note {
    padding: 15px;
    margin-top: 10px;
    background: #fefefe;
    max-width: 600px;
    margin: 0 auto
}

.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: #ef5a24;
    font-size: 3rem;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px
}

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

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

.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
    margin-bottom: 20px
}

.txt1 {
    padding-left: 10px
}

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

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

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

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

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

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

.price {
    font-weight: 600;
    color: #ffed47;
    font-size: 1.1em;
    padding-right: 5px
}

.greet-wrap {
    position: relative;
    padding: 0;
    margin-bottom: 40px
}

.greet-wrap:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.7
}

@media all and (max-width: 639px) {
    .greet-wrap:before {
        width: 100%;
        height: 70%;
        opacity: 1
    }
}

.greet-box {
    width: 50%;
    margin-left: auto;
    padding: 25px;
    position: relative;
    z-index: 2;
    line-height: 1.9;
    font-size: 1.8rem;
    position: relative
}

@media all and (max-width: 896px) {
    .greet-box {
        width: 70%;
        padding: 15px
    }
}

@media all and (max-width: 639px) {
    .greet-box {
        width: 90%;
        font-size: 1.2rem;
        background: #fefefe
    }
}

.greet_lead {
    font-size: 5rem;
    line-height: 1.6;
    color: #ef5a24;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 0.1em;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    z-index: 2
}

.greet_lead span {
    display: block;
    font-size: 2.5rem;
    color: #333;
    background: #fefefe;
    padding: 5px 10px;
    letter-spacing: 0.1rem
}

@media all and (max-width: 639px) {
    .greet_lead {
        font-size: 3rem;
        -webkit-transform: inherit;
        transform: inherit
    }

    .greet_lead span {
        font-size: 1.6rem
    }
}

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

.logo-img {
    text-align: center;
    width: 160px;
    margin: -120px auto 0
}

@media all and (max-width: 896px) {
    .logo-img {
        margin-top: -80px
    }
}

@media all and (max-width: 639px) {
    .logo-img {
        width: 90px;
        margin: -60px auto 0
    }
}

.side-list li {
    max-width: 200px;
    margin: 0 auto
}

.side-list li img {
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in
}

.side-list li:hover img {
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
}

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

    .side-list li {
        max-width: initial;
        width: 24%
    }
}

@media all and (max-width: 639px) {
    .side-list li {
        width: 48%;
        margin-bottom: 10px
    }
}

.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 .faq-inner dt,
.faq-dl .faq-inner dd {
    position: relative;
    padding: 10px 10px 10px 55px
}

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

.faq-dl .faq-inner dt {
    margin-bottom: 10px
}

.faq-dl .faq-inner dt:before {
    content: "Q";
    color: #ef5a24;
    font-size: 3rem;
    background: rgba(239, 90, 36, 0.2)
}

.faq-dl .faq-inner dd:before {
    content: "A";
    color: #f33d10;
    font-size: 3rem;
    background: rgba(255, 237, 71, 0.2)
}

.content-top {
    position: relative;
    height: 500px;
    margin-bottom: 50px
}

.content-top:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 800px;
    height: 100%
}

.content-top.content-01:before {
    background: url(../img/content-01.jpg) no-repeat center/cover
}

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

.content-top.content-03:before {
    background: url(../img/content-03.jpg) no-repeat center/cover
}

.content-top .inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 25px;
    margin: 0px 10px 0px auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    background: #fefefe
}

@media all and (max-width: 639px) {
    .content-top {
        padding: 40px 0;
        height: auto
    }

    .content-top:before {
        width: 100%
    }

    .content-top .inner {
        padding: 30px 15px;
        margin: 0 auto 80px;
        max-width: 90%;
        background: rgba(254, 254, 254, 0.7);
        top: auto;
        -webkit-transform: inherit;
        transform: inherit
    }
}

.point-title {
    position: relative;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    border-bottom: 1px solid #f33d10;
    line-height: 1.3;
    margin-bottom: 15px
}

.point-title span {
    color: #f33d10;
    font-size: 4rem;
    font-family: "Anton", sans-serif;
    font-weight: 400
}

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

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

.greet-box {
    width: 100%
}

.greet_lead {
    webkit-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

#l-footer .inner {
    margin-left: auto;
    margin-right: auto
}

#l-header .inner #logo:before {
    border-width: 80px 0 0 45px
}

#l-header .inner #logo {
    padding: 12.5px
}

.img_bx {
    width: 100%
}

.img_bx img {
    width: 100%
}

.wh_bx {
    background-color: #fff;
    padding: 1em
}

.flex_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex_col .bx {
    margin-right: 20px
}

.flex_col .bx:nth-child(2n) {
    margin-right: 0
}

.business .inner {
    width: 80%;
    margin: 0 auto 80px
}

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

@media screen and (max-width: 480px) {
    .flex_col .bx {
        width: 100%;
        margin-right: 0
    }
}

.w20 {
    width: 20%;
    margin: 0 auto
}

@media screen and (max-width: 480px) {
    .w20 {
        width: 100%
    }
}

.w40 {
    width: 40%
}

.w50 {
    width: calc(50% - 10px)
}

.c_w40 {
    width: calc(40% - 20px)
}

.w60 {
    width: calc(60% - 20px)
}

.w80 {
    width: 80%
}

@media screen and (max-width: 640px) {
    .w80 {
        width: 100%
    }

    .w50 {
        width: 100%
    }
}

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

@media screen and (max-width: 480px) {
    .sp_w1r {
        width: 1rem
    }
}

.linone li {
    list-style: none;
    padding: 0 1rem
}

.business_img-bx {
    background: url(../img/business02.png) repeat-x;
    background-size: contain;
    height: 135px
}

.tcen {
    text-align: center;
}

@media screen and (max-width: 640px) {
    .tcen {
        text-align: left;
    }
}

.sdg-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sdg-flex li {
    width: 25%;
    padding: 0 10px;
}

.sdg-flex li img {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .sdg-flex li {
        width: 50%;
        padding: 10px;
    }
}

.form-contents dl dt:not(.pattern-exclusion) span.required::before,.form-contents .submit-btn{
    background: #ffed47!important;
    border:1px solid #ffed47!important;
    color:#111!important;
  }
  .form-contents :not(.pattern-exclusion) button:hover {
    color: #fff!important;
    background: #1b4a8e!important;
    border: solid 2px #1b4a8e!important;
  }
  .form-contents .submit-btn::before {
    background-color: #111!important;
}
  .form-contents .submit-btn:hover::before {
        background-color: #fff!important;
  }


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