@charset "UTF-8";

/*
COLORS
================================================ */
:root {
	--white: #fff;
	--grey: #333;
	--purple: #b28be4;
	--light-purple: #ded4ff;
	--beige: #fcf1e5;
	--pink: #E2BFD9;
	--light-pink: #ffcccc;
	--yellow: #fffd95;
	--cloud-dancer: #F0EEE9;
}


/*
GENERAL STYLING
================================================ */

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	background-color: var(--white);
	color: var(--grey);
	margin: 0px;
	font-family: "Noto Sans JP", sans-serif;
}

/*
COMMON
================================================ */

p,
td {
	line-height: 1.8rem;
}

img {
	max-width: 100%;
}

h1,
h2 {
	text-align: center;
}

header,
h2,
.hero-title {
	font-family: "Lexend", sans-serif;
}

h1 {
	font-family: "Merriweather", serif;
}

h2 {
	font-size: 3rem;
	margin-bottom: 3rem;
}

/* Layout */
.wrapper {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}

section {
	margin-bottom: 0;
}

.y-span {
	background: linear-gradient(var(--yellow) 70%);
}

/* H2装飾 */

h2 {
	color: var(--grey);
	position: relative;
	display: inline-block;
	padding: 0 55px;
}

h2:before,
h2:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 3px;
	background-color: var(--pink);
}

h2:before {
	left: 0;
}

h2:after {
	right: 0;
}



/*
HEADER
================================================ */
header {
	background: var(--purple);
	padding: 1rem 0;
	width: 100%;
	position: fixed;
	z-index: 1;
}

header .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

header a {
	color: var(--white);
	font-size: 1.5rem;
	text-decoration: none;
}

.btn-menu {
	position: absolute;
	top: 12px;
	right: 12px;
	border: 1px solid var(--grey);
	color: var(--white);
	background-color: #5a5a5a;
	padding: .5rem 1rem;
}

.main-nav {
	background: var(--purple);
	width: 0;
	position: absolute;
	z-index: 2;
	top: 50px;
	right: 0;
	overflow: hidden;
	transition: .5s;
}

.main-nav li {
	text-align: center;
	margin: 2rem 0;
	color: var(--purple);
}

.main-nav a {
	display: block;
}

.main-nav.open-menu {
	width: 100%;
}

.homeicon img {
	height: 35px;
}

/*
HERO
================================================ */
#hero {
	background-image: url('../images/hero3.jpg');
	background-color: #8bbfff31;
	background-blend-mode: lighten;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 10rem 2rem 8rem 2rem;
	top: 45px;
}


#hero h1 {
	color: var(--white);
	font-size: 3rem;
	margin-bottom: 2rem;
	padding-top: 1.2rem;
}


#hero p {
	text-align: center;
}

#hero img {
	width: 110px;
}

.hero-box {
	position: relative;
	padding: 15px 20px;
	border-top: 1px solid #774cb0;
	border-bottom: 1px solid #774cb0;
	font-weight: bold;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	line-height: 1.7;
}

.hero-box::before,
.hero-box::after {
	content: '';
	position: absolute;
	top: -8px;
	width: 1px;
	height: calc(100% + 16px);
	background-color: #774cb0;
}

.hero-box::before {
	left: 6px;
}

.hero-box::after {
	right: 6px;
}



/*
MAIN
================================================ */
#main {
	background-color: var(--beige);
	background-size: cover;
	height: 100%;
	/*border-top-left-radius: 50% 20%;
	border-top-right-radius: 50% 20%;*/
	border-bottom-left-radius: 50% 20%;
	border-bottom-right-radius: 50% 20%;
	padding: 0 0.5rem 4rem 0.5rem;
}

.main-title {
	text-align: center;
	border-bottom: 1px solid var(--pink);
	padding: 5rem 0 2rem 0;
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}


/*
ABOUT
================================================ */
#about {
	margin-top: 8rem;
	padding: 0rem 1rem;
	text-align: center;
}


#about p {
	text-align: initial;
	margin: 1rem 0 1rem 0;
}

#about ul {
	list-style-type: disc;
	/*リストの点を表示させ*/
	background: var(--cloud-dancer);
	/*背景色*/
	padding: 0.5em 0.5em 0.5em 3em;
	/*ボックス内の余白*/
	border: solid 1px rgb(156, 156, 156);
	/*線の種類 太さ 色*/
}

#about ul li {
	text-align: initial;
	line-height: 1.5;
	/*文の行高*/
	padding: 0.5em 0;
	/*前後の文との余白*/
	font-size: 0.95rem;
}


.about-title {
	padding-top: 2rem;
	font-weight: bold;
	font-size: 1.1rem;
}


.about-menu {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
	background-color: var(--beige);
	border-collapse: collapse;
	line-height: 1.7;
	width: 96%;
	height: auto;
	border-spacing: 0;
	font-size: 0.9rem;
}

.about-menu th {
	padding: 20px;
	text-align: center;
	vertical-align: middle;
	width: 30%;
}


.about-menu td {
	padding: 10px 8px 10px 0px;
	text-align: left;
	vertical-align: middle;
}


.about-menu img {
	width: 60px;
	height: auto;
}


.border {
	border-left: 1px solid var(--purple);
	padding-left: 20px;
	display: block;
}

/*
PROFILE
================================================ */
#profile {
	background: linear-gradient(var(--white), var(--beige));
	padding: 8rem 0 4rem 0;
	text-align: center;
}

#profile h2 {
	color: var(--grey);
}

.prof-table {
	color: var(--grey);
	width: 100%;
	text-align: initial;
}

.prof-table td {
	display: block;
	padding-bottom: 1rem;
	padding-top: 15px;
}

.news-date {
	font-size: .875rem;
	padding-top: 1rem;
}

.prof-img,
.prof-sub {
	text-align: center;
	font-size: 1.3rem;
}

.prof-img img {
	width: 150px;
	height: auto;
}

.prof-sub img {
	padding-top: 0.2rem;
	width: 25px;
	height: auto;
}

.prof-content {
	padding-bottom: 1rem;
}


/*
PRICE 料金
================================================ */
#price {
	margin-top: 8rem;
	padding: 0 1rem;
	text-align: center;
	border-radius: 20px;
}

#price h2 {
	color: var(--grey);
}

#price p {
	margin-bottom: 1.3rem;
	text-align: initial;
}

.price-title {
	background-image: linear-gradient(90deg, var(--light-pink), var(--white));
	/*背景色*/
	padding: 0.5em 0 0.5em 1em;
	/*文字周りの余白*/
	color: var(--grey);
	/*文字を白に*/
	border-radius: 0.5em;
	/*角の丸み*/
	font-size: 1.05rem;
	font-weight: bold;
}

.price-text {
	padding: 0 0.5rem;
}


/*値段表*/
.price-table {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
	border-collapse: collapse;
	margin: 2rem auto 5rem auto;
	padding: 0;
	width: 95%;
	table-layout: fixed;
}

.price-table tr {
	background-color: var(--white);
	border-bottom: 1px dotted var(--light-purple);
}

.price-table tr:last-child {
	border-bottom: 2px solid var(--purple);
}

.price-table th {
	vertical-align: middle;
	padding: 1rem;
	text-align: center;
}

.price-table td {
	padding: 1rem;
}

tfoot td .price-memo {
	padding: 1rem 0.5rem 0 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.3rem;
	color: var(--grey);
}

.time {
	padding-right: 1.5rem;
	text-align: right;
}

.price {
	padding-left: 1.5rem;
	text-align: left;
}

.red {
	color: #da0000;
}


#price ul {
	text-align: initial;
	list-style-type: none;
	padding: 0.5rem 0 0.5rem 1rem;
}

#price li {
	padding: 1rem 0;
}


/*
PRICE_02 料金専用ページ
================================================ */
#price_02 {
	margin-top: 2rem;
	padding: 0 1rem;
	text-align: center;
	border-radius: 20px;
}

#price_02 h2 {
	color: var(--grey);
	font-size: 2rem;
}

#price_02 p {
	margin-bottom: 1.3rem;
	text-align: initial;
}

tfoot td .price_02-memo {
	padding: 2rem 0.5rem 0 0.5rem;
	font-size: 0.9rem;
	line-height: 1.3rem;
}


/*
FLOW ACCESS
================================================ */

#flow {
	margin-top: 8rem;
	margin-bottom: 3rem;
	padding: 2rem 3rem;
	text-align: center;
	background-color: var(--light-purple);
	border-radius: 20px;
}

#flow h3 {
	font-size: 1.5rem;
	margin-bottom: .5rem;
	font-weight: bold;
}


.flow-list {
	margin: 2rem 0 2rem 0;
	text-align: initial;
}

.flow-list p {
	padding: 0 0.5rem;
}

/*#flow h2 {
	background: linear-gradient(var(--purple), var(--pink));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;}文字グラデ*/



#map {
	position: relative;
	width: 80%;
	padding-top: 56.25%;
	/* 16:9のアスペクト比 */
	height: 0;
	margin: 0 auto;
}

#map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#room img {
	margin-top: 3rem;
	width: 80%;
}


/*
FOOTER
================================================ */
#footer {
	background-color: #5a5a5a;
	color: var(--beige);
	padding: 3rem 1rem;

}






/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {

	/* Common */
	h2 {
		font-size: 3rem;
	}

	a:hover,
	.ticket-btn:hover {
		transition: .3s;
	}

	a:hover {
		color: var(--blue);
	}

	.ticket-btn:hover {
		background: var(--blue);
	}

	/* Header */
	.btn-menu {
		display: none;
	}

	.main-nav {
		width: 100%;
		position: static;
		display: flex;
	}

	.main-nav li {
		margin: 0 0 0 1.5rem;
	}

	/* Hero */
	#hero {
		height:
	}

	#hero h1 {
		font-size: 4.3rem;
	}

	/* あなたのお悩みお聞かせください */
	.hero-box {
		width: 400px;
		font-size: 1.1rem;
	}


	/* about こんなことで悩んでいませんか？ */
	.about-title {
		font-size: 1.2rem;
	}

	#about ul li {
		font-size: 1.0rem;
	}


	.about-menu {
		font-size: 1.0rem;
	}


	.about-menu th {
		text-align: center;
	}


	.about-menu img {
		width: 80px;
	}


	/* Profile プロフィール*/
	.prof-content {
		font-size: 1.05rem;
	}


	.prof-table td {
		display: table-cell;
	}

	.prof-img {
		padding: 1.125rem 0 1rem 1rem;
	}

	.prof-content {
		padding: 1rem 1rem 1rem 0;
	}

	tfoot td .price-memo {
		font-size: 1rem;
	}

	/* Speakers */
	#speakers h2 {
		margin-bottom: 4rem;
	}

	.flow-list {
		margin-bottom: 3rem;
	}

}