@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■共通■■■■■■■■■■■■■■■■■■■■*/

html {
    font-size: 62.5%;
    /* 10px */
}

body {
    font-family: YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
    line-height: 1.5;
    font-size: 1.3rem;
    color: #000;
}

.pc {
    display: none;
}

a:hover {
    opacity: 0.5;
}

.sc_ttl {
        text-align: center;
    margin-bottom: 30px;
    color: #5e3912;
    font-weight: normal;
    font-size: 2rem;
    font-family: "Sawarabi Mincho";
}

.sc_ttl span {
    display: inline-block;
    letter-spacing: 1px;
	border-bottom: 1px solid #5e3912;
}

.sc_format {
    padding: 3em 2.5rem;
}

.sub_ttl {
    font-size: 1.3rem;
    font-weight: normal;
    font-family: "Sawarabi Gothic";
    color: #000;
    text-align: center;
}

.sawarabimincho {
    font-family: "Sawarabi Mincho";
}

/*■■■■■■■■■■■■■■■■■■■■SP版■■■■■■■■■■■■■■■■■■■■*/

/*----------header----------*/
header {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 99;
    background: transparent;
}

header h1 {
    width: 200px;
    padding: 10px 10px 0px;
    position: relative;
    z-index: 999;
}

header .hdlogo {
    width: 200px;
    padding: 10px 10px 0px;
    position: relative;
    z-index: 999;
}

header h1 a:hover {
opacity: 1;
}

header .hdlogo a:hover {
    opacity: 1;
    }

.header_tel {
    width: 80px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 80px;
    z-index: 999;
    text-align: center;
    background: rgba(78, 78, 78, 0.85);
    padding: 27px 0;
    color: #fff;
}

.header_tel:hover {
    background: #fff3bd;
    color: #5e3912;
    opacity: 1;
}

.header_tel i {
    font-size: 3.2rem;
}

.header_tel span {
    display: block;
    font-size: 1.2rem;
    margin-top: 9px;
}

/*●●ハンバーガボタンの設定●●*/

.hamburger {
    position: absolute;
    width: 80px;
    height: 100px;
    z-index: 999;
    background: rgba(15, 178, 34, 0.6);
    position: absolute;
    top: 0px;
    right: 0;
    padding: 28px 22px;
}

.hamburger:hover {
    background: #fff;
}

.hamburger:hover .menu_trigger span {
    background-color: #0fb222;
}

.hamburger:hover .menu_trigger span:nth-of-type(4) {
    background-color: transparent;
    color: #0fb222;
}

.menu_trigger {
    display: inline-block;
    width: 36px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
    transform: translateX(0);
    transition: transform .5s;
}

.menu_trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    color: #fff;
    transition: all .5s;
}

.menu_trigger span:nth-of-type(1) {
    top: 0;
}

.menu_trigger span:nth-of-type(2) {
    top: 12.5px;
}

.menu_trigger span:nth-of-type(3) {
    bottom: 0px;
}

.menu_trigger span:nth-of-type(4) {
    bottom: -11px;
    background-color: transparent;
    display: block;
    margin-left: -2.7px;
}

.menu-trigger.active {
    transform: translateX(-250px);
}

.menu_trigger.active span:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
}


/*----------nav----------*/

nav {
  width: 350px;
    height: 100vh;
    background-color: rgba(15, 178, 34, 0.8);
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(350px);
    transition: all .5s;
	font-family: Sawarabi Gothic;
    }

nav.open {
    display: flex;
    transform: translateZ(0);
    height: 500vh;
}

nav .nav_list {
    width: 100%;
    position: absolute;
    top: 120px;
}

nav .nav_list a {
    display: block;
    color: #fff;
    margin: 0 100px;
    text-align: center;
    padding: 15px 0;
}

nav .nav_list .nav_contact {
    background: #fff;
    color: #000;
    width: 300px;
    padding: 15px;
    margin: 20px auto;
    font-size: 1.3rem;
    font-weight: normal;
    text-align: center;
    border-radius: 5px;
}

nav .nav_list .nav_contact i {
    display: block;
    font-size: 3.2rem;
    padding: 5px;
    color: #5e3912;
}

nav .nav_list .nav_contact a {
    display: block;
    font-size: 2.5rem;
    background: #fff3bd;
    color: #5e3912;
    border-radius: 5px;
    font-weight: normal;
    padding: 5px;
    margin: 5px 0 8px;
}

nav .nav_list .nav_contact a:hover {
    background: #5e3912;
    color: #fff;
    opacity: 1;
}

nav .nav_list a.nav_contact:hover {
    opacity: 1;
}

.overlay {
    content: "";
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
}

.overlay.open {
    width: 100%;
    height: 500vh;
    opacity: 1;
}

.hidden_box {
    position: relative;
}

.hidden_box label {
    position: absolute;
    right: 25px;
    top: -40.5px;
    padding: 4px 8px;
    font-weight: bold;
    cursor :pointer;
    background: transparent;
    color: #fff;
    border: solid 2px #fff;;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #fff;
    color: #0fb222;
    border: solid 2px #fff;;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background: rgba(255, 255, 255, 0.9);
}

.hidden_box .hidden_show a {
    color: #0fb222;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    height: auto;
    opacity: 1;
}

/*----------common_contact----------*/

.common_contact {
    background: #fff8d8;
}

.common_contact img {
width: 100%;}

.common_contact .box {
    position: relative;

}

.common_contact .intoro {
    text-align: center;
    margin-bottom: 20px;
}

.common_contact .box.top {
    margin-bottom: 20px;
}

.common_contact .box .left_txt {
    position: absolute;
    bottom: 75px;
    left: 20px;
    font-size: 1.8rem;
    font-family: "Hannari";
    color: #fff;
    text-shadow: 2px 2px 2px #414141;
/*    font-weight: bold*/
}

.common_contact .box .left_txt span {
    font-size: 1.3rem;
}

.common_contact .box .right_txt {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #fff;
    line-height: 1.2;
    font-size: 2rem;
    font-family: Sawarabi Mincho;
}

.common_contact .box .right_txt a {
    color: #fff;
}

.common_contact .box .right_txt span {
    font-size: 1.4rem;
    display: block;
    text-align: right;
}

.common_contact .box .right_txt i {
    font-size: 1.6rem;
    padding-right: 5px
}

/*----------common_map----------*/
.common_map iframe {
    width: 100%;
    height: 300px;
    vertical-align: bottom;
}

/*----------footer----------*/

footer {
    text-align: center;
	font-size: 1.4rem;
}

footer .sc_format {
    padding-top: 20px;
    padding-bottom: 0;
}

footer p {
    margin-bottom: 20px;
}

footer img {
    width: 130px;
    margin: auto;
    display: block;
}

footer i {
    font-size: 1.4rem;
    padding-right: 5px
}

footer p span {
    display: block;
}

footer ul {
    padding: 2.5rem;
}

footer ul li a {
    font-size: 1.3rem;
}

footer .bg {
    background: #0fb222;
}

footer ul a {
    color: #fff;
}

footer .footer_contact span {
    font-size: 1.2rem;
}

footer .copyright {
    margin-bottom: 0;
    font-size: 1.2rem;
    background: #dcdcdc;
    padding: 3px;
}

/*----------page_top----------*/
#page_top {
    position: fixed;
    bottom: 15px;
    right: 7px;
}
#page_top a {
    background-color: rgba(255, 255, 255, 0.6);
    color: rgba(15, 178, 34, 0.6);
    border: 1px solid rgba(15, 178, 34, 0.6);
    text-align: center;
    text-decoration: none;
    padding: 12px 19px 10px;
    font-size: 2rem;
}

#page_top a:hover {
    background: #fff;
    color: #0fb222;
    border-bottom-color: #0fb222;
    opacity: 1;
}

/*■■■■■■■■■■■■■■■■■■■■TB版■■■■■■■■■■■■■■■■■■■■*/

@media screen and (min-width: 820px) {
	
	body {
    font-size: 1.6rem;
	}

	.sc_ttl {
    font-size: 2.5rem;
}

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /*----------header----------*/

    header h1 {
        width: 160px;
        padding-left: 3px;
        top: 11px;
    }

    header .hdlogo {
        width: 160px;
        padding-left: 3px;
        top: 11px;
    }

    header .header_tel {
        width: 170px;
        height: 84px;
        border-radius: 8px;
        position: absolute;
        top: 15px;
        right: 5px;
        background: #0fb222;
        color: #fff;
        text-align: center;
        line-height: 1.3;
        padding: 6.5px 0;
        font-size: 2rem;
        font-weight: bold;
    }

    header .header_tel span {
        margin-top: 5px;
        margin-bottom: 3px;
    }

    header .header_tel i {
        font-size: 1.6rem;
        display: inline-block;
        margin-right: -2px;
    }

    header .header_tel span {
        display: block;
        font-size: 1.2rem;
        font-weight: normal;
        font-weight: bold;
    }

    /*----------nav----------*/

    nav {
        display: block;
        width: 100%;
        height: 70px;
        top: 22px;
        transform: translate(0);
        background: rgba(255, 255, 255, 0.7);
    }

    nav .nav_list {
        top: 0;
        right: -150px;
        width: 800px;
    }

    nav .nav_list a {
        color: #000;
        float: left;
        padding: 26px 8px 25px;
        font-size: 1.4rem;
        margin: 0;
    }
    
    nav .nav_list a.nav_parent {
        margin-right: 15px;
    }

    nav .nav_list a:hover {
        color: #0fb222;
        opacity: 1;
    }
    
    .hidden_box {
        width: 160px;
        position: absolute;
        top:70px;
        left: 180px;
    }
    
    .hidden_box .hidden_show {
        background: rgba(15, 178, 34, 0.9);

    }
    
    .hidden_box .hidden_show a {
        color: #fff;
        clear: both;
/*        color: fff;*/
        width: 100%;        
    }
    
    .hidden_box .hidden_show a:hover {
        color: #000;
    }
    
    .hidden_box label {
        position: absolute;
        top: -50px;
        right:7px;
        padding: 4px 8px;
        color: #5e3912;
        border: solid 2px #0fb222;
        border: none;
    }
    
    
    .hidden_box label:hover {
        background: transparent;
        color: #0fb222;
        border: none;
    }
    


    /*----------common_contact----------*/

    .common_contact .box_wrap {
        overflow: hidden;
    }
    
    .common_contact .box {
        width: 49%;
        float: left;
    }

    .common_contact .box.top {
        margin-bottom: 0;
        margin-right: 2%;
    }
    
    .common_contact .box .left_txt {
        font-size: 2rem;
    }

    .common_contact .box .right_txt {
        font-size: 2.4rem;
    }

    .common_contact .box .right_txt span {
        font-size: 1.6rem;
    }

    .common_contact .box .right_txt i {
        font-size: 1.9rem;
    }
    
    /*----------footer----------*/


    footer .sc_format {
        width: 100%;
        max-width: 800px;
        margin: auto;
    }

    footer ul {
        padding-top: 4px;
        height: 30px;
    }

    footer ul li {
        width: 20%;
        float: left;
    }

    .footer_contact {
        width: 50%;
        float: left;
    }
}

/*■■■■■■■■■■■■■■■■■■■■PC版■■■■■■■■■■■■■■■■■■■■*/

@media screen and (min-width: 1100px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    /*----------header----------*/

    header h1 {
        width: 250px;
        top:0px;
        padding-left: 10px
    }

    header .hdlogo {
        width: 250px;
        top:0px;
        padding-left: 10px
    }

    header .header_tel {
        width: 240px;
        top: 18px;
        right: 10px;
        height: 100px;
        padding: 10px 10px 8px;
        font-size: 2.5rem;
    }

    header .header_tel i {
        font-size: 2.2rem;
    }

    /*----------nav----------*/

    nav {
        top: 34px;
    }

    nav .nav_list {
        right: 16px;
    }

    nav .nav_list a {
        padding: 26px 16px 25px;
    }
    
    nav .nav_list a.sp {
        display: none;
    }
    
    .hidden_box {
        width: 180px;
        left: 207px
    }
    
    .hidden_box label {
        right: 14px;
    }

    /*----------common_contact----------*/

    .common_contact .box_wrap {
        max-width: 1100px;
        margin: auto;
    }

    /*----------footer----------*/

    footer ul {
        width: 1100px;
        margin: auto;
    }
}
