@charset "utf-8";
* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	word-break: break-all;
}

ul,li {
	list-style: none;
}

a {
	position: relative;/*リンク反応させる*/
}

body {
	background-color: #e6e6dc;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 
}

#wrap {
	width:100%;
	height: 100vh;
	margin:0 auto;
	overflow-x: hidden;
	overflow-y: scroll;/* スクロールバー 縦表示横非表示 */
	-ms-overflow-style: none;/* IE 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
#wrap::-webkit-scrollbar {/* Chrome, edge, Safari 対応 */
	display:none;
}
@media screen and (max-width: 768px){
	#wrap  {
		background: #ea5504;
	}
}

/* 背景 */
#bg-hero {
	position: fixed;
    width: 100%;
	height: 100vh;
}
#bg-hero svg {
    width: 100%;
	height: auto;/* 100vh で画面中央 */
	position: absolute;/* 背景SVGレイヤード */
}
@media screen and (max-width: 768px){
	#bg-hero  {
		/*display: none;*/
		opacity: 0.2;
		mix-blend-mode: screen;/*スクリーン*/
	}
}
/* SVG用クラス */
.cls-orn {
	fill: #ea5504;
	stroke-width: 0px;
}
.cls-wht {
	fill: #fff;
	stroke-width: 0px;
}
.cls-brn {
	fill: #300;
	stroke-width: 0px;
}

/* 背景アニメーション */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*メインSVG レスポンシブ対応*/
@media screen and (max-width: 768px){
	.mvsvg_h { /*横イメージ*/
		display: none;
	}
}

/* メインコンテンツ */
#main-wrap {
	display: block;
	width: 100%;
	max-width: 375px;
	height: 100%;
	margin: 0 auto;
	background: #ea5504;
}
@media screen and (max-width: 768px){
	#main-wrap {
		max-width: none;
	}
}

/* ロゴボックス */
#logobox {
	padding: 140px 60px 100px;
	text-align: center;
	color: #300;
	background: #ea5504;
	margin: 0 auto;
}
#logobox h2 {
	text-align-last: justify;
	font-size: 18px;
}
#logobox img {
	padding: 30px 10px;
}

#logobox h3 {
	text-align-last: justify;
	font-size: 16px;
	line-height: 1.5;
	padding: 0 10px;
	letter-spacing: 0.15em;
}
#logobox h4 {
	width: auto;
	border-top: 1px solid #300;
	border-bottom: 1px solid #300;
	margin: 0 10px 30px;
	font-size: 12px;
	padding: 10px;
	letter-spacing: 0.15em;
}
#logobox h4 img {
	padding: 0 10px;
}

@media screen and (max-width: 768px){
	#logobox {
		width: 375px;
		padding: 100px 60px 30px;
	}
}

/* セクション */
.sec01 {
	position: relative;
	width: 100%;
	background: #ea5504;
	padding-bottom: 30px;
}

/* アーティクルボックス */
.articlebox {
	padding: 10px;
	text-align: center;
	color: #300;
	margin: 0 70px 30px;
	position: relative;
	background-color: rgba(255,255,255,0.9);
}
.articlebox:before {
	position: absolute;
	inset: -3px 3px 3px -3px;
	border: 1px solid #300;
	content: '';
}
.articlebox img {
	width: auto;
	padding: 20px;
	border: 1px solid #fff;
	background-color: #ccc;
}
.articlebox h3 {
	font-size: 14px;
	line-height: 1.5em;
	font-weight: bold;
	padding: 0.5em 0;
}
.articlebox p {
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
	padding: 0.5em 0;
}
.articlebox p.date {
	font-size: 10px;
	line-height: 1.5em;
	text-align: right;
}

/* コピーライト */
#copyright {
	width: 100%;
	max-width: 375px;
	height: auto;
	margin: 0 auto;
	background: #ea5504;
	padding: 30px 0 10px;
	text-align: center;
	color: #300;
	font-size: x-small;
	font-weight: bold;
}
@media screen and (max-width: 768px){
	#copyright {
		max-width: none;
	}
}

/* ノイズ */
.noise::after {
	animation: noise 8s steps(10) infinite;
	background: url("../images/noise.png") repeat;
	content: "";
	display: block;
	height: 300%;
	left: 0;
	position: fixed;
	top: 0;
	width: 300%;
	mix-blend-mode: multiply;
	pointer-events: none;/*クリック無効*/
}
@keyframes noise {
  to {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: 20% 25%;
  }
  50% {
    background-position: -25% 10%;
  }
  60% {
    background-position: 15% 5%;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 25% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
}