@charset "utf-8";
/*
 header
----------------------------------------------------------- */
.header-wrapper {
	width: 1200px;
    margin-right: auto;
    margin-left: auto;
	box-sizing: border-box;
}
#head {
	display: block;
}
#head, #head .col-sm-9, #head .col-sm-3 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
#head-sp{
	display: none;
}
.header-logo {
	margin: 40px 0 30px;
	text-align: center;
}
.header-logo-sp {
	margin: 18px 0 0;
	line-height: .8;
}
.header-logo-sp img {
	max-height: 50px;
}

.header-l {
	width: 40%;
	float: left;
}
.header-r {
	width: 56%;
	float: right;
}
.header-text {
    color: #996c33;
    padding-top: 58px;
}
@media (max-width: 1199px) {
	.header-wrapper {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media (max-width: 991px) {
    .header-text {
        display: none;
    }
}
@media (max-width: 767px) {
	.header-wrapper {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	#head-sp{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 110;
		background: #fff;
		height: 80px;
		width: 100%;
		box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	#head {
		display: none;
	}
	#head-sp-inner {
		max-width: calc(100% - 60px) ;
	}
}



/*
 navi
----------------------------------------------------------- */
#drawer-checkbox {
    display: none;
}
#drawer-icon {
    cursor: pointer;
    display: inline-block;
    right: 40px;
    top: 40px;
    height: 40px;
    position: absolute;
    width: 40px;
    z-index: 110;
    text-align: center;
    margin-bottom: 0;
}

#drawer-icon span {
    content: "";
    display: block;
    background-image: url(../img/menu_icon.png);
    height: 40px;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-in-out;
    width: 40px;
}

#drawer-checkbox:checked ~ #drawer-icon span {
    background-image: url(../img/menu_icon2.png);
}
#drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 30%;
    padding-top: 160px;
    padding-bottom: 30px;
    max-width: 100%;
    height: 100%;
    background: #b6a479 url(../img/SP-yatagarasu.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    transition: all 0.3s ease-in-out 0s;
    transform: translateX(-100%);
}
#drawer-checkbox:checked ~ #drawer-content {
    transform: translateX(0);
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.16);
}
#drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 0.3;
}
#drawer-icon p{
    margin-top: 32px;
    margin-left: 2px;
    width: 34px;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

ul#navi2 {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-top: 1em;
    margin-bottom: 140px;
    margin-left: 60px;
}
ul#navi2 li {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
}
ul#navi2 li a{
    padding: 0.4em 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    display: block;
}
ul#navi2 li a:link {
    color: #fff;
    text-decoration: none;
}
ul#navi2 li a:visited {
    color: #fff;
    text-decoration:none;
}
ul#navi2 li a:hover {
    color: #fff;
}
ul#navi2 li a:active {
    color: #fff;
}

#navi-sp {
    display: block;
    text-align:center;
    font-size: 1.2rem;
    color: #fff;
}
#navi_tel_sp a {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
}
.navi-sp {
    display: block !important;
    margin-top: -50px;
}
@media (max-width: 767px) {
    #drawer-icon {
        cursor: pointer;
        display: inline-block;
        right: 10px;
        top: 15px;
        height: 40px;
        position: fixed;
        width: 40px;
        z-index: 110;
        text-align: center;
    }
    #drawer-content {
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        padding-top: 120px;
        padding-bottom: 30px;
        max-width: 100%;
        height: 100%;
        background: #b6a479 url(../img/SP-yatagarasu.png) no-repeat;
        background-position: left top 180px;
        background-size: contain;
        transition: all 0.3s ease-in-out 0s;
        transform: translateX(-100%);
    }
    ul#navi2 {
        list-style-type: none;
        padding-left: 0;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        margin-top: 1em;
        margin-bottom: 80px;
        margin-left: 30px;
    }
}

/*
 footer-nav (フッターナビゲーション)
----------------------------------------------------------- */
.footer-nav {
	background: #313131;
	padding: 50px 0 30px;
}
.footer-nav-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
.footer-nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0;
}
.footer-nav-list li {
	width: 25%;
	box-sizing: border-box;
	text-align: center;
	padding: 10px 8px;
}
.footer-nav-list li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.15rem;
	letter-spacing: 0.05em;
	display: block;
	padding: 6px 0;
	transition: opacity 0.3s;
}
.footer-nav-list li a:hover {
	opacity: 0.7;
	text-decoration: none;
}
.footer-nav-divider {
	width: 80%;
	max-width: 700px;
	margin: 10px auto 0;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
	.footer-nav {
		padding: 35px 0 20px;
	}
	.footer-nav-list li {
		width: 50%;
		padding: 7px 10px;
	}
	.footer-nav-list li a {
		font-size: 1.05rem;
	}
}

/*
 foot
----------------------------------------------------------- */
#footer-wrapper{
	background: #313131;
	padding: 30px 0 40px;
}
address {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	color: #fff;
}

@media (max-width: 767px) {
	.footer-menu-list{
		margin: 0;
	}
	#footer-wrapper{
		padding: 20px 0 35px;
	}
}
