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

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

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

.bold {
    font-weight: bold
}

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

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

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

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

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

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

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

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

.animation {
    opacity: 0
}

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

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

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

.loader::after {
    -webkit-animation: loader .5s linear infinite;
    animation: loader .5s linear infinite;
    border: 1px solid #1E50CB;
    border-radius: 50%;
    border-right: 1px solid rgba(30, 80, 203, 0.2);
    border-top: 1px solid rgba(30, 80, 203, 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)
    }
}

header {
    width: 100%;
    position: relative;
    background: none;
    position: fixed;
    top: 0;
    z-index: 2222;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    background: #1E50CB
}

header #head {
    margin: 0 auto;
    padding: 6px 0 15px;
    height: 70px !important;
    z-index: 500;
    display: table
}

@media screen and (max-width: 1200px) {
    header #head {
        margin: 0
    }
}

@media screen and (max-width: 768px) {
    header #head {
        height: 60px !important;
        width: 100%;
        padding: 10px 0
    }
}

header #head .logo {
    float: left;
    line-height: 3em;
    margin-top: 0px;
    vertical-align: middle
}

header #head .logo a {
    display: block;
    width: 373px;
    position: relative
}

@media all and (max-width: 639px) {
    header #head .logo a {
        width: auto
    }
}

header #head .logo a:link,
header #head .logo a:visited,
header #head .logo a:hover {
    color: #fff;
    text-decoration: none
}

header #head .logo img {
    width: 65%;
    position: absolute;
    z-index: 99;
    top: 0
}

@media all and (max-width: 1200px) {
    header #head .logo img {
        width: 65%
    }
}

@media all and (max-width: 639px) {
    header #head .logo img {
        width: 65%
    }
}

@media screen and (max-width: 768px) {
    header #head .logo {
        margin-top: 0px;
        margin-left: 5px
    }

    header #head .logo span {
        display: none
    }

    header #head .logo img {
        width: 235px;
        position: inherit;
        padding: 0;
        top: 0
    }
}

header #head #navi {
    width: 1020px;
    float: right
}

header #head #navi ul {
    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
}

header #head #navi li {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 15px 16px;
    letter-spacing: 0.2rem
}

header #head #navi li a {
    width: 100%;
    line-height: 1.3;
    display: block;
    text-align: center;
    border: none;
    letter-spacing: 1px;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    line-height: 1em;
    letter-spacing: .15em
}

header #head #navi li a:before {
    position: absolute;
    bottom: 0;
    top: 20px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    content: '';
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

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

header #head #navi li.inst i,
header #head #navi li.yt i {
    font-size: 20px
}

header #head #navi li.inst a:before,
header #head #navi li.yt a:before {
    position: absolute;
    bottom: 0;
    top: 20px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0);
    content: '';
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

header #head #navi li.inst a:hover:before,
header #head #navi li.yt a:hover:before {
    width: 100%
}

header #head #navi li.contact_link {
    padding: 0 50px 0 0
}

header #head #navi li.contact_link a {
    color: #000;
    background-image: radial-gradient(73% 147%, #EADFDF 59%, #ECE2DF 100%), radial-gradient(91% 146%, rgba(255, 255, 255, 0.5) 47%, rgba(0, 0, 0, 0.5) 100%);
    background-blend-mode: screen;
    padding: 22px 30px;
    height: 12px;
    margin-top: 8px;
    border-radius: 100px;
    font-size: 15px
}

header #head #navi .tlbtn {
    padding: 0
}

header #head #navi .tlbtn a {
    background: #4C7CD8;
    width: 90px;
    padding-top: 2px;
    padding-bottom: 2px !important;
    margin: 28px 0px 0;
    line-height: 20px;
    height: 20px;
    font-weight: normal
}

header #head #navi .tlbtn a:hover {
    color: #fff !important
}

header #head #navi .tlbtn a:link,
header #head #navi .tlbtn a:visited {
    color: #fff !important;
    text-decoration: none
}

header #head #navi .rlbtn {
    padding-right: 0
}

header #head #navi .rlbtn a {
    background: #1E50CB;
    padding: 0 10px;
    width: 90px;
    padding-top: 2px;
    padding-bottom: 2px !important;
    margin: 28px 0px 0;
    line-height: 20px;
    height: 20px;
    font-weight: normal;
    margin-top: 0
}

header #head #navi .rlbtn a:hover {
    color: #fff !important
}

header #head #navi .rlbtn a:link,
header #head #navi .rlbtn a:visited {
    color: #fff !important;
    text-decoration: none
}

header #head #navi .flbtn {
    padding: 0
}

header #head #navi .flbtn a {
    background: #245adf;
    width: 90px;
    padding-top: 2px;
    padding-bottom: 2px !important;
    margin: 28px 0px 0;
    line-height: 20px;
    height: 20px;
    font-weight: normal
}

header #head #navi .flbtn a:hover {
    color: #fff !important
}

header #head #navi .flbtn a:link,
header #head #navi .flbtn a:visited {
    color: #fff !important;
    text-decoration: none
}

header #head #navi .ilbtn {
    padding: 0
}

header #head #navi .ilbtn a {
    background: #4C7CD8;
    width: 90px;
    padding-top: 2px;
    padding-bottom: 2px !important;
    margin: 28px 0px 0;
    line-height: 20px;
    height: 20px;
    font-weight: normal
}

header #head #navi .ilbtn a:hover {
    color: #fff !important
}

header #head #navi .ilbtn a:link,
header #head #navi .ilbtn a:visited {
    color: #fff !important;
    text-decoration: none
}

header #head #navi .blbtn {
    padding: 0
}

header #head #navi .blbtn a {
    background: #EE8885;
    padding: 0 30px;
    width: 90px;
    padding-top: 2px;
    padding-bottom: 2px !important;
    margin: 28px 0px 0;
    line-height: 20px;
    height: 20px;
    font-weight: normal;
    width: 100px !important
}

header #head #navi .blbtn a:hover {
    color: #fff !important
}

header #head #navi .blbtn a:link,
header #head #navi .blbtn a:visited {
    color: #fff !important;
    text-decoration: none
}

header.fixd {
    background: #1E50CB;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04)
}

header.fixd #head #navi li a {
    color: #fff
}

header.fixd #head #navi li a:before {
    background: #ffff
}

header.fixd #head #navi li.inst,
header.fixd #head #navi li.yt {
    display: none
}

header.fixd #head .logo img {
    width: 65%;
    top: 0
}

@media screen and (max-width: 1200px) {
    header.fixd {
        background: rgba(36, 37, 38, 0);
        -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0);
        box-shadow: 0 6px 15px rgba(36, 37, 38, 0)
    }

    header.fixd #head .logo img {
        display: none
    }
}

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

#page-top a {
    display: block;
    background: #aaa;
    -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-family: 'FontAwesome';
    font-size: 1.2rem;
    text-align: center
}

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

.foot_navi {
    padding: 10px 0;
    background: #1E50CB
}

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

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

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

.foot_navi ul li a span {
    display: none
}

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

.foot_navi ul li a:hover {
    background: rgba(30, 80, 203, 0.8)
}

#footer {
    font-size: 1.2rem;
    color: #fff;
    background: #eee
}

#footer .inner {
    width: 1020px;
    margin: 0 auto;
    padding: 15px 0
}

#footer .inner .address {
    margin-bottom: 10px
}

.copyright {
    padding: 3px 0;
    background: #1E50CB;
    color: #fff !important
}

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

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

#catch01 {
    z-index: 1000;
    margin-bottom: 2rem
}

#catch02 {
    z-index: 1000;
    font-size: 3rem;
    -webkit-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    -moz-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    -ms-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3)
}

#catch01.catch01On,
#catch02.catch02On {
    opacity: 1;
    -webkit-transition: 3s;
    transition: 3s
}

#top_main {
    width: 100%;
    position: relative;
    height: 90vh
}

@media all and (max-width: 1200px) {
    #top_main {
        height: 85vh
    }
}

@media all and (max-width: 639px) {
    #top_main {
        height: 80vh;
        margin-top: 0;
        margin: auto
    }
}

#top_main .top_main_vis {
    width: 100%;
    height: 90vh
}

@media all and (max-width: 1200px) {
    #top_main .top_main_vis {
        height: 85vh
    }
}

@media all and (max-width: 639px) {
    #top_main .top_main_vis {
        height: 80vh;
        margin-top: 0;
        width: 100%
    }
}

#top_main ul.slider li {
    width: 100%;
    height: 90vh;
    background-image: url(../img/slider-1.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

@media all and (max-width: 1200px) {
    #top_main ul.slider li {
        background-attachment: initial;
        height: 85vh
    }
}

@media all and (max-width: 639px) {
    #top_main ul.slider li {
        background-attachment: initial;
        height: 80vh
    }
}

#top_main ul.slider li:nth-child(2) {
    background-image: url(../img/slider-2.jpg)
}

#top_main ul.slider li:nth-child(3) {
    background-image: url(../img/slider-3.jpg)
}

#top_main ul.slider li:nth-child(4) {
    background-image: url(../img/slider-4.jpg)
}

#top_main ul.slider li:nth-child(5) {
    background-image: url(../img/slider-5.jpg)
}

#top_main .top_main_box {
    width: auto;
    height: 45vh;
    display: block;
    margin: auto;
    position: absolute;
    bottom: 50px;
    left: 80px
}

@media all and (max-width: 1200px) {
    #top_main .top_main_box {
        width: auto;
        height: 35vh;
        display: block;
        margin: auto;
        position: absolute;
        bottom: 40px;
        left: 80px
    }
}

@media screen and (max-width: 800px) {
    #top_main .top_main_box {
        width: auto;
        height: 35vh;
        left: 80px;
        bottom: 20px
    }
}

@media all and (max-width: 639px) {
    #top_main .top_main_box {
        width: auto;
        height: 24vh;
        left: 40px;
        right: 0;
        bottom: 10px
    }
}

#top_main .top_main_box img {
    width: auto;
    height: 100%;
    display: block;
    margin: auto
}

#top_main .next_contents {
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 3%;
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 190px
}

#top_main .next_contents span {
    position: absolute;
    top: 0;
    left: 30px;
    width: 37px;
    height: 190px;
    margin-left: -15px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

#top_main .next_contents span:after {
    content: "";
    width: 1px;
    height: 90%;
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    background: #fff;
    display: block;
    bottom: -10px
}

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

    40% {
        opacity: 1
    }

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

    100% {
        opacity: 0
    }
}

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

    40% {
        opacity: 1
    }

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

    100% {
        opacity: 0
    }
}

#top_main.unnder {
    height: 50vh;
    position: relative;
    background-image: url(https://placehold.jp/150x150.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.bg_contact {
    background: #1E50CB;
    color: #fff;
    background-size: cover
}

.bg_contact .single {
    padding: 30px 0
}

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

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

.contact_bnr {
    text-align: center
}

.contact_bnr li {
    display: inline-block;
    margin: 5px 15px
}

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

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

.contact_bnr li .bnr_tel:hover {
    background: #3a6be2;
    color: #fff
}

.contact_bnr li .bnr_sp {
    background: #FFFFFF;
    border: 1px solid #1E50CB;
    color: #1E50CB
}

.contact_bnr li .bnr_sp:before {
    content: "\f10b"
}

.contact_bnr li .bnr_sp:hover {
    background: #ecf1fc
}

.contact_bnr li .bnr_mail {
    border: 1px solid #4C7CD8;
    background: #4C7CD8;
    color: #fff
}

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

.contact_bnr li .bnr_mail:hover {
    background: #fff;
    color: #4C7CD8
}

.contact_bnr li a,
.contact_bnr li span {
    display: block;
    padding: 8px 5px;
    width: 250px;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 25px
}

.contact_bnr li a:before,
.contact_bnr li span:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin-right: 5px
}

.contact_bnr li a.icon,
.contact_bnr li span.icon {
    width: 40px
}

.single {
    width: 1020px;
    margin: 0 auto;
    padding: 150px 0
}

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

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

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

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

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

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

.mbox_1 {
    border: 1px solid #1E50CB;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px
}

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

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

.mbox3 {
    padding: 10px;
    background: rgba(255, 255, 255, 0.2)
}

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

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

.bg02 {
    background: rgba(30, 80, 203, 0.2)
}

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

.bg-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: 70%
}

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

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

.mtitle span {
    display: block;
    font-size: 4rem;
    color: #1E50CB;
    position: relative;
    font-weight: normal;
    font-family: "YakuHanJP", "Josefin Sans", "Barlow Condensed", "sans-serif"
}

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

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

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

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

.mtitle.mtitle_left {
    text-align: left
}

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

.mtitle2 span {
    background: #112d72;
    color: #fff;
    padding: 4px 10px
}

.mtitle3 {
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    color: #173e9f;
    margin: 60px 0 0;
    z-index: 10;
    line-height: 1.4;
    padding-left: 10px
}

.mtitle3 span {
    position: absolute;
    z-index: 0;
    color: rgba(76, 124, 216, 0.2);
    font-weight: bold;
    text-shadow: none;
    font-size: 8rem;
    z-index: -1;
    top: -75px;
    left: -10px
}

@media all and (max-width: 639px) {
    .mtitle3 {
        margin-top: 40px;
        margin-left: 10px;
        text-align: center;
        font-size: 2.2rem
    }

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

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

.mtitle-area span {
    background: #1E50CB;
    color: #fff;
    padding: 4px 10px;
    margin-right: 15px;
    font-size: 4.2rem;
    letter-spacing: .1rem;
    position: relative
}

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

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

.mtitle-bll {
    font-size: 2rem;
    font-weight: normal;
    border-bottom: 1px solid #999999;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #1E50CB
}

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

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

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

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

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

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

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

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

.mtitle_box2 {
    color: #1E50CB;
    font-size: 2.5rem;
    position: relative;
    font-weight: bold;
    font-family: "Century Gothic", "Questrial";
    border-bottom: 2px solid #1E50CB;
    padding: 5px 10px;
    margin-bottom: 15px
}

.mtitle_box2:first-letter {
    font-size: 3.5rem;
    line-height: 1
}

.mtitle_box2.snd {
    font-size: 2rem
}

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

    .mtitle_box2.snd {
        font-size: 1.8rem
    }

    .mtitle_box2:first-letter {
        font-size: 3rem;
        line-height: 1
    }
}

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

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

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

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

    .mtitle_box3 span {
        font-size: 12px
    }

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

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

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

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

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

.mtext3 {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    font-family: "YakuHanJP", "Noto Sans Japanese";
    color: #1E50CB;
    line-height: q 0.4
}

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

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

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

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

.mtitle_bnr.mtitle_bnr_01 {
    font-size: 1rem
}

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

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

.mtitle_bnr.mtitle_bnr_03:before {
    content: "\f167"
}

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

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

.mtitle_catch {
    font-weight: bold;
    margin: 10px 0;
    color: rgba(30, 80, 203, 0.5);
    border-bottom: 1px solid rgba(30, 80, 203, 0.5);
    font-size: 1.8rem;
    padding-left: 10px
}

.mtitle_int {
    font-size: 1.8rem;
    margin: 5px 0 0;
    text-align: center;
    color: #1E50CB;
    font-weight: bold
}

.mtitle_int span {
    font-size: 1rem;
    font-weight: normal;
    display: block
}

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

.mtitle_scea {
    font-size: 2rem;
    font-weight: 600;
    color: #1E50CB;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 4px solid #1E50CB;
    border-left: 1px solid #1E50CB
}

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

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

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

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

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

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

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

.news {
    overflow: hidden
}

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

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

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

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

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

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

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

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

.bg-greet.auto {
    background: url(../img/auto-bg.jpg) no-repeat 80% 60%;
    background-size: cover
}

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

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

.bg-greet .inner>.mtitle {
    color: #fff;
    font-weight: bold
}

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

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

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

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

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

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

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

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

.top-sec1:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 48%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 80, 203, 0.4)), to(rgba(255, 255, 255, 0.5)));
    background-image: linear-gradient(to bottom, rgba(30, 80, 203, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
    top: 0;
    right: -60px;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    z-index: -1
}

@media all and (max-width: 1200px) {
    .top-sec1 {
        overflow-x: hidden
    }

    .top-sec1:before {
        right: -30px;
        width: 60%
    }
}

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

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

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

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

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

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

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

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

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

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

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

    .article .article_image {
        display: none
    }

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

.tbl {
    width: 100%;
    text-align: center
}

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

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

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

.tbl .cell01 {
    width: 20%
}

.tbl .cell01 img {
    width: 100%
}

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

    .tbl th,
    .tbl td {
        padding: 3px;
        font-size: 10px
    }
}

.tbl2 {
    width: 100%
}

.tbl2 tr {
    border-bottom: 1px solid #CCCCCC
}

.tbl2 tr:first-child {
    border-top: 1px solid #CCCCCC
}

.tbl2 tr:last-child {
    border-bottom: none
}

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

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

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

.tbl2 .cell01 {
    width: 25%
}

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

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

.tbl_new {
    width: 100%
}

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

.tbl_new tr th {
    font-weight: 500
}

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

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

.tbl_new2 {
    width: 100%
}

.tbl_new2 tr {
    border-bottom: 1px solid #1E50CB
}

.tbl_new2 tr th,
.tbl_new2 tr td {
    vertical-align: middle;
    padding: 20px
}

.tbl_new2 tr th {
    color: #1E50CB;
    font-weight: bold
}

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

.tbl_new2 tr:last-child {
    border-bottom: none
}

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

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

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

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

.tbl0 {
    width: auto
}

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

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

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

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

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

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

.ggmap2 {
    position: relative;
    padding-bottom: 20%;
    height: 0;
    overflow: hidden
}

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

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

.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 {
    border: 3px solid #4C7CD8;
    padding: 15px;
    border-radius: 10px;
    background: rgba(76, 124, 216, 0.3)
}

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

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

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

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

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

.list-check {
    overflow: hidden;
    line-height: 1.5
}

.list-check li {
    padding-left: 1.5em;
    padding-top: 8px;
    padding-bottom: 8px;
    text-indent: -1.5em;
    border-bottom: dotted 1px #aaa
}

.list-check li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f14a";
    margin-right: 5px;
    color: #1E50CB
}

.list-check li:last-child {
    border-bottom: dotted 0px #aaa
}

.list-check.flt li {
    float: left;
    padding: 8px 30px;
    border: none
}

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

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

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

@media all and (max-width: 639px) {
    .ol-list li {
        line-height: 1.6;
        margin-bottom: 5px;
        padding-bottom: 5px;
        font-size: 1.6rem
    }

    .ol-list li:before {
        width: 1.6em;
        height: 1.6em
    }
}

.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 .child1 {
    width: 30%
}

.column2 .child2 {
    width: 48%
}

.column2 .child2 img {
    width: 100%
}

.column2 .child {
    width: 50%
}

.column2 .child img {
    width: 100%
}

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

    .column2 .child,
    .column2 .child1,
    .column2 .child2 {
        width: 100%;
        margin-top: 30px
    }
}

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

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

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

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

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

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

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

@media all and (max-width: 639px) {
    .column4 .child {
        width: 49%;
        margin: 0 2% 2% 0;
        position: relative
    }

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

.youtube iframe {
    width: 100%
}

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.color1 {
    color: #1E50CB
}

.color2 {
    color: #c8210b
}

.color3 {
    color: #112d72
}

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

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

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

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

.breadcrumb {
    padding-left: 0;
    font-size: 1.4rem
}

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

.breadcrumb li a {
    color: #fff
}

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

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

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

.form input {
    vertical-align: baseline;
}

.form label {
    margin-right: 5px;
}

.form .form-contents dd:not(.pattern-exclusion) .textarea {
    border-radius: 0;
}

.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: #ff6256;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px
}

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

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

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

.form .textarea {
    height: 30px
}

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

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

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

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

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

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

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

.form button:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f0e0";
    margin-right: 10px
}

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

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

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

.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: 2px;
    top: 4px;
    background-color: #1E50CB;
    z-index: 1
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bnr li {
    width: 33.3333333%
}

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

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

    .form .form-contents form dl dt:not(.pattern-exclusion) {
        margin-bottom: 25px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .gallery li a {
        height: 100px
    }
}

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

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

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

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

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

    .list2 li a {
        height: 200px
    }
}

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

.list3 li {
    width: 32%;
    margin: 0 0.5% 15px
}

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

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

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

    .list3 li a {
        height: 200px
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.snip1445 img {
    opacity: 0.9
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.memo2 span {
    padding-right: 5px
}

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

.flow-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px
}

.flow-dl dt {
    background: #1E50CB;
    font-size: 3rem;
    font-family: "YakuHanJP", "Noto Sans Japanese", sans-serif;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px
}

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

.txt1 {
    padding-left: 10px
}

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

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

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

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

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

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

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

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

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

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

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

    #sidewrap {
        display: none
    }
}

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

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

.message {
    background: rgba(2, 52, 139, 0.1);
    position: relative;
    padding: 25px 10px 10px;
    margin-top: 15px;
    font-weight: bold
}

.message:before {
    content: "メッセージ";
    font-weight: bold;
    position: absolute;
    display: inline-block;
    background: #02348b;
    color: #fff;
    padding: 3px 5px;
    top: -10px;
    left: 0
}

.top-works li {
    overflow: hidden
}

.top-works li a {
    height: 200px;
    overflow: hidden;
    background: #000;
    display: block;
    border: 2px solid #fff
}

.top-works li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -webkit-transition: all .2s;
    transition: all .2s
}

.top-works li a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

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

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

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

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

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

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

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

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

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

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

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

.top-halfmenu>li .half-right {
    background-image: -webkit-gradient(linear, left top, right top, from(#8bc57b), color-stop(25%, #8bc57b), color-stop(25%, #6cb558), color-stop(50%, #6cb558), color-stop(50%, #1E50CB), to(#1E50CB));
    background-image: linear-gradient(to right, #8bc57b 0%, #8bc57b 25%, #6cb558 25%, #6cb558 50%, #1E50CB 50%, #1E50CB 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    color: #fff;
    width: 40%;
    padding: 20px
}

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

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

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

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

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

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

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

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

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

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

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

.top-3menu>li {
    position: relative;
    width: 32%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px;
    margin: 10px 0;
    -webkit-box-shadow: 0 0 5px rgba(30, 80, 203, 0.2);
    box-shadow: 0 0 5px rgba(30, 80, 203, 0.2)
}

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

.top-3menu>li .half-left {
    width: 60%;
    overflow: hidden
}

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

.top-3menu>li .half-right {
    background-image: -webkit-gradient(linear, left top, right top, from(#1E50CB), color-stop(25%, #1E50CB), color-stop(25%, #1b47b5), color-stop(50%, #1b47b5), color-stop(50%, #4C7CD8), to(#4C7CD8));
    background-image: linear-gradient(to right, #1E50CB 0%, #1E50CB 25%, #1b47b5 25%, #1b47b5 50%, #4C7CD8 50%, #4C7CD8 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    color: #fff;
    width: 40%;
    padding: 20px 10px
}

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

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

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

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

.top-3menu .half-title span {
    font-size: 2.2rem;
    display: block;
    font-family: "YakuHanJP", "Josefin Sans", "Barlow Condensed", "sans-serif"
}

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

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

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

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

.top-3menu2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 60%;
    margin: 0 auto 20px;
    max-height: 260px;
    overflow-y: scroll
}

.top-3menu2 li {
    margin: 2% auto
}

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

.top-3menu2 .half-title span {
    font-size: 2.2rem;
    display: block;
    font-family: "YakuHanJP", "Josefin Sans", "Barlow Condensed", "sans-serif"
}

@media screen and (max-width: 1200px) {
    .top-3menu2 {
        max-width: 98%
    }
}

@media screen and (max-width: 640px) {
    .top-3menu2 li {
        width: 32%
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.tcenter_pc {
    text-align: center
}

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

.news-lb {
    margin: 15px 0;
    line-height: 1.8
}

.news-lb dt {
    float: left;
    width: 7em;
    border-right: #1E50CB 3px solid;
    padding: 5px 0px;
    text-align: center;
    font-weight: bold
}

.news-lb dd {
    padding-left: 8em;
    padding-top: 7px;
    padding-bottom: 15px;
    margin: 0px 0 15px;
    border-bottom: 1px solid #ccc
}

.news-lb dd:last-child {
    border-bottom: 0px
}

.bg-white2 {
    background: rgba(255, 255, 255, 0.6)
}

.mttl_uline2 {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 2.3rem
}

.mttl_uline2:before {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 15px transparent;
    border-bottom: solid 15px #4C7CD8
}

.mttl_uline2:after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 10px;
    width: 190px;
    border-bottom: solid 3px #4C7CD8
}

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

    .mttl_uline2:after {
        width: 150px
    }
}

.w250 {
    width: 250px
}

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

.hover:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s
}

.b-m0 {
    margin-bottom: 0 !important
}

.mtxt {
    font-size: 18px;
    font-weight: bold
}

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

.linkbnr5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.linkbnr5 .item {
    width: 24.25%;
    margin-right: 1%;
    margin-bottom: 20px
}

@media screen and (min-width: 769px) {
    .linkbnr5 .item:nth-child(4n) {
        margin-right: 0
    }
}

@media all and (max-width: 639px) {
    .linkbnr5 .item {
        width: 49%;
        margin-right: 2%
    }

    .linkbnr5 .item:nth-child(2n) {
        margin-right: 0
    }
}

.btn03 a {
    background: #fff;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    display: block;
    padding: 5px;
    font-weight: bold;
    border: 2px solid #333;
    color: #333
}

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

.btn03 a:hover {
    background: #1E50CB;
    border-color: #1E50CB;
    color: #fff
}

.mttl_logo {
    color: #1E50CB;
    font-weight: normal
}

.mttl_logo strong {
    display: block;
    color: #333;
    font-weight: bold
}

.mttl_logo span {
    font-family: 'Stint Ultra Condensed', cursive, "Noto Sans Japanese", sans-serif;
    font-size: 5rem;
    letter-spacing: 0.8px;
    line-height: 0.9
}

.mttl_logo b {
    font-family: 'Stint Ultra Condensed', cursive, "Noto Sans Japanese", sans-serif;
    font-size: 6.5rem;
    font-weight: normal;
    letter-spacing: 0.6px;
    line-height: 1
}

.mttl_logo:hover span,
.mttl_logo:hover b {
    color: #4C7CD8;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out
}

.listFlow li {
    margin-bottom: 9px;
    padding-bottom: 9px
}

.listFlow li:after {
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    text-align: center;
    font-size: 2.5rem
}

.listFlow li:last-child:after {
    content: ""
}

.listFlow .lastItem {
    margin-bottom: 0;
    padding-bottom: 0;
    background: none
}

.listFlow h4 {
    font-size: 20px;
    font-weight: normal;
    border-bottom: solid 1px #ccc;
    margin-bottom: 10px;
    overflow: hidden
}

.listFlow dl {
    display: table;
    width: 100%
}

.listFlow dl dt {
    display: table-cell;
    padding: 10px 0;
    border: 1px solid #1E50CB;
    width: 100px;
    background: #1E50CB;
    font-size: 13px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2
}

.listFlow dl dt .num_li {
    display: block;
    font-size: 21px;
    font-size: 3rem
}

.listFlow dl dd {
    display: table-cell;
    padding: 15px 20px;
    border-top: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    vertical-align: middle;
    background-color: white
}

@media all and (max-width: 639px) {
    .listFlow h4 {
        font-size: 18px;
        font-weight: normal;
        border-bottom: solid 1px #ccc;
        margin-bottom: 5px;
        overflow: hidden
    }

    .listFlow dl {
        display: block;
        width: 100%
    }

    .listFlow dl dt {
        display: block;
        padding: 5px 0;
        width: 100%;
        border: none
    }

    .listFlow dl dt .num_li {
        display: block
    }

    .listFlow dl dd {
        display: block;
        padding: 15px 10px;
        border: none
    }
}

.ba {
    margin: 20px auto;
    width: 100%;
    position: relative;
    line-height: 1.4
}

.ba:before {
    margin: -20px 0 0 -10px;
    border: 20px solid transparent;
    border-left-color: #1E50CB;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%
}

@media all and (max-width: 639px) {
    .ba:before {
        top: 65%
    }
}

.ba:after {
    height: 0;
    visibility: hidden;
    content: ".";
    display: block;
    clear: both
}

.beforeBox,
.afterBox {
    padding: 3px;
    width: 45%;
    background-color: #fff;
    position: relative;
    color: #333
}

.ba .beforeBox {
    float: left
}

.ba .beforeBox img {
    width: 100%
}

.ba .afterBox {
    float: right
}

.ba .afterBox img {
    width: 100%
}

.ba .beforeBox p,
.ba .afterBox p {
    margin-top: 5px
}

.shadow {
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.05)
}

#sec01 {
    margin: 80px 0;
    padding: 0px 50px 80px
}

#sec01.single01 {
    margin: 150px 0 100px
}

@media screen and (max-width: 1200px) {
    #sec01 {
        padding: 0px 50px
    }

    #sec01.single01 {
        margin: 30px 0
    }
}

#sec01 .inner {
    position: relative;
    z-index: 10
}

#sec01 h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #173e9f;
    font-weight: normal
}

#sec01 h2 span {
    font-family: 'Century Gothic', 'Questrial';
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: #1E50CB;
    display: block
}

#sec01 .shadowArea {
    max-width: 50%;
    background: rgba(255, 255, 255, 0.62);
    padding: 20px;
    float: right
}

#sec01 .shadowArea h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #2b60c6
}

@media screen and (max-width: 800px) {
    #sec01 .shadowArea {
        max-width: 80%
    }
}

#sec01 figure {
    position: absolute;
    top: 10px;
    left: -150px;
    z-index: -1;
    width: 50%;
    height: 400px;
    margin: 0 2%;
    display: inline-block;
    -webkit-transform: skewX(-7deg);
    transform: skewX(-7deg);
    overflow: hidden
}

@media screen and (max-width: 1200px) {
    #sec01 figure {
        height: 400px
    }
}

#sec01 figure img {
    width: 100%;
    -webkit-transform: skewX(7deg) scale(1.5);
    transform: skewX(7deg) scale(1.5);
    -webkit-transform-origin: center;
    transform-origin: center
}

#sec01 figure img.left {
    -webkit-transform-origin: left;
    transform-origin: left
}

#sec01 figure img.right {
    -webkit-transform-origin: right;
    transform-origin: right
}

#sec02 {
    background: #fff;
    padding: 80px 15%;
    position: relative;
    z-index: 10
}

#sec02::before {
    content: "";
    width: 90%;
    height: 100%;
    background: #ecf1fc;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -10
}

#sec02 h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 60px;
    text-align: center
}

#sec02 h2 span {
    font-family: 'Century Gothic', 'Questrial';
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #1E50CB
}

#sec02 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between
}

#sec02 ul li {
    max-width: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    background: #fff
}

#sec02 ul li a {
    height: 100%;
    color: #333;
    display: block;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s
}

#sec02 ul li a:hover {
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15)
}

#sec02 ul li figure {
    position: relative;
    overflow: hidden
}

#sec02 ul li figure img {
    width: 100%;
    height: auto
}

#sec02 ul li figure::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .3s;
    transition: .3s
}

#sec02 ul li a:hover figure::after {
    background: rgba(19, 39, 47, 0.6)
}

#sec02 ul li .txtArea {
    padding: 30px 50px;
    position: relative
}

#sec02 ul li .txtArea h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333
}

@media screen and (max-width: 1200px) {
    #sec02 ul li .txtArea {
        padding: 30px 40px
    }

    #sec02 ul li .txtArea h3 {
        font-size: 1.8rem
    }
}

#sec03 {
    color: #fff;
    background: #fff;
    padding: 80px;
    position: relative;
    z-index: 10
}

#sec03::before {
    content: "";
    width: 90%;
    height: 100%;
    background: #009ad8;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10
}

#sec03 h2 {
    font-size: 1.8rem;
    margin-bottom: 60px;
    text-align: center
}

#sec03 h2 span {
    font-family: 'Century Gothic', 'Questrial';
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    display: block
}

#sec03 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between
}

#sec03 ul li {
    max-width: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%
}

#sec03 ul li a {
    color: #333;
    display: block;
    text-decoration: none;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s
}

#sec03 ul li a:hover {
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15)
}

#sec03 ul li figure {
    position: relative;
    overflow: hidden
}

#sec03 ul li figure::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .3s;
    transition: .3s
}

#sec03 ul li a:hover figure::after {
    background: rgba(19, 39, 47, 0.6)
}

#sec03 ul li .txtArea {
    background: #fff;
    padding: 20px 30px
}

#sec03 ul li .txtArea .catch {
    font-family: 'memo';
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #555;
    letter-spacing: 0
}

#sec03 ul li .txtArea .name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px
}

@media screen and (max-width: 1024px) {
    #sec01 {
        margin: 0;
        padding: 30px 0
    }

    #sec01 h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: center
    }

    #sec01 h2 span {
        font-size: 5rem
    }

    #sec01 .shadowArea {
        max-width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    #sec01 .shadowArea h3 {
        font-size: 2.2rem;
        letter-spacing: 0
    }

    #sec01 figure {
        position: static;
        width: 100%;
        height: 400px;
        margin: 0;
        display: block;
        -webkit-transform: none;
        transform: none;
        overflow: hidden
    }
}

@media screen and (max-width: 1024px) and (max-width: 600px) {
    #sec01 figure {
        height: 250px
    }
}

@media screen and (max-width: 1024px) {
    #sec01 figure img {
        width: 100%;
        -webkit-transform: none;
        transform: none
    }

    #sec02 {
        padding: 30px 10px
    }

    #sec02 .inner::after {
        width: 50%;
        height: 20vh;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translateX(-50%)
    }

    #sec02 h2 {
        font-size: 1.4rem;
        margin-bottom: 20px
    }

    #sec02 h2 span {
        font-size: 4rem
    }

    #sec02 ul li {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

    #sec02 ul li:not(:last-of-type) {
        margin-bottom: 15px
    }

    #sec02 ul li .txtArea {
        padding: 10px 30px 20px
    }

    #sec02 ul li .txtArea h3 {
        font-size: 2rem;
        margin-bottom: 10px
    }

    #sec03 {
        background: #b7558a;
        padding: 30px 0
    }

    #sec03::before {
        display: none
    }

    #sec03::after {
        width: 50%;
        height: 20vh;
        top: 20px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translateX(-50%)
    }

    #sec03 .ttlArea {
        margin-bottom: 20px;
        display: block
    }

    #sec03 .ttlArea h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: center
    }

    #sec03 .ttlArea h2 span {
        font-size: 4rem
    }

    #sec03 .ttlArea p:not(:last-child) {
        margin-bottom: 15px
    }

    #sec03 ul li {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

    #sec03 ul li:not(:last-of-type) {
        margin-bottom: 15px
    }

    #sec03 ul li figure {
        height: 200px;
        position: relative;
        overflow: hidden
    }

    #sec03 ul li figure img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%)
    }

    #sec03 ul li .txtArea {
        padding: 15px
    }

    #sec03 ul li .txtArea .catch {
        font-size: 2.4rem;
        padding-bottom: 10px;
        margin-bottom: 10px
    }

    #sec03 ul li .txtArea .name {
        font-size: 1.6rem
    }

    #sec03 ul li .job {
        font-size: 1.4rem;
        top: 15px;
        left: 15px
    }
}

.slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-repeat: repeat
}

.slider1 .viewport {
    width: 100%;
    margin: 0 auto;
    height: 160px;
    position: relative
}

.slider1 .buttons {
    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;
    font-family: "Font Awesome 5 Free";
    font-weight: normal;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 100%;
    color: #1E50CB;
    text-decoration: none;
    margin: auto;
    z-index: 5;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    vertical-align: bottom;
    background: rgba(255, 255, 255, 0.6);
    display: none
}

@media screen and (max-width: 600px) {
    .slider1 .buttons {
        display: none
    }
}

.slider1 .next {
    right: 0;
    left: auto
}

.slider1 .buttons:hover {
    opacity: 0.6
}

.slider1 .disable {
    visibility: hidden
}

.slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    top: -1px
}

.slider1 .overview li {
    width: 200px;
    height: 160px;
    float: left;
    text-align: center;
    vertical-align: middle;
    display: table;
    z-index: 99999;
    overflow: hidden;
    font-weight: bold;
    padding: 0px;
    margin: 0px 5px
}

@media screen and (max-width: 600px) {
    .slider1 .overview li {
        height: 60px;
        width: 95px;
        margin: 0px 3px
    }
}

.slider1 .overview li p {
    text-align: center;
    color: #555 !important;
    font-weight: normal;
    font-size: 13px !important;
    background: #f2f2f2
}

.slider1 img {
    background: #fff;
    width: 100%;
    height: 160px;
    vertical-align: middle;
    text-align: center;
    -o-object-fit: contain;
    object-fit: contain
}

.pc {
    display: block
}

.sp {
    display: none
}

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

    .sp {
        display: block
    }
}

#blog_flexwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    margin: 40px auto
}

@media (max-width: 767px) {
    #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 {
    background: #f7f7f7;
    padding: 24px;
    margin-bottom: 25px
}

.blog_sttl01 {
    text-indent: 5px;
    border-top: 2px solid #1E50CB;
    border-bottom: 2px solid #1E50CB;
    color: #1E50CB;
    background: #f7f7f7;
    padding: 5px 0;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: center
}

.blog_mttl {
    width: calc(100% - 20px);
    color: #1E50CB;
    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 #1E50CB;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pages a:link,
.pages a:visited {
    color: #1E50CB
}

.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: #f7f7f7;
    -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0 0 0 1px;
    box-shadow: rgba(51, 51, 51, 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: #1E50CB
}

.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: 100% !important;
    border: 1px solid #ccc;
    position: relative;
    padding: 8px;
    margin-bottom: 8px;
    background: #fff
}

.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 figcaption {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 0px;
    -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0 0 1px 1px;
    box-shadow: rgba(51, 51, 51, 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;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.blog_side_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1E50CB;
    float: none;
    background: #fff;
    padding: 0 0px;
    border-bottom: 1px dashed #1E50CB
}

.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: #1E50CB;
    font-size: 1.5rem;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.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: calc(33.33% - 16px) !important;
    font-size: 12px;
    margin: 25px 0;
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #1E50CB;
    padding: 10px
}

.blog_top_list .blog_bx:nth-child(3) {
    margin-right: 0px
}

.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: #1E50CB;
    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: #1E50CB
}

.blog_top_list .blog_bx .blog_text {
    margin-top: 5px
}

@media (max-width: 767px) {
    .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: 100% !important;
        border: 1px solid #ccc;
        position: relative;
        padding: 8px;
        margin-bottom: 8px;
        background: #fff
    }

    .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 figcaption {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: block;
        text-align: center;
        background-position: center center;
        background-repeat: no-repeat;
        float: left;
        margin-bottom: 0px;
        -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0 0 1px 1px;
        box-shadow: rgba(51, 51, 51, 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;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    .blog_top_list .blog_bx .ttl {
        font-weight: bold;
        font-size: 1.2rem;
        color: #1E50CB;
        float: none;
        background: #fff;
        padding: 0 0px;
        border-bottom: 1px dashed #1E50CB
    }

    .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: #1E50CB;
        font-size: 1.5rem;
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .blog_top_list .blog_bx {
        width: calc(50% - 16px)
    }

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

.space {
    width: 100%;
    height: 110px;
    background-color: #f9f7ef
}

@media (max-width: 767px) {
    .space {
        display: none
    }
}

.title_ic {
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
    color: #1E50CB;
    margin-bottom: 16px;
    padding: 4px 0;
    font-weight: bold;
    border-bottom: 1px solid #1E50CB
}

@media (max-width: 1200px) {
    .title_ic {
        font-size: 1.8rem
    }
}

#flashA {
    min-width: 100%;
    margin-bottom: 20px
}

@media (max-width: 768px) {
    #flashA {
        margin-bottom: 0
    }
}

#flash2 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: none;
    -webkit-box-shadow: none
}

.bxslider li img {
    width: 280px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.swiper {
    overflow: hidden;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.swiper-slide {
    width: 30%
}

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

.slick01 li {
    display: block;
    width: 30%;
    margin: 0 5px 0
}

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