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

/* Web Font */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Noto+Sans+JP:wght@400;700&display=swap');
/*
https://fonts.google.com/specimen/Abril Fatface?query=Abril Fatface&selection.family=Noto+Sans+JP:wght@400;700|Abril Fatface:wght@400;700&sidebar.open

font-family: 'Noto Sans JP', sans-serif;
font-family: 'Abril Fatface', cursive;
*/

/* ==================================================
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 { width: 100%; margin: 0 auto; }

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: normal; 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: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: .1em;
	color: #000;
	
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt", 'liga';
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
}

#allWrap { font-size: 1.4rem; }

/* ################ ↓↓↓ MEDIAQUERY ↓↓↓ ########## */ @media screen and (max-width: 900px) {
html { font-size: 10px; }
} /* ############## ↑↑↑ MEDIAQUERY ↑↑↑ ########## */

/*
===== WEB Fonts CSS Sample =====
■Noto Sans JP Regular
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
font-style: normal;

■Noto Sans JP Bold
font-family: 'Noto Sans JP', sans-serif;
font-weight: 700;
font-style: normal;

■Abril Fatface Regular
font-family: 'Abril Fatface', cursive;
font-weight: 400;
font-style: normal;
*/


/* ==================================================
LINK
================================================== */
a { outline: 0; transition: opacity 0.4s ease-out 0s, color 0.4s ease-out 0s; }
a:link { text-decoration: none; color: #000; }
a:visited { text-decoration: none; color: #000; }
a:hover { text-decoration: none; color: #000; opacity: 0.6; }
a:active { text-decoration: none; color: #000; }
:focus { outline: 0; }

.linkBtn a { text-decoration: none; display: inline-block; line-height: 1.2; }

/* マウスオーバーで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; }
}


/* ==================================================
PAGE BASE
================================================== */
body { min-width: 320px; }

#allWrap {
	min-width: 320px;
	overflow: hidden;
	text-align: center;
}

/* RESET CSS CUSTOM */
i {
	display: inline-block;
}

::before, ::after {
	display: inline-block;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
/**/

.linkBtn {
	margin: 30px 0 50px;
}

.linkBtn a {
	width: 80%;
	max-width: 360px;
	margin: 0 auto;
	background:  #000;
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 0 10px;
	text-align: center;
	border-radius: 4px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.linkBtn a:hover {
}

/* メッセージを送る ボタン */
.linkBtn.message a {
}

.linkBtn.message a .svgStyle {
	width: 24px;
	height: auto;
	transform: translateY(1px);
	margin-right: 10px;
}

.linkBtn.message a:hover {
}

.linkBtn.message a:hover .svgStyle {
}


/* ==================================================
HEADER
================================================== */
#siteHdr {
	margin-bottom: 30px;
}

#siteHdr .mainBlock {
	background-image: url("../img/hdr_bg_sp.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	height: 480px;
	position: relative;
	transition: height 0.4s ease-out 0s;
}

@media screen and (min-width: 500px) {
	#siteHdr .mainBlock {
		height: 560px;
	}
}

@media screen and (min-width: 680px) {
	#siteHdr .mainBlock {
		height: 680px;
	}
}

#siteHdr .mainBlock .inner {
	padding: 25px 3% 0;
	/*! position: relative; */
}

#siteHdr .mainBlock .titleBlock {
	font-family: 'Abril Fatface', sans-serif;
	line-height: 1.2;
	color: #d6130c;
	text-align: center;
	/*! margin-bottom: 100px; */
}

#siteHdr .mainBlock .titleBlock .date {
	font-size: 1.6rem;
	margin-bottom: 15px;
}

#siteHdr .mainBlock .titleBlock .date i {
}

#siteHdr .mainBlock .titleBlock h1 {
	font-size: 10vw;
	letter-spacing: 0.02em;
}

@media screen and (max-width: 320px) {
	#siteHdr .mainBlock .titleBlock h1 {
		font-size: 3.2rem;
	}
}

@media screen and (min-width: 750px) {
	#siteHdr .mainBlock .titleBlock h1 {
		font-size: 7.5rem;
	}
}

#siteHdr .mainBlock .titleBlock h1 a {
	color: #d6130c;
}

#siteHdr .mainBlock .naviBlock {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
}

#siteHdr .mainBlock .naviBlock ul {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#siteHdr .mainBlock .naviBlock ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	position: relative;
	width: 300px;
	/*! margin: 20px 10px; */
}

#siteHdr .mainBlock .naviBlock ul li .caption {
	width: 120px;
	text-align: left;
	position: relative;
	z-index: 2;
}

#siteHdr .mainBlock .naviBlock ul li .caption .label {
	font-family: 'Abril Fatface', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	display: inline-block;
	background: #d6130c;
	line-height: 1;
	padding: 8px;
	color: #fff;
}

#siteHdr .mainBlock .naviBlock ul li .caption .name {
	font-size: 1.8rem;
	display: inline-block;
	background: #d6130c;
	line-height: 1;
	padding: 8px;
	font-weight: 700;
	margin-top: -6px;
	color: #fff;
	letter-spacing: 0.2em;
}

#siteHdr .mainBlock .naviBlock ul li .thumb {
	max-width: 180px;
	width: 70%;
	margin-left: -20px;
	position: relative;
	z-index: 1;
}

#siteHdr .mainBlock .naviBlock ul li .thumb img {
	border-radius: 200px;
	border: 6px solid #fff;
}

#siteHdr .leadBlock {
	background-color: #d6130c;
	padding: 40px 4%;
}

#siteHdr .leadBlock ul {
}

#siteHdr .leadBlock ul li {
	margin: 0 auto;
}

#siteHdr .leadBlock ul li:nth-child(2) {
	margin: 20px auto;
}

#siteHdr .leadBlock ul li p {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
}

#siteHdr .leadBlock ul li img {
}

#siteHdr .leadBlock ul li .linkBtn {
	margin: 0 auto;
}

#siteHdr .leadBlock ul li .linkBtn a {
	width: 100%;
}

#siteHdr .leadBlock ul li .linkBtn a .svgStyle {
}

#siteHdr .leadBlock ul li .linkBtn a span {
}

@media screen and (min-width: 901px) {
#siteHdr {
	margin-bottom: 60px;
}

#siteHdr .mainBlock {
	background-image: url("../img/hdr_bg_pc.jpg");
	background-position: left 60% bottom 100%;
	background-size: auto;
	margin: 0 auto;
	max-width: 1440px;
}

#siteHdr .mainBlock .inner {
	width: 60%;
	padding: 75px 3% 0;
}

#siteHdr .mainBlock .titleBlock {
	margin-bottom: 100px;
}

#siteHdr .mainBlock .titleBlock .date {
}

#siteHdr .mainBlock .titleBlock .date i {
}

#siteHdr .mainBlock .titleBlock h1 {
	font-size: 6rem;
}

#siteHdr .mainBlock .titleBlock h1 a {
}

#siteHdr .mainBlock .naviBlock {
	position: static;
}

#siteHdr .mainBlock .naviBlock ul {
}

#siteHdr .mainBlock .naviBlock ul li {
	transform: translateX(-50px);
}

#siteHdr .mainBlock .naviBlock ul li .caption {
}

#siteHdr .mainBlock .naviBlock ul li .caption .label {
}

#siteHdr .mainBlock .naviBlock ul li .caption .name {
}

#siteHdr .mainBlock .naviBlock ul li .thumb {
	max-width: 200px;
}

#siteHdr .mainBlock .naviBlock ul li .thumb img {
}

#siteHdr .leadBlock {
	padding: 20px;
}

#siteHdr .leadBlock ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 auto;
	max-width: 1100px;
}

#siteHdr .leadBlock ul li {
	width: 40%;
}

#siteHdr .leadBlock ul li:nth-child(2) {
	margin: 0;
	width: 20%;
	padding: 0 20px;
}

#siteHdr .leadBlock ul li p {
}

#siteHdr .leadBlock ul li img {
}

#siteHdr .leadBlock ul li .linkBtn {
}

#siteHdr .leadBlock ul li .linkBtn a {
}

#siteHdr .leadBlock ul li .linkBtn a .svgStyle {
}

#siteHdr .leadBlock ul li .linkBtn a span {
}
}


/* ==================================================
HEADER 第2階層
================================================== */
#pageHdr {
	background-image: url("../img/hdr_bg_2nd.jpg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: auto 100%;
	height: 350px;
	position: relative;
	transition: height 0.4s ease-out 0s;
}

#pageHdr .titleBlock {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #d6130c;
	/*! border-bottom: 25px solid #d6130c; */
	padding: 20px 3%;
	font-family: 'Abril Fatface', sans-serif;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

#pageHdr .titleBlock .date {
	font-size: 1.5rem;
	margin-bottom: 6px;
}

#pageHdr .titleBlock .date i {
}

#pageHdr .titleBlock h1 {
	font-size: 2.8rem;
	letter-spacing: 0.02em;
}

#pageHdr .titleBlock h1 a {
	color: #fff
}

#pageHdr .titleBlock h1 a i {
}

@media screen and (min-width: 901px) {
#pageHdr {
	height: 420px;
	margin-bottom: 30px;
}

#pageHdr .titleBlock {
	padding: 15px 3%;
}

#pageHdr .titleBlock .date {
}

#pageHdr .titleBlock .date i {
}

#pageHdr .titleBlock h1 {
	font-size: 3.8rem;
	letter-spacing: 0.05em;
}

#pageHdr .titleBlock h1 a {
}

#pageHdr .titleBlock h1 a i {
}
}

/* ==================================================
GIGYA SHARE
================================================== */
#snsArea {
	margin-bottom: 30px;
}

#gigyaShare {
}


/* ==================================================
CONTENTS
================================================== */
#main-contents {
	/*! margin-top: -30px; */
	padding-top: 30px;
	/* アンカーリンク位置対策 */
	
	padding-bottom: 60px;
}

#main-contents > article {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 3%;
}

#main-contents .areaTitel {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 40px;
	font-family: 'Abril Fatface', sans-serif;
	text-align: center;
	color: #d6130c;
	line-height: 1.2;
}

#main-contents .linkBtn {
}

#main-contents .linkBtn a {
}

#main-contents .linkBtn a .svgStyle {
}

#main-contents .linkBtn a:hover {
}

#main-contents .linkBtn a:hover .svgStyle {
}

/* #widgetArea
------------------------------ */
#widgetArea {
}

#widgetArea h2 {
}

#widgetArea .linkBtn {
	margin-top: 40px;
}

/* ### Widget Section 共通設定 ### */
#widgetSet {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

#widgetSet section {
	width: calc(100% / 2 - 30px);
	max-width: 500px;
	margin: 0 15px 60px;
}

#widgetSet section:last-child {
	margin-bottom: 30px;
}


/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 900px) {
	#widgetSet section {
		width: 90%;
		margin: 0 auto 60px;
		min-width: 280px;
	}
} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


#widgetSet section:not(:first-child) {
}

#widgetSet section h1 {
	margin-bottom: 20px;
}

#widgetSet section h1 a {
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	text-decoration: none;
	color: #222428;
	max-width: 180px;
	margin: 0 auto;
}

#widgetSet section h1 a::before {
	/*content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;*/
}

#widgetSet section h1 a:hover {
	/*color: #5494A1;*/
	opacity: 0.5;
}

#widgetSet section .box {
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 500px;
}
/* ### ----- ### */


/* Instagram Widget */
#widgetSet .sns-ig {
	min-width: 500px;
}

#widgetSet .sns-ig h1 a {
}

/*#widgetSet .sns-ig h1 a::before {
	background: url(../img/icon_sns_ig.svg) no-repeat center center;
	background-size: contain;
}*/

#widgetSet .sns-ig h1 a .svgStyle {
	width: auto;
	height: 20px;
	margin-right: 8px;
	transform: translateY(2px);
}

#widgetSet .sns-ig .box {
	max-width: 500px;
	height: auto !important;
	margin: 0 auto;
	background: #f9f9f9;
	border: 1px solid #e6e6e6;
}

#widgetSet .sns-ig .box .snapwidgetWrapper {
	position: relative;
	padding-top: 100%;
}

#widgetSet .sns-ig .box .snapwidgetWrapper a {
	display: inline-block;
}

#widgetSet .sns-ig .box .snapwidgetWrapper a:hover {
}

#widgetSet .sns-ig .box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* --- */


/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 900px) {
	#widgetSet .sns-ig {
		min-width: 280px;
	}
} /* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */


/* Facebook Widget */
#widgetSet .sns-fb {
}

#widgetSet .sns-fb h1 a {
}

/*#widgetSet .sns-fb h1 a::before {
	background: url(../img/icon_sns_fb.svg) no-repeat center center;
	background-size: contain;
}*/

#widgetSet .sns-fb h1 a .svgStyle {
	width: auto;
	height: 20px;
	margin-right: 8px;
	transform: translateY(1px);
}

#widgetSet .sns-fb .box {
}

#widgetSet .sns-fb .box a {
	display: block;
}
/* --- */

/* Twitter Widget */
#widgetSet .sns-tw {
}

#widgetSet .sns-tw h1 a {
}

/*#widgetSet .sns-tw h1 a::before {
	background: url(../img/icon_sns_tw.svg) no-repeat center center;
	background-size: contain;
}*/

#widgetSet .sns-tw h1 a .svgStyle {
	width: auto;
	height: 20px;
	margin-right: 8px;
	transform: translateY(1px);
}

#widgetSet .sns-tw .box {
	border: 1px solid #e4e4e4;
}
/* --- */


/* ==================================================
FOOTER
================================================== */
#ftrAbove {}

#ftrWrap {
}

#ftrWrap .pageTop {
	padding-bottom: 80px;
}

#ftrWrap .pageTop a {
	font-family: 'Abril Fatface', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	font-weight: 700;
	display: block;
	width: 70px;
	padding-top: 15px;
	text-align: center;
	margin: 0 auto;
	color: #d6130c;
	position: relative;
}

#ftrWrap .pageTop a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 16px;
	height: 16px;
	border-top: 3px solid #d6130c;
	border-left: 3px solid #d6130c;
	transform: rotate(45deg);
}

#ftrWrap .pageTop a:hover {
}

#ftrWrap footer {
	background-color: #d6130c;
}

#ftrWrap footer .inner {
	padding: 40px 4% 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#ftrWrap footer .jwaveLogo {
	width: 40%;
	max-width: 168px;
}

#ftrWrap footer .jwaveLogo a {
	color: #000;
}

#ftrWrap footer .jwaveLogo a:hover {
}

#ftrWrap footer .jwaveLogo .svgStyle {
	width: 100%;
	height: auto;
	fill: #fff;
}

#ftrWrap footer .copyright {
	color: #fff;
	letter-spacing: 0.05em;
	font-weight: 700;
}

#ftrWrap footer .copyright i {
	margin-right: 5px;
}


/* ==================================================
スクロールを促すアイコンのアニメーション設定
================================================== */

/* Scroll Animation */
.scrolltoBtn {
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 100;
}

.scrolltoBtn::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -2;
	transform: scale(2.2);
}

.scrolltoBtn::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	transform: scale(2.2);
	animation: linkBg 2s infinite;
}

@keyframes linkBg {
	0% {
		transform: scale(1.2);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: scale(2.2);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.scrolltoBtn > a {
	padding-top: 45px;
	position: relative;
	font-size: 11px;
	letter-spacing: 0.05em;
	font-weight: bold;
	text-decoration: none;
	color: #3e3e3e;
	display: inline-block;
	transition: color 0.4s ease-out 0s;
}

.scrolltoBtn > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 40px;
	border: 2px solid #3e3e3e;
	border-radius: 50px;
	box-sizing: border-box;
	transition: border-color 0.4s ease-out 0s;
}

.scrolltoBtn > a::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 6px;
	height: 6px;
	background-color: #3e3e3e;
	border-radius: 100%;
	animation: mouseWheel 2s infinite;
	transition: background-color 0.4s ease-out 0s;
}

.scrolltoBtn > a:hover {
	color: #5494A1;
}

.scrolltoBtn > a:hover::after {
	border: 2px solid #5494A1;
}

.scrolltoBtn > a:hover::before {
	background-color: #5494A1;
}

@keyframes mouseWheel {
	0% {
		transform: translate(0, -3px);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 18px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/* --- */

.svgStyle {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}


/* ==================================================
SVG
================================================== */

/* ==========================================
Single-colored icons can be modified like so:
.name {
	font-size: 32px;
	color: red;
}
========================================== */

.ico-mc {
	width: 0.740234375em;
}

.ico-mail {
	width: 1.4541015625em;
}

.ico-submit {
	width: 1.0478515625em;
}

.ico-clear {
	width: 1.5em;
}

.ico-window {
	width: 1.375em;
}

.sns-facebook {
	width: 1.005859375em;
}

.sns-twitter {
	width: 1.23046875em;
}

.sns-youtube {
	width: 1.4189453125em;
}

.logo-j {
	width: 0.9990234375em;
}

.logo-jwave {
	width: 8.564453125em;
}


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

/*main {
	animation: body_fadein 0.8s ease 0s both;
}

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

/*header {
	animation: header_intro 1.4s ease-out 0s both;
}

@keyframes header_intro {
	0% {
		transform: translateY(-50vh);
	}
	100% {
		transform: translateY(0);
	}
}*/

/*footer {
	animation: footer_intro 1.4s ease-out 0s both;
}

@keyframes footer_intro {
	0% {
		transform: translateY(50vh);
	}
	100% {
		transform: translateY(0);
	}
}*/


/*.objReady {}

#area_articles article.list {
	transform: translate(0, 120px) scale(0.6);
	opacity: 0;
}

#area_articles article.list.objView {
	animation: obj_view 1.2s ease-out 0s both;
}

@keyframes obj_view {
	0% {
		transform: translate(0, 120px) scale(0.8);
		opacity: 0;
	}
	100% {
		transform: translate(0, 0) scale(1);
		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);
}


/*


<!-- #################################################################################################### -->
<!-- ##########　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 or block

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


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


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

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

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

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

/* 小見出し 2 */
/* ----- */


/**/