@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('message.css');

/* =========================================================
	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;
	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: #343434;
	-webkit-text-size-adjust: 100%;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

.pc{
	display: block;
}
	@media only screen and (max-width: 960px){
		.pc {
			display: none;
		}
	}
	@media only screen and (max-width : 599px){
		.pc {
			display: none;
		}
	}


.pc_tablet{
	display: block;
}
	@media only screen and (max-width: 960px){
		.pc_tablet {
			display: block;
		}
	}
	@media only screen and (max-width : 599px){
		.pc_tablet {
			display: none;
		}
	}

.tablet_sp	{
	display: none;
}
	@media only screen and (max-width: 960px){
		.tablet_sp {
			display: block;
		}
	}
	@media only screen and (max-width : 599px){
		.tablet_sp {
			display: block;
		}
	}

.tablet	{
	display: none;
}
	@media only screen and (max-width: 960px){
		.tablet {
			display: block;
		}
	}
	@media only screen and (max-width : 599px){
		.tablet {
			display: none;
		}
	}

.sp	{
	display: none;
}
	@media only screen and (max-width: 960px){
		.sp {
			display: none;
		}
	}
	@media only screen and (max-width : 599px){
		.sp {
			display: block;
		}
	}

ul{
	margin: 0;
	padding: 0;
	}

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: #E80069;
	text-decoration: none;
}

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

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

a:active {
	color: #e88b00f4;
	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;
}

.margin-right-1{
	margin: 0 0.5rem 0 0;
}

.margin-right-2{
	margin: 0 1.0rem 0 0;
}

.margin-right-3{
	margin: 0 2.0rem 0 0;
}

.margin-bottom-1{
	margin: 0 0 1.0rem 0;
}

.margin-bottom-2{
	margin: 0 0 2.0rem 0;
}

.margin-bottom-3{
	margin: 0 0 3.0rem 0;
}

.text12{
	font-size: 1.2rem;
}

.text14{
	font-size: 1.4rem;
}

.text16{
	font-size: 1.6rem;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-white {
	color: #fff;
}

p	{
	margin: 1.4em 0 1.4em 0;
}

.text-contents{
	max-width: 700px;
	margin: 1.4em auto 1.4em;
	font-size: 1.8rem;
	text-align: justify;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
}
@media only screen and (max-width : 599px){
	.text-contents{
		width: 100%;
		font-size: 1.4rem;
	}
}

.relative {
	position: relative;
}


/********** container **********/
.container {
	position: relative;
	width:100%;
	margin: 0 auto;
	padding: 50px 0 0;
	background-image: url("../img/bg_road.svg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 1280px;
	/* background-size: cover; */
}
	@media only screen and (max-width : 599px){
		.container {
			background-size: 960px;
		}
	}


.page_message .container {
	background-image: none;
}


.container::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 50px;
	background-position: top;
	background-image: url(../img/pattern_flag.svg);
	background-repeat: repeat-x;
	z-index: 10;
}
	@media only screen and (max-width : 599px){
		.container::before {
			height: 30px;
		}
		
	}


/********** header **********/
header {
	width: 100%;
	margin: 0 auto 70px;
	padding: 50px 0 0;
	text-align: center;
}
	@media only screen and (max-width : 599px){
		header {
			width: 95%;
			height: auto;
			margin: 0 auto 30px;
			padding: 0;
		}
	}

.page_message header {
	margin: 0 auto 50px;
	padding: 20px 0 0;
}
	@media only screen and (max-width : 599px){
		.page_message header {
			margin: 0 auto 30px;
			padding: 0;
		}
	}

h1 {
	display:	block;
	overflow: hidden;
	width: 95%;
	max-width: 960px;
	height: auto;
	margin: 0 auto 40px;
	aspect-ratio: 900 / 236;
	background-image: url("../img/header_title.svg");
	background-repeat: no-repeat;
	background-size: cover;
	text-indent:	100%;
	white-space:	nowrap;
}
	@media only screen and (max-width : 599px){
		h1 {
			width: 100%;
			max-width: 960px;
			height: auto;
			margin: 0 auto 30px;
			aspect-ratio: 375 / 257;
			background-image: url("../img/header_title_sp2.svg");
		}
	}

.page_message h1 {
		max-width: 400px;
	}
	@media only screen and (max-width : 599px){
		.page_message h1 {
			max-width: 370px;
			aspect-ratio: 900 / 236;
			background-image: url("../img/header_title.svg");
		}
	}




.area-headline {
	margin: 0 auto 30px;
}

h2.area-headline__text {
	color: #e80069;
	text-align: center;
	font-size: 2.6rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 2px;
}
	@media only screen and (max-width : 599px){
		h2.area-headline__text {
			text-align: left;
			font-size: 2.4rem;
			letter-spacing: 1px;
			line-height: 1.4;
		}
	}

.area-road {
	position: relative;
	width: 100%;
	height: 600px;
	background: url("../img/headline_bg.jpg") center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
	@media only screen and (max-width : 599px){
		.area-road {
			height: 300px;
		}
		
	}

/********** main **********/
main {
	/* overflow: hidden; */
	width: 100%;
	margin: 0 auto;
	padding: 0 0 100px;
	text-align: center;
}
	@media only screen and (max-width : 599px){
		.page_message main {
			margin: 30px auto 0;
			padding: 0 0 100px;
		}
	}

/* ----- contents ----- */
.area-contents {
	width: 100%;
	padding: 20px 0;
	margin: 0 auto 50px;
    z-index: 1;
}
	@media only screen and (max-width: 599px){
		.area-contents {
			padding: 5px;
			margin: 0 auto 10px;
		}
	}

.area-contents__inner {
	width: 95%;
	max-width: 900px;
	padding: 20px 0;
	margin: 0 auto 20px;
	z-index: 1;
}
	@media only screen and (max-width: 599px){
		.area-contents__inner {
			padding: 5px;
			margin: 0 auto 10px;
		}
	}

.area-outline {
	padding: 20px 0;
	width: 95%;
	max-width: 900px;
	margin: 20px auto 0;
	text-align: left;
	font-size: 2.2rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 2px;
}

@media only screen and (max-width : 599px){
	.area-outline {
		padding: 10px 0;
		margin: 0 auto;
		font-size: 1.6rem;
		letter-spacing: 1px;
		line-height: 1.6;
	}
}

/**********Gigya **********/
#jme {
	width: 350px;
	margin: 50px auto;
}
	@media only screen and (max-width: 599px){
		#jme {
			width: 90%;
			margin: 30px auto 60px;
		}
	}


/********** smartdriver **********/
.area-smartdriver {
	padding: 20px;
	text-align: center;
	margin: 0 auto 30px;
}
	@media only screen and (max-width : 599px){
		.area-smartdriver {
			padding: 10px;
			margin: 0 auto 20px;
		}
	}

.area-smartdriver__img {
	width: 100%;
	max-width: 500px;
	height: auto;
}

/********** navigator **********/
.area-contents__navigator-title {
	display:	inline-block;
	overflow: hidden;
	width: 100%;
	max-width: 350px;
	height: auto;
	aspect-ratio: 400 / 112;
	background-image: url("../img/title_navigator.png");
	background-repeat: no-repeat;
	background-size: cover;
	text-indent:	100%;
	white-space:	nowrap;
}
@media only screen and (max-width : 599px){
	.area-contents__navigator-title {
		width: 80%;
	}
}

.area-navigator {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 5px 40px;
	overflow: hidden;
	width: 100%;
	max-width: 700px;
	margin: 50px auto 0;
}
@media only screen and (max-width : 599px){
	.area-navigator {
		gap: 20px 20px;
		margin: 30px auto 0;
	}
}

.navigator__card {
	overflow: hidden;
	flex-basis: 45%;
	text-align: center;
	margin: 0 0 20px 0;
}
@media only screen and (max-width : 599px){
	.navigator__card {
		flex-basis: 45%;
		margin: 0;
	}
}

.navigator__image {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
	@media only screen and (max-width : 599px){
		.area-navigator__image {
			margin: 0;
		}
	}

.navigator__list figcaption {
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align: center;
}

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

.navigator__item--time span{
	margin: 0 0 20px 0;
	padding: 0 1.0rem 0.5rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	/* -moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px; */
}
@media only screen and (max-width : 599px){
	.navigator__item--time span{
		padding: 0 1.0rem 0.25rem;
	}
}

.navigator__item--name {
	display: block;
	margin: 0;
	padding: 0.5rem;
	font-size: 3.0rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.navigator__item--name {
			padding: 0.25rem 0.5rem;
			font-size: 1.4rem;
			font-weight: 500;
			letter-spacing: 0;
		}
	}

.navigator__item--member{
	display: block;
	margin: 0;
	padding: 1.0rem 0;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.navigator__item--member{
			padding: 0.5rem 0 1.2rem;
			font-size: 1.0rem;
			line-height: 1.2;
			letter-spacing: 0;
		}
	}

/********** we are smart drivers **********/
.area-weare {
	position: relative;
	width: 100%;
	height: 80px;
	margin: 0 0 50px;
	background-color: #E80069;
	text-align: center;
}
	@media only screen and (max-width : 599px){
		.area-weare {
			height: 50px;
			margin: 0;
		}
	}

.area-weare__image {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: 70%;
	margin: auto;
}


/********** guest **********/
.area-guest {
	width: 95%;
	max-width: 900px;
	margin: 20px auto 50px;
}

.area-guest__title {
	margin: 0 auto 20px;
	font-size: 5.0rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
@media only screen and (max-width : 599px){
	.area-guest__title {
		margin: 0 auto 10px;
		font-size: 3.4rem;
	}
}

.guest {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 20px 20px;
	overflow: hidden;
	margin: 0 auto 50px;
}
@media only screen and (max-width : 599px){
	.area-guest {
		gap: 20px 20px;
		margin: 30px auto 0;
	}
}

.guest__card {
	overflow: hidden;
	flex-basis: 30%;
	text-align: center;
	margin: 0 0 20px 0;
}
@media only screen and (max-width : 599px){
	.guest__card {
		flex-basis: 45%;
		margin: 0;
	}
}

.guest__card.size__medium {
	overflow: hidden;
	flex-basis: 20%;
	text-align: center;
	margin: 0 0 20px 0;
}
@media only screen and (max-width : 599px){
	.guest__card.size__medium  {
		flex-basis: 30%;
		margin: 0;
	}
}


.guest__image {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
	@media only screen and (max-width : 599px){
		.area-guest__image {
			margin: 0;
		}
	}

.guest__list figcaption {
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height: 1.6;
	letter-spacing: 3px;
	text-align: center;
}

.guest__item--name {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 2.4rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.guest__item--name {
			padding: 0.25rem 0.5rem;
			font-size: 1.8rem;
			font-weight: 500;
			letter-spacing: 0;
		}
	}

.guest__item--name.size__medium {
	padding: 0.3rem;
	font-size: 1.8rem;
}
	@media only screen and (max-width : 599px){
		.guest__item--name.size__medium {
			font-size: 1.4rem;
		}
	}



.guest__item--member{
	display: block;
	margin: 0;
	padding: 0.4rem 0 0.6rem;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.guest__item--member{
			padding: 0.2rem 0 0.8rem;
			font-size: 1.0rem;
			line-height: 1.2;
			letter-spacing: 0;
		}
	}

.guest__item--time{
	display: inline-block;
	margin: 1.0rem;
	padding: 4px 8px;
	font-size: 1.8rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	line-height: 1.0;
	border: 1px solid #5c5c5c;
}


/********** area-white **********/
.area-white {
	width: 95%;
	max-width: 800px;
	padding: 30px 40px;
	margin: 0 auto 20px;
	background-color: rgba(255,255,255,0.7);
	border: 1px solid #c2c2c2;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
	@media only screen and (max-width : 599px){
		.area-white {
			width: 90%;
			padding: 20px 10px;
			margin: 0 auto 20px;
		}
	}

.area-white__title {
	display: inline-block;
	margin: 0 auto 20px;
	color: #E80069;
	font-size: 3.4rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	line-height: 1.4;
	border-bottom: 1px solid #E80069;
}
@media only screen and (max-width : 599px){
	.area-white__title {
		margin: 0 auto 10px;
		font-size: 2.8rem;
		line-height: 1.2;
	}
}

.area-white__text {
	text-align: left;
}

.area-white__guest {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 5px 20px;
	overflow: hidden;
	margin: 0 auto;
}
@media only screen and (max-width : 599px){
	.area-white__guest {
		gap: 20px 20px;
		margin: 30px auto 0;
	}
}

.area-white__card {
	overflow: hidden;
	flex-basis: 23%;
	text-align: center;
	margin: 0;
}
@media only screen and (max-width : 599px){
	.area-white__card {
		flex-basis: 45%;
		margin: 0;
	}
}

.area-white__image {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
	@media only screen and (max-width : 599px){
		.area-white__image {
			margin: 0;
		}
	}

.area-white__list figcaption {
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align: center;
}

.area-white__item--name {
	display: block;
	margin: 0;
	padding: 0.5rem 0 0;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-white__item--name {
			padding: 0.25rem 0.5rem;
			font-size: 1.4rem;
			font-weight: 500;
			letter-spacing: 0;
		}
	}

.area-white__item--member{
	display: block;
	margin: 0;
	padding: 1.0rem 0;
	color: #6a6a6a;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-white__item--member{
			padding: 0.5rem 0 1.2rem;
			font-size: 1.0rem;
			line-height: 1.2;
			letter-spacing: 0;
		}
	}

.area-white__item--time{
	display: inline-block;
	margin: 1.0rem;
	padding: 4px 8px;
	font-size: 1.8rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	line-height: 1.0;
	border: 1px solid #5c5c5c;
}

/* ----- homepato ----- */
.area-homepato {
	width: 70%;
	margin: 30px auto 0;
}
	@media only screen and (max-width : 599px){
		.area-homepato {
			width: 100%;
			margin: 30px auto 0;
		}
	}

.area-homepato__image {
	width: 100%;
	height: auto;
	margin: 0 0 10px;
	-moz-border-radius:	10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}



/********** area-message-top **********/
.area-message-top {
	position: relative;
	width: 100%;
	padding: 50px 0;
	margin: 100px auto 50px;
	background-color: rgba(217, 217, 217, 0.7);
}
	@media only screen and (max-width : 599px){
		.area-message-top {
			padding: 30px 0;
			margin: 50px auto 20px;
		}
	}

.area-message-top__inner {
	width: 95%;
	max-width: 800px;
	margin: 50px auto;
}
	@media only screen and (max-width : 599px){
		.area-message-top__inner {
			margin: 20px auto;
		}
	}



.area-message-top::before,.area-message-top::after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 50px;
	background-position: top;
	background-image: url(../img/pattern_flag.svg);
	background-repeat: repeat-x;
	z-index: 10;
}
	@media only screen and (max-width : 599px){
		.area-message-top::before,.area-message-top::after {
			height: 30px;
		}
	}

.area-message-top::before {
	top: 0;
}

.area-message-top::after {
	bottom: 0;
}

.area-message-top__title {
	display:	inline-block;
	overflow: hidden;
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: 0 auto 50px;
	aspect-ratio: 800 / 134;
	background-image: url("../img/title_message.svg");
	background-repeat: no-repeat;
	background-size: cover;
	text-indent:	100%;
	white-space:	nowrap;
}
@media only screen and (max-width : 599px){
	.area-message-top__title {
		margin: 0 auto 20px;
	}
}

.area-message-top__theme {
	margin: 0 auto 80px;
	font-size: 2.8rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.0;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-message-top__theme {
			margin: 0 auto 40px;
			font-size: 2.0rem;
		}
	}

.area-message-top__theme-text {
	display: block;
	margin: 2.2rem 0 0;
	font-size: 4.0rem;
	font-weight: 600;
}
	@media only screen and (max-width : 599px){
		.area-message-top__theme-text {
			margin: 1.8rem 0 0;
			font-size: 3.0rem;
		}
	}

.area-message-top__text {
	text-align: left;
	padding: 2.0rem 0 4.0rem;
}
	@media only screen and (max-width : 599px){
		.area-message-top__text {
			padding: 1.0rem 0 3.0rem;
		}
	}

.area-message-top__present-number {
	position: relative;
	display: block;
	background: #E80069;
	color: #fff;
	margin: 0 auto 50px;
	padding: 1.6rem 2.0rem;
	font-size:2.4rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	line-height: 1.0;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-message-top__present-number {
			display: inline-block;
			margin: 0 auto 20px;
			padding: 0.8rem 1.0rem;
			font-size: 1.6rem;
		}
	}

.area-message-top__present-number::after  {
	position: absolute;
	content: '';
	top: 100%;
	left: calc(50% - 10px);
	border: 10px solid transparent;
	border-top: 15px solid #E80069;
	width: 0;
	height: 0;
}
	@media only screen and (max-width : 599px){
		.area-message-top__present-number::after  {
			top: 100%;
			left: calc(50% - 6px);
			border: 6px solid transparent;
			border-top: 10px solid #E80069;
		}
	}




.area-message-top__present-name {
	font-size: 3.0rem;
	color: #E80069;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	line-height: 1.0;
}
	@media only screen and (max-width : 599px){
		.area-message-top__present-name {
			font-size: 2.4rem;
		}
	}

.area-message-top__present-image {
	width: 60%;
	max-width: 300px;
	height: auto;
	margin: 30px auto 0;
}


/* ----- button ----- */
.area-message__button {
	position: relative;
	width: 80%;
	min-width: 300px;
	margin: 20px auto 100px;
}
	@media only screen and (max-width: 599px){
		.area-message__button {
			margin: 0 auto 60px;
		}	
	}

a.area-message__button-link {
	display: block;
	overflow: hidden;
	position: relative;
	padding: 25px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border: 1px solid #343434;
	border-radius: 50px;
	color: #343434;
	background-color: #fff;
	font-size: 2.6rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	line-height: 1.0;
	letter-spacing: 2px;
}
@media only screen and (max-width : 599px){
	a.area-message__button-link {
		margin: 20px auto 30px auto;
		padding: 10px 10px;
		font-size: 1.8rem;
		letter-spacing: 0;
	}
}

.area-message__button .arrow-top {
	position: absolute;
	width: 44px;
	height: auto;
	top: 48%;
	right: 30px;
	transform: translate(0, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}
	@media only screen and (max-width : 599px){
		.area-message__button .arrow-top {
			display: none;
		}
	}


a.area-message__button-link:hover {
	color: #fff;
	background:  #E80069;
}


/* ----- area-message-top guest ----- */
.area-message-top__guest {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 0 20px;
	overflow: hidden;
	margin: 0 auto 50px;
}
@media only screen and (max-width : 599px){
	.area-message-top__guest {
		gap: 20px 20px;
		margin: 0 auto;
	}
}

.area-message-top__card {
	overflow: hidden;
	flex-basis: 23%;
	text-align: center;
	margin: 0;
}
@media only screen and (max-width : 599px){
	.area-message-top__card {
		flex-basis: 45%;
		margin: 0;
	}
}

.area-message-top__image {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	-moz-border-radius:	100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
	@media only screen and (max-width : 599px){
		.area-message-top__image {
			margin: 0;
		}
	}

.area-message-top__list figcaption {
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0.2rem 0.8rem;
	line-height:1.6;
	letter-spacing: 3px;
	text-align: center;
}

.area-message-top__item--name {
	display: block;
	margin: 0;
	padding: 0.5rem 0 0;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-message-top__item--name {
			padding: 0.25rem 0.5rem;
			font-size: 1.4rem;
			font-weight: 500;
			letter-spacing: 0;
		}
	}

.area-message-top__item--member{
	display: block;
	margin: 0;
	padding: 1.0rem 0;
	color: #6a6a6a;
	font-size: 1.2rem;
	font-weight: 300;;
	letter-spacing: 1px;
}
	@media only screen and (max-width : 599px){
		.area-message-top__item--member{
			padding: 0.5rem 0 1.2rem;
			font-size: 1.0rem;
			line-height: 1.2;
			letter-spacing: 0;
		}
	}

.area-message-top__item--time{
	display: inline-block;
	margin: 1.0rem;
	padding: 4px 8px;
	font-size: 1.8rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	line-height: 1.0;
	border: 1px solid #5c5c5c;
}

/********** photo **********/



/********** footer **********/
.area-photo__title {
	margin: 0 auto 20px;
	font-size: 5.0rem;
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
@media only screen and (max-width : 599px){
	.area-photo__title {
		margin: 0 auto 10px;
		font-size: 2.6rem;
	}
}



/********** footer **********/
footer {
	overflow: hidden;
	width: 100%;
	margin: 50px auto 0;
}

.footer_bottom {
	display: flex;
	width: calc(100% - 20px * 2);
	max-width: 1600px;
	margin: 0 auto 180px auto;
}
	@media only screen and (max-width: 1024px){
		.footer_bottom {
			width: 90%;
			margin: 0 auto 60px auto;
		}
	}

	@media only screen and (max-width : 599px){
		.footer_bottom {
			display: block;
			margin: 0 auto 70px auto;
		}
		
	}

.footer_bottom .gotohome{
	width: 100px;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .gotohome{
			width: 100%;
			margin: 0 0 35px 0;
			text-align: center;
		}
	}

.footer_bottom .gotohome img{
	width: 100%;
	height: auto;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .gotohome img{
			width: 30%;
			max-width: 200px;
		}
	}

.footer_bottom .j-wave_credit{
	width: calc(100% - 100px);
	text-align: right;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .j-wave_credit{
			width: 100%;
			text-align: center;
		}
		
	}


.footer_bottom .j-wave_credit img{
	width: 200px;
	height: auto;
	margin: 0 0 10px;
}
	@media only screen and (max-width : 599px){
		.footer_bottom .j-wave_credit img{
			width: 60%;
			max-width: 400px;
		}
	}

.footer_bottom .j-wave_credit span{
	display: block;
	color: #343434;
	font-size: 10px;
}

@media (min-width: 600px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}