@charset "UTF-8";
@import url('msg.css?v=20220503001');
@import url('photo.css?v=20220503002');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@700&display=swap');

/********** browser default initialization **********/

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
	margin: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before ,q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr, legend {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
	margin:0;
	padding:0;
}


/* =========================================================
	basic style
========================================================= */
*,
*:before,
*:after {
	box-sizing:	inherit;
}

html{
	height: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
	box-sizing: border-box;
	}

body{
	margin: 0;
	padding: 0;
	height: 100%;
	background: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 1px;
	font-family: kinto-sans, sans-serif,游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック',’MS PGothic’, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
	font-style: normal;
	text-align: center;
	color: #504f4f;
	-webkit-text-size-adjust: 100%;
	animation: fadeIn 5s ease 0s 1 normal;
	-webkit-animation: fadeIn 5s ease 0s 1 normal;
	}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}


	.pc{
	display:	block;
	}

	.pc_tablet{
	display:	block;
	}

	.tablet_phone	{
	display:	none;
	}

	.tablet	{
	display:	none;
	}

	.phone	{
	display:	none;
	}

ul{
	margin:	0;
	padding:	0;
	}

p	{
	margin:	1.4em 0 1.4em 0;
	text-align: justify;
	font-weight: 400;
}

a	{
	overflow: hidden;
	outline: none;
	border:	none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a:focus	{
	outline:none;
}

a:link	{
		color:#f35b00;
		text-decoration: none;
	}

a:visited	{
		color:#f35b00;
		text-decoration: none;
		}

a:hover	{
		color:#f39800;
		text-decoration: none;
		}

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

img	{
		margin:	0;
		border:	0;
		}

a img	{
		margin:	0;
		border:	0;
		}

a:hover img{
	opacity:	0.7;
	-moz-opacity:	0.7;
	filter: alpha(opacity=70);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.orange1{
	color: #f39800;
}

.orange2{
	color: #f35b00;
}


#jme	{
	padding: 0 0 70px 0;
	}




/* ----- header ----- */
header{
	width:100%;
	max-width:2040px;
	height:550px;
	margin:0 auto 20px;
	background-image:	url(../img/header_bg_pc.jpg);
	background-size:	cover;
	background-position: bottom;
}

header  .title_wrapper {
	width: 800px;
	height: auto;
	margin: 0 auto;
	padding: 145px 0 0 0;
}

header  h1 {
	width: 800px;
	height: 220px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../img/title_pc.svg) no-repeat;
	background-size: 100%;
	animation-name: fadeupAnime;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeupAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* ----- header - message ----- */
body.pg_msg header{
	width:100%;
	max-width:2040px;
	height:250px;
	margin:0 0 20px 0;
	background-image:	url(../img/header_bg_pc.jpg);
	background-size:	cover;
	background-position: bottom;
}

body.pg_msg header .title_wrapper {
	width: 500px;
	height: auto;
	margin: 0 auto;
	padding: 55px 0 0 0;
}

body.pg_msg header h1 {
	width: 500px;
	height: 200px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../img/title_pc.svg) no-repeat;
	background-size: 100%;
	animation-name: fadeupAnime_msg;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeupAnime_msg{
  from {
    opacity: 0;
	transform: translateY(80px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}





/* ----- navigator ----- */
.navigator_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 20px 20px;
	overflow: hidden;
	width: 500px;
	margin: 40px auto 0 auto;
}

.navigator_list figure.cast_item {
	overflow: hidden;
	flex-basis: 45%;
	text-align: center;
}

.navigator_list figure.cast_item img {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.navigator_list figcaption{
	padding: 1rem 0 0 0;
}

.navigator_list figcaption p{
	display: inline;
	padding: 0.2rem 2.0rem;
	line-height:1.6;
	letter-spacing: 2px;
	text-align:center;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.navigator_list figcaption p span{
	margin: 0 -2px 0 0;
}




/* ----- structure ----- */
main{
	margin: 0 auto 100px auto;
	font-family: 'Noto Sans JP', sans-serif;
}

section.width_100{
	overflow: hidden;
	width:100%;
	padding:50px 0 80px 0;
	text-align: center;
}

section.inner{
	overflow: hidden;
	width: 800px;
	margin: 0 auto;
	padding: 10px 0;
	text-align: left;
}

section p	{
	margin:	1.4em auto;
	width: 80%;
}



.bg_purple {
	background: #920873;
}

.bg_orange {
	background: #f39800;
}

.bg_yellow {
	background: #fdd000;
}

h2.headline {
	position: relative;
	width:  900px;
	margin: 50px auto 80px auto;
	color: #f35b00;
	font-size: 3.8rem;
	line-height:1.2;
	font-weight: 700;
	text-align: center;
}

h2.headline::before,h2.headline::after {
	content: "";
	display: block;
	width: 120px;
	height: 120px;
	position: absolute;
	top: -20px;
}

h2.headline::before {
	background: url(../img/leaf_1_l.svg) no-repeat;
	left: 0;
}

h2.headline::after {
	background: url(../img/leaf_1_r.svg) no-repeat;
	right: 0;
}

h3.headline {
	width:  800px;
	margin: 4.0rem auto;
	font-size: 2.0rem;
	font-weight: 400;
	text-align: justify;
	line-height: 2.0;
}



.subheadline_100 {
	width: 100%;
	padding:20px 0;
	color: #fff;
}

h2.subheadline_en {
	position: relative;
	width: 800px;
	margin: 0 auto;
	color: #fff;
	line-height:1.2;
	font-size: 4.0rem;
	font-family: 'Lexend', sans-serif;
	text-align: center;
}

h2.subheadline_en::before,h2.subheadline_en::after {
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	position: absolute;
	top: -40px;
}

h2.subheadline_en::before {
	background: url(../img/flower_1_l.svg) no-repeat;
	left: 50px;
}

h2.subheadline_en::after {
	background: url(../img/flower_1_r.svg) no-repeat;
	right: 50px;
}

h3.subheadline {
	margin: 3.0rem auto 5.0rem auto;
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.8;
}


.notice {
	width: 80%;
	margin: 50px auto 0;
	padding: 2.0rem 2.6rem;
	font-size:1.6rem;
	border: 1px solid #989494;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	line-height: 1.6;
}

.notice li{
	margin: 1.2rem 0;
}


/* ----- jal ----- */
.photo_jal {
	margin: 30px auto;
}

.photo_jal img {
	width: 100%;
	height:auto;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}


/* ----- button ----- */
.btn_msg a{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	min-width: 400px;
	margin:  60px auto 70px auto;
	padding: 30px;
	background: #920873;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 400;
	transition: ease .2s;
	text-align: center;
}

.btn_msg a:hover{
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.btn_msg a span{
	position: relative;
	padding: 0 0 0 50px;
  z-index: 10;
	color: #fff;
}

.btn_msg a:hover span{
	color: #fff;
}

.btn_msg a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #f39800;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.btn_msg a:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

.btn_msg a:after{
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 180px;
	content: '';
	border: 0;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}

.btn_msg a:hover:after{
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 180px;
	content: '';
	border: 0;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}


/* ----- banner ----- */
.bnr_area{
	width: 400px;
	height: auto;
	margin: 50px auto;
}

.bnr_area img{
	width: 100%;
	height: auto;
}


/* ----- guest ----- */
.guest_area_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 30px 30px;
	overflow: hidden;
	width: 800px;
	margin: 50px auto 20px auto;
}

.guest_area_list figure.guest_item{
	overflow: hidden;
	flex-basis: 30%;
	text-align: center;
	margin: 0 0 20px 0;
}

.guest_area_list figure.guest_item img {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.guest_area_list figcaption{
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align:center;
	font-size: 1.6rem;
	font-weight: 500;
}

.guest_area_list figcaption span{
	display: block;
	margin: 0;
	padding: 0.4rem 1.0rem;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
	line-height: 1.4;
	-moz-border-radius:	10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}


/* ----- event ----- */
.info_event{
	margin: 0 0 80px;
	padding: 30px;
	border:  solid 4px #f39800;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.info_event h2{
	margin: 1.0rem auto 2.0rem auto;
	color: #f35b00;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.8;
	border-bottom: solid 2px #f39800;
}

.info_event p{
	width: 80%;
	margin: 0 auto 40px auto;
	text-align: center;
}


/* ----- button_event ----- */
.btn_event a{
	display: block;
	overflow: hidden;
	position: relative;
	width: 400px;
	margin:  20px auto;
	padding: 20px;
	background: #f39800;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 2.0rem;
	font-weight: 500;
	transition: ease .2s;
	text-align: center;
}

.btn_event a:hover{
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.btn_event a span{
	position: relative;
	padding: 0 0 0 50px;
  z-index: 10;
	color: #fff;
}

.btn_event a:hover span{
	color: #fff;
}

.btn_event a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #f3d900;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.btn_event a:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

.btn_event a:after{
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 70px;
	content: '';
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}

.btn_event a:hover:after{
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 70px;
	content: '';
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 5;
}


/* ----- from Hawaii ----- */
.fromhawaii {
	overflow: hidden;
	padding: 40px 0;
}

.fromhawaii section.inner {
	text-align: center;
}

h2.subheadline_hawaii {
	position: relative;
	width: 800px;
	margin: 0 auto 20px auto;
	color: #fff;
	line-height:1.2;
	font-size: 4.0rem;
	font-family: 'Lexend', sans-serif;
	text-align: center;
}

h2.subheadline_hawaii::before,h2.subheadline_hawaii::after {
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	position: absolute;
	top: -30px;
}

h2.subheadline_hawaii::before {
	background: url(../img/leaf_2_l.svg) no-repeat;
	left: 70px;
}

h2.subheadline_hawaii::after {
	background: url(../img/leaf_2_r.svg) no-repeat;
	right: 70px;
}


h3.hawaii{
	display: inline;
	margin: 0 auto 1.0rem auto;
	padding: 0 1.2rem 0.2rem;
	font-size: 2.6rem;
	font-weight: 700;
	border-bottom: solid 3px #f39800;
}

h3.hawaii span{
	margin: 0 0 0 0.8rem;
	font-size: 1.8rem;
	font-weight: 400;
}

dl.txt_hawaii {
	width: 800px;
	margin: 0 auto;
	text-align: left;
}

dl.txt_hawaii dt {
	float: left;
	width: 100px;
	text-align: center;
}


dl.txt_hawaii dt figure.guest_fromhawaii {
	overflow: hidden;
	width: 200px;
	margin: 0 auto;
}

dl.txt_hawaii dt figure.guest_fromhawaii figcaption {
	padding: 1.2rem 0 0;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
}


dl.txt_hawaii dt img{
	width: 80%;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

dl.txt_hawaii dd {
	margin-left: 210px;
	text-align: justify;
}

dl.txt_hawaii dd p{
	width: 100%;
	padding: 3rem 0 0 0;
}



/* ----- gototop ----- */
.gototop {
	width: 250px;
	height: auto;
	margin: 100px auto 0 auto;
}


/* footer
--------------------------------------------------------- */
footer	{
	overflow:	hidden;
	width:	100%;
	margin:	100px 0 0 0;
	padding:	0 0 150px 0;
	color:	#000;
}

footer ul	{
	overflow:	hidden;
	width:	1025px;
	margin:	0 auto;
}

footer li	{
	text-align:left;
}

footer  #footer_home	{
	float:	left;
	height:	60px;
	margin:	0;
}

footer  #footer_home a img	{
	width:auto;
	height:60px;
	margin:	0;
	border:	0;
}

footer dl {
	float:	right;
}

footer #footer_j-wave_logo {
	text-align: right;
}

footer #footer_j-wave_logo img	{
	width:	auto !important;
	height:	20px !important;
}

footer dd#footer_copyright	{
	margin:5px 0 0 0;
	text-align:	right;
	font-size:	10px;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1px;
}







/* =========================================================
	media queries for tablet
========================================================= */
@media only screen and (max-width : 899px){

	.pc{
	display:	none;
	}

	.pc_tablet{
	display:	block;
	}

	.tablet_phone	{
	display:	block;
	}

	.tablet	{
	display:	block;
	}

	.phone	{
	display:	none;
	}

p	{
	text-align:left;
	margin:0 0 3.0rem 0;
	}

#jme	{
	padding:15px 0 20px 0;
	}


/* ----- header ----- */
header{
	width: 100%;
	height: s400px;
}

header .title_wrapper {
	width: 95%;
	height: auto;
	margin: 0 auto;
	padding: 120px 0 0 0;
}

header h1 {
	width: 100%;
	height: 220px;
	overflow: hidden;
	text-indent: 100%;
	background: url(../img/title_pc.svg) no-repeat;
	background-size: 100%;
}

/* ----- header - message ----- */
body.pg_msg header{
	width:100%;
	height:200px;
	margin:0 0 20px 0;
	background-image:	url(../img/header_bg_pc.jpg);
	background-size:	cover;
	background-position: bottom;
}

body.pg_msg header .title_wrapper {
	width: 400px;
	height: auto;
	margin: 0 auto;
	padding: 35px 0 0 0;
}

body.pg_msg header h1 {
	width: 400px;
	height: 200px;
	margin:  0 auto;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../img/title_pc.svg) no-repeat;
	background-size: 100%;
	animation-name: fadeupAnime_msg;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeupAnime_msg{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* ----- navigator ----- */
.navigator_list{
	gap: 20px 20px;
	width: 70%;
	margin: 30px auto 0 auto;
}


/* ----- structure ----- */
main{
	margin: 0 auto 80px auto;
}

section.inner{
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	text-align: left;
}

section p	{
	margin:	1.4em auto;
	width: 100%;
}

h2.headline {
	position: relative;
	width:  90%;
	margin: 30px auto 40px auto;
	font-size: 2.4rem;
}

h2.headline::before,h2.headline::after {
	width: 60px;
	height: 60px;
	top: 0;
}

h3.headline {
	width:  90%;
	margin: 2.0rem auto;
	font-size: 1.6rem;
}



h2.subheadline_en {
	width: 100%;
	margin: 0 auto;
	color: #fff;
	font-size: 3.0rem;
}

h2.subheadline_en::before,h2.subheadline_en::after {
	width: 100px;
	height: 100px;
	top: -30px;
}

h3.subheadline {
	margin: 2.0rem auto 3.0rem auto;
	font-size: 2.0rem;
	text-align: left;
	line-height: 1.6;
}

.notice {
	width: 100%;
	margin: 30px 0 60px 0;
}

/* ----- button ----- */
.btn_msg a{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	min-width: 400px;
	margin:  30px auto 40px auto;
	padding: 20px;
	background: #920873;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 2.0rem;
}

.btn_msg a:after{
	width: 20px;
	height: 20px;
	top: 50%;
	left: 100px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
}

.btn_msg a:hover:after{
	width: 20px;
	height: 20px;
	top: 50%;
	left: 100px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
}


/* ----- banner ----- */
.bnr_area{
	width: 70%;
	margin: 30px auto;
}

.bnr_area img{
	width: 100%;
}


/* ----- guest ----- */
.guest_area_list{
	gap: 30px 30px;
	width: 100%;
	margin: 50px auto 20px auto;
}


/* ----- event ----- */
.info_event h2{
	padding: 0 0 1.0rem 0;
	font-size: 2.0rem;
	line-height: 1.2;
}

.info_event p{
	width: 100%;
	margin: 0 auto 20px auto;
	text-align: left;
}

/* ----- button_event ----- */
.btn_event a{
	width: 90%;
	margin:  20px auto 10px auto;
}



/* footer
--------------------------------------------------------- */
footer	{
margin:	70px auto 0 auto;
padding:	0 0 100px 0;
}

footer ul	{
width:	90%;
}

#footer_home	{
float:	left;
height:	60px;
margin:	0;
}

footer dl {
float:	right;
}

footer dt#footer_j-wave {
text-align: right;
}

footer dt#footer_j-wave img	{
width:	auto;
height:	20px;
background:	#fff;
}

footer dd#footer_copyright	{
text-align:	right;
font-size:	10px;
}

}




/* =========================================================
	media queries for smartphone 1
========================================================= */
@media only screen and (max-width : 599px){

.pc{
	display:	none;
	}

	.pc_tablet{
	display:	none;
	}

	.tablet_phone	{
	display:	block;
	}

	.tablet	{
	display:	none;
	}

	.phone	{
	display:	block;
	}

a:hover img{
	opacity:	1.0;
	-moz-opacity:	1.0;
	filter: alpha(opacity=100);
}

#jme	{
	padding: 0 0 35px 0;
}

/* ----- header ----- */
header{
	width:100%;
	height: 90vh;
	margin:0 0 20px 0;
	background-image:	url(../img/header_bg_sp.jpg);
}
header  .title_wrapper {
	padding: 140px 0 0 0;
}

header h1 {
	width: 100%;
	height: 350px;
	overflow: hidden;
	text-indent: 100%;
	background: url(../img/title_sp.svg) no-repeat;
	background-size: 100%;
}

/* ----- header - message ----- */
body.pg_msg header{
	width:100%;
	height:200px;
	margin:0 0 20px 0;
	background-image:	url(../img/header_bg_pc.jpg);
	background-size:	cover;
	background-position: bottom;
}

body.pg_msg header .title_wrapper {
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 55px 0 0 0;
}

body.pg_msg header h1 {
	width: 90%;
	height: 200px;
	margin:  0 auto;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../img/title_pc.svg) no-repeat;
	background-size: 100%;
	animation-name: fadeupAnime_msg;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeupAnime_msg{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}



/* ----- navigator ----- */
.navigator_list{
	gap: 20px 20px;
	width: 80%;
	margin: 40px auto 0 auto;
}

.navigator_list figcaption p{
	font-size: 1.4rem;
}

/* ----- structure ----- */
h2.headline {
	width:  90%;
	margin: 10px auto 20px auto;
	font-size: 2.2rem;
	text-align:  left;
}

h2.headline::before,h2.headline::after {
	background: none;
}

h3.headline {
	margin: 3.0rem auto;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
}

h2.subheadline_en {
	line-height:1.2;
	font-size: 2.2rem;
}
h2.subheadline_en::before,h2.subheadline_en::after {
	width: 50px;
	height: 50px;
	top: -10px;
}

h2.subheadline_en::before {
	left: 20px;
}

h2.subheadline_en::after {
	right: 20px;
}

h3.subheadline {
	margin: 2.0rem auto 3.0rem auto;
	font-size: 2.0rem;
	line-height: 1.2;
}

.notice {
	margin: 20px 0 40px 0;
}

/* ----- button ----- */
.btn_msg a{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	min-width: 280px;
	margin:  60px auto 70px auto;
	padding: 20px;
	font-size: 1.8rem;
}

.btn_msg a:before {
	background: #920873;
	transition: none;
}

.btn_msg a:after{
	width: 15px;
	height: 15px;
	top: 50%;
	left: 30px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
}

.btn_msg a:hover:after{
	width: 15px;
	height: 15px;
	top: 50%;
	left: 30px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
}

/* ----- guest ----- */
.guest_area_list{
	gap: 5px 20px;
	width: 100%;
	margin: 30px auto 10px auto;
}

.guest_area_list figcaption span{
	padding: 0.6rem 1.0rem;
	font-size: 1.0rem;
}

.guest_area_list figure.guest_item{
	flex-basis: 45%;
	margin: 0 0 10px 0;
}



/* ----- event ----- */
.info_event h2{
	padding: 0 0 2.0rem 0;
	font-size: 2.4rem;
	line-height: 1.2;
}

.info_event p{
	width: 100%;
	margin: 0 auto 20px auto;
	text-align: left;
}

/* ----- button_event ----- */
.btn_event a{
	width: 100%;
	padding: 10px;
	font-size: 1.8rem;
}

.btn_event a:after,.btn_event a:hover:after{
	left: 20px;
}


.btn_event a:before {
	background: #f39800;
	transition: none;
}


/* ----- from Hawaii ----- */
.fromhawaii {
	padding: 20px 0;
}

h3.hawaii{
	display: inline;
	margin: 0 auto 20px auto;
	font-size: 2.2rem;
	border-bottom: solid 2px #f39800;
}

dl.txt_hawaii {
	width: 100%;
}

dl.txt_hawaii dt {
	clear: both;
	width: 100%;
	text-align: center;
}

dl.txt_hawaii dt figure.guest_fromhawaii figcaption{
	font-size: 1.6rem;
	font-weight: 700;
}

dl.txt_hawaii dt figure.guest_fromhawaii {
	width: 80%;
	margin: 0 auto 30px auto;
}

dl.txt_hawaii dt img{
	width: 70%;
}

dl.txt_hawaii dd {
	margin-left: 0;
}

dl.txt_hawaii dd p{
	padding: 0;
	font-size: 1.4rem;
}

.fromhawaii figure.guest_item figcaption{
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.2;
}

/* ----- gototop ----- */
.gototop {
	width: 200px;
}


/* footer
--------------------------------------------------------- */
footer ul	{
clear:both;
width:	100%;
margin:0 auto;
}

footer li	{
	overflow:hidden;
	width:	100%;
	padding:0 0 40px 0;
	text-align:center;
}

footer  #footer_home	{
	clear:both;
	height:	auto;
}

footer  #footer_home a img	{
	width: 30%;
	height: auto;
}

footer dl {
	clear:both;
	width:	100%;
}

footer #footer_j-wave_logo {
	clear:both;
	text-align:center;
}

footer #footer_j-wave_logo img	{
	width:	50% !important;
	height:	auto !important;
}

footer dd#footer_copyright	{
	margin:5px 0 0 0;
	line-height:1.2;
	text-align:center;
	letter-spacing: 0;
	}


}




/* =========================================================
	media queries for smartphone 2
========================================================= */
@media (orientation: landscape) and (max-width: 1024px){
}




/* =========================================================
	media queries for smartphone 3
========================================================= */
@media only screen and (max-width : 399px){

/* ----- header ----- */
header{
	height: 70vh;
	}
}



/* =========================================================
	media queries for smartphone 4
========================================================= */
@media only screen and (max-width : 339px) {
/* ----- gototop ----- */
.gototop{
	width:180px;
}
}
