@charset "utf-8";
/* CSS Document */


/*_______________________________

　　　　　
　　　　CSS　(PC/TB/SP)
　
　＜＜header・footer 共通部分用＞＞

_______________________________*/



/*     共通
____________________*/

html {
	scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body{
    font-size: 14px;
    color: #664318;
    font-family: 'Noto Serif JP',YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" !important;
    overflow-x: hidden;
    line-height:2;
    position: relative;
    width: 100%;
    background: #eeeeee;
    font-weight: 700;
}
img{
    vertical-align: bottom;
    max-width: 100%;
}
a{
	text-decoration: none;
	color: #664318;
}
@media(hover:hover){
	a{
		transition: opacity 0.5s ease-out;
	}
    a:hover{
		opacity: 0.5;
		transition: opacity 0.5s ease-out;
    }
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
    letter-spacing: 0.07em;
}

.sp_only{
	display: none;
}

main{
	overflow: hidden;
	padding-bottom:120px;
}

section{
	padding:0 5%;
}

.inner{
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

@media(hover:hover){
.btn:hover{
		text-decoration: none;
	}
}

.fs14{
	font-size:14px;
}
.fs16{
	font-size:16px;
}
.fs18{
	font-size:18px;
}
.fs20{
	font-size:20px;
}
.fs24{
	font-size:24px;
}
.fs28{
	font-size:28px;
}

.t-a_c{
	text-align: center;
}

.half img{
	zoom:0.5;
}

a.more{
	position: relative;
	padding: 5px 0;
	width: 240px;
	letter-spacing: 0.08em;
	display: block;
	color: #535353;
	text-align: left;
}
a.more::before{
	content: '';
	width:100%;
	height: 2px;
	background: #d4ab37;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0.5;
}
a.more::after{
	content: '';
	width:40px;
	height: 2px;
	background: #d4ab37;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
}
a.more span::before{
    content: '';
    border-right: 1px solid #d4ab37;
    border-bottom: 1px solid #d4ab37;
    width: 8px;
    height: 8px;
    display: inline-block;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 0;
    right: 10px;
    top: 0;
    margin: auto;
}
a.more span::after{
	content: '';
	width: 20px;
	height: 1px;
	background:#d4ab37;
	display: inline-block;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
}

.link_list{
	padding-top: 80px;
}
.link_list ul{
	display: flex;
	justify-content: center;
    gap: 20px 50px;
	flex-wrap: wrap;
}

.scroll_action{
	opacity: 0;
}
.scroll_action.on {
	animation-name: scrollAnime;animation-fill-mode:backwards;
	animation-duration:2s;
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
/*	flex-basis: calc(100% /3);*/
	opacity: 1;
	transform: translateY(0px) ;
}

@keyframes scrollAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
}

.overflowX_scll{
	overflow-x: auto;
}

.domain::before{
	content:'@';
}

/*  _________________

      header
____________________*/


header{
	height: 94px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	padding: 0 3.7%;
}

h1{
	font-size: 40px;
	font-weight: bold;
}

header nav ul{
	display: flex;
	column-gap:50px;
	align-items: center;
	position: relative;
	height: 40px;
}

header nav ul li{
	position: relative;
}
header nav ul li a{
	color: #664318;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.08em;
}

header nav .btn_h{
	background: #664318;
	height: 40px;
	width: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
}

header nav .btn_h a{
	color: #fff;
}

@media(hover:hover){
    header nav ul li:hover ul{
	visibility: visible;
	display: flex;
	}
}

header.HeightMin {
    position: fixed;
    background: #eeeeee;
}
header.HeightMin .btn{
}




/*  _________________

       footer
____________________*/

footer {
	position: relative;
	padding-bottom:64px;
	text-align: center;
}
footer .logo a{
	display: inline-block;
}
footer .page_link{
	margin:48px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}
footer .copy{
	font-size: 12px;
}

/*      (subpage)
____________________*/
/*.subpage main{
	padding-top: 120px;
}
.subpage .mv {
	background-image:url("../img/subpage_mv.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    height: 300px;
    display: flex;
    align-items: center;
    margin-right: 5%;
}
.subpage .mv h1{
	font-size: min(3.5vw,32px);
	color: #535353;
	line-height: 2.25;
}*/


/* 　============================================


           メディアクエリ　切り替え


===============================================*/




/* 　＋＋＋＋＋＋＋　SP（767px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:767px) {
	
	.pc_only{
		display: none;
	}

	.sp_only{
		display: block;
	}	
	
	body {
	    font-size:13px;
	}
	
	header{
		justify-content: space-between;
		height: 50px;
		gap: 2%;
		padding: 0 4%;
	}	

	header h1{
		font-size: 20px;
	}
	
	header .btn {
	    margin-left: auto;
	}	
		
	#nav ul{
			display: block;
			height: auto;
	}
	
	main{
		padding-bottom:0;
	}
	
	
	/*ドロワーボタン*/
	
	/*========= ボタンのためのCSS ===============*/
	#navToggle{
	  position: relative;
	  z-index: 9999;/*ボタンを最前面に*/
	  cursor: pointer;
	  width: 40px;
	  height:40px;
	  top: 15px;
	  order: 2;
	  background: #664318;
	  border-radius: 50%;
	}
	  
	/*×に変化*/  
	#navToggle span{
	    display: inline-block;
	    transition: all .4s;
	    position: absolute;
	    left: 0;
	    right: 0;
	    margin: auto;
	    height: 1px;
	    width: 50%;
		background: #fff;
	  }
	.home #navToggle span{
		background-color: #ffffff;
	}
	#navToggle span:nth-of-type(1) {
	  top: 12px;
	}
	
	#navToggle span:nth-of-type(2) {
	  top: 20px;
	}
	
	#navToggle span:nth-of-type(3) {
	  top: 28px;
	}
	
	.openNav #navToggle span:nth-of-type(1) {
	    top: 14px;
	    transform: translateY(6px) rotate(-45deg);
		width: 50%;
	    background: #fff !important;
	}
	
	.openNav #navToggle span:nth-of-type(2) {
	  opacity: 0;
	}
	
	.openNav #navToggle span:nth-of-type(3){
	    top: 26px;
	    transform: translateY(-6px) rotate(45deg);
	    width: 50%;
	    background: #fff;
	}
	header.HeightMin #navToggle span{
		 background: #fff;
	}

	#nav {
		top: -600px;
		position: absolute; /*bodyに対しての絶対位置*/
		right:0;
		background: rgb(255 255 255 / 97%);
		width: 100%;
		-webkit-transition:.5s ease-in-out; /*transitionで動きを*/
		-moz-transition:.5s ease-in-out;
		transition:.5s ease-in-out;
		}
	#nav > ul{
		padding: 0 3.7%;
		padding-top: 40px;
        text-align: center;
	}

	#nav > ul li{	
		margin-bottom:20px;
	}
	
	#nav > ul > li > a{
        position: relative;
		color: #fff;
		font-weight: normal;
		letter-spacing: 0.2em;
        line-height: 1;
   }

/*	header::after{
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		background: #fff;
		opacity: 0;
	}
	header.openNav::after{
		opacity: 1;
	}
	
	*/
	
	header.openNav{
        background: #73babf;
	}
	
	header.openNav h1 a{
        color: #fff;
	}
	
	#header.openNav #nav{
		top: 50px;
		left: 0;
		width:100%;
		max-width: 100%;
		height: 100vh;
		text-align: left;
		display: flex;
        flex-flow: column;
        background: #73babf;
	}
	
	header.openNav #navToggle{
		background: none;
	}
	
	header.openNav .btn_h{
		display: block;
		width:auto;
		height: auto;
        padding: 10px 0;
		background:#Fff;
		color:#73babf;
		border-radius: 50px;
	}
	
	header.openNav .btn_h a{
		color:#73babf !important;
	}
	
	
	/* footer */
	footer{
		padding: 60px 0 26px;
	}
	
	footer .page_link {
		width: 80%;
        margin: 40px auto 22px;
	    gap: unset;
	    justify-content: space-around;
	}
	
	footer .page_link li{
	    width:25%;
	}
	
	
/*  _________________

      subpage
____________________*/	
	
/*.subpage main {
    padding-top: 80px;
}	
.subpage .mv{
	height: 150px;
}
		
.subpage .mv h1{
    font-size: 24px;
}	
	*/
	
	/*　---　*/
}
/* ＋＋end＋＋　SP（767px）以下 用　ここまで　＋＋end＋＋　*/






