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

/* Font
*****************************************************************/

body {
	font-family:"游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	line-height: 1.8em;
	letter-spacing: 0.05em;
	overflow-x: hidden;
}

html { font-size: 62.5%; }
body { font-size: 16px; font-size: 1.6rem; color: #000;}

/* common */

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.gf {
	font-family: 'Prompt', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}

a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #666;
}

a img {
	transition: .4s ;
}

a img:hover {
	opacity: .5 ;
}

/* element */

p.btn {
	margin: 40px auto;
	text-align: center;
}

p.btn a {
	color: #fff;
	background: #4abdac;
	border: 1px solid #4abdac;
	text-decoration: none;
	padding: 20px;
	transition: .4s;
	border-radius: 3px;
}

p.btn a:hover {
	color: #4abdac;
	background: #fff;
}

.arr {
	position: relative;
	display: block;
	padding: 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
}

.arr::before,
.arr::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arr-right::before{
	right: 20px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* header */

header {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto 0;
}

header h1 img {
	width: 200px;
	height: auto;
}

header h1 {
	float: left;
}

header nav {
	float: right;
}

header nav ul.menu li {
	display: inline-block;
	margin: 0 0 0 20px;
}

/* pc非表示 */
.h-btn, header nav ul.menu li a.arr:before {
	display: none;
}

@media screen and (max-width: 768px) {

	body { font-size: 14px; font-size: 1.4rem; color: #000;}

	/* sp表示 */
	header nav ul.menu li a.arr:before {
		display: block;
	}

	header {
		position: fixed;
		top: 0;
		z-index: 20;
		max-width: 1000px;
		width: 100%;
		height: 44px;
		margin: 0;
		background-color: #fff;
	}

	header h1 {
		float: none;
		margin: 10px 0 0 3%;
	}

	header h1 img {
		width: 120px;
		height: auto;
	}

	header nav {
		float: none;
	}

	/* nav */

	button {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		vertical-align: middle;
		border: 0;
		background: transparent;
		outline: 0;
		border-radius: 0;
		text-align: inherit;
	}

	button:hover {
		cursor: pointer;
	}

	.h-btn {
		position: fixed;
		top: 0;
		right: 2%;
		width: 40px;
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10;
	}

	.h-btn-line {
		width: 100%;
		height: 1px;
		background-color: #000;
		position: relative;
		transition: .2s;
	}

	.h-btn-line::before,
	.h-btn-line::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #000;
		transition: .2s;
	}

	.h-btn-line::before {
		transform: translateY(-8px);
	}

	.h-btn-line::after {
		width: 100%;
		transform: translateY(8px);
	}

	/* open */

	.h-btn-line.open {
		background-color: transparent;
	}

	.h-btn-line.open::before,
	.h-btn-line.open::after {
		content: "";
		transition: .2s;
	}

	.h-btn-line.open::before, .h-btn-line.open::after {
		transform: translateY(0);
	}

	/* menu */

	.menu {
		position: fixed;
		z-index: 9999;
		top: 44px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 1);
		transition: .3s ease-in;
		opacity: 0;
		pointer-events: none; /*重なり考慮*/
	}

	.menu.open {
		opacity: 1;
		transition: .3s ease-in;
		pointer-events: auto!important; /*重なり考慮*/
	}

	header nav ul.menu li {
	width: 100vw;
	margin: 0;
	padding: 14px 0 14px 10px;
	border-bottom: 1px solid #e8e8e8;
	}

	header nav ul.menu li.sp_head {
		color: #000;
		background: #e8e8e8!important;
	}

}

/* topimage */

.topimage {
	margin: auto;
	width: 100%;
	height: 40vh;
	background-image: url("../../images/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.topimage h2 {
	text-align: center;
	font-size: 4em;
	color: #fff;
}

/* contents */

article.main {
	max-width: 800px;
	width: 100%;
	margin: auto;
}

section {
	border: 1px solid #fff;
	display: block;
	margin-top: 60px;
}

h2.midashi {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin: 60px auto 30px;
}

h2.midashi::after {
	font-size: 30px;
	font-weight: bold;
	color: #ccc;
	display: block;
	content: "…";
	padding-top: 10px;

}

@media screen and (max-width: 768px) {

	.topimage h2 {
		font-size: 2.6em;
		color: #fff;
		line-height: 1.2em;
	}

	/*
	article.main {
		width: 94%;
		margin: 0 3%;
	}
	*/

	section {
		width: 94%;
		margin: 20px 3% 0;
	}

	h2.midashi {
		font-size: 18px;
		margin: 30px auto 15px;
	}

}

/* about */

ul.about {
	width: 80%;
	margin: 30px auto;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

ul.about li {
	color: #000;
	text-align: center;
	line-height: 1.4em;
	font-size: 14px;
	font-weight: bold;
}

ul.about li i {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	background-color: #4abdac;
	width: 120px;
	height: 120px;
	color: #fff;
	border-radius: 60px;
}

ul.about li span {
	display: block;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {

	ul.about {
		width: 94%;
		margin: 30px auto 0;
	}

	ul.about li {
		width: 30%;
		text-align: center;
		line-height: 1.4em;
		font-size: 12px;
	}

	ul.about li i {
		text-align: center;
		display: inline-block;
		vertical-align: middle;
		width: 80px;
		height: 60px;
		padding-top: 20px;
	}

}

/* member Mag*/

.memberMag {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.6em;
	margin-top: 10px;
}

.memberMag li {
	position: relative;
	display: table;
	background-color: #e8e8e8;
	width: 28%;
	height: 280px;
	margin: 0 8% 30px 0;


	background-image: linear-gradient(-45deg, #e8e8e8 25%, #e1e1e1 25%, #e1e1e1 50%, #e8e8e8 50%, #e8e8e8 75%, #e1e1e1 75%);
	background-size: 20px 20px;
}

.memberMag li:nth-child(3n) {
	margin-right: 0;
}

.memberMag li a {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

.memberMag li::after {
	font-family: "Font Awesome 5 Free";
	content: '\f1c1';
	position: absolute;
	bottom: 5px;
	right: 5px;
	line-height: 1.2em;
	padding: 3px;
}

@media screen and (max-width: 768px) {

	.memberMag {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		line-height: 1.6em;
		margin-top: 10px;
	}

	.memberMag li {
		font-size: 12px;
		line-height: 1.2em;
		width: 30%;
		height: 140px;
		margin: 0 auto;
	}

	.memberMag li a {
		text-decoration: none; 
	}

	.memberMag li:nth-child(3n) {
		margin-right: auto;
	}
}

/* signin */

#page03 {
	height: auto;
	border: 1px solid #f8f8f8!important;
	background: #f8f8f8;
	margin: 60px calc(50% - 50vw);
	padding: 60px auto;
	width: 100vw;
}

.inner {
	border: 1px solid #f8f8f8!important;
	width: 100%;
	max-width: 800px;
	margin: 30px auto 60px!important;
}

.inner div {
	margin-bottom: 60px;
}

.inner h3 {
	padding-bottom: 5px;
}

.inner h4 {
	padding-top: 15px;
}

.payment {
	width: 100%;
	max-width: 400px;
	margin: 10px auto -60px;
}

@media screen and (max-width: 768px) {

	#page03 {
		margin-bottom: 30px;
	}

	.inner {
		width: 94%;
		margin: 20px 3% 0!important;
	}

}

/* kaisoku */

.kaisoku {
	height: 600px;
	padding: 20px;
	overflow: visible scroll;
	background-color: #f8f8f8;
	border: 1px solid #f8f8f8;
}

.kaisoku h3 {
	font-size: 18px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.kaisoku p {
	margin-bottom: 15px;
}

.kaisoku ul {
	padding: 0;
	margin: 0 0 25px 20px;
}

.kaisoku ul li {
	text-indent: -3.2em;
	padding-left: 2em;
}

@media screen and (max-width: 768px) {

	.kaisoku {
		font-size: 12px;
		line-height: 1.6em;
	}

	.kaisoku p {
		text-align: justify;
	}

	.kaisoku h3 {
		font-size: 14px;
	}

}

/* page top */

.pageTop {
	width: 60px;
	border-radius: 30px;
	background-color: #fff;
	border: 1px solid #4abdac;
	text-align: center;
	position: fixed;
	/*z-index: 100;*/
	right: 20px;
	bottom: 20px;
	line-height: 30px;
}

.pageTop a {
	color: #4abdac;
	text-decoration: none;
}

.pc { display: block; }
.sp { display: none; }

@media screen and (max-width: 768px) {

.pc { display: none; }
.sp { display: block; }

.pageTop {
	right: 3%;
	bottom: 20px;
}

.pageTop img {
	height: 100px;
	width: auto;
}

}

/* footer */

footer {
	background-color: #4abdac;
	text-align: center;
	margin-top: 60px;
	padding: 30px;
}

footer p.copyright {
	font-size: 12px;
}