
body {
font-family: 'Zen Maru Gothic', sans-serif;
}

html {scroll-behavior: smooth;}


/* container */
.wrapper{
    width:100%;
}
.wrapper .container{
    max-width: 1280px;
    margin: 0px auto;
    padding: 50px 0px;
}

/* content */
.wrapper .content{
    padding:0px 10px;
    text-align:center;
    margin:0px 0px 0px 0px;
}
.keyvisual{
	width: 100%;
	height: 680px;
	background-image: url("../img/scone_img_top.png");
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}
.keyvisual1{
	width: 100%;
	height: 700px;
	background-image: url("../img/scone_img1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.keyvisual2{
	width: 100%;
	height: 700px;
	background-image: url("../img/scone_img2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.kvmojibox{
	height: 700px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.kvmoji{
	width: 50%;
}
.sticker1{
	position: relative;
	top: 0px;
	margin: 0 auto;
	width: 400px;
	height: 300px;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.sticker1 span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
 	width: 400px;
	text-align:center;
	line-height: 1.8em;
	letter-spacing: 0.2em;
}
.content h3{
	font-weight: 400;
}


/* color */
.bgcolor1{
	background-color: #EEE6D6;
}
.bgcolor2{
	background-color: #F5F2E8;
}
.bgcolor3{
	background-color: #FAF8F3;
}
.bgcolor4{
	background-color: #FFFFFF;
}
.bgcolor5{
	background-color: #dcdddd;
}
.bgcolor6{
	background-color: #9c8b6e;
}
.textcolor{
	color: #000;/*#6A6A6A*/
}
.textcolor1{
	color: #EEE6D6;
}
.textcolor2{
	color: #F5F2E8;
}
.textcolor3{
	color: #9c8b6e;
}
.textcolor_white{
	color: #ffffff;
}
.textcolor_green{
	color: #627665;
}

.hrcolor_cy{
	color: #63c0ae;
}
.hrcolor_pk{
	color: #f4afab;
}
.hrcolor_bl{
	color: #5287b2;
}
.hrcolor_gr{
	color: #01a08c;
}



/*line*/

.linestyle1{
	display: flex;
	border: 0;
	height: 30px;
	padding: 0 0 7em 0;
	align-items: center;
	justify-content: center;
}

.linestyle1:before {
    content: '••••••••••••';
    font-size: 1em;
    letter-spacing: 1.5em;
  }



/* logo */
.logo{
	display: flex;
	justify-content: center;
}
.logo img{
    width: auto;
    height: 100px;
  }


/* nav */
nav ul{
	display: flex;
	justify-content: center;
	margin: 40px 0 0 0;
}
nav li{
	display: flex;
	align-content: center;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.5em;
}
nav a{
	width: 100%;
	text-decoration: none;
	position: relative;
}
nav a::after{
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 15px;
	background: #fff;
	opacity: 0.3;
	bottom: 2px;
	transform: scale(0,1);
	transform-origin: right top;
	transition: transform 0.3s;
}
nav a:hover::after{
	transform: scale(1,1);
	transform-origin: left top;
}

/* pagetop */
.top{
	position: fixed;
	width: 60px;
	height: 60px;
	right: 0px;
	bottom: 10px;
	opacity: 0.8;
}
.top img{
	width: 100%;
}
.top a{
	text-decoration: none;
	color: #424242;
}
.top li:hover{
}

/* online */
.onlinebt{
	position: fixed;
	width: 60px;
	height: auto;
	right: 0px;
	top: 0px;
	opacity: 0.8;
}
.onlinebt a{
	text-decoration: none;
	color: #424242;
}
.onlinebt li:hover{
}
.onlinebt img{
	width: 100%;
}



/* text */
.title{
	font-size: 40px;
	font-weight: 400;
    text-align: center;
	letter-spacing: 0.1em;
	margin: 2em 0 0.5em 0;
}
.title2{
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 300;
    text-align: center;
	letter-spacing: 0.5em;
	padding: 0 0 10px 0;
	margin: 0 0 10em 0;
}
.title2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3em; /*下線の上下位置調整*/
  display: inline-block;
  width: 120px; /*下線の幅*/
  height: 30px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
	background-image: url("../img/ashirai1.png");
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}
.title3{
	display: inline-block;
	position: relative;
	font-size: 24px;
	font-weight: 400;
    text-align: center;
	letter-spacing: 0.3em;
	padding: 0 0 2em 0;
}
.title3::after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.2em; /*下線の上下位置調整*/
  display: inline-block;
  width: 100px; /*下線の幅*/
  height: 1px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
	background-color: #9c8b6e;
}


.text_base p,ol li{
	font-size: 16px;
	font-weight: 400;
    text-align: left;
	line-height: 1.8em;
	letter-spacing: 0em;
	margin: 0 0em 2em;
	color: #6A6A6A;
}

.text_base ol{
	list-style-position: inside;
    margin-left: 1.5em;
    text-indent: -1.5em;
	list-style-type: decimal;
}

.text,.text2{
	font-size: 20px;
	font-weight: 400;
    text-align: center;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	margin: 3em 0;
}
.text p{
	padding: 20px 0;
}
.text{
	width: 600px;
	margin: 0em auto;
}
.text2{
	width: 520px;
	margin: 1em auto;
}

.copyright{
	padding: 50px 0 0 0;
	font-size: 12px;
	font-weight: 100;
    text-align: center;
	line-height: 3em;
	letter-spacing: 0.3em;
	color: #424242;
}
.marker{
	background:linear-gradient(transparent 85%, #bde1d6 60%);
}
.marker2{
	background:linear-gradient(transparent 85%, #E1D3BD 60%);
}



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

@media screen and (max-width: 599px) {


nav ul{
	display: block;
}
nav li{
	padding: 0.7em 0;
	margin: 0 auto 2px auto;
	width: 60%;
	border-bottom: 1px solid #000;
}

.keyvisual{
	width: 100%;
	height: 240px;
}
.keyvisual1,.keyvisual2,.onlinebox{
	height: 300px;
}
.kvmojibox{
	height: 250px;
}
.kvmoji{
	width: 80%;
}


.sticker1{
	top: 0px;
	width: 300px;
	height: 210px;
	font-size: 12px;
}
.sticker1 span {
 	width :300px;
}


.title{
	font-size: 26px;
	line-height: 2em;
	margin: 1em 0 0em 0;
}
.title2{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.7em;
	margin: 0 0 8em 0;
}
.title3{
	font-size: 16px;
}
.title3::after{
	width: 50px;	
}


.text_base p,ol li{
	font-size: 14px;
	line-height: 1.8em;
	letter-spacing: 0em;
	margin: 0 0 1.5em;
}


.text,.text2{
	font-size: 14px;
	line-height: 1.6em;
	letter-spacing: 0px;
}
.text{
	width: 90%;
	}
.text2{
	width: 90%;
	}


}