@charset "UTF-8";


div{
	text-align:center;
}
img{
	vertical-align:top;
}


* {
margin: 0;
padding: 0;

}

*, *::before, *::after {
box-sizing: border-box;
}

html {
font-size: 62.5%;
}

body {
font-weight: normal;
font-size: 1.6rem;
line-height: 1;
 font-family: YakuHanMP_Noto, 'Noto Serif JP', '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HGS明朝B', 'ＭＳ Ｐ明朝','MS PMincho', 'ＭＳ 明朝', serif;
-webkit-font-feature-settings: "palt";
font-feature-settings: "palt";
}

header {
line-height: 1.5;
}

main {
display: block;
padding-top: 110px;
}
@media screen and (max-width: 700px) {
main {
padding-top: 50px;
}
}
h1, h2, h3, h4, h5, h6 {
font-size: 1em;
font-weight: normal;
font-style: normal;
line-height: 1.5;
}

li {
list-style: none;
}

a {
text-decoration: none;
color: inherit;
 transition: 0.5s; /* マウスカーソルを外すとき */
 }

a:hover {
    opacity: 0.5;
    transition: 0.5s; /* マウスカーソルを載せるとき */
    }

img{
width: 100%;
}


.pankuzu{
font-size: .8em;
}

@media screen and (max-width: 700px) {
body {
padding-bottom: 0;
}
a.tel {
pointer-events: none;
}
}
/*------------------------------------*/








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

.header{
background-color: rgba(0, 0, 0, 0.562);
color: #fff;
position: fixed;
z-index: 99999;
width: 100%;
}

.header_inner{
width: 1200px;
max-width:100%;
margin: 0 auto;
display: flex;
padding: 10px 0;
font-size: 14px;
letter-spacing: 1px;
}
.header_inner h1{
font-size: 20px;
}
.header_inner > ul{
margin-left: auto
}
.header_inner ul{
display: flex
}
.header_inner li{
padding: 5px;
text-align-last: center;
margin-left: 10px;
}
.header_inner li a{
display:block;
}
.header_inner li:nth-child(3){
border: 1px solid #fff;
background: #914b4c;
}
.header_inner li:nth-child(4){
border: 1px solid #fff;
background: #d35417;
}
.header_inner li:nth-child(3):hover,
.header_inner li:nth-child(4):hover{
opacity: .6;
transition: 0.3s;
}
.header_inner li:nth-child(1),
.header_inner li:nth-child(2){
border-bottom: 1px solid#fff;
}
.header_inner li:nth-child(1),
.header_inner li:nth-child(2){
position: relative;
text-decoration: none;
transition: 0.3s;
}
.header_inner li:nth-child(1) ::before,
.header_inner li:nth-child(2) ::before{
content: "";
position: absolute;
left: 50%;
bottom: -1px;
width: 0;
height: 1px;
background: #d35417;
transition: 0.3s;
}
.header_inner li:nth-child(1) :hover::before,
.header_inner li:nth-child(2) :hover::before{
left: 0;
width: 100%;
}




/*---コンテンツメニュー---*/
.header_menu {
width: 1200px;
max-width: 100%;
margin: 10px auto 20px;
font-size: 14px;
letter-spacing: 3px;
}
.header_menu ul{
display: flex;
justify-content: space-between;
}
.header_menu li{

list-style-type: none;
flex-grow: 1;
text-align: center;
}
.header_menu li + li {
border-left: 1px solid #fff;
}
.header_menu li:nth-child(1){
border-left: 1px solid #fff;
}
.header_menu li:last-child{
border-right: 1px solid #fff;
}
.header_menu li a{
display:block;
}
.header_menu li{
position: relative;
text-decoration: none;
transition: 0.3s;
}
.header_menu li ::before{
content: "";
position: absolute;
left: 50%;
bottom: -4px;
width: 0;
height: 2px;
background: #918264;
transition: 0.3s;
}
.header_menu li :hover::before{
left: 0;
width: 100%;
}






/*header_sp-------------------------------------------------*/

.inner {
    width: 980px;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 30px 0 0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #434343;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    font-size: 36px;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0 30px;
}
 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 20px;
}
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width: 700px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #000;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
        opacity: 0.8;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 13px;
        color: #fff;
        font-size: 16px;
    }
    #top-head .logo a{    
    color: #fff;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #918264;
        width: 100%;
        text-align: center;
        padding: 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        opacity: 0.9
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 25px 0;
        border-bottom: 1px solid #fff;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}







/*-----footer----------------------------------------------------------*/
@media screen and (max-width: 1000px) {

.footer_nav{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;

z-index: 99999;
}
.footer_inner ul{
display: flex;
justify-content: space-between;
}

.footer_inner li{
font-size: .8em;
letter-spacing: 2px;
color: #fff;
width: 25%;
display: flex;
justify-content: center;
  align-items: center;
  padding: 15px 0;
}


.footer_inner li:nth-child(1){
background: #918264;
}
.footer_inner li:nth-child(1) img{
width: 40%;
}
.footer_inner li:nth-child(2){
background: #aaaaaa;
}
.footer_inner li:nth-child(3){
background: #914b4c;
}
.footer_inner li:nth-child(4){
background: #d35417;
}














}




footer{
width: 100%;
}
/*--注釈--*/
.note {
width: 100%;
max-width: 1000px;
margin: 50px auto 0;
font-size: .7em;
color: #666;
letter-spacing: 1px;
text-align: left;
}
.note li{
margin: 5px 0;
}

/*--お問い合わせ--*/
.contact{
width: 100%;
background: #e3ded7;
text-align: center;
margin: 50px auto;
padding: 50px 0;
}
.contact p{
color: #63471f;
font-size: .8em;
}
.contact img{
max-width: 400px;
margin: 20px 0;
}

/*--事業主ロゴ--*/
.deve{ 
margin-bottom: 80px;
}
.deve ul{
display: flex;
justify-content: space-between;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
.deve img{
width: 200px;
}

@media screen and (max-width: 1000px) {

/*--注釈--*/
.note {
max-width: 90%;
margin: 50px auto;
font-size: .6em;
letter-spacing: 1px;
line-height: 130%;
}

/*--お問い合わせ--*/
.contact{
padding: 20px 0;
margin:  20px 0;
}

.contact p{
color: #63471f;
font-size: .8em;
line-height: 130%;
}
.contact img{
max-width: 300px;
margin: 20px 0;
}


/*--事業主ロゴ--*/
.deve ul{
display: flex;
flex-wrap: wrap;
text-align: center;
width: 90%;
margin: 0 auto;
justify-content: center;
}
.deve li{
width: 50%;
margin: 10px 0;
}
.deve img{
width: 95%;
}
}





/*--ページTOP--*/
.go-top {
display: block;
position: fixed;
width: 50px;
height: 50px;
border: 2px solid #746430;
color: #736357;
font-size: 12px;
line-height: 1;
text-align: center;
bottom: 54px;
right: 25px;
background: #FFF;
padding-top: 30px;
transform: translateX(200px);
transition: transform 1s ease-out;
}
.go-top.show {
transform: none;
}
.go-top::before {
content: "";
width: 20px;
height: 20px;
border-top: 2px solid #746430;
border-right: 2px solid #746430;
position: absolute;
top: 12px;
left: 13px;
transform: rotate(-45deg);
}







.pc {display: block!important;}
.sp {display: none!important;}

@media screen and (max-width: 700px) {
.pc {display: none!important;}
.sp {display: block!important;}
}
/*------------------------------------*/



.acc_sub_copy{
font-size: 1.4em;
color: #333;
text-align: center!important;
margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
.acc_sub_copy{
font-size: 1em;
}
}

.loca{
}
.loca img{
width: 200px;
text-align: center
}
.loca p{
margin: 0;
text-align: left;
}

.loca .sub_ttl{
font-size: 1.4em;
}
.loca .sub_copy{
font-size: .8em;
color: #333;
text-align: left;
padding: 20px 0;
}

.loca .sub_copy2{
font-size: 1.2em;
color: #333;
text-align: left;
}

.life p{
font-size: 1.2em;
margin: 50px auto 20px;
}







.land .sub_ttl{
text-align: left;
padding-bottom: 10px;
}


.sub_copy{
font-size: 1.4em;
color: #333;
text-align: left;
padding: 20px 0;
}
.sub_copy2{
font-size: .8em;
color: #333;
text-align: left;
line-height: 150%;
}








@media screen and (max-width: 700px) {

.loca{
display: block;
}
.loca .sub_ttl{
font-size: 1.1em;
}
.loca img{
width: 200px;
text-align: center;
margin: 0 auto
}
.loca .sub_copy2{
font-size: 1em;
padding-bottom: 10px;
}





}









.loca .sub_ttl,
.land .sub_ttl{
text-align: left;
padding-bottom: 10px;
}

.land .sub_copy{
font-size: 1em;
color: #333;
text-align: left;
padding: 0;
}

.land .sub_copy2{
font-size: 0.8em;
color: #333;
text-align: left;
padding: 0;
}

.f_06{font-size: .6em;}

.mt50{margin-top: 50px;}
.mt100{margin-top: 100px;}


.mb10{margin-bottom: 10px;}






@media screen and (max-width: 700px) {
.sub_copy{
font-size: 1.2em;
color: #333;
}
.text-primary{
text-align: left;
}














}

































