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

* {
	line-height: 1;
}

html {
	scroll-padding-top:50px;
	scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
	object-fit: cover;
}


/*clearfix*/
.clearfix:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix{
	height: 1%;
}
.clearfix{
	display: block;
}
.clearfix{
  overflow:hidden;
}
/* Hides from IE-mac \*/
* html .clearfix{
  height:1%;
	overflow-x : hidden;
}

* {
	box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
word-wrap: break-word;
}

/*body*/

body {
width: 100%;
	-webkit-text-size-adjust: 100%;
	}


li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: .5s;
}

a:hover {
	opacity: 0.75;
	transition: .5s;
}

/* basefont */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --title-font: "Roboto", sans-serif;
	
  --base-font-size: 16px;
	
  --base-weight0: 300;
  --base-weight: 400;
  --base-weight2: 500;
  --base-weight3: 600;
    
  --color-base: #FFF;
  --color-main: #42210B;
  --color-sub: #E6C12C;
}


.contents-box {
	font-family: var(--base-font);
font-weight: var(--base-weight);
font-size: var(--base-font-size);
	color : var(--color-base);
	clear: both;
	margin-right: auto;
	margin-left: auto;
	line-height: 1;
}

.contents-box p {
	font-family: var(--base-font);
font-weight: var(--base-weight);
font-size: var(--base-font-size);
	color : var(--color-base);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
	display: none;
}

.contents-box a {
	color : var(--color-base);
	font-weight: var(--base-weight);
}

.contents-box p a {
	color : var(--color-base);
	font-weight: var(--base-weight);
}


/* animation_box */

.animation_box {
  transition: 1s ease;
	opacity: 0;
	transition-delay: .5s;
	transform: translate(0px, 0px);
}

.animation_box-left {
	transform: translateX(-100px);
}

.animation_box-right {
	transform: translateX(100px);
}

.animation_box-top {
	transform: translateY(100px);
}

.animation_box-bottom {
	transform: translateY(-100px);
}

.animation_box2 {
	transition-delay: 1s;
}

.animation_box3 {
	transition-delay: 1.5s;
}

.animation_box4 {
	transition-delay: 2s;
}

.animation_box.effect {
	opacity: 1;
	transform: translate(0px, 0px);
}



/*header*/

.header-wrap {
	z-index: 9999999;
	width: 100%;
position: fixed;
left: 0px;
top: 0px;
}

.header {
	width: 100%;
    display: flex;
  justify-content: space-between;
flex-wrap: wrap;
    padding: 20px;
    position: relative;
}

.header::before {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
	width: 100%;
	height: 100%;
    display: block;
    background : -moz-linear-gradient(50% 0% -90deg,rgba(0, 0, 0, 1) 0%,rgba(0, 0, 0, 0) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(0, 0, 0, 1) ),color-stop(1,rgba(0, 0, 0, 0) ));
  background : -o-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background : -ms-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.7;
}

.header > div {
	position: relative;
}

.header-left img {
	height: 110px;
    width: auto;
}

.header h6 a {
font-weight: var(--base-weight);
    background-color: var(--color-sub);
	font-size: 16px;
color: #000;
line-height: 1.2;
letter-spacing: 0.05em;
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    border-style : solid;
border-color : #FFF;
border-width : 1px;
}

.header h6 a:hover {
    color: var(--color-sub);
    background-color: #000;
    opacity: 1;
}



/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		height: 100vh;
		left: 0;
		overflow: auto;
		background-color: #FFF;
	}
	nav .box-menu {
		width: 100%;
		height: 100%;
		display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	}

nav .box-menu > h2 {
		position: absolute;
left: 0px;
top: 0px;
	width: 100%;
	text-align: center;
}

nav .box-menu > h2 img {
	height: 60px;
	width: auto;
}	

/*開閉ボタン*/
	#nav_toggle{
		display: inline-block;
		vertical-align: top;
		float: right;
		width: 70px;
		height: 70px;
		position: relative;
		top: 10px;
		right: 15px;
		z-index: 10000000000;
		background-color: #abd05f;
		padding: 24px 15px;
		margin-right: 0px;
		margin-top: 0px;
		border-radius: 8px;
		cursor: pointer;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #FFF;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}


/*main-img*/
 
.main-img {
	width: 100%;
    position: relative;
}

.main-img .box-img {
	width: 100%;
}

.main-img .box-img img {
    width: 100%;
height: auto;
    max-height: 600px;
}

.main-img .box-title {
	position: absolute;
left: 0px;
top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
  justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
    padding: 0px 4%;
}

.main-img .box-title img {
    height: 140px;
    width: auto;
}


/* contents */

.contents-wrap {
	width: 100%;
	padding: 110px 0px 200px;
    background-color: #42210B;
    background-image: url("../images/common/back-contents.png");
background-position: center top;
background-repeat: repeat-y;
background-size: 100% auto;
    position: relative;
}

.contents-wrap::before {
	content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	width: 100%;
	height: 250px;
    display: block;
    background : -moz-linear-gradient(50% 100% 90deg,rgba(66, 33, 11, 1) 0%,rgba(66, 33, 11, 0) 100%);
  background : -webkit-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
  background : -webkit-gradient(linear,50% 100% ,50% 0% ,color-stop(0,rgba(66, 33, 11, 1) ),color-stop(1,rgba(66, 33, 11, 0) ));
  background : -o-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
  background : -ms-linear-gradient(90deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#42210B', endColorstr='#42210B' ,GradientType=0)";
  background : linear-gradient(0deg, rgba(66, 33, 11, 1) 0%, rgba(66, 33, 11, 0) 100%);
  opacity : 0.7;
    mix-blend-mode: multiply;
    margin-bottom: -2px;
}

.contents-wrap img {
	width: 100%;
height: auto;
}


/* lay */

.lay img {
	width: 100%;
height: auto;
}

.lay p {
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-weight: 400;
}

.lay1000 {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.lay1100 {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.lay1160 {
	width: 1160px;
	margin-left: auto;
	margin-right: auto;
}

.lay-85 {
	width: 85%;
    max-width: 1380px;
	margin-left: auto;
	margin-right: auto;
}



/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

.pagetop_btn img {
   height: 65px;
	width: auto;
}

/*pagetop_btn2*/

.pagetop_btn2 {
    position: fixed;
    top: 300px;
    right: 0px;
    z-index: 100;
}

.pagetop_btn2 img {
   height: 220px;
	width: auto;
}



/*footer*/

footer {
	width: 100%;
	text-align: center;
    background-color: #FFF;
}

/*footer-guide*/

.footer-guide .box-inner {
    width: 100%;
    padding: 60px 0px;
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
gap:0px 50px;
}

.footer-guide img {
    width: auto;
height: 150px;
}

/*footer*/

.footer p {
	font-size: 11px;
line-height: 1.2;
    color: #000;
    font-weight: var(--base-weight);
	padding-bottom: 30px;
}

/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {
	
	body {
	min-width: 1280px;
	}
	
a[href^="tel:"] {
    pointer-events: none;
}

#header .sp-view {
	display: none;
}
	

}
@media screen and (max-width: 767px) {
    body {
    }

/* basefont */
:root {
  --base-font-size: 14px;
}

.contents-box p br.sp-view {
	display: inline-block;
}


/*header*/
	
.header {
}
    
.header {
    padding: 10px;
    align-items: center;
}

.header-left img {
	height: 60px;
}

.header h6 a {
	font-size: 14px;
letter-spacing: 0em;
    padding: 12px 15px;
}
    
@media screen and (max-width: 500px) {
    .header h6 a {
	font-size: 3vw;
}
}

	
/*開閉ボタン*/
	#nav_toggle{
		width: 55px;
		height: 55px;
		padding: 14px 10px 0px;
		margin-right: 0px;
		margin-top: 0px;
	}
	#nav_toggle span:nth-child(1){
		top:4px;
	}
	#nav_toggle span:nth-child(2){
		top:14px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}

	
	.nav-pc {
		display: none;
	}
	
nav .box-menu {
	justify-content: center;
	padding-top: 50px;
	}
	
nav .box-menu > h2 {
	top: 10px;
	}
	
nav .box-menu > h2 img{
	height: 52px;
	}
	

/*main-img*/
 
.main-img .box-img img {
    min-height: 250px;
}

.main-img .box-title {
    padding: 0px 2%;
}

.main-img .box-title img {
    height: 75px;
}


/* contents */

.contents-wrap {
	width: 100%;
	padding: 60px 0px 80px;
}

.contents-wrap::before {
	height: 100px;
}

/* lay */

.lay1000, .lay1100, .lay1160, .lay-85 {
	width: 88%;
}
	
/*btn-top*/
	
.pagetop_btn {
    bottom: 10px;
    right: 10px;
}

.pagetop_btn img {
    height: 50px;
}


/*footer-guide*/

.footer-guide .box-inner {
    padding: 40px 0px;
gap:0px 20px;
}

.footer-guide img {
height: 65px;
}

/*footer*/

.footer p {
	font-size: 10px;
	padding-bottom: 20px;
}
      
}
