@charset "UTF-8";

/*--------------------------- 
　　　ロード画面
--------------------------- */
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #fff;
	z-index: 1100;
}
#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 300px;
	height: auto;
	font-size: 2.0rem;
	transform: translate(-50%,-50%);
	text-align: center;
	color: #ff786e;/*ピンク*/
	z-index: 1100;
}

#loader p {
	margin-top: 1em;
	animation: flash 2s linear infinite;
}

@keyframes flash {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
@media screen and (max-width: 500px) {
	#loader img {
		width: 150px;
	}
}
/*--------------------------- 
　　　フェードイン
--------------------------- */
/*その場でフェードイン*/
.delay01{
	transition-delay: 0.1s;
}
.fadein_slow{
	opacity: 0;
	transition: 1s ease;
}
.fadein_slow.scrollin{
	opacity: 1;
}
.fadein {
	opacity: 0;
	transition: 1s ease;
}
.fadein.scrollin {
	opacity: 1;
}
/*上からフェードイン*/
.fadein_top {
	opacity: 0;
	transform: translate(0,-100px);
	transition: 1s ease;
}
.fadein_top.scrollin {
	opacity: 1;
	transform: translate(0,0);
}
/*右からフェードイン*/
.fadein_right {
	opacity: 0;
	transform: translate(100px,0);
	transition: 1s ease;
}
.fadein_right.scrollin {
	opacity: 1;
	transform: translate(0,0);
}
/*下からフェードイン*/
.fadein_bottom {
	opacity: 0;
	transform: translate(0,50px);
	transition: 0.8s ease;
}
.fadein_bottom.scrollin {
	opacity: 1;
	transform: translate(0,0);
}
/*左からフェードイン*/
.fadein_left {
	opacity: 0;
	transform: translate(-100px,0);
	transition: 1s ease;
}
.fadein_left.scrollin {
	opacity: 1;
	transform: translate(0,0);
}
/*--------------------------- 
　　　ヘッダー
--------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 1000;
	transition: .3s ease;
}
header.change {
	background-color: #000;
}

header .logo {
	position: relative;
	display: flex;
	align-items: center;
	
	box-sizing: border-box;
	transition: .6s ease;
	z-index: 30;
}
header#top .logo {
	opacity: 1;
}
header .logo img {
	width: 100%;
	height: auto;
	max-width: 120px;
}
.lang-box {
	position: relative;
	top: 50%;
	border: solid 1px #fff;
	width: 90px;
	height: 25px;
	transform: translateY(-50%);
	z-index: 50;
}
.lang-box select {
	position: relative;
	/* 初期化 */
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;
	color: #fff;
	width: 100%;
	height: 100%;
	padding: 0 0.3em;
	font-size: 1.4rem;
	outline: none;
}
.lang-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 25px;
	border-left: solid 1px #fff;
	pointer-events: none;
}
.lang-box::after {
	content: "";
	position: absolute;
	top: 40%;
	right: 7px;
	border-top: 5px solid #fff;
	border-right: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid transparent;
	pointer-events: none;
}
#headA .container {
	display: flex;
	width: 95.5%;
	justify-content: space-between;
}
#headA .container.__only_front {
	display: flex;
	width: 95.5%;
	justify-content: space-between;
	max-width: 100%;
}
#headA .container .box{
	display: flex;
	justify-content: flex-end;
	width: 95%;
}
#headB {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	height: calc(100% - 60px);
	background-color: rgba(0,0,0,0.9);
	padding: 60px 0 0;
	transition: 0.5s ease;
	z-index: 20;
	overflow-y: scroll;
}
#headB.active {
	visibility: visible;
	opacity: 1;
}
.menu-list_sp {
	padding-top: 8%;
	padding-bottom: 7%;
}
.menu-list_sp ul li:first-child {
	border-top: solid 1px #6E6E6E;
}
.menu-list_sp ul li {
	position: relative;
	border-bottom: solid 1px #6E6E6E;
}
.menu-list_sp ul li a {
	position: relative;
	display: block;
	padding: 0.7em 0;
	color: #fff;
	font-weight: 400;
	font-size: 6.5vw;
	font-family: Copperplate , Copperplate Gothic Light , sans-serif;
	text-align: center;
}
.menu-list_sp ul li a span{
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 3.8vw;
}
.head_other_list {
	display: flex;
	justify-content: center;
	margin-bottom: 8%;
}
.head_other_list li {
	padding: 0 2%;
}
.head_other_list li a {
	position: relative;
	display: block;
	color: #fff;
	padding: 0.8em 3em 0.8em 1.4em;
	border-radius: 50px;
	font-size: 3.8vw;
	letter-spacing: 0.08em;
	border: solid 1px #fff;
	white-space: nowrap;
}
.head_other_list li a span {
	position: relative;
}
.head_other_list li a span::before {
	content: "";
	position: absolute;
	width: 18px;
	height: 1px;
	background-color: #fff;
	top: 55%;
	right: -30px;
	transform: translateY(-50%);
	transition: .3s ease;
}
.head_other_list li a span::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 1px;
	background-color: #fff;
	top: 45.0%;
	right: -32px;
	transform: translateY(-50%) rotate(40deg);
	transition: .3s ease;
}
header .sns_list {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}
.sns_list li {
	width: 38px;
	height: 38px;
	margin: 0 5px;
}
header .sns_list li a {
	display: block;
	border: solid 1px #fff;
	border-radius: 20px;
}
.sns_list li a img {
	
}
.return-btnbox{
	position: fixed;
	bottom: 5%;
	right: 5%;
	width: 70px;
	height: 70px;
	border: solid 1px #a80101;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	z-index: 19;
}
.return-btn{
	position: absolute;
	margin: 0 auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s;
}
.return-btnbox:hover .return-btn{
	top: 40%;
	transition: all 0.5s;
}
.return-btn span:nth-child(1){
	display: block;
	width: 19px;
	height: 2px;
	transform: translateX(7px) rotate(30deg);
	background-color: #a80101;
}
.return-btn span:nth-child(2){
	display: block;
	width: 19px;
	height: 2px;
	transform: translateX(-7px) rotate(140deg);
	background-color: #a80101;
}

@media screen and (min-width: 850px) {
	header {
		height: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		
	}
	header .logo img {
		max-width: 180px;
	}
	header .logo a:hover {
		opacity: .6;
	}
	#headA {
		width: 100%;
	}
	.menu-list_sp {
		padding-top: 100px;
		padding-bottom: 50px;		
	}
	.menu-list_sp ul li a {
		font-size: 2.4rem;
	}
	.menu-list_sp ul li a span{
		font-size: 1.4rem;
	}
	.head_other_list {
		margin-bottom: 30px;
	}
	.head_other_list li {
		padding: 0 10px;
	}
	.head_other_list li a {
		font-size: 1.8rem;
	}
	
}

@media screen and (max-width: 850px){
	.return-btnbox{
		bottom: 5%;
		right: 5%;
		width: 14vw;
		height: 14vw;
	}
	.return-btn span:nth-child(1){
		width: 4.5vw;
		height: 2px;
		transform: translateX(1.5vw) rotate(38deg);
	}
	.return-btn span:nth-child(2){
		width: 4.2vw;
		height: 2px;
		transform: translateX(-1.5vw) rotate(135deg);
	}
}
/*--------------------------- 
　　　フッター
--------------------------- */
footer {
	padding: 7% 0;
}
#footA {
	margin-bottom: 5%;
}
#footB p {
	text-align: center;
	font-weight: bold;
	font-size: 2.8vw;
}
.footer_link_list {
	display: flex;
	justify-content: center;
	margin-bottom: 5%;
}
.footer_link_list li {
	padding: 0 5%;
	box-sizing: border-box;
}
.footer_link_list li a {
	font-size: 3.5vw;
	white-space: nowrap;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.sns_list {
	display: flex;
	justify-content: center;
}
.sns_list li {
	width: 38px;
	height: 38px;
	margin: 0 5px;
}
.sns_list li a {
	display: block;
	border: solid 1px #000;
	border-radius: 20px;
}
.sns_list li a img {
	
}
@media screen and (min-width: 850px) {
	footer {
		padding: 50px 0;
	}
	#footA {
		margin-bottom: 30px;
	}
	.footer_link_list li {
		padding: 0 15px;
	}
	.footer_link_list li a {
		font-size: 1.6rem;
	}
	.footer_link_list li a:hover {
		opacity: .6;
	}
	.footer_link_list {
		margin-bottom: 30px;
	}
	.sns_list li a:hover {
		opacity: .6;
	}
	#footB p {
		font-size: 1.2rem;
	}
}

/*=============================
.btn-trigger
=============================*/
.trigger {
	position: relative;
	width: 30px;
	height: 60px;
	margin-left: 20px;
	z-index: 50;
}
.btn-trigger {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 30px;
	height: 26px;
	cursor: pointer;
	pointer-events: none;
}

.btn-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.btn-trigger, .btn-trigger span {
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
	top: 0;
}
.btn-trigger span:nth-of-type(2) {
	top: 12px;
}
.btn-trigger span:nth-of-type(3) {
	bottom: 0;
}

/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-395deg);
  transform: translateY(12px) rotate(-395deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(395deg);
  transform: translateY(-12px) rotate(395deg);
}

@media screen and (max-width: 850px) {
	
}
@media screen and (min-width: 850px) {
	
}
