@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/***************************************
01.Reset
02.共通
　ーヘッダー
　ーパンくず
　ーフッター
03.トップページ
04.
05.

***************************************/
/***************************************
01.Reset
***************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

/*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;
}
html {
	/*overflow-x: hidden;*/
}
body {
	/*line-height: 1;*/
	text-align: left;
	overflow-x: hidden;
	transform-origin: top center;
	/*animation: loading 1s;
	animation-delay: 3s;*/
	position: relative;
}


/***************************************
02.共通
***************************************/
/*body {
	font-family:'Zen Kaku Gothic New',sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #292F3B;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
}

img{
	max-width: 100%;
}*/

/***************************************
03.ローディング
***************************************/
#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
	background:#F6F7F8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.load{
	/*width: 50px;
	height: 100px;
	background: url(../img/loading.png) no-repeat center center/100%;*/
	background: url(../img/cross.svg) no-repeat center center/cover;
	width: 100vw;
    height: 100%;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/***************************************
03.メインビジュアル
***************************************/
.mv {
	background:#F6F7F8;
	padding-top: 0px;
	position: relative;
	overflow: hidden;
	width: 100%;
}
.cross{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.cross svg{
	width: 30%;
}
.st0 {
	fill: #af2635;
}
.moji{
	width: 100%;
	height:auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.flash{
	background: url(../img/flash.webp) no-repeat center center/cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.circle-wrap{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.circle{
	width: 2000px;
	height: 2000px;
	background: #F6F7F8;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	border-radius: 50%;
}

.redback{
	background: url(../img/red_bk.jpg) no-repeat center bottom/cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.flower{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.flower1{
	width:36%;
	position: absolute;
	top: 0;
	left: 0;
}
.flower2{
	width: 36%;
	position: absolute;
	bottom: 0;
	right: 0;
}
.title-wrap{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.frame{
	background: url(../img/frame.webp) no-repeat center center/100%;
	width: 880px;
	height: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.title{
	width: 780px;
	height: 280px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.skip-wrap{
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}
a.skip{
	position: relative;
	font-size: 16px;
	padding: 10px 40px 10px 20px;
	display: inline-block;
	background: rgba(255 255 255/0.6);
	border-radius: 50px;
	color: #322C28;
	cursor: pointer;
	font-family: "Shippori Mincho", serif;
	font-weight: bold;
}
a.skip::after{
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #322C28;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
a.skip:hover{
	opacity: 0.7;
}

@media screen and (max-width:1120px) {
	.frame{
		width: 600px;
		height: 400px;
	}
	.title{
		width: 500px;
		height: 180px;
	}
}

@media screen and (max-width:767px) {
	.mv{
		width: 100%;
	}
	a.skip{
		right: 10px;
		bottom: 10px;
		padding: 5px 20px 5px 10px;
		font-size: 14px;
	}
	a.skip::after{
		right: 10px;
	}
	.circle{
		width: 1000px;
		height: 1000px;
	}

	.cross{
		width: 60%;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.cross svg{
		width: 100%;
	}
	.moji{
		width: 220%;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.frame{
		background: url(../img/frame_sp.webp) no-repeat center center/100%;
		width:96%;
		height: 100%;
		transform: none;
		left: 2%;
		top: 0;
	}
	.title{
		width: 88%;
		height: 100%;
		transform: none;
		left: 6%;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.flower1{
		width:76%;
	}
	.flower2{
		width: 64%;
	}
}
