@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
html{
	font-size:62.5%;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video { margin:0; padding:0; }
body{
	width:100%;

	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-size: 1.4rem;
	line-height: 1.65;
	text-autospace:ideograph-alpha;
	font-weight:normal;
	font-feature-settings: 'palt';
	letter-spacing: .05em;
	position: relative;
	color: var(--black);
}
.wf{
	font-family: "Open Sans", sans-serif;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--black);
	transition: all .3s ease 0s;
	display: block;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	width: 100%;
	height: auto;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.4em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section,main{
	display:block;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #dadada;
	width: 90%;
	box-sizing: border-box;
}
select {
	padding: 10px 16px 10px 10px;
	border: 1px solid #dadada;
	appearance: none;
	border-radius: 0;
	background: #fff url(/img/common/arrow_select.png) no-repeat right 6px center;
	background-size: auto 5px;
}

:root{
	--black:#231815;
	--gray: #696469;
	--blue:#003D8E;
	--green:#2E9244;
}
.flex-box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.image img{
	width: 100%;
	height: 100%;
}
table {
	width: 100%;
	border-collapse: collapse;
}
.textarea{
	text-align: justify;
}

@media screen and (min-width:768px) {
	body{min-width:1200px;}
	.pc{display: block;}
	.sp,.sp-nav{display: none;}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
@media screen and (max-width:767px) {
	body{font-size: 3.73vw;}
	.pc{display: none;}
	.sp{display: block;}
}



/*------------------------
header
------------------------*/
.top-bg{
	position: relative;
}
header .inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
header .right{
	display: flex;
}
header .logo-wrap .txt .flex-box {
	align-items: flex-end;
}
header .logo-wrap .txt .flex-box .sub {
	line-height: 1;
}
header .right #menu-btn {
	height: auto;
	position: relative;
	z-index: 200;
	text-align: center;
}
header .right #menu-list .menu-wrap > li{
	display: flex;
	position: relative;
	justify-content: space-between;
}
header .right #menu-btn div{
	left: 0;
	right: 0;
	position: absolute;
	border-radius: 50px;
	margin: 0 0 0 auto;
	background: var(--black);
	transition: transform .3s linear;
}
header .right #menu-btn a.active{
	color: #fff;
}
header .right #menu-btn a.active div{
	background: #fff;
}
header .right .menu#menu-btn p {
	line-height: 1;
	font-weight: bold;
	position: absolute;
	left: auto;
}
header .right #menu-list {
	position: absolute;
	overflow: hidden;
	z-index: 150;
	top: 0;
	right: 0;
	background: rgba(49, 36, 32, .9);
	transform: translateY(-200%);
	transition: all .6s;
}
header .right #menu-list .menu-wrap .ttl a{
	color: #fff;
}
header .right #menu-list .menu-wrap > li .sub-list::after{
	content: "";
	background: url(../img/common/header_arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
}
header .right #menu-list .menu-wrap > li .sub-list li a{
	display: inline-block;
	color: #fff;
	line-height: 1.4;
}
header .right #menu-btn .active .menu1{
	transform: rotate(45deg);
	margin: 0 auto;
}
header .right #menu-btn .active .menu3{
	transform: rotate(-45deg);
	margin: 0 auto;
}
header .right #menu-btn .active .menu2,
header .right .menu#menu-btn .active p{
	display: none;
}
/* PC */
@media screen and (min-width:768px) {
	header .inner{
		padding: 25px 0 0;
		width: 1200px;
		margin: 0 auto;
		position: relative;
	}
	header .logo-wrap .g-logo.image a {
		width: 95px;
		height: auto;
		margin-right: 20px;
	}
	header .logo-wrap .txt {
		flex: 1;
	}
	header .logo-wrap .txt .lead {
		font-size: 12px;
		margin-bottom: 8px;
	}
	header .logo-wrap .txt .flex-box .logo a {
		width: 200px;
		height: auto;
		margin-right: 10px;
	}
	header .right .link-wrap {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	header .right .link-wrap .instagram a{
		font-size: 16px;
		font-weight: 600;
		display: flex;
		align-items: center;
		margin-bottom: 5px;
	}
	header .right .link-wrap .instagram a::before{
		content: "";
		background: url(../img/common/insta_logo.svg) no-repeat;
		background-size: contain;
		width: 22px;
		height: 22px;
		margin-right: 8px;
	}
	header .right .link-wrap .tel {
		font-size: 18px;
		line-height: 1;
	}
	header .right #menu-btn{
		margin-left: 35px;
	}
	header .right #menu-btn a{
		width: 120px;
		height: 100%;
	}
	header .right #menu-btn .menu1 {
		width: 100%;
		height: 4px;
		top: 5px;
	}
	header .right .menu#menu-btn .menu2 {
		width: 110px;
		height: 4px;
		top: 15px;
	}
	header .right .menu#menu-btn .menu3 {
		width: 96px;
		height: 4px;
		top: 25px;
	}
	header .right .menu#menu-btn p {
		font-size: 20px;
		top: 35px;
		right: 15px;
	}
	header .right #menu-btn .active .menu1{
		top: 25px;
		width: 60px;
	}
	header .right #menu-btn .active .menu3{
		top: 25px;
		width: 60px;
	}
	header .right #menu-list.active{
		transform: translateY(0);
	}
	header .right #menu-list {
		width: 450px;
		padding: 75px 35px 60px;
		min-height: 560px;
	}
	header .right #menu-list .menu-wrap .ttl{
		margin-bottom: 6px;
	}
	header .right #menu-list .menu-wrap .ttl a{
		font-size: 16px;
		text-decoration: underline;
	}
	header .right #menu-list .menu-wrap .ttl.aro a{
		display: flex;
		align-items: center;
	}
	header .right #menu-list .menu-wrap > li{
		margin-bottom: 5px;
	}
	header .right #menu-list .menu-wrap > li .sub-list {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height .5s ease, opacity .5s ease;
		width: 190px;
	}
	header .right #menu-list .menu-wrap > li .sub-list::after{
		width: 62px;
		height: 3px;
		left: 115px;
		top: 13px;
	}
	header .right #menu-list .menu-wrap > li.active .sub-list {
		max-height: 500px; 
		opacity: 1;
	}
	header .right #menu-list .menu-wrap > li:not(.active) .ttl.aro:hover + .sub-list {
		max-height: 500px;
		opacity: 1;
	}
	header .right #menu-list .menu-wrap > li:not(.active) .sub-list:hover {
		max-height: 500px;
		opacity: 1;
	}
	header .right #menu-list .menu-wrap > li .sub-list li a{
		font-size: 16px;
		margin-bottom: 10px;
	}
	header .right #menu-list .menu-wrap a:hover{
		text-decoration: underline;
	}

}
/* SP */
@media screen and (max-width:767px) {
	header .inner{
		width: 100%;
		padding: 3.33%;
		position: relative;
	}
	header .logo-wrap .g-logo.image a {
		width: 13.87vw;
		height: auto;
		margin-right: 4vw;
	}
	header .logo-wrap .txt {
		flex: 1;
	}
	header .logo-wrap .txt .lead {
		font-size: 2.13vw;
		margin-bottom: 1.33vw;
		line-height: 1;
	}
	header .logo-wrap .txt .flex-box .logo a {
		width: 29.87vw;
		height: unset;
		margin-right: 1.33vw;
		line-height: 1;
	}
	header .logo-wrap .txt .flex-box .sub {
		font-size: 1.6vw;
	}
	header .right{
		height: 8vw;
	}
	header .right .link-wrap {
		display: none;
	}
	header .right #menu-btn{
		margin-left: 2.67vw;
	}
	header .right #menu-btn a{
		width: 17.33vw;
		height: 100%;
	}
	header .right #menu-btn .menu1 {
		width: 100%;
		height: 2px;
		top: 0;
	}
	header .right .menu#menu-btn .menu2 {
		width: 16vw;
		height: 2px;
		top: 1.6vw;
	}
	header .right .menu#menu-btn .menu3 {
		width: 13.87vw;
		height: 2px;
		top: 3.2vw;
	}
	header .right .menu#menu-btn p {
		font-size: 2.93vw;
		top: 4.8vw;
		right: 2.67vw;
	}
	header .right #menu-list.active{
		transform: translateY(0);
	}
	header .right #menu-btn .active .menu1,
	header .right #menu-btn .active .menu3{
		top: 4vw;
		width: 10.67vw;
	}
	header .right #menu-list {
		width: 100%;
		padding: 16vw 6.67vw 8vw;
		min-height: 149.33vw;
	}
	header .right #menu-list .menu-wrap .ttl a{
		font-size: 4vw;
		text-decoration: underline;
	}
	header .right #menu-list .menu-wrap .ttl.aro{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	header .right #menu-list .menu-wrap .ttl.aro a{
		padding-bottom: 1.33vw;
	}
	header .right #menu-list .menu-wrap .ttl.aro span{
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #fff;
		border-left: 2px solid #fff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		position: absolute;
		top: 2.4vw;
		bottom: 0;
		right: 0;
		transition: all .3s ease 0s;
	}
	header .right #menu-list .menu-wrap .active .ttl.aro span{
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	header .right #menu-list .menu-wrap > li{
		margin-bottom: 2.67vw;
		display: block;
	}
	header .right #menu-list .menu-wrap > li .sub-list {
		padding-left: 6vw;
		opacity: 0;
		max-height: 0;
		transition: max-height .5s ease, opacity .5s ease;
	}
	header .right #menu-list .menu-wrap > li .sub-list::after{
		display: none;
	}
	header .right #menu-list .menu-wrap > li.active .sub-list {
		max-height: 133.33vw; 
		opacity: 1;
	}
	header .right #menu-list .menu-wrap > li .sub-list li a{
		font-size: 3.73vw;
		margin-bottom: 1.33vw;
	}

}

/*--------------------
共通
--------------------*/
#topimg .inner{
	position: relative;
}
/* やじるしアニメーション */
#topimg .anime-arrow img{
	opacity: 0;
	animation: arrowSlideOnce 1s ease-out 0.3s forwards;
}
@keyframes arrowSlideOnce {
	0% {
	opacity: 0;
	transform: translateX(-50px);
	}
	100% {
	opacity: 1;
	transform: translateX(0);
	}
}
	#topimg .anime-arrow{
		position: absolute;
		transition: all .3s ease 0s;
	}
/* PC */
@media screen and (min-width:768px) {
	section .inner{
		width: 1200px;
		margin: 0 auto;
	}
	#topimg .anime-arrow{
		bottom: -70px;
		right: -50px;
	}
	#topimg .inner{
		width: 1200px;
		margin: 0 auto;
	}
}

@media screen and (min-width:768px) and (max-width:1310px){
	#topimg h1 {
		margin: 0 0px 15px auto;
	}
	#topimg .anime-arrow{
		right: 0px;
		bottom: -100px;
	}
}
/* SP */
@media screen and (max-width:767px) {
	#topimg .anime-arrow{
		bottom: -9.33vw;
		right: 0;
		width: 19.73vw;
	}
	#topimg .inner{
		margin: 0 4vw;
		padding-top: 64vw;
	}
}


/*------------------------
フッター
------------------------*/
	footer {
		background: var(--black);
	}
	footer .box-wrap .box .sub-list li a {
		color: #fff;
	}
	footer .box-wrap .box .sub-list li.ttl{
		display: flex;
		align-items: center;
	}
	footer .box-wrap .box .sub-list li.ttl::before{
		content: "＞";
		display: inline-block;
		color: #fff;
	}
	footer .contact {
		border: 1px solid #fff;
		margin: 0 auto;
	}
	footer .contact .tel {
		color: #fff;
	}
	footer .copy{
		color: #fff;
		text-align: center;        
		letter-spacing: .1em;
	}

/* PC */
@media screen and (min-width:768px) {
	footer .inner{
		width: 1200px;
		margin: 0 auto;
		padding: 120px 0 80px;
	}
	footer .box-wrap {
		display: flex;
		margin-bottom: 130px;
	}
	footer .box-wrap .box {
		min-width: 150px;
	}
	footer .box-wrap .box:nth-child(2),
	footer .box-wrap .box:nth-child(3){
		width: 365px;
	}
	footer .box-wrap .box:nth-child(4){
		width: 320px;
	}
	footer .box-wrap .box .sub-list li {
		margin-bottom: 10px;
	}
	footer .box-wrap .box .sub-list li a {
		font-size: 16px;
	}
	footer .box-wrap .box .sub-list li a:hover{
		text-decoration: underline;
	}
	footer .box-wrap .box:not(:first-child) .sub-list li:not(.ttl) a{
		padding-left: 20px;
	}
	footer .box-wrap .box .sub-list li.ttl::before{
		width: 20px;
	}
	footer .contact {
		width: 560px;
		padding: 15px 35px 20px;
	}
	footer .contact .tel {
		font-size: 18px;
		letter-spacing: .1em;
		line-height: 1.8;
	}
	footer .copy{
		font-size: 10px;
		padding-bottom: 25px;
	}

}

/* SP */
@media screen and (max-width:767px) {
	footer .inner{
		margin: 0 6.67vw;
		padding: 6.67vw 0 5.33vw;
	}
	footer .box-wrap {
		display: none;
	}
	footer .instagram a {
		font-size: 4vw;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 5.33vw;
		color: #fff;
	}
	footer .instagram a::before {
		content: "";
		background: url(../img/common/insta_logo.svg) no-repeat;
		background-size: contain;
		width: 5.33vw;
		height: 5.33vw;
		margin-right: 5.33vw;
	}
	footer .contact {
		padding: 3.2vw 5.33vw;
	}
	footer .contact .tel {
		font-size: 2.67vw;
		letter-spacing: .1em;
		line-height: 1.8;
	}
	footer .copy{
		font-size: 1.6vw;
		padding-bottom: 6.67vw;
	}
}


/*------------------------
エフェクト
------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.img-animation {
	overflow: hidden;
	position: relative;
}
.img-animation.active::before {
	animation: img-animation 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #fff;
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}
