@charset "UTF-8";
/* CSS Document */

/* ---------- COMMON ---------- */

body {
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
    width: 100%;
}

/* link */
a{
    color: #0071BA;
    text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ----- layout ----- */

/* contents */

/* reccomend area */
.reccomend_area aside{
    border-top: solid 1px #CBCBCB;
}

.reccomend_area aside h6{
    font-weight: 500;
    text-align: center;
}

.reccomend_story ul li{
    display: table;
    list-style: none;
}

.reccomend_story figure,
.reccomend_story dl{
    display: table-cell;
    vertical-align: top;
}


.reccomend_area dl a{
    font-weight: 500;
}

.reccomend_area nav{
    border-top: solid 1px #CBCBCB;
    padding: 5px 0;
}

.reccomend_area nav li {
    display: inline-block;
}
.reccomend_area nav li a{
    color: #000000;
}
.reccomend_area nav li:first-child a{
    background: url("../img/common/icon_home.svg") no-repeat center center;
    display: inline-block;
    font-size: 0;
}

.reccomend_area nav li:not(:last-child):after{
    content: ">";
    margin-left: 0.2em;
}

/* go bttns */

.go-bttns{
    text-align: center;
}

.go-bttns a{
    background: url("../img/common/go_prev.svg") no-repeat center left;
    color: #000000;
}

.go-bttns a:hover,
.go-bttns a:active{
    color: #0071ba;
}

/* ex navigation */

.ex_navi_area input {
    display: none;
}

#ex_navi{
    color: #ffffff;
}

#ex_navi h6{
    font-weight: 500;
    margin-bottom: 5px;
}

#ex_navi li{
    margin-bottom: 2px;
}

#ex_navi a{
    color: #ffffff;
    text-decoration: none;
}

.ex_navi_area aside li{
    display: inline-block;
    margin: 0 3px;
}

.ex_navi_area aside li img{
    width: 32px;
}

/* footer */

.footer_area{
    background: #4D4D4D;
    color: #ffffff;
    text-align: center;
}

.catch{
    font-weight: 400;
}

.footer_area dl dt{
    font-weight: 400;
    margin-bottom: 5px;
}

address{
    font-style: normal;
}

/* contact nav */

.contact_nav{
    position: fixed;
}

.contact_nav li{
    background: #3E3A39;
    border-radius: 10px;
    text-align: center;
}

.contact_nav li a{
    color: #ffffff;
    display: block;
    font-weight: 400;
}
.contact_online a{
    background: url("../img/common/icon_online.svg") no-repeat center center;
}

.contact_phone a{
    background: url("../img/common/icon_call.svg") no-repeat center center;
}

/* ---------- Mobile ---------- */
@media(max-width:737px) {

    body{
        font-size: 85%;
    }

/* header */
    .content_header{
        padding: 15px 0;
        text-align: center;
    }

    .content_header h1 img{
        width: 56px;
    }

    .global_nav{
        display: none;
    }

/* mobi nav */

    .mobi_menu{
        height: 23px;
        position: absolute;
        left: 16px;
        top: 20px;
        width: 25px;
        z-index: 99;
    }

    .menu__line{
        background: #000000;
        border-radius: 2px;
        display: block;
        height: 3px;
        position: absolute;
        transition:transform .3s;
        width: 100%;
    }

    .menu__line--middle{
        top:10px;
    }

    .menu__line--bottom{
        bottom: 0;
    }

    .menu__line--top.active{
        top: 10px;
        transform: rotate(45deg);
        background: #ffffff;
    }

    .menu__line--middle.active{
        display: none;
    }

    .menu__line--bottom.active{
        bottom: 10px;
        transform: rotate(135deg);
        background: #ffffff;
    }

    .mobi_nav{
        background: rgba(0,0,0,0.8);
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        z-index: 98;
        overflow-y: scroll;
    }

    .mobi_nav_wrap{
        padding-top: 40px;
        width: 20em;
        margin-left: auto;
        margin-right: auto;
        height: 100%;
    }

    .mobi_nav_wrap p{
        text-align: center;
        margin-bottom: 30px;
    }

    .mobi_nav_wrap p img{
        width: 50px;
    }

    .mobi_nav_wrap ul{
        border-top: solid 1px #ffffff;
    }

    .mobi_nav_wrap li{
        border-bottom: solid 1px #ffffff;
        text-align: center;
    }

    .mobi_nav_wrap li a{
        color: #ffffff;
        display: block;
        font-size: 110%;
        font-weight: 400;
        padding: 15px 0;
    }

    .mobi_nav_wrap li a:hover{
        background: rgba(0,0,0,0.5);
    }

/* go bttns */

    .go-bttns{
        margin-bottom: 30px;
    }

    .go-bttns a{
        padding-left: 25px;
    }

/* reccomend area */
    .reccomend_area aside{
        margin-left: 1.5em;
        margin-right: 1.5em;
        padding-top: 15px;
    }

    .reccomend_area aside h6{
        font-size: 95%;
        margin-bottom: 15px;
    }

    .reccomend_story li{
        margin-bottom: 15px;
    }

    .reccomend_story ul img{
        width: 110px;
    }

    .reccomend_story figure{
        padding-right: 10px;
    }

    .reccomend_story dt{
        font-size: 95%;
        margin-bottom: 5px;
    }

    .reccomend_story dd{
        font-size: 90%;
    }

    .to_selfcheck{
        padding-top: 25px;
        padding-bottom: 15px;
        text-align: center;
    }

    .to_selfcheck img{
        width: 210px;
    }

    .reccomend_area nav{
        text-align: center;
    }

    .reccomend_area nav li {
        font-size: 80%;
    }

    .reccomend_area nav li a:first-child{
        background-size: 14px;
        height: 12px;
        width: 16px;
    }

/* ex navigation */
    .bttn_ex_navi{
        border-top: solid 1px #CBCBCB;
        padding: 14px 0;
        text-align: center;
    }

    .bttn_ex_navi label {
        background: #B2B2B2 url("../img/common/arrow_ex_menu.svg") no-repeat 8px center;
        background-size: 8px;
        border-radius: 4px;
        color: #ffffff;
        cursor :pointer;
        display: block;
        font-size: 80%;
        height: 24px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 2px;
        padding-left: 20px;
        text-align: left;
        text-transform: uppercase;
        width: 50px;
    }

    #ex_navi{
        background: #4D4D4D;
        padding: 0 30px;
        height: 0;
        overflow: hidden;
        transition:0.5s;
    }

    .ex_about{
        padding-top: 18px;
    }

    #ex_navi h6,
    #ex_navi li{
        font-size: 90%;
    }

    #ex_navi ul{
        margin-bottom: 20px;
    }

    #input_ex_navi:checked ~ #ex_navi{
        height: 580px;
        transition: 0.5s;
    }

    .ex_navi_area aside{
        background: #4D4D4D;
        border-bottom: solid 1px #CBCBCB;
        border-top: solid 1px #CBCBCB;
        padding: 12px 0;
        text-align: center;
    }

/* footer */
    .footer_area footer{
        padding: 25px 0;
    }

    .catch{
        font-size: 90%;
        margin-bottom: 28px;
    }

    .footer_area figure{
        margin-bottom: 15px;
    }

    .footer_area dl{
        font-size: 80%;
        margin-bottom: 10px;
    }

    .copy{
        font-size: 80%;
    }

    .go_top{
        padding-bottom: 18px;
    }

/* contact nav */
    .contact_nav{
        bottom: 10px;
        right: 2px;
    }

    .contact_nav li{
        font-size: 95%;
        width: 136px;
    }

    .contact_nav li:first-child{
        margin-bottom: 5px;
    }

    .contact_nav li a{
        height: 38px;
        padding-top: 18px;
    }

    .contact_phone dl dd{
        display: none;
    }

    .contact_online a{
        background-size: 40px;
    }

    .contact_phone a{
        background-size: 35px;
    }

}

/* ---------- Portlate ---------- */
@media(max-width:567px) {}

/* ---------- Tablet / PC ---------- */
@media (min-width: 738px) {

/* header */
    .mobi_menu,
    .mobi_nav{
        display: none;
    }

    .header_area{
        border-bottom: solid 1px #cbcbcb;
    }

    .content_header{
        display: table;
        margin-left: auto;
        margin-right: auto;
        padding: 25px 0 15px 0;
    }

    .content_header h1{
        display: table-cell;
    }

    .content_header h1 img{
        width: 65px;
    }

    .content_header ul{
        display: table-cell;
        text-align: right;
    }

    .content_header ul li {
        display: inline-block;
    }

    .content_header ul li a,
    #drawer-icon{
        color: #000000;
        cursor: pointer;
        font-size: 90%;
        font-weight: 400;
    }

    .index_header ul li a:hover,
    .content_header ul li a:hover,
    #drawer-icon:hover{
        border-bottom: solid 4px #7e0721;
    }

    .content_header ul li input{
        display: none;
    }

    #drawer-content {
        background-color:rgba(0,0,0,0.8);
        position: absolute;
        width: 100%;
        transition: all .5s;
        z-index: 5;
        left: 0;
        transform: translateY(-300px);
    }

    #drawer-checkbox:checked ~ #drawer-content {
        transform: translateY(16px);
    }

    #drawer-content ol{
        display: table;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #drawer-content ol li{
        display: table-cell;
        width: 33%;
    }

    #drawer-content ol li a{
        color: #ffffff;
        display: block;
        font-weight: 400;
        padding: 20px 0;
    }

    #drawer-content ol li a:hover{
        background: #7e0721;
        border: none;
    }

/* go bttns */

    .go-bttns{
        margin-bottom: 60px;
    }

    .go-bttns a{
        font-size: 90%;
        padding-left: 35px;
    }

/* reccomend area */

    .reccomend_area h6{
        font-size: 90%;
        padding:20px 0 25px 0;
    }

    .reccomend_story li{
        margin-bottom: 20px;
    }

    .reccomend_story ul img{
        width: 150px;
    }

    .reccomend_story figure{
        padding-right: 15px;
    }

    .reccomend_story dt{
        font-size: 80%;
    }

    .reccomend_story dd{
        font-size: 75%;
        line-height: 1.5em;
    }

    .reccomend_area nav li a:first-child{
        background-size: 16px;
        height: 14px;
        width: 18px;
    }

    .reccomend_area aside:after{
        clear: both;
        content: "";
        display: block;
    }

    .reccomend_area nav li {
        font-size: 70%;
    }

/* ex navigation */
    .ex_navi_area{
        background: #4D4D4D;
    }

    .bttn_ex_navi{
        display: none;
    }

    .ex_navi_body{
        border-bottom: solid 1px #CBCBCB;
    }

    #ex_navi h6,
    #ex_navi li{
        font-size: 65%;
    }

    .ex_navi nav{
        display: table;
    }

    .ex_navi nav div{
        display: table-cell;
    }

    .ex_navi_area aside{
        padding-top: 10px;
        text-align: center;
    }

/* footer */

    .footer_area footer{
        padding: 48px 0 28px 0;
    }

    .catch{
        font-size: 80%;
        margin-bottom: 18px;
    }

    .footer_area figure{
        margin-bottom: 18px;
    }

    .footer_area dl{
        font-size: 70%;
        margin-bottom: 30px;
    }

    .copy{
        font-size: 70%;
    }

    .go_top{
        padding-bottom: 30px;
    }

/* contact nav */
    .contact_nav{
        bottom: 45px;
        right: 10px;
    }

    .contact_nav li{
        width: 195px;
    }

    .contact_nav li:first-child{
        margin-bottom: 8px;
    }

    .contact_online a{
        font-size: 110%;
        height: 60px;
        padding-top: 30px;
    }

    .contact_phone a{
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .contact_phone dl dt{
        font-size: 85%;
    }

    .contact_phone dl dd:nth-of-type(1){
        font-size: 135%;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .contact_phone dl dd:nth-of-type(2){
        font-size: 65%;
        line-height: 1.5em;
    }

    a[href*="tel:"] {
        cursor: default;
        pointer-events: none;
        text-decoration: none;
    }

    .contact_online a{
        background-size: 60px;
    }

    .contact_phone a{
        background-position-y: 12px;
        background-size: 50px;
    }

}

/* ---------- Tablet ---------- */
@media(max-width:1022px) and (min-width: 737px){

    .content_header{
        width: 100%;
    }

    .content_header h1{
        padding-left: 1em;
    }

    .content_header ul{
        padding-right: 1em;
    }

    .content_header ul li {
        margin-left: 15px;
    }

    #drawer-content ol{
        width: 100%;
    }

/* reccomend area */
    .reccomend_area{
        display: table;
        padding-left: 1em;
        padding-right: 1em;
    }

    .to_selfcheck{
        display: table-cell;
    }

    .to_selfcheck img{
        width: 210px;
    }

    .reccomend_story{
        display: table-cell;
        padding-bottom: 15px;
        padding-right: 20px;
        vertical-align: top;
    }

    .reccomend_area nav{
        padding-left: 1em;
        padding-right: 1em;
    }

/* ex navigation */
    .ex_navi_body{
        padding: 20px 50px;
    }

    .ex_navi nav{
        width: 100%;
    }
}

/* ---------- PC ---------- */
@media(min-width:1023px){

/* heaader */

    .content_header{
        width: 900px;
    }

    .content_header ul li {
        margin-left: 35px;
    }

    #drawer-content ol{
        width: 900px;
    }

/* content body */
    #content-body{
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
    }

/* reccomend area */
    .reccomend_area{
        margin-left: auto;
        margin-right: auto;
        width: 900px;
    }

    .reccomend_story{
        float: left;
        padding-bottom: 20px;
        width: 580px;
    }

    .to_selfcheck{
        float: right;
        width: 275px;
    }

/* ex navigation */

    .ex_navi_body{
        margin-left: auto;
        margin-right: auto;
        padding: 40px 50px;
        width: 900px;
    }

    .ex_navi nav{
        float: left;
        width: 790px;
    }

    .ex_about{
        padding-right: 70px;
        width: 145px;
    }

    .ex_renovation{
        padding-right: 70px;
        width: 160px;
    }

    .ex_knowledge{
        padding-right: 35px;
        width: 210px;
    }

    .ex_navi_area aside{
        float: right;
        text-align: right;
        width: 82px;
    }

    .ex_navi_body:after{
        content: "";
        display: block;
        clear: both;
    }

}