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

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* リセットcss*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	height:  100vh;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #575757;
}

/*body::-webkit-scrollbar{
	display: none;
}*/

/*ヘッダー*/
.header_nav{
	width: auto;
	height: 70px;
	background: #F8F1E4;

}

.header_nav ul{
	display: flex;
	justify-content: center;
}

.header_nav ul li{
	
}
.header_nav a{
	margin: 0 35px;
	font-color: #575757;
	font-size: 20px;
	line-height: 70px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	transition: color ease 0.3s;
		z-index: 9999;
}

.header_nav a:hover{
	/*opacity: 0.4;*/
	color: #ffa318;
	/*font-weight: 600;*/
}

/*footer*/
footer{
	width: 100%;
	height: 349px;
	text-align: center;
	background: url("../images/フッター1920.jpg");
	background-size: cover;
	position: relative;
}


.footer{
	width: 60%;
	margin: 0 auto;
}

.footer_logo{
	padding-top: 55px;
}
.footer_logo a{
	transition: opacity  0.3s;
}
.footer_nav{
	display: flex;
	justify-content: center;
	margin-top: 30px;
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	
}

.top_btn{
	position: absolute;
	top: 70%;
	left: 90%;
}

.sns_icon{
	display: flex;
	justify-content: center;
	margin: 30px 0 0;
	transition: opacity ease 0.3s;
}

.sns_icon li{
	margin: 0 15px;
	transition: opacity ease 0.3s;
}

.footer p{
	margin-top: 30px;
	font-size: 14px;
	color: #575757;
}
.footer_nav a{
	margin: 0 35px;
	font-color: #575757;
	font-size: 16px;
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	transition: color ease 0.3s;
}
.footer_nav a:hover{
	/*opacity: 0.4;*/
	color: #ffa318;
}

.sns_icon li:hover{
	opacity: 0.5;
}

.footer_logo a:hover{
	opacity: 0.5;
}
/*Jquery*/
 .fade-in {
      opacity: 0;
      transition: opacity 2.2s ease-in-out;
    }

.fade-in:hover{
}

 .fade-in2 {
      opacity: 0;
      transition: opacity 5s ease-in-out;
    }
    .visible {
      opacity: 1;
    }

/*スクロール時*/
.fadein {
  opacity: 0;                /* 初期状態で透明 */
  transition: opacity 2s ease, transform 1.5s ease;
}

.fadein.is-visible {
  opacity: 1;                /* 表示する */  /* 元の位置に戻す */
}