@charset "UTF-8";
/* ==========================================================
 header
========================================================== */
header {
	width: 100%;
	z-index: 100;
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: space-between;
	padding: 40px;
	box-sizing: border-box;
	height: 100px;
	background-color: rgba(255, 255, 255, .8);
}
h1.header-title {
	margin: 0;
	z-index: 3;
}
h1.header-title::before {
	content: url(../img/h1_logo.svg);
	padding-right: 5px;
	display: inline-block;
	width: 90px;
	vertical-align: top;
}
h1.header-title a {
	font-size: 1.9rem;
	font-weight: bold;
	padding: 0;
	display: inline-block;
	line-height: 1.1;
}
h1.header-title a .row2{
	font-size: 1.65rem;	
}
h1.header-title a:hover {
	opacity: .7;
}
#hamburger {
	display: none;
	align-items: center;
	gap: 20px;
	position: absolute;
	top: 40px;
	right: 40px;
	cursor: pointer;
	transition: 1s;
	z-index: 10;
}
#hamburger:hover {
	opacity: .3;
}
p.hamburger_txt {
	font-size: 1.5rem;
	font-weight: bold;
}
.hamburger_line {
	position: relative;
	width: 40px;
	height: 30px;
}
.inner_line {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #222;
	transition: .5s;
}
#line1 {
	top: 0;
}
#line2 {
	top: 14px;
}
#line3 {
	bottom: 0;
}
.line_1, .line_2, .line_3 {
	background: #222;
}
.line_1 {
	transform: translateY(17px) rotate(-45deg);
	top: -3px !important;
}
.line_2 {
	opacity: 0;
}
.line_3 {
	transform: translateY(-17px) rotate(45deg);
	bottom: -3px !important;
}
/* ==========================================================
 nav-global
========================================================== */
#nav ul {
	display: flex;
}
#nav ul li {
	list-style-type: none;
}
#nav ul li a {
	font-size: 1.4rem;
	padding: 14px;
	font-weight: bold;
	transition: .3s;
	text-transform: uppercase;
}
#nav ul li a:hover {
	color: #ef8575;
}
#nav ul li a.nav-btn {
	background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 163, 64, 1));
	color: #fff;
	border-radius: 40px;
	margin-left: 10px;
}
#nav ul li a.nav-btn:hover {
	opacity: .7;
}
li.newtab a:after {
	font-family: "Font Awesome 5 Free";
	content: '\f35d';
	font-weight: bold;
	margin-left: 10px;
	opacity: .8;
}
/* ==========================================================
 タブレット対応（560px以上1200px以下）
========================================================== */
@media screen and (max-width: 1200px) and (min-width: 560px) {
	#nav {
		position: fixed;
		z-index: -1;
		display: flex;
		opacity: 0;
		visibility: hidden;
		top: 0;
		left: 0;
		align-items: center;
		justify-content: center;
		height: 100vh;
		width: 100%;
		background: #ef8575;
		color: #fff;
		transition: .7s;
	}
	#nav.in {
		z-index: 2;
		opacity: 1;
		visibility: visible;
	}
	#nav ul {
		display: block;
	}
	#nav ul li {
		list-style-type: none;
		font-size: 4rem;
		transition: .3s;
	}
	#nav ul li a {
		display: block;
		text-decoration: none;
		color: #fff;
		padding: 16px;
		font-weight: bold;
		transition: .3s;
		opacity: .7;
		text-transform: uppercase;
		font-size: 4rem;
	}
	#nav ul li a:hover {
		color: #fff;
		opacity: 1;
		transform: translateX(.5em);
	}
	#hamburger {
		display: flex;
	}
}
/* ==========================================================
 スマートフォン対応（559px以下）
========================================================== */
@media (max-width: 560px) {
	.header {
		padding: 17px;
		height: 80px;
		align-items: flex-start;
	}
	h1.header-title a {
		/*font-size: 1.4rem;
		padding-left: 90px;*/
	}
	#nav {
		position: fixed;
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100vh;
		width: 100%;
		background: #ef8575;
		color: #fff;
		transition: .7s;
	}
	#nav.in {
		opacity: 1;
		z-index: 2;
		visibility: visible;
	}
	#nav ul {
		display: block;
		width: 80%;
	}
	#nav ul li {
		list-style-type: none;
		font-size: 3rem;
		transition: .3s;
	}
	#nav ul li a {
		font-size: 3rem;
		display: block;
		text-decoration: none;
		color: #fff;
		padding: 16px;
		font-weight: bold;
		transition: .3s;
		opacity: .7;
		text-transform: uppercase;
	}
	#nav ul li a:hover {
		color: #fff;
		opacity: 1;
		transform: translateX(.5em);
	}
	#nav ul li a.nav-btn {
		background-image: none;
		background-color: rgba(255, 255, 255, .2);
		text-align: center;
		margin-top: 30px;
	}
	#hamburger {
		display: flex;
		top: 20px;
		right: 20px;
	}
	p.hamburger_txt {
		display: none;
	}
	.line_1 {
		top: -3px !important;
	}
	.line_3 {
		bottom: -3px !important;
	}
}