@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500&display=swap');

/* ==================================================
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: 1.2;
	letter-spacing: 0.08em;
	color: #000;
	-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 =====
▼Cormorant Regular/Medium
https://fonts.google.com/specimen/Cormorant

CSS
font-family: "Cormorant", sans-serif;
font-style: normal;
font-weight: 400; ← Regular
font-weight: 500; ← Medium
*/

#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.5rem;
		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: #6c6c6c;
}

a:visited {
	text-decoration: underline;
	color: #6c6c6c;
}

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

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

: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: #fcf9fa;
}

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

/* 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;
}

/* ==================================================
HEADER
================================================== */

@media screen and (min-width: 901px) {
	#headerWrap {
		background: url("./img/hdr_bg.jpg") no-repeat center top;
		padding-top: 150px;
	}
	#headerWrap header {
		height: 600px;
		width: 100%;
		max-width: 1600px;
		margin: 0 auto;
		position: relative;
		z-index: 1;
	}
	#headerWrap header::after {
		content: "";
		position: absolute;
		top: 0;
		left: 320px;
		z-index: -1;
		height: 100%;
		width: calc(100% - 320px);
		background: url("./img/hdr_visual.jpg") no-repeat center center;
		background-size: cover;
		transition: all 0.4s ease-out 0s;
	}
	#headerWrap header h1 {
		position: absolute;
		top: 110px;
		left: 135px;
		transition: all 0.4s ease-out 0s;
	}
	#headerWrap header h1 img {}
	#headerWrap header .txt {
		position: absolute;
		top: -65px;
		right: 200px;
		transition: all 0.4s ease-out 0s;
	}
	#headerWrap header .txt img {
		width: 110px;
	}
}

@media screen and (min-width: 1800px) {
	#headerWrap {
		background-size: 100% auto;
	}
}

@media screen and (max-width: 1200px) {
	#headerWrap header::after {
		left: 210px;
		width: calc(100% - 210px);
	}
	#headerWrap header h1 {
		left: 60px;
	}
	#headerWrap header .txt {
		right: 80px;
	}
}

@media screen and (max-width: 900px) {
	#headerWrap {
		background: url("./img/hdr_bg.jpg") no-repeat center top;
		padding-top: 40px;
	}
	#headerWrap header {
		padding: 30px 5% 40px;
		position: relative;
		z-index: 1;
	}
	#headerWrap header::after {
		content: "";
		position: absolute;
		top: 0;
		left: 20%;
		z-index: -1;
		height: 100%;
		width: 80%;
		background: url("./img/hdr_visual.jpg") no-repeat center center;
		background-size: cover;
	}
	#headerWrap header h1 {}
	#headerWrap header h1 img {
		width: 100%;
		max-width: 600px;
	}
	#headerWrap header .txt {
		display: none;
	}
	#headerWrap header .txt img {}
}

/* J-me Bar */

#jmeBar {
	padding: 50px 3%;
}

#gigyaShare {}

/* BANNER */

#headerWrap .bnrArea {}

#headerWrap .bnrArea a {}

#headerWrap .bnrArea a img {}

/* INTRODUCTION
------------------------------ */

#introductionArea {
	background: url("./img/bg.png") no-repeat center center;
	background-size: 100% 100%;
}

#introductionArea h2 {}

#introductionArea .lead {}

#introductionArea .lead p {}

#introductionArea .lead p i {}

#introductionArea .story {
	line-height: 2.25;
}

#introductionArea .story p {}

#introductionArea .story p .border {
	position: relative;
	display: inline-block;
}

#introductionArea .story p .border::after {
	content: "";
	position: relative;
	display: inline-block;
	height: 1px;
	width: 60px;
	background: #000;
	vertical-align: middle;
	margin-left: 8px;
	transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
	#introductionArea {}
	#introductionArea h2 {}
	#introductionArea .lead {}
	#introductionArea .lead p {}
	#introductionArea .lead p i {}
	#introductionArea .story {
		line-height: 1.8;
		text-align: left;
		max-width: 600px;
		margin: 0 auto;
	}
	#introductionArea .story p {}
}

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

#contentsWrap {
	padding: 100px 0 0;
	background: url("./img/bg.jpg") repeat-y center top;
}

@media screen and (min-width: 1800px) {
	#contentsWrap {
		background-size: 100% auto;
	}
}

section {
	padding: 0 5%;
	margin-bottom: 100px;
}

section h2 {
	font-family: "Cormorant", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 2.3rem;
	display: inline-block;
	padding: 0 15px 15px;
	border-bottom: 1px solid #000;
	margin: 0 auto 60px;
}

section .lead {
	font-family: 游明朝, "Yu Mincho", YuMincho, serif;
	font-size: 2.3rem;
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 60px;
}

@media screen and (max-width: 900px) {
	#contentsWrap {}
	section {}
	section h2 {}
	section .lead {
		font-size: 2rem;
		line-height: 1.6;
	}
}

/* STORYTELLER
------------------------------ */

#storytellerArea {}

#storytellerArea h2 {}

#storytellerArea .lead {}

#storytellerArea .lead p {}

#storytellerArea .lead p i {}

#storytellerArea .cast {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	/*! max-width: 680px; */
}

#storytellerArea .cast li {
	width: calc(50% - 80px);
	max-width: 300px;
	margin: 0 40px;
}

#storytellerArea .cast li .thumb {
	margin-bottom: 30px;
}

#storytellerArea .cast li .thumb img {}

#storytellerArea .cast li .nameJp {
	font-family: 游明朝, "Yu Mincho", YuMincho, serif;
	font-size: 2.3rem;
	font-weight: 400;
	margin-bottom: 10px;
}

#storytellerArea .cast li .nameEn {
	font-family: "Cormorant", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
}

@media screen and (max-width: 900px) {
	#storytellerArea {}
	#storytellerArea h2 {}
	#storytellerArea .lead {}
	#storytellerArea .lead p {}
	#storytellerArea .lead p i {}
	#storytellerArea .cast {}
	#storytellerArea .cast li {
		width: calc(50% - 40px);
		margin: 0 20px;
	}
	#storytellerArea .cast li .thumb {}
	#storytellerArea .cast li .thumb img {}
	#storytellerArea .cast li .nameJp {
		font-size: 1.8rem;
	}
	#storytellerArea .cast li .nameEn {}
}

@media screen and (max-width: 420px) {
	#storytellerArea {}
	#storytellerArea h2 {}
	#storytellerArea .lead {}
	#storytellerArea .lead p {}
	#storytellerArea .lead p i {}
	#storytellerArea .cast {
		display: block;
	}
	#storytellerArea .cast li {
		width: 100%;
		max-width: 240px;
		margin: 0 auto 40px;
	}
	#storytellerArea .cast li .thumb {
		margin-bottom: 20px;
	}
	#storytellerArea .cast li .thumb img {}
	#storytellerArea .cast li .nameJp {
		margin-bottom: 5px;
	}
	#storytellerArea .cast li .nameEn {}
}

/* rajiko
------------------------------ */

#rajikoArea {}

#rajikoArea .box {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid #fff;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#rajikoArea .box .icon {
	margin-right: 30px;
	width: 50px;
}

#rajikoArea .box .icon img {}

#rajikoArea .box .txt {
	text-align: left;
	line-height: 1.6;
	width: calc(100% - 80px);
	max-width: 290px;
}

#rajikoArea .box .btn {
	width: 100%;
	margin-top: 40px;
}

#rajikoArea .box .btn a {
	display: block;
	background: #e73c64;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	padding: 15px 3%;
	max-width: 320px;
	margin: 0 auto;
	border-radius: 8px;
	font-size: 1.8rem;
}

#rajikoArea .box .btn a:hover {}

@media screen and (max-width: 900px) {
	#rajikoArea {}
	#rajikoArea .box {}
	#rajikoArea .box .icon {
		margin-right: 15px;
	}
	#rajikoArea .box .icon img {}
	#rajikoArea .box .txt {
		width: calc(100% - 65px);
	}
	#rajikoArea .box .btn {}
	#rajikoArea .box .btn a {}
	#rajikoArea .box .btn a:hover {}
}

@media screen and (max-width: 420px) {
	#rajikoArea {}
	#rajikoArea .box {}
	#rajikoArea .box .icon {}
	#rajikoArea .box .icon img {}
	#rajikoArea .box .txt br {
		display: none;
	}
	#rajikoArea .box .btn {}
	#rajikoArea .box .btn a {}
	#rajikoArea .box .btn a:hover {}
}

/* PAGE TOP
------------------------------ */

#contentsWrap .pagetopBtn {
	margin-bottom: 100px;
	/*! margin-top: 100px; */
}

#contentsWrap .pagetopBtn a {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding-top: 30px;
	font-family: "Cormorant", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	text-decoration: none;
	color: #000;
}

#contentsWrap .pagetopBtn a::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

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

footer {
	background: #fff;
	padding: 30px 3% 40px;
}

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

footer .jwaveLogo {
	max-width: 176px;
	width: 40%;
}

footer .jwaveLogo a {
	display: block;
}

footer .jwaveLogo a img {
	display: block;
}

footer .copyright {
	font-family: "Cormorant", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 1.2rem;
}

footer .copyright b {}

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

/* ==================================================
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

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

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

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

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

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

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

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

/* 小見出し 2 */

/* ----- */