@charset "UTF-8";
/* CSS Document */

/* ==================================================
BASE (RESET)
================================================== */

html {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0;
}

*, *::after, *::before {
	box-sizing: inherit;
}

body {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

#allWrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

ul, ol, dl {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	background: transparent;
}

ol, li {
	list-style: none;
}

dt, dd {
	font-weight: inherit;
	font-style: normal;
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
	empty-cells: show;
}

input, select {
	vertical-align: middle;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

pre {
	white-space: pre-wrap;
}

em, strong, i, b {
	font-style: normal;
	font-weight: inherit;
}

figure {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

img {
	font-size: 0;
	line-height: 0;
	border: 0;
	vertical-align: bottom;
}

img, object, embed, video {
	max-width: 100%;
}

/*レスポンシブ対応*/

img, svg {
	max-width: 100%;
	height: auto;
}

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

a {
	font-size: inherit;
	margin: 0;
	padding: 0;
	background: transparent;
	vertical-align: baseline;
}

/* ==================================================
FONT
================================================== */

html {
	font-size: 62.5%;
}

body,
#allWrap {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-style: normal;
	font-weight: 500;
	/*Medium*/
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.1em;
	color: #0069b8;
	-webkit-font-smoothing: antialiased;
	/* WebKitブラウザサポート */
	text-rendering: optimizeLegibility;
	/* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale;
	/* Firefoxサポート */
	/*font-feature-settings: 'liga';*/
	/* IEサポート */
	font-feature-settings: "palt", 'liga';
	/* IEサポート */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	/* iPhoneの文字サイズバグの回避 */
}

/*
===== Google Fonts CSS Sample =====
▼Roboto Regular/Black
https://fonts.google.com/specimen/Roboto

HTML読込み
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900&display=swap" rel="stylesheet"> 

CSS
font-family: "Roboto", sans-serif;
font-weight: 400; ← Regular
font-weight: 900; ← Black
*/

#allWrap {
	font-size: 1.6rem;
}

#allWrap p:not(:last-child) {
	margin-bottom: 2em;
	font-weight: inherit;
}

/* ################ ↓↓↓ MEDIAQUERY ↓↓↓ ########## */

@media screen and (max-width: 900px) {
	html {
		font-size: 10px;
	}
	#allWrap {
		font-size: 1.4rem;
		line-height: 1.6;
	}
	#allWrap p {}
}

/* ############## ↑↑↑ MEDIAQUERY ↑↑↑ ########## */

/* ==================================================
LINK
================================================== */

a {
	outline: 0;
	transition: opacity 0.4s ease-out 0s, color 0.4s ease-out 0s;
}

a:link {
	text-decoration: underline;
	color: #0069b8;
}

a:visited {
	text-decoration: underline;
	color: #0069b8;
}

a:hover {
	text-decoration: none;
	color: #0069b8;
	opacity: 0.7;
}

a:active {
	text-decoration: none;
	color: #0069b8;
}

:focus {
	outline: 0;
}

/* マウスオーバーでimgをZOOM
------------------------------ */

a.hoverZoom {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

a.hoverZoom img {
	width: 1000px;
	/*親ブロック以上のサイズを指定*/
	max-width: 100%;
	/*原寸より拡大させない*/
	transition: transform .25s linear 0s;
}

a.hoverZoom:hover img {
	transform: scale(1.05);
}

/* ==================================================
PCの時は、.spOnlyを非表示
================================================== */

@media screen and (min-width: 901px) {
	.spOnly {
		display: none !important;
	}
	.pcOnly {}
}

/* ==================================================
SPの時は、.pcOnlyを非表示
================================================== */

@media screen and (max-width: 900px) {
	.spOnly {}
	.pcOnly {
		display: none !important;
	}
}

/* ==================================================
COMMON
================================================== */

body {
	min-width: 320px;
	background: #7ecef4;
}

#allWrap {
	min-width: 320px;
	z-index: 3;
	margin: 0 auto;
}

@media screen and (min-width: 1600px) {
	#allWrap {
		max-width: 1600px;
		border-left: 2px solid #0069b8;
		border-right: 2px solid #0069b8;
	}
}

/* RESET CSS CUSTOM */

i {
	display: inline-block;
}

/* ANIMATION
------------------------------ */

#allWrap.introFade {
	/*animation: fadein 1s both 1s;*/
}

@media screen and (min-width: 901px) {
#commonFooter {
	animation: viewin 1s both 1s;
}
}

@media screen and (max-width: 900px) {
#commonFooter {
	animation: fadein 1s both 1s;
	bottom: 0;
}
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes viewin {
	0% { bottom: -50px; opacity: 0; }
	100% { bottom: 0;  opacity: 1; }
}

.noTransition {
	transition: none;
}

/* BACKGROUND BLOCK for CANVAS - bg1
------------------------------ */

#bg1 {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 120vh;
	overflow: hidden;
}

#bg1 .inner {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 0;
	left: calc(50% - 1000px);
}

#cvs1 {
	background-color: transparent;
}

/* BACKGROUND BLOCK for CANVAS - bg2
------------------------------ */

#bg2 {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 120vh;
	overflow: hidden;
}

#bg2 .inner {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 0;
	left: calc(50% - 1000px);
}

#cvs2 {
	background-color: transparent;
}


/* ==================================================
MENU
================================================== */

/* #hdrNavi
------------------------------ */
#hdrNavi {
	background: #7ecef4;
	padding: 0 1%;
	height: 58px;
	border-bottom: 2px solid #0069b8;
	overflow: hidden;
}

#hdrNavi ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	height: 100%;
}

#hdrNavi ul li {
	margin: 0 10px;
	position: relative;
}

#hdrNavi ul li a {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	transition: all 0.4s ease-out 0s;	
}

#hdrNavi ul li:not(.icon) a:hover {
	color: #fff459;
	transform: scaleY(1.4);
	text-shadow: 1px 2px 0 #0069b8;
	opacity: 1;
}

#hdrNavi ul li.current:not(.icon) a {
	color: #fff459;
	transform: scaleY(1.4);
	text-shadow: 1px 2px 0 #0069b8;
	pointer-events: none;
}

#hdrNavi ul .comingsoon {
}

#hdrNavi ul .comingsoon a {
	pointer-events: none;
	opacity: 0.3;
}

#hdrNavi ul .new {
}

#hdrNavi ul .new::before {
	content: "UPDATE!!";
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	font-size: 1.2rem;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.02em;
	margin: 0 auto;
	color: #f29c7c;
}

#hdrNavi ul .icon {
}

#hdrNavi ul .icon a {
}

#hdrNavi ul .icon a img {
	transition: all 0.4s ease-out 0s;
}

#hdrNavi ul .icon a:hover img {
	transform: scale(1.2) rotate(-10deg);
}

@media screen and (max-width: 900px) {
	#hdrNavi {
		border-bottom: none;
	}
	#hdrNavi ul {
		display: none;
	}
}

/* #pageNavi
------------------------------ */
#pageNavi {
	position: fixed;
	top: -420px;
	left: 0;
	z-index: 100;
	width: 100%;
	transition: all 0.8s ease-out 0s;
}

@media screen and (max-width: 900px) {
	#pageNavi {
		top: 0;
		transition: position 0s linear 0s, background 0.8s ease-out 0s, height 0.8s ease-out 0s;
	}
}

#pageNavi.veiw {
	top: 0;
}

#pageNavi .ttl {
	height: 58px;
	border-bottom: 2px solid #0069b8;
	background: #7ecef4;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-out 0s;
}

#pageNavi .ttl:hover {
	cursor: pointer;
	background: #4d96cd;
}

#pageNavi .ttl img {
	width: 70%;
	max-width: 286px;
	/*! margin: 0 auto; */
}

#pageNavi .accordion {
	background: #0069b8;
	height: 0;
	overflow: hidden;
	transition: all 0.6s ease-out 0s;
}

#pageNavi.navOpen .accordion {
	height: 350px;
}

#pageNavi .accordion ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 640px;
	margin: 0 auto;
	padding: 30px 3% 0;
}

#pageNavi .accordion ul li {
	width: 50%;
	height: 50px;
	border-bottom: 2px solid #4d96cd;
	border-left: 2px solid #4d96cd;
	border-right: 2px solid #4d96cd;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pageNavi .accordion ul li:first-child {
	border-top: 2px solid #4d96cd;
	width: 100%;
}

#pageNavi .accordion ul li:nth-of-type(2n){
	border-right: none;
}

#pageNavi .accordion ul li:last-child {
	border-bottom: none;
	border-left: none;
	width: 100%;
	height: 80px;
}

#pageNavi .accordion ul li:not(.icon) a {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-out 0s;
	position: relative;
}

#pageNavi .accordion ul li.new:not(.icon) a {
}

#pageNavi .accordion ul li.new:not(.icon) a::before {
	content: "UPDATE!!";
	position: absolute;
	top: -3px;
	left: 5px;
	font-size: 1.3rem;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #fff358;
	transform: rotate(-15deg);
}


@media screen and (max-width: 900px) {
#pageNavi .accordion ul li:not(.icon) a {
	font-size: 1.6rem;
}
}

#pageNavi .accordion ul li:not(.icon) a:hover {
	background: #4d96cd;
}

#pageNavi .accordion ul li.current:not(.icon) a {
	background: #4d96cd;
	pointer-events: none;
}

#pageNavi .accordion ul .comingsoon {
}

#pageNavi .accordion ul .comingsoon a {
	pointer-events: none;
	opacity: 0.3;
}

#pageNavi .accordion ul .icon {
}

#pageNavi .accordion ul .icon a {
}

#pageNavi .accordion ul .icon a img {
	transition: all 0.4s ease-out 0s;
}

#pageNavi .accordion ul .icon a:hover img {
	transform: scale(1.2) rotate(-10deg);
}

#pageNavi .accordion .close {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	font-size: 1.8rem;
	background: #4d96cd;
	border-top: 2px solid #4d96cd;
	transition: all 0.4s ease-out 0s;
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pageNavi .accordion .close:hover {
	cursor: pointer;
	background: #0069b8;
}

#pageNavi .accordion .close span {
	position: relative;
	padding-left: 35px;
}

#pageNavi .accordion .close span::before,
#pageNavi .accordion .close span::after {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
}

#pageNavi .accordion .close span::before {
	transform: rotate(45deg);
}

#pageNavi .accordion .close span::after {
	transform: rotate(-45deg);
}

/* ==================================================
HEADER
================================================== */
#pageHdr {
	height: 296px;
	border-bottom: 2px solid #0069b8;
	background: url("../img/hdr_visual_2nd.png") no-repeat center center;
	background-size: cover;
}

@media screen and (max-width: 1000px) {
#pageHdr {
	height: 270px;
}
}

@media screen and (max-width: 900px) {
#pageHdr {
	height: 0;
	padding-top: 28%;
}
}

@media screen and (max-width: 640px) {
#pageHdr {
}
}

#pageHdr.v2 {
	height: 370px;
	border-bottom: 2px solid #0069b8;
	background: url("../img/hdr_visual_2nd_v2.png") no-repeat center center;
	background-size: cover;
}

@media screen and (max-width: 760px) {
#pageHdr.v2 {
	height: 0;
	padding-top: 50%;
}
}


/* ==================================================
PAGE HEADER ※下層ページ用
================================================== */



/* ==================================================
CONTENTS COMMON
================================================== */

main {}

/* ノボリアニメーション
------------------------------ */
.noboriScroll {
	background: url(../img/nobori_line.png) repeat-x 0 0;
	background-size: auto 100%;
	animation: nobori-line 40s linear infinite;
	width: 100%;
	height: 314px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 900px) {
	.noboriScroll {
		animation: nobori-line-sp 30s linear infinite;
		height: 157px;
	}
}

@keyframes nobori-line {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -1842px 0;
	}
	/* 1842pxとは使用した背景画像の長さ */
}

@keyframes nobori-line-sp {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -921px 0;
	}
}

.noboriScroll2 {
	background: url(../img/nobori_line.png) repeat-x 0 0;
	background-size: auto 100%;
	animation: nobori-line2 40s linear infinite;
	width: 100%;
	height: 314px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 900px) {
	.noboriScroll2 {
		animation: nobori-line2-sp 30s linear infinite;
		height: 157px;
	}
}

@keyframes nobori-line2 {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 1842px 0;
	}
	/* 1842pxとは使用した背景画像の長さ */
}

@keyframes nobori-line2-sp {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 921px 0;
	}
}


/* エリアフォーマット
------------------------------ */
.areaBlk {
	padding: 100px 3%;
	position: relative;
}

@media screen and (max-width: 640px) {
.areaBlk {
	padding-top: 15%;
}
}

.areaBlk.type2 {
	/*background: #f29c7c;*/
	background: rgba(242,156,124,0.85);
	border-top: 2px solid #0069b8;
	border-bottom: 2px solid #0069b8;
}

.areaBlk.type2 + .areaBlk.type2 {
	border-top: none;
}

/* タイトルフォーマット
------------------------------ */
.areaTtl {
	margin-bottom: 70px;
}

.areaTtl img {
}

@media screen and (max-width: 900px) {
.areaTtl {
	margin-bottom: 50px;
	padding: 0 10%;
}

.areaTtl img {
	height: 70px;
}
}

/* リンクボタン
------------------------------ */

a.btnType {
	background: #fff;
	border: 1px solid #000;
	width: 80%;
	max-width: 360px;
	height: 70px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

a.btnType img {
	display: block;
}

a.btnType:hover {}

a.btnType:hover img {}

/* テキストリンク
------------------------------ */

a.txtType {
	text-decoration: none;
	position: relative;
	padding: 0 24px 5px 0;
	display: inline-block;
	line-height: 1.2;
	transform: translateY(-2px);
}

a.txtType::before {
	content: "";
	position: absolute;
	bottom: 8px;
	right: 6px;
	width: 11px;
	height: 8px;
	background: url("../img/common/icon_window.svg") no-repeat center center;
	background-size: 100%;
}

a.txtType::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #0069b8;
}

a.txtType img {
}

a.txtType:hover {
}

a.txtType:hover img {
}

/* YouTube
------------------------------ */

.youtube {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding: 30px 0 56.25%;
	/*アスペクト比 16:9の場合の縦幅*/
	/*padding: 0 0 56.25%;*/
	/*アスペクト比 16:9の場合の縦幅*/
	/* margin: 0 0 20px; */
}

.youtube iframe {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* borderBox
------------------------------ */
.borderBox {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 40px;
	position: relative;
	z-index: 1;
}

.borderBox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	border: 2px solid #0069b8;
	background: #7ecef4;
}

.borderBox::after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: -2;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	border: 1px solid #0069b8;
	background: #fff;
}

.borderBox p em {
	color: #f29c7c;
	font-weight: 900;
}

@media screen and (max-width: 900px) {
.borderBox {
	text-align: left;
	padding: 40px 30px;
}

.borderBox::before {
}

.borderBox::after {
}

.borderBox p em {
}
}

/* simpleBox
------------------------------ */
.simpleBox {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 40px;
	background: #fff;
	text-align: left;
}

.simpleBox p em {
	color: #f29c7c;
	font-weight: 900;
}

.simpleBox .ttl {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.4;
}

.simpleBox .ttl em {
	display: inline-block;
	background: #fff358;
	padding: 5px 16px;
}

@media screen and (max-width: 900px) {
.simpleBox {
	padding: 40px 20px;
}

.simpleBox p em {
}

.simpleBox .ttl {
	font-size: 1.7rem;
	margin-bottom: 30px;
	text-align: left;
}

.simpleBox .ttl em {
	padding: 5px 12px;
}
}

@media screen and (min-width: 561px) {
.simpleBox .ttl em br {
	display: none;
}
}


/* 箇条書き
------------------------------ */
ul.list {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}

ul.list li {
	text-indent: -24px;
	padding-left: 24px;
	line-height: 1.4;
}

ul.list li:not(:last-child) {
	margin-bottom: 8px;
}

ul.list li * {
	text-indent: 0;
}

ul.list li::before {
	content: "■";
	display: inline-block;
	width: 24px;
	text-indent: 0;
}

/* 注意書き
------------------------------ */
ul.note {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}

ul.note li {
	text-indent: -24px;
	padding-left: 24px;
	line-height: 1.4;
	margin-bottom: 5px;
}

ul.note li:not(:last-child) {
	margin-bottom: 8px;
}

ul.note li * {
	text-indent: 0;
}

ul.note li::before {
	content: "※";
	display: inline-block;
	width: 24px;
	text-indent: 0;
}

/* playguideSet
------------------------------ */
.playguideSet {
	max-width: 600px;
	margin: 100px auto;
}

.playguideSet .board {
	position: relative;
	border: 2px solid #0069b8;
}

.playguideSet.close {
}

.playguideSet.close > * {
	/*display: none;*/
}

.playguideSet .board img.caption {
	position: absolute;
	top: 2px;
	left: -40px;
	transform: rotate(-15deg);
}

.playguideSet .board img {
}

.playguideSet ul {
	margin: -22px auto 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
}

.playguideSet ul li {
	border: 2px solid #0069b8;
	background: #0069b8;
	max-width: 196px;
}

.playguideSet ul li a {
	color: #fff;
	text-decoration: none;
	line-height: 1.4;
}

.playguideSet ul li a .logo {
}

.playguideSet ul li a .logo img {
}

.playguideSet ul li a .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	transition: all 0.4s ease-out 0s;
}

.playguideSet ul li a:hover {
	opacity: 1;
}
	
.playguideSet ul li a:hover .txt {
	background: #4d96cd;
}

.playguideSet ul li a .txt dl {
}

.playguideSet ul li a .txt dl dt {
	font-size: 1.8rem;
	font-weight: 700;
}

.playguideSet ul li a .txt dl dd {
	font-size: 1.6rem;
	margin-top: 8px;
}

.playguideSet ul li a .txt dl dd i {
}

@media screen and (max-width: 900px) {
.playguideSet {
}

.playguideSet .board {
}

.playguideSet .board img.caption {
	transform: rotate(0deg);
	top: -22px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
}

.playguideSet .board img {
}

.playguideSet ul {
	margin-top: -2px;
	justify-content: flex-start;
	align-items: center;
}

.playguideSet ul li {
	width: 100%;
	margin-bottom: -2px;
	max-width: 100%;
}

.playguideSet ul li a {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

.playguideSet ul li a .logo {
	height: 100px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 2px solid #0069b8;
	width: 150px;
}

.playguideSet ul li a .logo img {
}

.playguideSet ul li a .txt {
	background: #7ecef4;
	width: calc(100% - 150px);
}

.playguideSet ul li a .txt dl {
}

.playguideSet ul li a .txt dl dt {
	font-size: 1.6rem;
}

.playguideSet ul li a .txt dl dd {
	font-size: 1.4rem;
}

.playguideSet ul li a .txt dl dd i {
	margin: 0 10px;
}
}

/* ==================================================
FOOTER CREDIT
================================================== */

#ftrCredit {
}

#ftrCredit ul {
	text-align: left;
	max-width: 640px;
	margin: 0 auto;
}

#ftrCredit ul li {
	margin-bottom: 10px;
}

#ftrCredit ul li em {
	display: inline-block;
	border: 2px solid #0069b8;
	line-height: 1.2;
	padding: 3px 0;
	font-weight: 700;
	font-size: 1.4rem;
	width: 150px;
	text-align: center;
	margin-right: 20px;
}

#ftrCredit ul li span {
	display: inline-block;
	font-weight: 700;
	font-size: 1.5rem;
}

#ftrCredit ul li span i {
}

@media screen and (max-width: 900px) {
#ftrCredit {
}

#ftrCredit ul {
}

#ftrCredit ul li {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: row;
	margin-bottom: 20px;
}

#ftrCredit ul li em {
	width: 120px;
	font-size: 1.3rem;
}

#ftrCredit ul li span {
	width: calc(100% - 140px);
	font-size: 1.4rem;
}

#ftrCredit ul li span i {
}
}



/* ==================================================
ARCHIVE
================================================== */

#archiveArea {
}

#archiveArea h2 {
}

#archiveArea h2 img {
}

#archiveArea .bnr {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 900px;
	margin: 0 auto;
}

#archiveArea .bnr li {
	width: calc(50% - 30px);
	max-width: 400px;
	margin: 30px 15px 0;
}

#archiveArea .bnr li:first-child {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}

#archiveArea .bnr li a {
}

#archiveArea .bnr li a::after {
}

#archiveArea .bnr li a img {
}

#archiveArea .bnr li a:hover img {
}


@media screen and (max-width: 900px) {
#archiveArea {
}

#archiveArea h2 {
}

#archiveArea h2 img {
}

#archiveArea .bnr {
}

#archiveArea .bnr li {
	width: 100%;
	max-width: 100%;
	margin: 30px auto 0;
}

#archiveArea .bnr li:first-child {
}

#archiveArea .bnr li a {
}

#archiveArea .bnr li a::after {
}

#archiveArea .bnr li a img {
}

#archiveArea .bnr li a:hover img {
}
}

/* ==================================================
FOOTER
================================================== */

/* pageTop
------------------------------ */

#pageTop {
	padding: 80px 3%;
}

#pageTop .scrollto {}

#pageTop .scrollto img {
	width: 40%;
	max-width:158px;
}

/**/

#ftrWrap {
	background: #7ecef4;
	border-top: 2px solid #0069b8;
	padding: 30px 3% 60px;
}

#ftrWrap .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#ftrWrap .jwaveLogo {}

#ftrWrap .jwaveLogo a {}

#ftrWrap .jwaveLogo img {
	margin: 0;
}

#ftrWrap .copyright {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #0069b8;
	line-height: 1.2;
	font-size: 1.2rem;
	text-transform: uppercase;
}

#ftrWrap .copyright b {}

@media screen and (max-width: 900px) {
	#ftrWrap {
		padding: 30px 3%;
	}

	#ftrWrap .inner {
		display: block;
		text-align: left;
	}

	#ftrWrap .jwaveLogo {
		margin-bottom: 15px;
	}
}


/* ==================================================
ANIMATION
================================================== */

body {
	animation: body_fadein 2.2s ease 0.2s both;
}

@keyframes body_fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/* //////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ==================================================
OTHERS
================================================== */

.scrollto {
	/**/
}

/* clrfix */

.clrfix::before,
.clrfix::after {
	display: table;
	content: '';
}

.clrfix::after {
	clear: both;
}

/* iOS フルサイズディスプレイ対応 */

.vfit-cover {
	padding-left: constant(safe-area-inset-left);
	padding-right: constant(safe-area-inset-right);
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}

/* 画像コピーガード */

.protectImg,
.nobori li {
	position: relative;
}

.protectImg::after,
.nobori li::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/blank.gif) repeat left top;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

/*

<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- ##########　HTML コメントアウト記述ルール　######################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->


<!-- ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ///// メインコンテンツエリア（編集エリア） ///////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->

<!-- //////////////////////////////////////////////////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ -->

<!-- ==================== 大ブロックエリア ==================== -->
<!-- ==================== //大ブロックエリア ==================== -->

<!-- ***** 中ブロックエリア *************** -->
<!-- ***** //中ブロックエリア *************** -->

<!-- #ID名 -->
<!-- //#ID名 -->

<!-- .class名 -->
<!-- //.class名 -->

<!-- [memo] -->
<!-- //[memo] -->


<!-- ※※※※※ INCLUDE - HEADER ※※※※※ -->
<!--#include virtual="/common/inc_header.html"-->
<!-- ※※※※※ //INCLUDE - HEADER ※※※※※ -->

<!-- ※※※※※ INCLUDE - FOOTER ※※※※※ -->
<!--#include virtual="/common/inc_footer.html"-->
<!-- ※※※※※ //INCLUDE - FOOTER ※※※※※ -->

<!--
[ id/class Name List ]
wrap > area > (group) > set > box

[ memmo ]
TOPページ → <body id="pageHome">
NEWSページ(第2階層) → <body id="pageNews" class="dir2nd">
-->
*/

/* ####################################################################################################
##########　コメントアウト記述ルール　#################################################################
#################################################################################################### */

/* ////////////////////////////////////////////////////////////////////
//////// ブロック区切り ///////////////////////////////////////////////
/////////////////////////////////////////////////////////////////// */

/* ==================================================
大見出し
================================================== */

/* 中見出し（他、説明など）
------------------------------ */

/* ### 小見出し 1 ### */

/* ### ----- ### */

/* 小見出し 2 */

/* ----- */
