@font-face {
    font-family: "webfont";
    src: url("../fonts/shirokuma.woff2") format("woff2"), url("../fonts/shirokuma.woff") format("woff"), url("../fonts/shirokuma.ttf") format("truetype")
}

body {
    background: url(../img/bg_01.jpg) repeat;
    background-size: 30%;
    color: #371e00;
    font-family: "YakuHanJP", Lato, "Kosugi Maru", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a:hover {
    color: #6a3a00
}

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

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

.loader::after {
    -webkit-animation: loader 1s linear infinite;
    animation: loader 1s linear infinite;
    border: 1px solid #197BB6;
    border-radius: 50%;
    border-right: 1px solid rgba(25, 123, 182, 0.2);
    border-top: 1px solid rgba(25, 123, 182, 0.2);
    content: "";
    height: 70px;
    width: 70px
}

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

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

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

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

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

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

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

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

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

#header {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 1
}

#header #logo {
    margin: 0 auto;
    width: 262px
}

#navi {
    margin-bottom: 40px
}

#navi ul {
    margin: 0 auto;
    width: 1024px;
    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
}

#navi ul li {
    width: 16.666666%;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#navi ul li:last-child {
    padding-right: 0
}

#navi ul li a {
    display: block;
    padding: 10px;
    background: #ffffff;
    border: 1px dashed #371e00;
    border-radius: 6px;
    text-align: center;
    font-family: webfont;
    font-size: 2.2rem
}

#navi ul li a:hover {
    background: #11C2A7;
    color: #ffffff
}

#page1 #navi ul li .navi01 {
    background: #11C2A7;
    color: #ffffff
}

#page2 #navi ul li .navi02 {
    background: #11C2A7;
    color: #ffffff
}

#page3 #navi ul li .navi03 {
    background: #11C2A7;
    color: #ffffff
}

#page4 #navi ul li .navi04 {
    background: #11C2A7;
    color: #ffffff
}

#page5 #navi ul li .navi05 {
    background: #11C2A7;
    color: #ffffff
}

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

#page-top a {
    display: block;
    width: 60px;
    height: 70px
}

#footer {
    background: #197BB6;
    color: #ffffff;
    margin-top: 60px;
    text-align: center
}

#footer .inner {
    width: 1024px;
    margin: 0 auto;
    padding: 10px 0
}

#footer .inner .flogo {
    width: 250px;
    margin: 0 auto 25px
}

#footer .inner .copyright {
    font-size: 1.2rem
}

#visual {
    position: relative;
    background: url(../img/visual.jpg) no-repeat center bottom;
    background-size: cover;
    height: 675px;
    margin-bottom: 50px
}

#visual.underlayer {
    height: 400px
}

#cloud {
    width: 100%;
    height: 124px;
    position: absolute;
    background: url(../img/cloud.png);
    animation: cloudmove 60s linear infinite;
    -webkit-animation: cloudmove 60s linear infinite;
    -moz-animation: cloudmove 60s linear infinite
}

@keyframes cloudmove {
    0% {
        background-position: 0 0
    }

    25% {
        background-position: 200px 5px
    }

    50% {
        background-position: 400px 0
    }

    75% {
        background-position: 600px 5px
    }

    100% {
        background-position: 800px 0
    }
}

@-webkit-keyframes cloudmove {
    0% {
        background-position: 0 0
    }

    25% {
        background-position: 200px 5px
    }

    50% {
        background-position: 400px 0
    }

    75% {
        background-position: 600px 5px
    }

    100% {
        background-position: 800px 0
    }
}

#catch {
    position: absolute;
    z-index: 999;
    top: 45%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: webfont;
    font-size: 3rem;
    font-weight: normal;
    text-align: center
}

#sp_navi,
#humberger,
#drawernav {
    display: none
}

.single {
    width: 1024px;
    margin: 0 auto 40px
}

.single.single_02 {
    background: #ffffff;
    border: 1px dashed #371e00;
    border-radius: 6px;
    padding: 15px 20px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

.contents .main {
    width: 70%
}

.contents .side {
    width: 26%
}

.bg_common {
    padding-top: 60px
}

.article {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #371e00
}

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

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

.column2 .child {
    width: 48.5%;
    margin: 0 3% 3% 0
}

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

.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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

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

.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: 22.7%;
    margin-right: 3%
}

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

.mtitle {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    color: #197BB6;
    font-family: webfont;
    font-size: 4rem;
    font-weight: normal;
    line-height: 1
}

.mtitle:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 50px;
    height: 2px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #11C2A7;
    text-align: center
}

.mtitle.mtitle_white:before {
    background-color: #ffffff
}

.mtitle_middle {
    font-family: webfont;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 0.25em 1em;
    border: 3px dotted #197BB6;
    border-radius: 3em 0.7em 2em 0.7em/.7em 2em 0.7em 3em
}

.mtitle_small {
    font-size: 1.8rem;
    font-weight: normal;
    border-bottom: 2px solid #dddddd;
    position: relative;
    margin-bottom: 10px
}

.mtitle_small:after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 2px solid #197BB6;
    bottom: -2px;
    width: 100px;
    color: #aaa
}

.mtitle_archive {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: normal
}

.mtitle_archive:before {
    color: #197BB6;
    font-family: "FontAwesome";
    content: "\f0ca";
    margin-right: 5px
}

.mtitle_ribon {
    background-color: #197BB6;
    color: #ffffff;
    display: table;
    max-width: 650px;
    position: relative;
    padding: 0.7em 1.5em 0 1em;
    margin: 0 0 25px -35px;
    height: 50px;
    line-height: 1.2;
    font-family: webfont;
    font-size: 2.5rem;
    font-weight: normal
}

.cbtn a {
    display: table;
    background: #11C2A7;
    border: 1px solid #11C2A7;
    padding: 0.8em 3em;
    border-radius: 100px;
    margin: 20px auto 0;
    color: #ffffff
}

.cbtn a:after {
    font-family: "FontAwesome";
    content: "\f105";
    margin-left: 10px
}

.cbtn a:hover {
    background: #ffffff;
    color: #11C2A7
}

.cbtn.cbtn_white a {
    background: #ffffff;
    border: 1px solid #ffffff
}

.cbtn.cbtn_white a:hover {
    background: transparent
}

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

.news-bl dt {
    float: left;
    width: 7em;
    padding: 3px 5px;
    line-height: 1.3;
    background: #11C2A7;
    color: #ffffff;
    text-align: center
}

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

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

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

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

.list_disc li {
    padding-left: 1.5em
}

.list_disc li:before {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f0da";
    margin: 0 5px 0 -0.8em;
    color: #197BB6
}

.list_check li:before {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f105";
    margin: 0 5px 0 -1.5em;
    color: #197BB6
}

.list_check li a:hover {
    text-decoration: underline
}

.list_note {
    font-size: 1.3rem
}

.list_note li {
    padding-left: 1.5em
}

.list_note li:last-child {
    margin-bottom: 0
}

.list_note li:before {
    content: "※";
    margin: 0 5px 0 -1.5em;
    color: #ff0000
}

.list_line li {
    position: relative;
    display: inline-block;
    padding: 0 10px
}

.list_line li:after {
    position: absolute;
    right: 0;
    content: "/"
}

.list_line li:last-child:after {
    display: none
}

table {
    width: 100%
}

table th,
table td {
    vertical-align: middle;
    border: 1px solid #cccccc;
    padding: 10px
}

table th {
    width: 25%;
    background: #f3f4e1;
    font-weight: normal;
    text-align: left
}

.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: 18%;
    position: relative;
    background: #11C2A7;
    color: #ffffff;
    font-weight: normal
}

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

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

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

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

.page {
    min-height: 300px
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
    width: 100% !important
}

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

.blog_list .blog_img {
    width: 35%;
    overflow: hidden
}

.blog_list .blog_img img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease
}

.blog_list .blog_detail {
    width: 60%
}

.blog_list .blog_detail .blog_ttl {
    font-weight: 500;
    margin-bottom: 5px
}

.blog {
    display: block;
    padding-bottom: 15px;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #323232;
    font-size: 1.3rem
}

.blog:hover {
    color: #323232
}

.blog:hover .blog_img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.date {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px
}

.date.date_02 {
    margin-bottom: 15px
}

.date:before {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px
}

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

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

.category_nav {
    border: 1px dashed #371e00
}

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

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

.category_nav li a:hover {
    background: #11C2A7;
    color: #ffffff
}

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

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

.gallery_ul li {
    width: 31.3%;
    margin: 0 3% 3% 0;
    text-align: center
}

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

.gallery_ul li a {
    display: block;
    overflow: hidden;
    height: 220px;
    position: relative
}

.gallery_ul li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto
}

.gallery_ul li span {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem
}

.box_style {
    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;
    background: #ffffff;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.box_style .box_image {
    width: 52%;
    overflow: hidden
}

.box_style .box_detail {
    width: 45%
}

.sns {
    margin: 30px 0;
    text-align: center
}

.sns li {
    display: inline-block;
    margin-left: 20px;
    vertical-align: top
}

.sns li a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-family: FontAwesome
}

.sns li a.fa-instagram {
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat
}

.sns li a.fa-instagram:before {
    content: "\f16d"
}

.sns li a.fa-facebook {
    background: #4267b2
}

.sns li a.fa-facebook:before {
    content: "\f082"
}

.sns li a.fa-twitter {
    background: #54a7da
}

.sns li a.fa-twitter:before {
    content: "\f099"
}

.sns li a.fa-youtube-play {
    background: #ff000e
}

.sns li a.fa-youtube-play:before {
    content: "\f16a"
}

.sns li span {
    display: block;
    font-size: 1rem
}

.commitment dt {
    margin-bottom: 10px;
    font-family: webfont;
    font-size: 2.5rem;
    letter-spacing: -2px
}

.macker {
    display: inline-block;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #4eade7));
    background-image: linear-gradient(left, transparent 50%, #4eade7 50%);
    background-repeat: repeat-x;
    background-size: 200% 0.3em;
    background-position: 0 1em;
    -webkit-transition: all 3.5s ease;
    transition: all 3.5s ease;
    padding: 0 5px
}

.macker.active {
    background-position: -100% 1em
}

.bnr_board {
    padding-bottom: 33px;
    background: url(../img/bg_bnr_board_btm.png) no-repeat center bottom;
    background-size: 1024px auto
}

.bnr_board .bnr_board_top {
    padding-top: 49px;
    background: url(../img/bg_bnr_board_top.png) no-repeat center top;
    background-size: 1024px auto
}

.bnr_board .bnr_board_inner {
    background-color: #eadcd4;
    padding: 0 10px
}

.bnr_board .bnr_board_inner .bnr_board_child {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px
}

.bg_top_bnr {
    background: url(../img/bg_top_bnr.png) no-repeat center;
    background-size: contain;
    margin-bottom: 5px;
    text-align: center;
    padding-top: 50px;
    height: 195px
}

.bg_top_bnr img {
    border: 3px solid #ffffff;
    width: 140px;
    height: 140px
}

.top_bnr_txt {
    font-size: 1.3rem
}

.spbr {
    display: none
}

.cut {
    overflow: hidden;
    zoom: 1;
    margin-bottom: 30px
}

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

.breadcrumb li {
    display: inline
}

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

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

.form .required {
    background: #11C2A7;
    color: #ffffff;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 2px;
    position: relative;
    top: -2px
}

.form .textarea,
.form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    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: 3%
}

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

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

.form button {
    cursor: pointer;
    position: relative;
    display: block;
    display: table;
    background: #11C2A7;
    border: 1px solid #11C2A7;
    margin: 0 auto;
    padding: 0.8em 4em;
    border-radius: 100px;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.form button:after {
    font-family: "FontAwesome";
    content: "\f105";
    margin-left: 10px
}

.form button:hover {
    background: #ffffff;
    color: #11C2A7
}

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

.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: #197BB6;
    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 #ffffff;
    box-shadow: 20px -1px #ffffff
}

.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-right: 20px;
    overflow: hidden;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

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

.k-bgBase {
    background-color: #197BB6
}

.k-bgSub {
    background-color: #11C2A7
}

.k-bgGrid {
    width: 100%;
    background-image: linear-gradient(#ddd 1px, transparent 0), linear-gradient(90deg, #ddd 1px, transparent 0);
    background-size: 20px 20px
}

.k-txtBase {
    color: #197BB6
}

.k-txtSub {
    color: #11C2A7
}

.k-border {
    border: solid thin #197BB6
}

.k-vscroll {
    overflow-y: auto
}

@media screen and (min-width: 701px) {
    .k-pcNone {
        display: none
    }

    .k-spNone {
        display: block
    }
}

@media screen and (max-width: 700px) {
    .k-pcNone {
        display: block
    }

    .k-spNone {
        display: none
    }
}

.k-imgFrame {
    border: 3px solid #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px 2px;
    box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px 2px
}

.k-linegd {
    background: repeating-linear-gradient(-45deg, #fff 0, #fff 5px, green 5px, green 10px)
}

.k-txtLink {
    padding: 0 0.3em
}

.k-txtLink:before {
    font-family: FontAwesome;
    content: "\f138";
    margin-right: 0.2em;
    text-decoration: none !important
}

.k-txtLink:hover {
    opacity: 0.6
}

.k-highlight {
    display: inline;
    font-weight: bold;
    line-height: 1.2;
    color: #7bc2ed;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #a8d7f3));
    background: linear-gradient(transparent 70%, #a8d7f3 70%)
}

.k-blur {
    position: relative;
    width: 100%
}

.k-blur img {
    width: 100%;
    height: 100%
}

.k-blur::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: inset 0 0 20px 20px #fff, inset 0 0 40px 40px #fff;
    box-shadow: inset 0 0 20px 20px #fff, inset 0 0 40px 40px #fff
}

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

.k-flex * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.k-flex img {
    vertical-align: middle;
    max-width: 100%
}

.k-flex.jc-left {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left
}

.k-flex.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.k-flex.jc-right {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right
}

.k-flex.col-1>.k-fitem {
    width: 100%
}

.k-flex.col-2>.k-fitem {
    width: 50%
}

.k-flex.col-3>.k-fitem {
    width: 33.3333333%
}

.k-flex.col-4>.k-fitem {
    width: 25%
}

.k-flex.col-5>.k-fitem {
    width: 20%
}

.k-flex>.k-fitem.k-w5 {
    width: 5%
}

.k-flex>.k-fitem.k-w10 {
    width: 10%
}

.k-flex>.k-fitem.k-w15 {
    width: 15%
}

.k-flex>.k-fitem.k-w20 {
    width: 20%
}

.k-flex>.k-fitem.k-w25 {
    width: 25%
}

.k-flex>.k-fitem.k-w30 {
    width: 30%
}

.k-flex>.k-fitem.k-w33 {
    width: 33.3333333%
}

.k-flex>.k-fitem.k-w35 {
    width: 35%
}

.k-flex>.k-fitem.k-w40 {
    width: 40%
}

.k-flex>.k-fitem.k-w45 {
    width: 45%
}

.k-flex>.k-fitem.k-w50 {
    width: 50%
}

.k-flex>.k-fitem.k-w55 {
    width: 55%
}

.k-flex>.k-fitem.k-w60 {
    width: 60%
}

.k-flex>.k-fitem.k-w65 {
    width: 65%
}

.k-flex>.k-fitem.k-w70 {
    width: 70%
}

.k-flex>.k-fitem.k-w75 {
    width: 75%
}

.k-flex>.k-fitem.k-w80 {
    width: 80%
}

.k-flex>.k-fitem.k-w85 {
    width: 85%
}

.k-flex>.k-fitem.k-w90 {
    width: 90%
}

.k-flex>.k-fitem.k-w95 {
    width: 95%
}

.k-flex>.k-fitem.k-w100 {
    width: 100%
}

.k-flex>.k-fitem.order1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.k-flex>.k-fitem.order2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.k-flex>.k-fitem.order3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.k-flex>.k-fitem.order4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

@media screen and (max-width: 700px) {
    .k-flex>.k-fitem {
        width: 100% !important
    }

    .k-flex>.k-fitem.order1,
    .k-flex>.k-fitem.order2,
    .k-flex>.k-fitem.order3,
    .k-flex>.k-fitem.order4 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important
    }

    .k-flex.col-4>.k-fitem {
        width: 50% !important
    }

    .k-flex.fix.col-1>.k-fitem {
        width: 100% !important
    }

    .k-flex.fix.col-2>.k-fitem {
        width: 50% !important
    }

    .k-flex.fix.col-3>.k-fitem {
        width: 33.3333333% !important
    }

    .k-flex.fix.col-4>.k-fitem {
        width: 25% !important
    }

    .k-flex.fix.col-5>.k-fitem {
        width: 20% !important
    }

    .k-flex.fix>.k-fitem.k-w5 {
        width: 5% !important
    }

    .k-flex.fix>.k-fitem.k-w10 {
        width: 10% !important
    }

    .k-flex.fix>.k-fitem.k-w15 {
        width: 15% !important
    }

    .k-flex.fix>.k-fitem.k-w20 {
        width: 20% !important
    }

    .k-flex.fix>.k-fitem.k-w25 {
        width: 25% !important
    }

    .k-flex.fix>.k-fitem.k-w30 {
        width: 30% !important
    }

    .k-flex.fix>.k-fitem.k-w33 {
        width: 33.3333333% !important
    }

    .k-flex.fix>.k-fitem.k-w35 {
        width: 35% !important
    }

    .k-flex.fix>.k-fitem.k-w40 {
        width: 40% !important
    }

    .k-flex.fix>.k-fitem.k-w45 {
        width: 45% !important
    }

    .k-flex.fix>.k-fitem.k-w50 {
        width: 50% !important
    }

    .k-flex.fix>.k-fitem.k-w55 {
        width: 55% !important
    }

    .k-flex.fix>.k-fitem.k-w60 {
        width: 60% !important
    }

    .k-flex.fix>.k-fitem.k-w65 {
        width: 65% !important
    }

    .k-flex.fix>.k-fitem.k-w70 {
        width: 70% !important
    }

    .k-flex.fix>.k-fitem.k-w75 {
        width: 75% !important
    }

    .k-flex.fix>.k-fitem.k-w80 {
        width: 80% !important
    }

    .k-flex.fix>.k-fitem.k-w85 {
        width: 85% !important
    }

    .k-flex.fix>.k-fitem.k-w90 {
        width: 90% !important
    }

    .k-flex.fix>.k-fitem.k-w95 {
        width: 95% !important
    }

    .k-flex.fix>.k-fitem.k-w100 {
        width: 100% !important
    }

    .k-flex.fix>.k-fitem.order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important
    }

    .k-flex.fix>.k-fitem.order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important
    }

    .k-flex.fix>.k-fitem.order3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important
    }

    .k-flex.fix>.k-fitem.order4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important
    }
}

.k-btn1 a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 5px 30px;
    margin: auto;
    color: #fff;
    border: solid thin #197BB6;
    background-color: #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50px
}

.k-btn1 a:before {
    font-family: FontAwesome;
    content: "\f0a9";
    padding-right: 5px
}

.k-btn1 a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #197BB6
}

.k-btnTel1 a {
    display: inline-block;
    margin: auto;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none
}

.k-btnTel1 a:before {
    font-family: FontAwesome;
    content: "\f095";
    padding-right: 5px
}

.k-btnTel1 a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.5
}

.k-btnTel2 a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 30px;
    margin: auto;
    color: #fff;
    border: solid thin #197BB6;
    background-color: #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none
}

.k-btnTel2 a:before {
    font-family: FontAwesome;
    content: "\f095";
    padding-right: 5px
}

.k-btnTel2 a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #197BB6
}

.k-btnMail1 a {
    display: inline-block;
    margin: auto;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none
}

.k-btnMail1 a:before {
    font-family: FontAwesome;
    content: "\f003";
    padding-right: 5px
}

.k-btnMail1 a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.5
}

.k-btnMail2 a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 30px;
    margin: auto;
    color: #fff;
    border: solid thin #197BB6;
    background-color: #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none
}

.k-btnMail2 a:before {
    font-family: FontAwesome;
    content: "\f003";
    padding-right: 5px
}

.k-btnMail2 a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #197BB6
}

.k-btnAnchor {
    position: relative;
    display: block;
    width: 100%;
    font-weight: bold;
    height: 50px;
    background-color: #197BB6;
    color: #fff;
    border: solid thin #197BB6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 100px
}

.k-btnAnchor .btnTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold
}

.k-btnAnchor:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.5
}

.k-defList1 {
    width: 100%;
    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
}

.k-defList1 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.k-defList1 dt {
    display: block;
    width: 8em;
    border-bottom: solid thin #ccc;
    padding: 5px 0;
    margin-bottom: 10px
}

.k-defList1 dt p {
    background-color: #197BB6;
    color: #fff;
    padding: 0 10px
}

.k-defList1 dd {
    width: calc(100% - 8em);
    padding: 5px 10px;
    margin-bottom: 10px;
    border-bottom: solid thin #ccc;
    display: block
}

@media screen and (max-width: 700px) {
    .k-defList1 dt {
        width: 100%;
        border-bottom: none;
        margin-bottom: 0
    }

    .k-defList1 dd {
        width: 100%
    }
}

.k-defList2 {
    width: 100%
}

.k-defList2 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.k-defList2 dt {
    color: #777
}

.k-defList2 dt p::after {
    display: inline;
    font-family: FontAwesome;
    content: "\f101";
    padding-left: 5px
}

.k-defList2 dd {
    margin-bottom: 10px;
    border-bottom: solid thin #ccc;
    font-size: 0.8em
}

.k-table1 {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0
}

.k-table1 th {
    padding: 10px;
    border: solid thin #ccc;
    text-align: center;
    background-color: #197BB6;
    color: #fff;
    font-weight: 900
}

.k-table1 td {
    padding: 10px;
    border: solid thin #ccc;
    text-align: center
}

.k-table1 tr:nth-child(odd) {
    background-color: #eee
}

.k-table2 {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse
}

.k-table2 tr {
    border-bottom: solid 2px white
}

.k-table2 tr:last-child {
    border-bottom: none
}

.k-table2 th {
    vertical-align: middle;
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #197BB6;
    color: white;
    text-align: center;
    padding: 10px 0
}

.k-table2 th:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
    border-left: 10px solid #197BB6;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent
}

.k-table2 td {
    vertical-align: middle;
    text-align: left;
    width: 70%;
    background-color: #f0f0f0;
    padding: 10px 20px
}

.k-htitle08 {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 10px;
    border-bottom: solid 2px #197BB6
}

.k-htitle08 span {
    display: inline-block;
    height: 100%;
    position: relative;
    color: #fff;
    background-color: #197BB6;
    border-radius: 5px 5px 0 0;
    padding: 0 1.4em
}

.k-htitle08 span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.4em solid #fff
}

.form-contents dl dt:not(.pattern-exclusion) span.required::before,.form-contents .submit-btn{
    background: #11C2A7!important;
    border:1px solid #11C2A7!important;
  }
  .form-contents :not(.pattern-exclusion) button:hover {
    color: #11C2A7!important;
    background: #fff!important;
    border: solid 2px #11C2A7!important;
  }
  .form-contents .submit-btn:hover::before {
        background-color: #11C2A7!important;
  }
  .form-contents dl dt:not(.pattern-exclusion) span.optional::before {
    padding: 5px 8px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 20px;
    position: relative;
    top: -2px;
  }
  .form-contents dl dt:not(.pattern-exclusion) span.optional::before {
    content: '任意';
    color: #fff!important;
    background: #999!important;
  }

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

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


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