@charset "UTF-8";

/* CSS Document */


/*■01.RESET HTML*/

img {
    margin: 0px;
    padding: 0px;
    border: 0px;
    max-width: 100%;
}

.ov_hover:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70)";
}

a {
    color: #4a3c29;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.5s;
}

html {
    overflow-y: auto;
}

#wrapper {
    min-width: 1000px;
}

body {
    font-family: "Noto Sans Japanese", "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", sans-serif;
    color: #383838;
    line-height: 1.5;
    font-size: 16px;
}


/*■02.CLEAR FLOAT*/

.clearfix:after {
    clear: both;
    display: block;
    content: " ";
    height: 0px;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}


/* Hide these rules from IE-mac \*/

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.hidden {
    display: none;
}


/*■03.USE MEDIA*/

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.media,
.media-body {
    overflow: hidden;
}

.media-text:after {
    clear: both;
    display: block;
    content: "";
    height: 0px;
    visibility: hidden;
}

.mrg_auto {
    margin: auto;
}


/*■04.LAYOUT*/

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}


/*■05.FLEX*/

.dis_flex {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
}


/*justify-content*/

.flex_jus_start {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
}

.flex_jus_end {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
}

.flex_jus_center {
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
}

.flex_jus_between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.flex_jus_around {
    justify-content: space-around;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
}

.flex_jus_ini {
    justify-content: initial;
    -webkit-justify-content: initial;
    -moz-justify-content: initial;
    -ms-justify-content: initial;
}


/*align-items*/

.flex_align_item_start {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
}

.flex_align_item_end {
    align-items: flex-end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
}

.flex_align_item_stretch {
    align-items: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
}

.flex_align_item_baseline {
    align-items: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
}

.flex_align_item_center {
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
}

.flex_align_item_ini {
    align-items: initial;
    -webkit-align-items: initial;
    -moz-align-items: initial;
    -ms-align-items: initial;
}

.flex-container {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_bg {
    width: 100%;
    margin-right: -100%;
}

.flex_content {
    width: 100%;
    position: relative;
}

.dis_pc {
    display: block;
}

.dis_sp {
    display: none;
}
.dis_sp_414{
    display: none;
}
.cm_tit {
    text-align: center;
    margin-bottom: 27px;
}

.cm_text {
    text-align: center;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 1px;
}

.box_button {
    width: 92%;
    margin: auto;
}

.box_button ul {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.box_button ul li {
    width: 44%;
    text-align: center;
    position: relative;
}

.box_button ul li a {
    background: url(../images/arr_btn1.png) center right 10px no-repeat #14c4c7;
    display: block;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    box-shadow: 0 2px 0 #009b9e;
    -webkit-box-shadow: 0 2px 0 #009b9e;
    -moz-box-shadow: 0 2px 0 #009b9e;
    -ms-box-shadow: 0 2px 0 #009b9e;
    padding: 13px 10px;
    border-radius: 25px;
    letter-spacing: 1px;
    text-shadow: -1px 2px 0px #6c9396;
    -webkit-text-shadow: -1px 2px 0px #6c9396;
    -moz-text-shadow: -1px 2px 0px #6c9396;
    -ms-text-shadow: -1px 2px 0px #6c9396;
}

.box_button ul li a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
}

.cm_btn2 a {
    display: block;
    text-align: center;
    border: 2px solid #0098da;
    color: #0098da;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.cm_btn_contact a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: url(../common_img/cm_icon_mail.png) top left no-repeat #ff8932;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    padding: 16px 10px;
    text-align: center;
}

header .h_header .h_tel_contact {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
}

header .h_header .h_tel_contact .hlogo {
    width: 11.5%;
    text-align: center;
}

header .h_header .h_tel_contact .hcontact_menu {
    width: 83.3%;
    padding-bottom: 17px;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    background: #0098da;
    border-radius: 0 0 5px 5px;
    margin-bottom: 16px;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor ul {
    width: 53%;
    padding: 0 25px;
    margin-top: -5px;
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor ul li a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.3;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_tel {
    width: 28%;
    border-left: 2px solid #0082cd;
    padding: 0 0 0 15px;
    letter-spacing: -1px;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_tel img,
header .h_header .h_tel_contact .hcontact_menu .box_infor .h_tel span {
    display: block;
    color: #fff;
    font-size: 12px;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_text {
    width: 21%;
    background: #ff8932;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    border-radius: 0 0 5px 0;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_text a {
    color: #fff;
    display: block;
    padding: 1px 0 10px;
    text-decoration: none;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_text .sp01 {
    font-size: 19px;
    border-bottom: 2px solid #ffff00;
}

header .h_header .h_tel_contact .hcontact_menu .box_infor .h_text .sp02 {
    font-size: 18px;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul {
    padding: 0 0 0 10px;
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li {
    position: relative;
    text-align: center;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li a {
    text-align: center;
    text-decoration: none;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li a:hover img {
    transform: rotate(4deg);
    transition: all 0.5s;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li img,
header .h_header .h_tel_contact .hcontact_menu .gnav ul li span {
    display: block;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li span {
    color: #a2a2a2;
    font-size: 12px;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li img {
    margin: 0 auto 5px;
}

header .h_header .h_tel_contact .hcontact_menu .gnav ul li img.dis_sp {
    display: none;
}

footer .page_up {
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 66px;
    z-index: 999;
}

footer .t_foot {
    margin: auto;
    padding: 75px 0 38px;
}

footer .t_foot p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 55px;
    line-height: 1.8;
}

footer .t_foot .box_tel_btn {
    width: 70%;
    margin: auto;
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

footer .t_foot .box_tel_btn .tel {
    width: 46%;
}

footer .t_foot .box_tel_btn .tel span {
    display: block;
    color: #0098da;
}

footer .t_foot .box_tel_btn .cm_btn_contact {
    width: 49%;
}

footer .t_foot .box_tel_btn .cm_btn_contact a {
    padding: 16px 20px;
}

footer .f_foot {
    background: #0098da;
    padding: 35px 0 50px;
    border-bottom: 23px solid #007db3;
}

footer .f_foot .f_logo {
    text-align: center;
    margin-bottom: 30px;
}

footer .f_foot .box_tel_address {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    color: #fff;
    width: 65%;
    margin: 0 auto 40px;
}

footer .f_foot .box_tel_address .tel {
    border-right: 2px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 80px;
}

footer .f_foot .box_tel_address .tel span {
    display: block;
    color: #fff;
    font-size: 12px;
}

footer .f_foot .box_tel_address .address {
    color: #fff;
    font-size: 13px;
}

footer .f_foot .f_menu {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    display: -moz-flex;
    /* Firefox */
    display: -ms-flex;
    /* IE */
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

footer .f_foot .f_menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

@media print,
screen and (max-width: 767px) {
    p,
    li,
    th,
    td {
        font-size: 14px;
    }
    .dis_pc {
        display: none;
    }
    .dis_sp {
        display: block;
    }
    #wrapper,
    .container {
        width: 100% !important;
        min-width: inherit !important;
    }
    .container {
        box-sizing: border-box;
        padding: 0 2%;
    }
    .cm_btn2 a {
        padding: 5px 5px 7px;
        line-height: 1;
        font-size: 12px;
        border-radius: 7px;
    }
    header .h_header {
        padding: 2% 0;
    }
    header .h_header .h_tel_contact .hlogo {
        width: 25%;
    }
    header .h_header .h_tel_contact .hcontact_menu {
        width: 0;
    }
    header .h_header .h_tel_contact .hcontact_menu .box_infor {
        display: none;
    }
    header .h_header .h_tel_contact .hcontact_menu .tel_sp img{
        width: 80%;
        margin: auto;
    }
    header .h_header .h_tel_contact .hcontact_menu .tel_sp{
        text-align: center;
        padding: 4% 0 0;
    }
    header .h_header .h_tel_contact .hcontact_menu .tel_sp span{
        display: block;
        font-size: 16px;
        color: #fff;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav {
        background: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 4% 0;
        display: none;
        background: #0098da;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul {
        display: block;
        padding: 0;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li {
        text-align: left;
        width: 100%;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li a {
        padding: 15px 4%;
        display: block;
        background: #0098da;
        text-align: left;
        border-bottom: 1px solid #fff;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li a img.dis_pc {
        display: none;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li a img.dis_sp {
        display: block;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li a:hover img {
        transform: none;
    }
    header .h_header .h_tel_contact .hcontact_menu .gnav ul li span {
        display: block;
        color: #fff;
        font-size: 14px;
        padding-left: 25px;
    }
    header .h_header .h_btn_sp {
        width: 55%;
        /* .anc_menu.opened {
          background: url(../common_img/btn_menu_close.png);
          background-size: 100%;
          img {
              opacity: 0;
              transition: all 0.5s;
          }
      } */
    }
    header .h_header .h_btn_sp ul {
        display: flex;
        display: -webkit-flex;
        /* Safari */
        display: -moz-flex;
        /* Firefox */
        display: -ms-flex;
        /* IE */
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
    }
    header .h_header .h_btn_sp ul li.btn1 {
        width: 73%;
    }
    header .h_header .h_btn_sp ul li.anc_menu {
        width: 24%;
    }
    footer .t_foot {
        width: 100%;
        margin: auto;
        padding: 5% 0;
    }
    footer .t_foot p {
        margin-bottom: 30px;
        font-size: 14px;
    }
    footer .t_foot .box_tel_btn {
        width: 100%;
        margin: auto;
        display: block;
    }
    footer .t_foot .box_tel_btn .tel {
        width: 100%;
    }
    footer .t_foot .box_tel_btn .cm_btn_contact {
        width: 60%;
        margin: auto;
    }
    footer .f_foot {
        padding: 40px 0;
        border-bottom: 20px solid #007db3;
    }
    footer .f_foot .box_tel_address {
        display: block;
        width: 80%;
        margin: 0 auto 40px;
    }
    footer .f_foot .box_tel_address .tel {
        border-bottom: 2px solid #fff;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-left: 0;
        text-align: center;
        font-size: 15px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    footer .f_foot .box_tel_address .tel span {
        margin-top: 10px;
    }
    footer .f_foot .box_tel_address .address {
        font-size: 14px;
    }
    footer .f_foot .f_menu {
        display: block;
    }
    footer .f_foot .f_menu ul {
        display: flex;
        display: -webkit-flex;
        /* Safari */
        display: -moz-flex;
        /* Firefox */
        display: -ms-flex;
        /* IE */
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
    }
    footer .f_foot .f_menu ul li {
        width: 50%;
        margin-bottom: 10px;
    }
    footer .f_foot .f_menu ul li a {
        font-size: 15px;
    }
}

@media print,
screen and (max-width: 640px) {
    footer .t_foot .box_tel_btn .cm_btn_contact {
        width: 80%;
        margin: auto;
    }
}

@media print,
screen and (max-width: 480px) {
    .cm_btn_contact a {
        font-size: 16px;
    }
    footer .t_foot p {
        font-size: 12px;
    }
    footer .t_foot .box_tel_btn .cm_btn_contact {
        width: 90%;
        margin: auto;
    }
    footer .f_foot .f_menu ul li {
        margin-bottom: 5px;
    }
    footer .f_foot .f_menu ul li a {
        font-size: 13px;
    }
}

@media print,
screen and (max-width: 414px) {
    footer .f_foot .box_tel_address {
        width: 95%;
    }
    footer .f_foot .box_tel_address .address {
        font-size: 13px;
    }
    footer .f_foot .f_menu ul li a {
        font-size: 12px;
    }
    .dis_sp_414{
        display: block;
    }
}

@media print,
screen and (max-width: 320px) {
    body {
        width: 320px;
    }
    header .h_header .h_tel_contact .hcontact_menu .tel_sp span{
        font-size: 15px;
    }
}