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

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

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

.bold {
    font-weight: 600
}

h2,
h3 {
    line-height: 1.4
}

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

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

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

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

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

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

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

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

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

.animation {
    opacity: 0
}

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

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

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

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

.loader.off {
    display: none
}

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

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

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

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

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

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

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

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

#l-header {
    width: 100%;
    position: relative;
    padding-bottom: 10px;
    border-top: 4px solid;
    -o-border-image: linear-gradient(to right, #0b3775 0%, #006994 100%);
    border-image: -webkit-gradient(linear, left top, right top, from(#0b3775), to(#006994));
    border-image: linear-gradient(to right, #0b3775 0%, #006994 100%);
    border-image-slice: 1
}

#l-header .inner {
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    min-width: 1024px;
    background: #fff;
    position: relative
}

@media all and (max-width: 800px) {
    #l-header .inner {
        max-width: calc(100% - 15px)
    }
}

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

#logo {
    padding: 10px 0
}

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

.header-right_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

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

.header-right_tel a,
.header-right_mail a,
.header-right_entry a {
    display: block;
    padding: 8px 15px;
    border-radius: 40px;
    line-height: 1.4;
    text-align: center;
    font-size: 1.6rem;
    color: #fff
}

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

.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_entry a:hover {
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in
}

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

    .header-right_tel a,
    .header-right_mail a,
    .header-right_entry a {
        width: 65px;
        height: 55px;
        font-size: 10px
    }

    .header-right_tel a span,
    .header-right_mail a span,
    .header-right_entry a span {
        font-size: 1.5rem
    }
}

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

.header-right_tel a {
    background: #0b3775;
    letter-spacing: 0.1rem
}

.header-right_tel a:hover {
    background: #02348b
}

.header-right_mail a {
    background: #d45214;
    color: #fefefe
}

.header-right_mail a:hover {
    background: #a54010
}

#header_nav {
    position: relative;
    padding: 5px 0;
    border-bottom: 2px solid #0b3775;
    border-top: 2px solid #0b3775;
    margin: 0 auto
}

#header_nav.scrolled {
    width: 100%;
    -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200
}

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

#header_nav ul li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 5px
}

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

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

#header_nav ul li a {
    display: block;
    letter-spacing: .1rem;
    position: relative;
    line-height: 1.3;
    font-size: 1.7rem;
    color: #333;
    text-align: left;
    background: #fefefe;
    padding: 6px 4px 6px 40px;
    font-weight: 600
}

#header_nav ul li a span {
    display: block;
    font-size: 1.4rem;
    color: #006994;
    position: relative;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif
}

#header_nav ul li a:before,
#header_nav ul li a:after {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.2s all ease-in;
    transition: 0.2s all ease-in
}

#header_nav ul li a:before {
    left: 5px;
    font-size: 1.6rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    color: #0b3775
}

#header_nav ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    right: 5%;
    color: #d45214
}

@media all and (max-width: 1200px) {
    #header_nav ul li a {
        font-size: 1.5rem;
        letter-spacing: 0
    }
}

#header_nav ul li a:hover,
#header_nav ul li a.active {
    background: #006994;
    color: #ffe553;
    -webkit-transition: 0.2s all ease-in;
    transition: 0.2s all ease-in
}

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
    color: #fff
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
    right: 2%;
    color: #fefefe
}

#header_nav ul li a.nav1:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    font-weight: bold
}

#header_nav ul li a.nav2:before {
    content: "";
    width: 25px;
    height: 25px;
    background: #fefefe url(../img/nav-2.png) no-repeat center/contain
}

#header_nav ul li a.nav3:before {
    content: "";
    width: 25px;
    height: 25px;
    background: #fefefe url(../img/nav-3.png) no-repeat center/contain
}

#header_nav ul li a.nav4:before {
    font-family: "Font Awesome 5 Free";
    content: "\f13e";
    font-weight: bold
}

#header_nav ul li a.nav5:before {
    font-family: "Font Awesome 5 Free";
    content: "\f51c";
    font-weight: bold
}

#header_nav ul li a.nav6:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0eb";
    font-weight: bold
}

#header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 310;
    background: #ccc
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slide-img {
    overflow: hidden;
    height: 65vh
}

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

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

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

.slide-img img.sp {
    display: none
}

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

    .slide-img img.sp {
        display: block
    }
}

#slideshow {
    position: relative;
    overflow: hidden;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px
}

@media all and (max-width: 800px) {
    #slideshow {
        max-width: calc(100% - 15px)
    }
}

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

#catch img.sp {
    display: none
}

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

    #catch img.sp {
        display: block
    }
}

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

.bg_contact {
    position: relative
}

.bg_contact .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0
}

@media all and (max-width: 639px) {
    .bg_contact .inner {
        width: 95%;
        background: rgba(255, 255, 255, 0.5)
    }
}

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

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

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

.contact_wrap .contact_left,
.contact_wrap .contact_right {
    width: 49%;
    padding: 20px
}

.contact_wrap .contact_right {
    text-align: right
}

.contact_wrap .contact_left {
    margin-right: 2%;
    border-right: 3px solid #fff
}

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

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

    .contact_wrap .contact_right {
        text-align: left
    }

    .contact_wrap .contact_left {
        margin-right: auto;
        border-right: 0;
        border-bottom: 3px solid #fff
    }
}

.contact_bnr {
    margin: 15px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contact_bnr>li {
    margin-bottom: 10px
}

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

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

.contact_bnr>li .bnr_tel {
    background: #ff5f79;
    border: 1px solid #ff92a4;
    white-space: nowrap;
    color: #fff
}

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

.contact_bnr>li .bnr_tel:hover {
    background: #ff2c4f
}

.contact_bnr>li .bnr_mobile {
    background: #0b3775;
    border: 1px solid #072146
}

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

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

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

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

.contact_bnr>li .bnr_mail {
    background: #85e4df;
    color: #222;
    font-size: 1.6rem
}

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

.contact_bnr>li .bnr_mail:hover {
    background: #ffe553
}

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

.contact_bnr>li a,
.contact_bnr>li span {
    display: block;
    padding: 5px 15px;
    margin: 0 auto;
    color: #ffffff;
    border-radius: 50px;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.2rem;
    width: 420px
}

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

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

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

#l-footer {
    font-size: 1.4rem;
    position: relative
}

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

@media all and (max-width: 639px) {
    #l-footer {
        background: url(../img/bg_footer_s.jpg) no-repeat 90% 80%/cover
    }
}

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

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

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

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

.footer_navi li a span {
    display: none
}

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

.footer_navi li a:hover {
    color: #020b18
}

.footer_navi li .dropdown {
    display: none
}

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

.column2 .child1 {
    width: 35%
}

.column2 .child2 {
    width: 62%
}

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

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

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

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

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

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

.top-intro {
    position: relative
}

.top-intro:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0b3775;
    z-index: 1;
    opacity: 0.6
}

.top-intro:after {
    position: absolute;
    content: "";
    width: 450px;
    height: 360px;
    left: 10px;
    bottom: 1%;
    background: url(../img/intro-tree.png) no-repeat center bottom/contain;
    z-index: 2;
    opacity: 0.4
}

@media all and (max-width: 639px) {
    .top-intro {
        padding-bottom: 80px
    }

    .top-intro:before {
        bottom: auto;
        width: 100%
    }

    .top-intro:after {
        height: 250px;
        width: 200px
    }
}

.top-intro_title {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    position: absolute;
    text-align: left;
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 7rem;
    line-height: 1.3;
    left: 2%;
    top: 100px;
    font-weight: normal;
    white-space: nowrap;
    z-index: 3
}

.top-intro_title:before {
    position: absolute;
    content: "";
    left: 50%;
    top: -130px;
    width: 250px;
    height: 100px;
    z-index: 2;
    background: url(../img/logomark.png) no-repeat center/contain;
    margin-left: -125px
}

@media all and (max-width: 639px) {
    .top-intro_title {
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
        font-size: 3rem;
        padding-left: 110px;
        top: -30px;
        left: 0
    }

    .top-intro_title:before {
        left: 0;
        top: 50%;
        width: 100px;
        height: 70px;
        margin: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.top-intro_eng {
    position: absolute;
    font-size: 8rem;
    white-space: nowrap;
    bottom: -130px;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    font-weight: normal;
    right: 0%;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    color: rgba(58, 32, 12, 0.5)
}

@media all and (max-width: 800px) {
    .top-intro_eng {
        font-size: 5rem;
        bottom: -90px
    }
}

@media all and (max-width: 639px) {
    .top-intro_eng {
        right: auto;
        left: 50%;
        font-size: 3rem;
        bottom: -70px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        line-height: 1.2;
        text-align: center;
        letter-spacing: 0
    }
}

.top-box {
    width: 1000px;
    max-width: 75%;
    background: #fefefe;
    padding: 35px;
    position: relative;
    z-index: 5;
    margin: 40px 2% 0 auto;
    border-radius: 20px;
    position: relative
}

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

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

.top-lead {
    font-size: 3.3rem;
    line-height: 1.4;
    color: #5bdbd4;
    margin-bottom: 20px
}

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

.more {
    display: block;
    max-width: 250px;
    background: #02348b;
    color: #fff;
    padding: 8px 10px;
    margin: 10px auto -25px;
    text-align: center
}

.top-achive {
    position: relative;
    padding: 40px 0 0;
    margin-bottom: -100px
}

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

.top-achive:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: url(../img/bg_top-achive.jpg) no-repeat center/cover;
    opacity: .5
}

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

.top-box2 {
    width: 900px;
    max-width: 75%;
    padding: 35px;
    position: relative;
    z-index: 2;
    margin: 40px auto;
    position: relative;
    font-size: 1.05em
}

@media all and (max-width: 800px) {
    .top-box2 {
        max-width: 70%;
        padding: 15px;
        font-size: 1.1rem
    }
}

@media all and (max-width: 639px) {
    .top-box2 {
        max-width: 95%;
        margin: 80px auto 0
    }
}

.top-achive_title {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 5rem;
    font-weight: normal;
    position: absolute;
    left: -200px;
    top: -80px;
    color: #3a200c;
    z-index: 5;
    line-height: 1.1
}

.top-achive_title span {
    font-size: 7rem;
    display: block;
    font-weight: 700;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    border-right: 2px solid #fff;
    color: #ff92a4;
    letter-spacing: 0.2rem
}

@media all and (max-width: 1200px) {
    .top-achive_title {
        left: -120px
    }
}

@media all and (max-width: 800px) {
    .top-achive_title {
        top: -140px;
        left: 2%;
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
        font-size: 3rem
    }

    .top-achive_title span {
        font-size: 7rem;
        border-right: 0
    }
}

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

    .top-achive_title span {
        font-size: 4rem
    }
}

.news-box {
    margin: 0px auto 0;
    border: 3px solid #ffeaa7;
    padding: 15px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    background: #fefefe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

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

.news-title {
    text-align: center;
    font-weight: 600;
    background: #0b3775;
    padding: 10px 20px;
    color: #fff
}

.news-title span {
    font-size: 4rem;
    display: block;
    font-weight: 600;
    color: #fff6da;
    margin-bottom: -20px
}

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

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

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

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

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

.top-blog li {
    width: 23%;
    margin: 0 3% 25px 0;
    position: relative
}

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

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

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

.top-blog .top-blog_img {
    margin-bottom: 10px;
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(11, 55, 117, 0.5)
}

.top-blog .top-blog_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    background: rgba(11, 55, 117, 0.2)
}

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

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

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

.top-blog .top-blog_time span.day {
    font-size: 2.5rem;
    font-weight: 600;
    display: inline;
    margin-right: -5px
}

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

.top-blog .top-blog_ttl {
    font-weight: 600;
    color: #ff4664;
    line-height: 1.4;
    border-bottom: 1px solid #fff6da;
    margin-bottom: 5px
}

@media all and (max-width: 800px) {
    .top-blog li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 30px
    }

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

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

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

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

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

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

.btn-small-wrap {
    margin-top: 10px
}

.btn-small-wrap a {
    border: 1px solid lemonchiffon;
    display: inline-block;
    padding: 6px 8px;
    background: #fefefe;
    font-size: 15px;
    font-weight: 600;
    color: #02348b
}

.btn-small-wrap a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    margin-left: 5px
}

.btn-small-wrap a:not(:last-of-type) {
    margin-right: 5px
}

.btn-small-wrap a:hover {
    color: #006994
}

@media all and (max-width: 639px) {
    .btn-small-wrap a {
        font-size: 13px
    }

    .btn-small-wrap a:not(:last-of-type) {
        margin-bottom: 5px;
        margin-right: 0
    }
}

.program {
    width: 100%
}

.program th,
.program td {
    padding: 10px;
    border: 1px solid #aaa;
    text-align: center;
    vertical-align: middle
}

.program th.type1,
.program th.type2,
.program td.type1,
.program td.type2 {
    width: 40%
}

.program th {
    line-height: 1.4
}

.program th.type1 {
    background: #ff92a4;
    border: 2px solid #ff5f79
}

.program th.type2 {
    background: #679615;
    color: #fefefe;
    border: 2px solid #48690f
}

.program td {
    background: lemonchiffon
}

.program td.type1 {
    background: rgba(255, 146, 164, 0.3);
    border: 2px solid #ff5f79
}

.program td.type2 {
    background: rgba(103, 150, 21, 0.3);
    border: 2px solid #48690f
}

.program-txt {
    margin: 10px auto 0;
    padding: 8px 10px;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    color: #fefefe;
    line-height: 1.4;
    border-radius: 30px
}

.program-txt span {
    font-weight: normal;
    font-size: 1.4rem
}

.program-txt.type1 {
    background: #c41414
}

.program-txt.type2 {
    background: #0b3775
}

@media all and (max-width: 639px) {
    .program-txt {
        padding: 5px 10px;
        font-size: 1.5rem
    }

    .program-txt span {
        font-size: 1.2rem
    }
}

.program-ttl {
    font-size: 2rem;
    letter-spacing: .2rem;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 10px;
    line-height: 1.4
}

.program-ttl.type1 {
    background: #ff92a4;
    color: #3a200c
}

.program-ttl.type2 {
    background: #679615;
    color: #fefefe
}

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

    .program-ttl span {
        font-weight: normal;
        display: block
    }
}

.program-ttl2 {
    font-size: 1.6rem;
    letter-spacing: .2rem;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 10px;
    line-height: 1.4
}

.program-ttl2.type1 {
    background: #ff92a4;
    color: #3a200c
}

.program-ttl2.type2 {
    background: #679615;
    color: #fefefe
}

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

    .program-ttl2 span {
        font-weight: normal;
        display: block
    }
}

.program-box {
    border: 2px solid;
    padding: 10px
}

.program-box.type1 {
    border-color: #ff5f79;
    background: rgba(255, 146, 164, 0.2)
}

.program-box.type2 {
    border-color: #48690f;
    background: rgba(103, 150, 21, 0.2)
}

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

.step-list li {
    width: calc((100% / 7) - 5px);
    text-align: center;
    line-height: 1.4;
    font-size: 2rem;
    padding: 10px;
    background: rgba(0, 105, 148, 0.2)
}

.step-list li span {
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    color: #0b3775;
    display: block
}

@media all and (max-width: 1200px) {
    .step-list li {
        font-size: 1.6rem
    }
}

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

    .step-list li {
        width: 31%;
        margin: 0 3% 15px 0;
        font-size: 1.2rem
    }

    .step-list li span {
        font-size: 1.4rem
    }

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

.voice-list {
    max-width: 1000px;
    margin: 0 auto
}

.voice-list li {
    border: 4px solid #d4ceb8;
    padding: 20px;
    border-radius: 20px 0 20px 0
}

.voice-list li:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 15px
}

.voice-list .voice-name {
    border-bottom: 1px solid #d4ceb8;
    margin-bottom: 10px
}

.voice-list .voice-name span {
    font-size: 2.5rem;
    color: #d45214
}

.voice-list .voice-lead {
    color: #85e4df
}

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

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

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

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

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

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

.lsingle,
.rsingle {
    width: 48.44%
}

.lsingle {
    float: left
}

.rsingle {
    float: right
}

.lsingle01 {
    width: 75%;
    float: left
}

.rsingle01 {
    width: 23%;
    float: right
}

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

.mbox.transparent {
    background: rgba(254, 254, 254, 0.7)
}

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

.mbox.shingaku,
.mbox.manabiya {
    position: relative;
    width: 100%
}

.mbox.shingaku:before,
.mbox.manabiya:before {
    position: absolute;
    content: "";
    left: 50%;
    top: -40px;
    width: 80px;
    height: 80px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border-radius: 100%
}

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

    .mbox.shingaku,
    .mbox.manabiya {
        margin-top: 40px;
        padding-top: 20px
    }

    .mbox.shingaku:before,
    .mbox.manabiya:before {
        width: 60px;
        height: 60px
    }
}

.mbox.shingaku:before {
    background: #fefefe url(../img/logomark01.png) no-repeat center/60px
}

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

.mbox.manabiya:before {
    background: #fefefe url(../img/logomark02.png) no-repeat center/60px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mtitle span {
    display: block;
    font-size: 6rem;
    font-weight: 600;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    position: relative;
    letter-spacing: 0.2rem;
    margin-bottom: -15px;
    color: #006994
}

.mtitle span:first-letter {
    color: #0b3775
}

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

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

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

.mtitle.black {
    color: #333
}

.mtitle.black span {
    color: #555
}

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

.mtitle.mtitle_left {
    text-align: left
}

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

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

    .mtitle span {
        font-size: 4rem;
        letter-spacing: 1.1;
        letter-spacing: 0;
        margin-bottom: -5px
    }
}

.mtitle2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 8px 5px 8px 15px;
    color: #3a200c;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 229, 83, 0.9)), to(rgba(255, 250, 205, 0.5)));
    background-image: linear-gradient(to right, rgba(255, 229, 83, 0.9) 0%, rgba(255, 250, 205, 0.5) 100%);
    line-height: 1.3
}

.mtitle2 span {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    color: #006994;
    font-weight: normal
}

.mtitle2 span.ja {
    font-weight: 600;
    font-size: 3rem;
    color: #0b3775
}

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

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

    .mtitle2 span.ja {
        font-size: 1.6rem
    }
}

.mtitle3 {
    font-size: 2rem;
    border-top: 1px solid #ffeaa7;
    border-bottom: 1px solid #ffeaa7;
    color: #0b3775;
    margin-bottom: 20px;
    background: rgba(133, 228, 223, 0.4);
    padding: 5px;
    position: relative
}

.mtitle3 span {
    color: #3a200c;
    font-size: 1.5rem;
    padding-left: 5px
}

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

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

.mtitle-bll .free {
    background: #d45214;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 0.8em
}

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

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

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

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

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

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

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

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

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

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

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

.mtitle5 {
    margin: -70px -30px 40px;
    text-align: center;
    position: relative
}

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

.mtitle5 span {
    display: inline-block;
    padding: 8px 15px;
    background: #ff92a4;
    font-size: 3rem;
    color: #fff;
    position: relative;
    letter-spacing: 0.2rem;
    z-index: 2
}

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

    .mtitle5 span {
        font-size: 1.7rem;
        line-height: 1.4
    }
}

.mtitle_sub {
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #006994;
    margin: 8px 0;
    font-size: 1.1em;
    color: #0b3775
}

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

.mtitle_box {
    background: url(../img/bg-pattern02.jpg);
    background-size: 300px;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: 600
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn01 a:hover {
    background: #0b3775
}

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

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

.btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: rgba(212, 82, 20, 0.7);
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff
}

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

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

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

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

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

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

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

.news-bl {
    overflow: hidden
}

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

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

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

.news-bl dd a {
    color: #8f4f1d
}

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

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

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

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

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

.page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(254, 254, 254, 0.2)
}

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

.page-title .inner>.mtitle {
    text-align: left;
    font-size: 2.2rem;
    color: #3a200c
}

.page-title .inner>.mtitle span {
    display: inline-block;
    font-size: 10rem;
    padding-right: 30px;
    color: #ffe553;
    text-shadow: 4px 4px rgba(11, 55, 117, 0.8)
}

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

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

    .page-title .inner>.mtitle span {
        font-size: 4rem;
        padding-right: 0;
        display: block
    }
}

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

    .page-title .inner {
        width: 99%;
        padding: 50px 0 10px
    }
}

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

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

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

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

.bg-maru1,
.bg-maru2 {
    background: #fff6da;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    margin: 50px auto;
    border-radius: 20px
}

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

    .bg-maru1,
    .bg-maru2 {
        max-width: calc(100% - 15px)
    }
}

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

    .bg-maru1,
    .bg-maru2 {
        border-radius: 10px
    }
}

.bg-maru2 {
    background: rgba(0, 105, 148, 0.2)
}

.bg-base {
    background: rgba(0, 105, 148, 0.2)
}

.bg-blue {
    background: rgba(133, 228, 223, 0.4)
}

.bg-gray {
    background: #f1efe8
}

.bg-beige {
    background: rgba(255, 246, 218, 0.8)
}

.bg-beige2 {
    background: rgba(255, 246, 218, 0.5)
}

.tbl {
    width: 100%
}

.tbl tr.tr-1 {
    background: lemonchiffon
}

.tbl th,
.tbl td {
    padding: 9px;
    vertical-align: middle;
    border: 1px solid #777;
    position: relative;
    text-align: center
}

.tbl th {
    background: #f0f0f0;
    color: #3a200c;
    text-align: center
}

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

.tbl th.cell01 {
    width: 15%
}

.tbl th.cell02 {
    width: 20%
}

.tbl th.cell03 {
    width: 22.5%
}

.tbl td {
    background: #fefefe
}

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

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

.tbl .cell01 {
    width: 45%
}

.tbl .cell02 {
    width: 25%
}

.tbl_new {
    width: 100%
}

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

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

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

.tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #0b3775;
    text-align: left
}

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

.tbl-border {
    width: 100%
}

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

.tbl-border th {
    width: 28%;
    color: #3a200c;
    border-right: 2px solid #85e4df
}

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

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

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

.company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #ffe38e;
    color: #333;
    font-weight: 600
}

.company th::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #f9f9f9;
    border-width: 10px;
    border-left-color: #ffe38e;
    margin-top: -10px
}

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

.tbl0 {
    width: 100%
}

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

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

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

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

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

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

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

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

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

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

.list_check {
    padding: 10px;
    background: #f0e8e0;
    border-radius: 10px
}

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

.list_check li span {
    font-weight: normal;
    font-size: 0.9em;
    display: block;
    padding: 10px;
    background: rgba(255, 246, 218, 0.2);
    margin-top: 10px
}

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

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

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

.list_check2 {
    margin-bottom: 25px
}

.list_check2 li {
    padding: 5px
}

.list_check2 li:not(:last-child) {
    margin-bottom: 5px;
    border-bottom: 1px dashed #00b1fa
}

.list_check2 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f303";
    font-weight: bold;
    margin-right: 5px;
    color: #006994
}

.list_lead li {
    font-weight: 600;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, rgba(212, 82, 20, 0.3)));
    background: linear-gradient(transparent 95%, rgba(212, 82, 20, 0.3) 0%);
    padding-bottom: 8px;
    margin-bottom: 5px
}

.list_lead li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f328";
    font-weight: bold;
    margin-right: 5px;
    color: #d45214
}

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

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

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

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

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

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

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

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

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

.blog-wrap>li {
    width: 19%;
    margin: 0 0.5% 1.5%;
    border: 1px solid #fff6da;
    position: relative
}

.blog-wrap>li:nth-child(even) .blog-date {
    background: #85e4df
}

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

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

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

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

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

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

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

.blog-date {
    color: #0b3775;
    position: absolute;
    width: 65px;
    height: 65px;
    background: #0b3775;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
    left: 0px;
    top: 0px;
    font-size: 0.9em;
    margin-bottom: 5px;
    display: block
}

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

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

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

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

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

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

    .blog-date .day {
        font-size: 1.5rem
    }
}

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

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

.blog-detail {
    padding: 15px
}

.blog-title {
    font-weight: 600;
    color: #072146;
    font-size: 1.1em;
    line-height: 1.4;
    border-left: 4px solid #555;
    padding: 4px 4px 4px 10px;
    margin-bottom: 5px
}

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

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

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

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

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

.category_nav {
    border: 1px solid #dddddd
}

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

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

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

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

.cut {
    overflow: hidden;
    zoom: 1
}

.w300 {
    width: 300px
}

.spbr {
    display: none
}

.br_tablet {
    display: none
}

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

.color1 {
    color: #0b3775
}

.color2 {
    color: #006994
}

.color3 {
    color: #d45214
}

.num {
    color: #d45214;
    font-weight: 600;
    font-size: 2rem;
    text-align: center
}

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

.num:hover {
    color: #006994
}

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

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

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

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

.breadcrumb li a {
    color: #85e4df
}

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

.breadcrumb li .home {
    font-family: "Font Awesome 5 Free"
}

.form-contents {
    padding: 35px 0 !important;
    width: 90% !important;
}

.form-contents dl dt .required::before {
    background: #0b3775 !important
}

.form-contents button {
    cursor: pointer !important;
    display: block !important;
    text-align: center !important;
    -webkit-transition: all 0.2s ease-in-out 0s !important;
    transition: all 0.2s ease-in-out 0s !important;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    padding: 8px 5px !important;
    margin: 0 auto !important;
    width: 250px !important;
    background: #072146 !important;
    border: 1px solid #0b3775 !important;
    border-radius: 25px !important;
    color: #fff !important;
}

.form-contents button:hover {
    background: #fff !important;
    color: #0b3775 !important;
}

.form-contents .submit-btn:hover:before {
    background-color: #0b3775 !important;
}

@media screen and (max-width:480px) {
    .form-contents {
        width: 100% !important;
    }

    .form-contents dt {
        width: 100% !important;
    }

    .form-contents dd {
        padding-left: 0 !important;
    }
}

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

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

.form dl dt span {
    color: #fff;
    background: #0b3775;
    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 {
    cursor: pointer;
    display: block;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #072146;
    border: 1px solid #0b3775;
    border-radius: 25px;
    color: #fff
}

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

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

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

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

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

.form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block
}

.form label.radio_text:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: 0px;
    top: 2px;
    content: "";
    z-index: 3
}

.form label.radio_text:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #0b3775;
    z-index: 1
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks {
    padding: 40px;
    border: 3px solid #0b3775;
    -webkit-box-shadow: 0 0 0 8px rgba(11, 55, 117, 0.2);
    box-shadow: 0 0 0 8px rgba(11, 55, 117, 0.2);
    max-width: 700px;
    margin: 0 auto;
    background: #fefefe
}

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

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

.policy {
    padding: 20px;
    background: #f1efe8;
    margin-top: 40px
}

.mtitle_small {
    position: relative;
    font-size: 2rem;
    color: #85e4df;
    margin-bottom: 30px
}

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

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

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

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

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

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

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

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

.gallery li p {
    line-height: 1.4;
    margin-top: 5px;
    font-size: 1.3rem
}

@media all 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: 120px
    }

    .gallery li p {
        font-size: 1.1rem
    }
}

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

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

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

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

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

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

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

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

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

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

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

.list3 li {
    width: calc(33.3333333% - 30px / 3);
    margin-right: 15px;
    margin-bottom: 25px;
    padding: 15px
}

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

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

.list3.staff-list li {
    background: rgba(0, 105, 148, 0.1);
    -webkit-box-shadow: 3px 3px rgba(0, 105, 148, 0.2);
    box-shadow: 3px 3px rgba(0, 105, 148, 0.2)
}

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

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

.list3_001>li,
.list3_001 .child {
    margin: 0 1% 20px 0;
    width: 24%;
}

.list3_001 .child:last-child {
    margin-right: 0
}

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

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

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

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

#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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 0;
    max-width: 1500px
}

.topbnr li {
    width: 31%;
    -webkit-box-shadow: 0 0 0 4px #fff;
    box-shadow: 0 0 0 4px #fff;
    overflow: hidden;
    position: relative
}

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

@media all and (max-width: 1200px) {
    .topbnr li:nth-child(3n) {
        margin-right: 1%
    }
}

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

.topbnr li img {
    width: 100%
}

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

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

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

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

.top-bnr-wrap {
    position: relative
}

.top-bnr-wrap .caption {
    padding: 10px
}

.top-bnr-wrap .top-bnr-title {
    position: relative;
    background: #006994;
    display: block;
    color: #fefefe;
    letter-spacing: 0.2rem;
    border-top: 4px solid #fff;
    text-align: center;
    font-size: 1.8rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 10px 0
}

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

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

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

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

.note {
    padding: 15px;
    background: lemonchiffon;
    color: #333
}

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

.flow-dl dt,
.favor-dl dt {
    background-image: -webkit-gradient(linear, left top, right top, from(#0b3775), to(#006994));
    background-image: linear-gradient(to right, #0b3775 0%, #006994 100%);
    line-height: 1.3;
    color: #fff;
    width: 60px;
    border-radius: 30px;
    text-align: center;
    margin-right: 20px;
    font-size: 1.4rem;
    padding: 5px 0
}

.flow-dl dt span,
.favor-dl dt span {
    font-size: 3rem;
    display: block;
    font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
    margin-top: -5px
}

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

    .flow-dl dt,
    .favor-dl dt {
        width: 55px;
        font-size: 13px;
        padding-top: 8px
    }

    .flow-dl dt span,
    .favor-dl dt span {
        font-size: 2rem
    }
}

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

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

.txt1 {
    padding-left: 10px
}

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

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

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

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

.blog-month ul li {
    border: 1px solid #ccc;
    width: 45%;
    padding: 3px 0;
    margin-bottom: 5px;
    font-size: 0.9em;
    letter-spacing: 0;
    text-align: center;
    background: #fefefe;
    margin-bottom: 5px
}

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

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

@media all and (max-width: 639px) {
    .blog-month ul li {
        width: 44%
    }
}

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

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

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

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

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

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

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

.faq-dl .faq-inner {
    padding: 10px;
    background: #fafafa
}

.faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ddd
}

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

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

.faq-dl dt {
    background: #006994;
    font-size: 1.1em;
    color: #fefefe;
    cursor: pointer;
    line-height: 1.4
}

.faq-dl dt span {
    font-size: 1.8rem;
    color: #ffe553
}

.faq-dl dt span:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0a4";
    font-weight: bold;
    margin: 0 5px;
    color: #0b3775
}

.faq-dl dt:before {
    content: "Q";
    color: #fefefe;
    font-size: 2rem;
    background: #0b3775
}

.faq-dl dd {
    background: #fff6da;
    display: none
}

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

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

.faq-dl dd.active {
    display: block
}

@media all and (max-width: 639px) {
    .faq-dl .faq-inner {
        padding: 5px
    }

    .faq-dl dt:before,
    .faq-dl dd:before {
        font-size: 1.6rem
    }

    .faq-dl dt {
        font-size: 1.2rem
    }

    .faq-dl dt span {
        font-size: 1.6rem
    }
}

.board {
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    font-size: 1.1em;
    padding: 15px;
    text-align: center;
    background-color: #202020;
    color: #fff;
    border: 8px solid #b2771f;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 5px #333, 0 0 5px #555 inset;
    box-shadow: 0 0 5px #333, 0 0 5px #555 inset
}

.board::before,
.board::after {
    position: absolute;
    content: '';
    bottom: 0
}

.board::before {
    right: 10px;
    border: solid 3px #fff;
    width: 20px;
    border-radius: 3px 2px 0 2px
}

.board::after {
    right: 40px;
    border: solid 3px #ffff6b;
    width: 15px;
    border-radius: 8px 5px 2px 5px
}

.name {
    font-size: 1.2em;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid #aaa;
    margin-bottom: 10px;
    color: #0b3775
}

.name .small {
    font-size: 1.4rem;
    color: #0b3775;
    margin-left: 5px
}

.name .role {
    font-size: 1.4rem;
    background: #d45214;
    padding: 3px 6px;
    color: #fefefe;
    margin-right: 5px
}

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

    .name .small,
    .name .role {
        font-size: 1.1rem
    }
}

.passSubmit {
    cursor: pointer;
    color: #FFFFFF;
    text-align: center;
    background: #0b3775;
    font-size: 15px;
    border: 1px solid #0b3775;
    width: 80px;
    height: 32px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.passSubmit:hover {
    background: #FFFFFF;
    color: #0b3775
}

.rec-mark {
    width: 50px;
    position: absolute;
    z-index: 0;
    margin-left: 10px;
    top: -5px
}

@media all and (max-width: 639px) {
    .rec-mark {
        position: relative;
        width: 35px;
        padding-top: 3px
    }
}

.rec-mark2 {
    width: 45px;
    position: absolute;
    z-index: 0;
    margin-left: 10px;
    top: 0px
}

@media all and (max-width: 639px) {
    .rec-mark2 {
        position: relative;
        width: 35px;
        padding-top: 0px;
        padding-bottom: 5px;
    }
}

.title1 {
    font-size: 16px;
    font-weight: bold;
    background-color: #F8B538;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 10px
}

.accordion-click:hover {
    cursor: pointer
}

.photo {
    width: 100%;
    margin: 10px auto 0
}

.photo ul {
    margin-right: -11px;
    margin-bottom: 0;
    text-align: center
}

.photo li {
    float: left;
    margin-left: 10px;
    margin-bottom: 10px;
    display: inline-block
}

.photo li a {
    display: block;
    text-align: center;
    width: 128px;
    height: 128px;
    line-height: 128px;
    background: #dcecdf
}

.photo li:last-child {
    margin-right: 0px
}

.photo li img {
    vertical-align: middle;
    width: auto;
    height: auto;
    max-width: 128px;
    max-height: 128px
}

.photo li p {
    font-size: 12px;
    width: 258px;
    height: 60px;
    border: 1px solid #cccccc;
    padding: 15px;
    margin: 10px 0 10px;
    text-align: left
}

.under_line {
    border-bottom: 2px solid #D45214
}

.staff_bg001 {
    background: rgba(148, 0, 0, 0.1) !important;
    -webkit-box-shadow: 3px 3px rgba(0, 105, 148, 0.2) !important;
    box-shadow: 3px 3px rgba(148, 0, 0, 0.2) !important
}

.staff_bg001 .name {
    color: #d76300 !important
}

.staff001 {
    color: #d76300
}

.mcenter {
    margin: auto;
}


.news02-box {
    margin: 0px auto 0;
    border: 3px solid #0b3775;
    padding: 15px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    background: #fefefe;
}

.news02-box p {
    text-align: center;
    padding: 40px 0;
}


.kekka tr td:nth-last-child(2) {
    color: red;
    font-weight: bold;
}