@charset "utf-8";

/* android対策 */
p { background-image: url(../images/pix.gif); }

/*--------------------------------------------------------
★レスポンシブ■タブレット対応
--------------------------------------------------------*/
@media screen and (max-width: 1080px) {
    /* layout */
    html{
        width: 1080px;
    }
    body {
        width: 1080px;
    }
    .wrapper {
        position: relative;
        width: 1080px;
        margin: auto;
        padding: 0;
    }
    header{
        width: 1080px;
    }
    footer{
        width: 1080px;
    }
}

/*--------------------------------------------------------
★レスポンシブ■スマホ表示切替ボタン
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
    .contact_btn a{
        margin-left: 0;
    }
    a#btnSP{
        display: none;
    }
    a#btnPC{
        position: fixed;
        display: block;
        width: auto;
        height: auto;
        font-size: 12px;
        padding: 10px 20px;
        border-radius: 8px;
        box-sizing: border-box;
        border: 2px solid #000;
        background-color: #fff;
        text-align: center;
        color: #000;
        text-decoration: none;
        line-height: 1em;
        margin-top: 4px;
        left: 10px;
        bottom: 20px;
        z-index: 2;
    }
}
@media screen and (min-width: 481px) {
    .switch{
        display: none;
        height: 0;
    }
    a#btnSP{
        display: none;
    }
    a#btnPC{
        display: none;
    }
}

@media screen and (min-width:1021px) {
    .switch{
        display: block;
        height: auto;
    }
    a#btnPC{
        display: none;
    }
    a#btnSP{
        position: fixed;
        display: block!important;
        width: 300px;
        height: auto;
        z-index: 100;
        font-size: 24px;
        padding: 8px;
        text-align: center;
        border-radius: 22px;
        background-color: #000;
        box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
        color: #fff;
        text-decoration: none;
        bottom: 40px;
        left: 15px;
        z-index: 99999999!important;
    }
}
@media screen and (min-width: 1023px) {
    .switch{
        display: none;
        height: 0;
    }
    a#btnSP{
        display: none!important;
    }
    a#btnPC{
        display: none;
    }
}
/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 481px) {
    .pc_none{
        display: none!important;
    }
}
@media screen and (max-width: 480px) {
    /* header */
    header{
        max-width: 480px;
        width: 100%;
        height: auto;
        border-top: none;
        padding-top: 50px;
    }
    #top_menu{
        display: none;
    }
}
    /* ------------------------------------------------------------
       引出しメニュー
       ------------------------------------------------------------ */
    header .wrapper
    #navTgl:checked ~ .contents {
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }
    .fixed_header {
    position: fixed;
    display: block;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 3px 1px rgba(0,0,0,0.2);
}
    .fixed_header .logo {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    color: #000;
    margin-top: 0;
    transition: .4s;
    height: 50px!important;
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-left: 4px;
    font-size: 16px;
    padding-top: 10px;
}
    .fixed_header .logo span{
        display: block;
        font-size: 12px;
        line-height: 1em;
    }
    .fixed_header label {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    }
    /* :::::: toggle button :::::: */
    #navTgl{
        display: none;
        overflow: hidden;
    }
    .fixed_header label {
        cursor: pointer;
        position: fixed;
        top: 0;
        right: 0;
    }
    .fixed_header .open {
        z-index: 9999;
        width: 50px;
        height: 50px;
        color: #FFF;
        background-color: #02aee7;
        font-size: 2em;
        line-height: 50px;
        text-align: center;
        -webkit-transition: background-color .6s, -webkit-transform .6s;
        transition: background-color .6s, transform .6s;
    }
    #navTgl:checked + .open {
        background-color: #006c89;
        color: #FFF;
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }
    .fixed_header .close {
        pointer-events: none;
        z-index: 1;
        width: 100%;
        height: 100%;
        transition: background-color .6s;
    }
    #navTgl:checked ~ .close{
        pointer-events: auto;
        background-color: rgba(0,0,0,.3);
    }

    /* :::::: drawer menu :::::: */
    .menu {
        z-index: 10000;
        position: fixed;
        overflow: auto;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        padding: 10px;
        background: rgba(0,0,0,0.7);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform .6s;
        transition: transform .6s;
        box-sizing: border-box;
    }
    .index #navTgl:checked ~ .menu {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .menu li a {
        color: #FFF;
        font-weight: 400;
    }
    .menu ul{
        padding: 0;
    }
    .menu li {
        border-bottom: 1px solid rgba(255,255,255,.3);
        font-size: .9em;
        line-height: 1.4;
    }

    .menu li a{
        -moz-transition: .2s;
        -webkit-transition: .2s;
        -o-transition: .2s;
        -ms-transition: .2s;
        transition: .2s;
        display: block;
        padding: 1em 1em 0.8em 1.5em;
        text-decoration: none;
        transition: background-color .6s;
    }
    .menu li a:hover {
        -moz-transition: .2s;
        -webkit-transition: .2s;
        -o-transition: .2s;
        -ms-transition: .2s;
        transition: .2s;
        color: #FFF;
        background-color: #A1915D;
    }
.sub_menu{
    border: none!important;
}
.sub_menu label {
    background: green;
    color: #fff;
    padding: 10px;
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
position: relative;
background:none;
padding: 1em 1em 0.8em 1.5em;
}
.sub_menu label::after {
    position: absolute;
    content: "\f078";
    font-family: FontAwesome;
    right: 6px;
    top: 13px;
    z-index: 9999;
}

.sub_menu input[type="checkbox"].on-off{
    display: none;
}

.sub_menu ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
font-size:14px;
}
.sub_menu li{
padding-left:16px;
}


.sub_menu input[type="checkbox"].on-off + ul{
    height: 0;
    overflow: hidden;
}

.sub_menu input[type="checkbox"].on-off:checked + ul{
    height: 84px;
}
.sub_menu #Panel3[type="checkbox"].on-off:checked + ul{
    height: 164px;
}


/*--------------------------------------------------------
★レスポンシブ■コンテンツ部分
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
html{
    max-width: 480px;
        width: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%!important;
}
body {
    max-width: 480px;
    min-width: 320px;
    width: 100%;
    overflow-x: hidden!important;
    box-shadow: none;
    color: #000;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0;
    -webkit-text-size-adjust: 100%!important;
    top: 0!important;
    background: url(../images/bg.jpg);
    -webkit-background-size: 1280px auto;
    background-size: 1280px auto;
}

/* layout
------------------------------ */
.wrapper{
    max-width: 480px;
    width: 92%!important;
    margin: 0;
    padding: 0 4%;
}
.sp_none{
    display: none;
}
/* Common
------------------------------ */
.fl_l{
    float: none;
}
.fl_r{
    float: none;
}
.float::before,
.float::after,
.wrapper::before,
.wrapper::after{
    content: " ";
    display: block;
    clear: both;
}
.btn_m:hover,
.btn_s:hover{
    opacity: 1;
}
.btn{
    background: #80bf21;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 5px 0px #559d2f;
    border-radius: 6px;
    font-family: "M PLUS Rounded 1c";
    transition: .25s;
}
.btn:active{
    box-shadow: none;
    transform: translateY(5px);
}
.mb_30{
    margin-bottom: 30px!important;
}
.mb_50{
    margin-bottom: 50px!important;
}
/* Header
------------------------------ */
header{
    background: #fff;
}
header .wrapper{
    padding: 10px 0;
    display: none;
}
header .fl_l h1{
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 6px;
}
header .header_logo h2{
    text-indent: -9999px;
    background: url(../images/logo_header.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 630px;
    height: 40px;
}
header .fl_r{
    padding-top: 12px;
}
header .fl_r p{
    font-size: 14px;
}
header .fl_r .tel{
    background: url(../images/tel.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 310px;
    height: 40px;
    text-indent: -9999px;
}
header nav{
    background: #02aae3;
    display: none;
}
header nav .wrapper{
    padding: 0;
}
header nav ul{
    letter-spacing: -.4em;
    position: relative;
}
header nav ul::before{
    content: "";
    position: absolute;
    left: 0;
    height: 80%;
    width: 1px;
    background: #fff;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
header nav li{
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    position: relative;
}
header nav li::after{
    content: "";
    position: absolute;
    right: 0;
    height: 80%;
    width: 1px;
    background: #fff;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
header nav a{
    width: 216px;
    font-family: "M PLUS Rounded 1c";
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: block;
    padding: 16px 0;
}
header nav a:hover{
    background: #fff;
    color: #02aae3;
    opacity: 1;
}
header nav .tel{
    display: none;
}
.index_top{
    position: relative;
    width: 100%;
    height: 0;
    background: url(../images/index_catch_sp.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    padding-bottom: 80%;
}
.index_top::before{
    content: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 44px;
    background: url(../images/index_catch_bg2.png) repeat-x;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
}
.index_top h2{
    text-indent: -9999px;
}
/* Fixed Header
------------------------------ */
.clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: .5s;
    transform: translateY(-200%);
    background: #fff;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
}
.is-show {
    transform: translateY(0);
}
.is-show li::after{
    content: "";
    position: absolute;
    right: 0;
    height: 80%;
    width: 1px;
    background: #02aae3;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.is-show a{
    color: #02aae3;
    padding: 16px 0;
    width: 150px;
    font-size: 16px;
}
.is-show a:hover{
    color: #fff;
    background: #02aae3;
}
.is-show .tel{
    display: inline-block;
    padding: 0 30px;
}
.is-show .tel::after{
    content: none;
}
.is-show .tel p{
    background: url(../images/tel.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 260px;
    height: 40px;
    text-indent: -9999px;
}
/* Index
------------------------------ */
.index1{
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: auto;
}
.index1 .wrapper::before{
    content: "";
    position: absolute;
    background: url(../images/index1_before.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 60px;
    height: 60px;
    top: -60px;
    right: 10px;
}
.index1 .wrapper::after{
    content: "";
    position: absolute;
    background: url(../images/index1_after.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 80px;
    height: 70px;
    top: 120px;
    left: 10px;
    z-index: -1;
}
.index1 h2{
    font-size: 24px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
}
.index1 p{
    margin: 40px 0 60px;
}
.index1 ul{
    letter-spacing: -.4em;
    margin-bottom: 40px;
}
.index1 li{
    width: 90%;
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    margin-right: 0;
    margin-bottom: 40px;
}
.index1 li:last-child{
    margin-right: 0;
}
.index1 li img{
    width: 100%;
    height: auto;
}
.index1 li h3{
    font-size: 22px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    margin: 20px 0;
}
.index1 li:nth-child(1) h3{
    color: #ed8924;
}
.index1 li:nth-child(2) h3{
    color: #3ea03f;
}
.index1 li:nth-child(3) h3{
    color: #eb5a76;
}
.index1 li p{
    text-align: left;
    margin: 0;
}
.index1 a{
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 20px;
}
.index2{
    text-align: center;
    padding-bottom: 100px;
}
.index2 h2{
    font-size: 24px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}
.index2 h2::before{
    content: "";
    position: absolute;
    background: url(../images/index2_before.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 100px;
    height: 100px;
    bottom: 0;
    left: -180px;
}
.index2 h2::after{
    content: "";
    position: absolute;
    background: url(../images/index2_after.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: -180px;
}
.index2 .fl_l{
    background: #f7f7f7;
    padding: 20px 10px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.index2 .fl_l img{
    width: 100%;
    height: auto;
}
.index2 .fl_r{
    width: 100%;
    text-align: left;
}
.index2 .fl_r span{
    font-size: 14px;
    color: #808080;
}
.index2 .fl_r .btn{
    width: 100%;
    margin-top: 50px;
    display: inline-block;
}
.index3{
    border-top: 8px solid #f0d460;
    background: rgba(240,212,96,.23);
    padding: 80px 0;
    text-align: center;
}
#access{
    padding-top: 80px;
    margin-top: -80px;
}
.index3 h2{
    font-size: 32px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}
.index3 h2::before{
    content: "";
    position: absolute;
    background: url(../images/index3_before.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 55px;
    height: 75px;
    bottom: 0;
    left: -230px;
}
.index3 h2::after{
    content: "";
    position: absolute;
    background: url(../images/index3_after.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 65px;
    height: 95px;
    bottom: 0;
    right: -240px;
}
#gmap{
    width: 100%;
    height: 300px;
    background: #ccc;
    margin-bottom: 30px;
}
.index3 .fl_r{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.index3 .fl_l{
    width: 100%;
    text-align: left;
}
.index3 .fl_l h3{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.index3 .fl_l p{
    margin-bottom: 20px;
}
.index3 .fl_l h3.place::before{
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    background: url(../images/index3_icon1.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.index3 .fl_l h3.car::before{
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    background: url(../images/index3_icon2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.index3 .fl_l h3.train::before{
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    background: url(../images/index3_icon3.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
/* Sub Common
------------------------------ */
.sub_top .wrapper{
    display: block;
}
.sub_top{
    height:154px;
    background: url(../images/sub_catch1.png) repeat-x,url(../images/sub_catch3.jpg) no-repeat, url(../images/sub_catch5.jpg) repeat-x;
    background-size: 875px 65px,1280px 215px,1280px 215px;
    background-position: center bottom,center center,center;
}
.sub_top h1{
    font-size: 24px;
    color:#0273C7;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    /* for modan browser */
    text-shadow:0px 3px 1px #fff,0px 2px 1px #fff,1px 2px 1px #fff,2px 2px 1px #fff,2px 1px 1px #fff,2px 0px 1px #fff,3px 0px 1px #fff,2px -1px 1px #fff,2px -2px 1px #fff,2px -3px 1px #fff,1px -3px 1px #fff,0px -3px 1px #fff,-1px -3px 1px #fff,-2px -3px 1px #fff,-3px -3px 1px #fff,-3px -2px 1px #fff,-3px -1px 1px #fff,-3px 0px 1px #fff,-3px 1px 1px #fff,-3px 2px 1px #fff,-2px 2px 1px #fff,-1px 2px 1px #fff;

    /* for IE */
    filter:dropshadow(color=#fff,offx=0,offy=3,positive=1),dropshadow(color=#fff,offx=2,offy=1,positive=1),dropshadow(color=#fff,offx=2,offy=-1,positive=1),dropshadow(color=#fff,offx=1,offy=-3,positive=1),dropshadow(color=#fff,offx=-2,offy=-3,positive=1),dropshadow(color=#fff,offx=-3,offy=-2,positive=1),dropshadow(color=#fff,offx=-3,offy=1,positive=1),dropshadow(color=#fff,offx=-1,offy=2,positive=1);
    margin-top: 54px;
    letter-spacing: .2em;
}
.sub_top h1 span{
    font-size: 16px;
    text-shadow:none;
    margin-left: 40px;
    position: relative;
    letter-spacing: .1em;
    }
.sub_top h1 span::before{
    content: "";
    position:absolute;
    height: 27px;
    width:2px;
    background-color: #0273C7;
    left:-20px;
    top:-5px;
}
.subh2{
    font-size: 22px;
    color: #3F3F3F;
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}

#about .sub_top .wrapper::after{
    content: none;
    position: absolute;
    height: 215px;
    width: 330px;
    background: url(../images/sub_catch2.png) no-repeat;
    background-size: contain;
    top:0;
    right:0;
}
.sub-section{
    padding-bottom: 60px;
}
/* Breadcrumb
------------------------------ */
#breadcrumb{
    margin-bottom: 30px;
}
#breadcrumb ul{
     letter-spacing: -.4em;
     padding:15px 0;
}
#breadcrumb ul li{
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    margin-right: 30px;
    position:relative;
     }
#breadcrumb ul li a{
    color: #000;
} 
#breadcrumb ul li:nth-child(1){
    padding-left: 24px;
}
#breadcrumb ul li:nth-child(1)::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: url(../images/sub_home_icon.png) no-repeat;
    background-size: contain;
    top:0;
    left:0;
    bottom:0;
    margin:auto 0;
}
#breadcrumb ul li::after{
    content: "";
    position: absolute;
    height: 4px;
    width: 4px;
    border-top: 1px #000 solid;
    border-right: 1px #000 solid;
    transform: rotate(45deg);
    top:0;
    right:-15px;
    bottom:0;
    margin:auto 0;
}
#breadcrumb ul li:last-child::after{
    content:none;
}
/* about
------------------------------ */
.about-1 .fl_l img{
    height: auto;
    width: 100%;
}
.about-1 .fl_r {
    width: 100%;
    height: auto;
}
.about-1 .float{
    background-color:#fff;
    border: 1px #F2F2F2 solid;
    border-radius: 10px;
    padding: 35px 12px;
}
.about-1 h3{
    font-size: 16px;
    color: #ED5A76;
    letter-spacing: 1.2;
    margin: 12px 0 18px;
    position: relative;
}
.about-1 h3::before{
    content: none;
    position: absolute;
    background: url(../images/sub_about1-2.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 70px;
    height: 45px;
    right: -9px;
    top: -10px;
}
p.name {
    position: relative;
    text-align: right;
    font-weight: 700;
    margin-top: 10px;
}
.about-2 dt{
    float: left;
    padding: 9px;
    width: 100%;
    height: auto;
    background-color: #C4E7F7;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin-bottom: 9px;
}
.about-2 dd{
    background-color:#fff;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 13px;
    border-radius: 10px 10px 10px 10px;
    text-align: center;
    padding: 2px 12px 9px;
}
.about-3 .fl_r{
    position: relative;
}
.about-3 dt{
    float:left;
    font-size: 18px;
    color:#0273C7;
    text-align: center;
    position: relative;
}
.about-3 dt span{
    font-size: 12px;
    display: block;
}
.about-3 dd{
    padding-left:90px; 
    margin-bottom: 25px;
}
.about-3 dd span{
    margin-right:20px;
}
.about-3 dt::after{
    content: none;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: #0273C7 2px solid;  
    background-color: #fff;
    box-sizing: border-box;
    top: 3px;
    right: -65px;
}
.about-3 dl::before{
    content: none;
    position: absolute;
    height: 310px;
    width: 2px;
    border: #0273C7 2px solid;
    box-sizing: border-box;
    top: 55px;
    left: 153px;
    bottom: 0;
    margin:auto 0;
}
.about-3 .fl_r img {
    position: absolute;
    display: none;
    height: auto;
    width: 100%;
    right: 0;
    top: 300px;
}
/* contact
------------------------------ */
#contact .sub_top .wrapper::after{
    content: none;
    position: absolute;
    height: 215px;
    width: 330px;
    background: url(../images/sub_catch5.png) no-repeat;
    background-size: contain;
    top:0;
    right:0;
}
.sub_contact_h2 {
    font-size: 22px;
    color: #3F3F3F;
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
.contact-1{
    text-align: center;
}
.contact-1-2 img{
    width: 100%;
    height: auto;
    margin-top: 13px;
}
.contact-2{
    text-align: center;
}

#mailformpro {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #fff;
    margin: 45px auto;
    padding: 20px 30px 38px;
    box-sizing: border-box;
}
#contact dt {
    float: left;
    padding: 10px 0 0 0;
    position: relative;
    color: #3F3F3F;
    text-align: left;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}
#contact dd {
    padding: 8px 0 8px 370px;
    border-bottom: 1px dashed #0273C7;
}
#contact dt .must {
    background: #ED5A76;
    color: #fff;
    padding: 4px 4px 0px 4px;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: .2em;
    text-align: center;
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 0;
    margin: auto 0;
    display: inline-block;
    height: 22px;
    line-height: 1em;
    box-sizing: border-box;
}
#contact dt .any {
    background: #808080;
    color: #fff;
    padding: 4px 4px 0px 4px;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: .2em;
    text-align: center;
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 0;
    margin: auto 0;
    display: inline-block;
    height: 22px;
    line-height: 1em;
    box-sizing: border-box;
}
#contact dd input {
    border: none;
    background: #D2F2FF;
    width: 100%;
    height: 30px;
    font-size: inherit;
    margin: 10px 0 13px 0;
}
#contact dd textarea {
    width: 100%!important;
    height: 162px!important;
    border: none;
    background: #D2F2FF;
    vertical-align: top;
    font-size: inherit;
    resize: none;
    margin: 18px 0;
}
#privacy_policy {
    border: 1px solid #D2F2FF;
    margin: 30px auto;
    padding: 30px;
    height: 213px;
    text-align: left;
    overflow: scroll;
    box-sizing: border-box;
}
#privacy_policy h3 {
    font-size: 16px;
    color:#0273C7;
    font-weight: 600;
    margin-bottom: 10px;
}
.submit {
    width: 100%;
    height: auto;
    margin: 20px auto 0;
    display: block;
    background: #80bf21;
    text-align: center;
    position: relative;
    padding: 10px 0;
    box-shadow: 0 5px 0px #559d2f;
    border-radius: 6px;
    font-family: "M PLUS Rounded 1c";
    transition: .25s;
    color: #fff;
    font-size: 16px;
    border: none;
}
/* Thanks
------------------------------ */
.thanks-1 span {
    color: #29A6DF;
    font-weight: 600;
    padding: 0 4px;
}
/* Footer
------------------------------ */
footer{
    width: 100%;
}
.footer_contact{
    background: url(../images/footer_contact_bg.jpg);
    -webkit-background-size: 64px auto;
    background-size: 64px auto;
    padding: 80px 0;
    text-align: center;
}
.footer_contact_contents{
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    display: block;
    margin: 0 auto;
    position: relative;
}
.footer_contact_contents::before{
    content: none;
    position: absolute;
    background: url(../images/footer_contact-1.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 185px;
    height: 245px;
    bottom: 0;
    left: 26px;
}
.footer_contact_contents::after{
    content: "";
    position: absolute;
    background: url(../images/index1_before.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
}
.footer_contact_contents h3{
    font-size: 22px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: .06em;
}
.footer_contact_contents h2{
    position: relative;
    padding-left: 1.2em;
}
.footer_contact_contents h2::before{
    content: "▼";
    position: absolute;
    color: #29a4dd;
    left: 0;
    top: 0;
}
.footer_contact_contents p{
    font-size: 14px;
    letter-spacing: .1em;
}
.footer_contact_contents .tel{
    background: url(../images/tel.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 0;
    text-indent: -9999px;
    margin-top: 6px;
    padding-bottom: 14%;
}
.footer_contact_contents .btn{
    width: 100%;
    margin-top: 10px;
    display: block;
}
.footer_contact_contents .fl_r{
    margin-left: 0;
    margin-top: 10px;
}
.footer_recruit{
    padding: 60px 0;
}
.footer_recruit a h2{
    text-indent: -9999px;
    background: url(../images/footer_recruit_sp.jpg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
}
.footer_recruit a{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.footer_bottom{
    background: #02aee7;
    padding: 60px 0;
}
.footer_logo{
    width: 100%;
    height: auto;
    background: none;
    text-indent: 0;
    display: block;
    margin-bottom: 20px;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}
.footer_logo span{
    display: block;
    font-size: 16px;
}
.footer_bottom .fl_l p{
    display: block;
    color: #fff;
    letter-spacing: .02em;
    margin-bottom: 20px;
}
.footer_bottom .fl_l p.mr30{
    margin-right: 30px;
}
.footer_bottom .fl_r{
    padding-right: 30px;
    display: none;
}
.footer_bottom .fl_r li{
    display: inline-block;
    margin-right: 50px;
    vertical-align: top;
}
.footer_bottom .fl_r li a{
    display: block;
    margin-bottom: 14px;
}
.copy{
    text-align: center;
    padding: 10px 0 70px;
    background: #fff;
}
.copy a{
    color: #000;
    border-bottom: 1px solid #000;
}
.copy a:hover{
    color: #02aee7;
    border-bottom: 1px solid #02aee7;
}
/* Page Top
------------------------------ */
.pagetop {
    position: fixed;
    bottom: 12px;
    right: 30px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: 10!important;
    border: 1px solid #fff;
}
.pagetop a{
    display: block;
    width: 50px;
    height: 30px;
    text-indent: -9999px;
    background: #02aee7;
    text-align: center;
    font-weight: bold;
    color: #FFF;
    font-size: 30px;
    padding-top: 20px;
}
.pagetop a::before,
.pagetop a::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.pagetop a:before{
    width: 48px;
    height: 30px;
    background: #02aee7;
}
.pagetop a:after{
    left: 15px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.pagetop.show{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.pagetop a:hover{
    text-decoration: none;
    background: #FFF;
}
.pagetop a:hover:before{
    border-color: #02aee7;
    background: #FFF;
}
.pagetop a:hover:after{
    background: none;
    border-top: 1px solid #02aee7;
    border-right: 1px solid #02aee7;
}



}