@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+JP:wght@400;700&display=swap');
/* -----------------------------------------
 reset.css
----------------------------------------- */
html,body,h1,h2,h3,h4,h5,h6,p,div,
ul,ol,li,dl,dt,dd,
table,caption,th,td,
form,button,label,address,blockquote,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border:0;
	outline:0;
	font-size: 100%;
	font-weight: normal;
}
html,body {
    height: 100%;
}
body {
	line-height:1;
	font-family: "Noto Sans JP",'游ゴシック Medium', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, "ＭＳ Ｐゴシック", Verdana, sans-serif;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
nav ul {
	list-style:none;
}
hr {
	display: none;
}
img,abbr {
	border: none;
	vertical-align: bottom;
}
ul,ol,li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th,td {
	text-align: left;
}
a {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: none;
}
a:focus {
	outline: none;
}
input:focus, 
select:focus, 
textarea:focus {
	outline: none;
}
img {
	width: 100%;
	height: auto;
}

ol, ul, dl {
    		list-style: none;
			font-style: normal;
			font-weight: 400;
		}
*{
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	text-align: justify;
	line-height: 1.5;
}
h1{
	letter-spacing: 0 !important;
}
::selection {
	background-color: #FC5D5F;
}
/*----------------------------------------- 
slick
----------------------------------------- */
/*
.slick-slide {
	text-align: center;
	height: 90vh;
	position: relative;
	overflow: hidden;
}
.slick-slide img {
	width: 100%;
	}
*/
/* ------------------------------------------------------------------ */

/*遷移カーテン */

/* ------------------------------------------------------------------ */
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#1e1e1e;
  z-index:9999;
}
.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}

.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}
.content {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}
.mb10{
	margin-bottom: 10px !important;
}
.mb20{
	margin-bottom: 20px !important;
}
.mb30{
	margin-bottom: 30px !important;
}
.mb40{
	margin-bottom: 40px !important;
}
/* ------------------------------------------------------------------ */

/*ボックスシャドウ */

/* ------------------------------------------------------------------ */

.box {
	position:relative;
	width:100%;
	text-shadow:0 1px 0 #fff;
	line-height:1.5em;
	background:#fafafa;
	border-radius:5px;
	-moz-border-radius:5px;
	margin:100px auto 50px;
	padding:2em;
}
.box:before, .box:after {
	z-index:-1;
	position:absolute;
	content:"";
	top:80%;
	bottom:10px;
	left:10px;
	width:50%;
	background:#8c8c8c;
	-webkit-box-shadow:0 10px 10px #8c8c8c;
	-moz-box-shadow:0 10px 10px #8c8c8c;
	box-shadow:0 10px 10px #8c8c8c;
	-webkit-transform:rotate(-3deg);
	-moz-transform:rotate(-3deg);
	-o-transform:rotate(-3deg);
	-ms-transform:rotate(-3deg);
	transform:rotate(-3deg);
}
.box:after {
	right:10px;
	left:auto;
	-webkit-transform:rotate(3deg);
	-moz-transform:rotate(3deg);
	-o-transform:rotate(3deg);
	-ms-transform:rotate(3deg);
	transform:rotate(3deg);
}
strong{
	font-weight: 300;
}
em{
	font-style: normal;
}