@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Serif JP", serif;
}
body {
	font-weight: 400;
	color: #000;
	font-size: 16px;
	line-height: 1.7em;
}
a {
	text-decoration: none;
	color: #000;
}
ul,ol,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
span.sp,div.sp {
	display: block;
}
span.pc,div.pc {
	display: none;
}

/* --- 共通 --- */
div#wrapper {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

.cntr { text-align: center; }

h2.cntr {
	font-size: 32px;
	font-weight: normal;
	margin-bottom: 50px;
}

p.cntr {
	line-height: 2em;
}

p.yoyaku {
	font-size: 24px;
	text-align: center;
}

/* --- トグルボタン --- */
#nav_toggle {
	display: block;
	position: relative;
	width: 42px;
	height: 40px;
	cursor: pointer;
	text-align: center;
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 2px solid #000;
	transition: 0.35s ease-in-out;
}

#nav_toggle span:nth-child(1) {
	top: 10px;
}
#nav_toggle span:nth-child(2) {
	top: 19px;
}
#nav_toggle span:nth-child(3) {
	top: 28px;
}
.open #nav_toggle span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}
.open #nav_toggle span:nth-child(2),
.open #nav_toggle span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* --- グローバルナビゲーション --- */
header nav ul li a {
	display: block;
	font-size: 18px;
	color: #000;
	background: #f4e3cb;
	text-align: center;
	padding: 20px 0;
	border-bottom: 2px solid #fff;
}

/* --- ヘッダー --- */
header {
	background: rgba(255,255,255,1.0);
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

header div.container1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header img.logo {
	display: block;
	width: 250px;
	height: auto;
}

/* --- フッター --- */
footer section.content {
	background: url(../img/bg_footer.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: 50px 0px;
}

footer section.content h2 {
	margin-bottom: 50px;
}

footer section.content img.logo {
	display: block;
	width: 250px;
	height: auto;
	margin: 0 auto;
}

footer section.content p {
	text-align: center;
	font-size: 18px;
	margin-bottom: 30px;
	padding: 0 10px;
}

footer section.content ul li {
	text-align: center;
	margin-bottom: 30px;
}

footer div.copy {
	padding: 20px 10px;
	text-align: center;
	color: #CCC;
}

/* --- contact --- */
section.contact {
	padding: 100px 0px;
}

section.contact p {
	padding: 0 10px;
	margin-bottom: 30px;
}

section.contact div.box {
	padding-top: 60px;
	background: #f4e3cb;
}

section.contact ul {
	padding: 7px;
}

section.contact ul li {
	border: #fff 2px solid;
	padding: 7px;
	margin-bottom: 7px;
}

section.contact ul li:last-child {
	margin-bottom: 0px;
}

section.contact ul li a {
	display: block;
	background: #fff;
	padding: 7px;
}

section.contact ul li img {
	display: block;
	max-width: 300px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* --- フェードイン --- */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* デスクトップ用 */
@media(min-width:1200px) {
	span.sp,div.sp {
	display: none;
	}
	span.pc,div.pc {
	display: block;
	}
	/* --- トグルボタン --- */
	#nav_toggle { display: none; }
	/* --- グローバルナビゲーション --- */
	.globalMenu {
	display: block !important ;
	}
	header nav { background: none; }
	header nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	}
	header nav ul li a {
	display: block;
	color: #000;
	height: 50px;
	background: none;
	border-bottom: none;
	padding: 15px 25px;
	}
	header nav ul li.insta a {
	padding: 0;
	display: flex;
	align-items: center;
	}
	/* --- ヘッダー --- */
	header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
	}
	/* --- フッター --- */
	footer section.content ul {
	display: flex;
	justify-content: center;
	}
	footer section.content ul li {
	margin-right: 60px;
	}
	footer section.content ul li:last-child {
	margin-right: 0px;
	}
	/* --- contact --- */
	section.contact {
	padding: 100px 50px;
	}
	section.contact ul {
	display: flex;
	}
	section.contact ul li {
	flex: 1;
	display: flex;
	margin-bottom: 0px;
	margin-right: 7px;
	}
	section.contact ul li:last-child {
	margin-right: 0px;
	}
	section.contact ul li a {
	flex: 1;
	}
}

/* スマートフォン用 */
@media(max-width:1199px) {
	.globalMenu {
	display: none;
	}
}