@charset "utf-8";

/* base
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}


/* フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	color: #000;
	font-size: 1.8em;
	letter-spacing: 0.05em;
	line-height: 1.7;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
.en01 { font-family: acumin-pro, sans-serif; }
.fc_rd { color: #cf3b41; }
.fc_gr { color: #19906b; }
.bold { font-weight: 700; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
.marker01 {
	display: inline-block;
	background: linear-gradient(transparent 60%, #ffff00 60%);
	padding: 0 10px;
}
.bg01 { background: #eee; }
.bg02 {
	background-image: url("../img/cmn/bg02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.bg03 {
	background-image: url("../img/cmn/bg03.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.bg04 {}
@media screen and (max-width: 768px) {
body {
	font-size: 1.6em;
}
.bg02 {
	background-image: url("../img/cmn/bg02_sp.jpg");
}
}


/* リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover {
	opacity: 0.5;
}
.underline {
	text-decoration: underline;
}
.underline:hover {
	text-decoration: none;
	opacity: 1;
}
::-moz-selection {
	color: #fff;
	background: #1755a4;
}
::selection {
	color: #fff;
	background: #1755a4;
}


/* 余白
-------------------------------------------------------- */
/* margin */
.mt60 { margin-top: 60px; }
/* padding */
.pad_y70 { padding: 70px 0; }
.pb100 { padding-bottom: 100px; }
@media screen and (max-width: 768px) {
.mt60 { margin-top: 24px; }
.pad_y70 { padding: 40px 0; }
}

/* layout
-------------------------------------------------------- */
.inner {
	max-width: 1080px;
	width: 92%;
	margin: auto;
}
.inner.is_wide {
	width: 100%;
}
.inner.mw880 {
	max-width: 880px;
}
.box_s01 {
	-moz-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	-webkit-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	-ms-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	transition: .3s;
}
.box_s01:hover {
	box-shadow: none;
}
.cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
}
.iframe {
	position: relative;
}
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.anchor {
	margin-top: -100px;
	padding-top: 100px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}


/* flex系 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.ai_fs {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jc_sa {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}


/* title
-------------------------------------------------------- */
.title01 {
	font-size: 3.4rem;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}
.title01 span {
	display: inline-block;
	padding: 0 56px;
	position: relative;
}
.title01 span::before,
.title01 span::after {
	content: "";
	width: 24px;
	height: 2px;
	background: #199e3b;
	display: block;
	position: absolute;
	top: calc(50% - 1px);
}
.title01 span::before {
	left: 0;
}
.title01 span::after {
	right: 0;
}
.title02 {
	font-size: 2.8rem;
}
.page_title {
	height: 120px;
	background: #eee;
	position: relative;
	z-index: 1;
}
.page_title::before,
.page_title::after {
	content: "";
	width: 260px;
	height: 120px;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 0;
	z-index: 0;
}
.page_title::before {
	background-image: url("../img/cmn/page_title01.svg");
	left: 0;
}
.page_title::after {
	background-image: url("../img/cmn/page_title02.svg");
	right: 0;
}
.page_title .title01 {
	font-size: 3.6rem;
	margin-bottom: 0;
	z-index: 2;
}
@media screen and (max-width: 768px) {
.title01 {
	font-size: 2.2rem;
	margin-bottom: 24px;
}
.title01 span {
	padding: 0 40px;
}
.page_title {
	height: 98px;
}
.page_title::before,
.page_title::after {
	width: 212px;
	height: 100px;
}
.page_title .title01 {
	font-size: 2.6rem;
}
}


/* btn
-------------------------------------------------------- */
.btn01 {
	color: #fff;
	max-width: 350px;
	width: 100%;
	height: 53px;
	background: #19906b;
	border-radius: 26px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.btn01::after {
	content: "";
	width: 5px;
	height: 9px;
	background-image: url("../img/cmn/arrow02.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn01.is_wide{
	font-size: 2rem;
	max-width: inherit;
	height: 86px;
	border-radius: 46px;
}

.btn01.is_wide02{
	font-size: 2rem;
	max-width: inherit;
	height: 86px;
	border-radius: 46px;
	border: solid 2px #19906b;
}

.btn02 {
	color: #19906b;
	font-weight: 700;
	display: inline-block;
	padding-right: 45px;
	position: relative;
}
.btn02::after {
	content: "";
	width: 29px;
	height: 29px;
	background-image: url("../img/cmn/arrow04.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.btn04 {
	color: #fff;
	max-width: 350px;
	width: 100%;
	height: 53px;
	border:solid 2px #19906b;
	border-radius: 26px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	box-shadow: 0px 3px 0px 0px rgb(217 217 217);
}

.btn04 img{
	width:92%;
}
.btn_wrap01 a:nth-child(2),
.btn_wrap02 a:nth-child(2) {
	transition-delay: 0.25s;
}
.btn_wrap01 {
	padding: 48px 0;
}
.btn_wrap01 a {
	width: 48.6%;
	background: #fff;
	border-radius: 10px;
	padding: 48px 36px;
/*	margin-bottom: 36px;*/
}
.btn_wrap01 a:last-child{
	margin-bottom: 0;
}

.btn_wrap01 .btn .icon {
	padding-left: 100px;
	position: relative;
}
.btn_wrap01 .btn .icon::before,
.btn_wrap01 .btn::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn_wrap01 .btn .icon::before {
	left: 0;
}
.btn_wrap01 .btn::after {
	width: 9px;
	height: 15px;
	background-image: url("../img/cmn/arrow01_gr.svg");
	right: 24px;
}
.btn_wrap01 .btn.is_program .icon::before {
	width: 74px;
	height: 67px;
	background-image: url("../img/index/icon_program.svg");
}
.btn_wrap01 .btn.is_lesson .icon::before {
	width: 69px;
	height: 73px;
	background-image: url("../img/index/icon_lesson.svg");
}
.btn_wrap01 .btn .title {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 16px;
}
.btn_wrap01 .btn .txt {
	color: #666;
}
.btn_wrap02 {
	padding: 30px 0;
}
.btn_wrap02 a {
	color: #353535;
	width: 45%;
	background: #fff;
	margin: 0 1.25%;
}
.btn_wrap02 a::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn_wrap02 a::after {
	width: 8px;
	height: 15px;
	background-image: url("../img/cmn/arrow01_rd.svg");
}
.btn_wrap02 .btn01.is_guide::before {
	width: 30px;
	height: 38px;
	background-image: url("../img/cmn/icon_guide_rd.svg");
	left: 36px;
}
.btn_wrap02 .btn01.is_ex::before {
	width: 20px;
	height: 31px;
	background-image: url("../img/cmn/icon_ex_rd.svg");
	left: 46px;
}

.btn_wrap03 {
	padding: 30px 0;
}
.btn_wrap03 a {
	color: #353535;
	width: 100%;
	background: #fff;
	margin: 0 1.25%;
}
.btn_wrap03 a::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn_wrap03 a::after ,.btn04 a::after {
	width: 8px;
	height: 15px;
	background-image: url("../img/cmn/arrow01_rd.svg");
}




@media screen and (max-width: 768px) {
.btn01.is_wide {
	font-size: 1.6rem;
	height: 64px;
}
.btn02 {
	font-size: 1.6rem;
	padding-right: 32px;
}
.btn02::after {
	width: 22px;
	height: 22px;
}
.btn_wrap01 a:nth-child(2),
.btn_wrap02 a:nth-child(2) {
	transition-delay: 0s;
}
.btn_wrap01 a,
.btn_wrap02 a {
	width: 100%;
	margin: 0 0 16px;
}
.btn_wrap01 a:last-child,
.btn_wrap02 a:last-child {
	margin: 0;
}
.btn_wrap01 {
	padding: 24px 0;
}
.btn_wrap01 a {
	padding: 24px 16px;
}
.btn_wrap01 .btn .icon {
	padding-left: 64px;
	position: relative;
}
.btn_wrap01 .btn .title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 8px;
}
.btn_wrap01 .btn .txt {
	font-size: 1.4rem;
}
.btn_wrap01 .btn.is_program .icon::before {
	width: 50px;
	height: 46px;
}
.btn_wrap01 .btn.is_lesson .icon::before {
	width: 52px;
	height: 56px;
}
.btn_wrap01 .btn::after {
	right: 16px;
}
.btn_wrap02 .btn01.is_guide::before {
	width: 24px;
	height: 25px;
}
.btn_wrap02 .btn01.is_ex::before {
	left: 36px;
}
}

@media screen and (max-width: 819px) and (min-width: 769px){
	
	.btn01.is_wide02 {
	font-size: 2.25vw;
	max-width: inherit;
	height: 86px;
	border-radius: 46px;
	line-height: 1.25;
}
	
	.btn04 {
	max-width: 350px;
}

	
}

@media screen and (max-width: 768px){
	
	.btn01.is_wide02 {
	font-size: 1.75rem;
	max-width: inherit;
	height: 86px;
	border-radius: 46px;
	line-height: 1.5;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
	
	.btn04{
	color: #fff;
	max-width: 100px;
}

}


/* list
-------------------------------------------------------- */


/* tbl
-------------------------------------------------------- */
.tbl01 {
	border-bottom-style: solid;
	border-bottom-width: 2px;
}
.tbl01 th,
.tbl01 td {
	border-style: solid;
	border-width: 2px;
	border: solid 2px #5eb197;
	padding: 24px 12px;
}
.program_wrap.studio .tbl01 th,
.program_wrap.studio .tbl01 td {
	border-color: #5eb197;
}
.program_wrap.swim .tbl01 th,
.program_wrap.swim .tbl01 td {
	border-color: #5d88bf;
}
.tbl01 .name {
	color: #fff;
	font-weight: bold;
	width: 200px;
}
.program_wrap.studio .tbl01 {
	border-bottom-color: #5eb197;
}
.program_wrap.swim .tbl01 {
	border-bottom-color: #5d88bf;
}
.program_wrap.studio .tbl01 .name {
	background: #19906b;
}
.program_wrap.swim .tbl01 .name {
	background: #1755a4;
}
.tbl01 .program_time {
	width: 80px;
	text-align: center;
}
.program_wrap.studio .tbl01 .program_time {
	background: #d7efdb;
}
.program_wrap.swim .tbl01 .program_time {
	background: #d1dded;
}
.tbl01 .star {
	width: 120px;
}
.program_wrap.studio .tbl01 .star {
	background: #f5fbf6;
}
.program_wrap.swim .tbl01 .star {
	background: #f3f6fa;
}
.program_wrap .tbl01 thead th {
	color: #fff;
	text-align: center;
}
.program_wrap.studio .tbl01 thead th {
	background: #5eb197;
}
.program_wrap.swim .tbl01 thead th {
	background: #5d88bf;
}

.tbl02 {
	background: #fff;
}
.tbl02 th,
.tbl02 td {
	border: solid 2px #5eb197;
	padding: 16px 24px;
}
.tbl02 th {
	color: #fff;
	font-weight: bold;
	width: 263px;
	background: #19906b;
}
.tbl02 td {
	padding-left: 32px;
}
@media screen and (max-width: 768px) {
.tbl01 tr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.tbl01 th,
.tbl01 td {
	padding: 16px;
}
.tbl01 .name,
.tbl01 .txt {
	width: 100%;
}
.tbl01 .program_time,
.tbl01 .star {
	width: 50%;
	border-top: none;
	border-bottom: none;
}
.tbl01 .star .flex {
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	}
.tbl01 .star img {
	max-width: 120px;
}
.tbl01 .program_time {
	border-right: none;
}
.tbl01 .txt {
	border-bottom: none;
}
.program_wrap .tbl01 thead {
	display: none;
}
.program_wrap .tbl01 th br {
	display: none;
}
	.program_wrap .program_time span,
	.program_wrap .star span {
	display: inline-block;
		padding-left: 50px;
		position: relative;
	}
	.program_wrap .star span {
		padding-left: 68px;
	}
	.program_wrap .star span img {
		vertical-align: middle;
	}
	.program_wrap .program_time span::before {
	content: "時間：";
		position: absolute;
		top: 0;
		left: 0;
}
	.program_wrap .star span::before {
	content: "難易度：";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
.tbl02 th,
.tbl02 td {
	display: block;
	padding: 16px;
}
.tbl02 th {
	width: auto;
	border: none;
}
}


/* animation
-------------------------------------------------------- */
.fade_in {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	transition: .3s;
}
.fade_in.is_active {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.is_firstView {
	opacity: 0;
	animation-name: firstView;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
@keyframes firstView {
0% {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

100% {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
}
/* PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}




/* header
-------------------------------------------------------- */
header {
	background: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 18px 24px 18px 30px;
}
.logo {
	font-size: 2.4rem;
}
.logo a {
	display: block;
	line-height: 1.2;
	padding-left: 50px;
	position: relative;
}
.logo a::before {
	content: "";
	width: 38px;
	height: 54px;
	background-image: url("../img/cmn/logo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 27px);
	left: 0;
}
.logo span {
	font-size: 1.1rem;
	margin-bottom: 8px;
}
.logo.is_hd .is_pc,
.logo.is_ft span {
	display: block;
}
.hd_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 10px;
}
.hd_btn .btn {
	color: #fff;
	font-size: 1.8rem;
	max-width: 170px;
	width: 100%;
	height: 42px;
	border-radius: 4px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: 12px;
}
.hd_btn .btn span {
	display: inline-block;
	line-height: 0.5;
	padding-left: 24px;
	position: relative;
}
.hd_btn .btn span::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hd_btn .btn.hd_guide {
	background: #19906b;
}
.hd_btn .btn.hd_guide span::before {
	width: 13px;
	height: 17px;
	background-image: url("../img/cmn/icon_guide.svg");
}
.hd_btn .btn.hd_ex {
	background: #cf3b41;
}
.hd_btn .btn.hd_ex span::before {
	width: 11px;
	height: 17px;
	background-image: url("../img/cmn/icon_ex.svg");
}
.hd_tel {
	font-size: 3.5rem;
	display: block;
	margin-top: -5px;
	padding-left: 36px;
	position: relative;
}
.hd_tel::before {
	content: "";
	width: 23px;
	height: 22px;
	background-image: url("../img/cmn/icon_tel.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
}
.hd_btn .hd_tel .num {
	white-space: nowrap;
}
.hd_btn .hd_tel .en { display: none; }
.gnav .list01 li {
	border-right: solid 1px #dbdbdb;
}
.gnav .list01 li:last-child {
	border-right: none;
}
.gnav .list01 a {
	display: block;
	line-height: 1;
	padding-left: 20px;
	padding-right: 20px;
}
.gnav .list01 li:last-child a {
	padding-right: 0;
}

@media screen and (max-width: 1136px) {
.hd_btn .btn,
.hd_tel .num,
.gnav {
	display: none;
}
.hd_btn { margin-bottom: 0; }
.hd_btn .hd_tel {
	width: 55px;
	height: 55px;
	background: #19906b;
	border-radius: 7px;
	-moz-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	-webkit-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	-ms-box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	box-shadow: 0px 3px 0px 0px rgba(217, 217, 217, 1);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0;
	padding-left: 0;
	padding: 10px;
}
.hd_btn .hd_tel::before {
	width: 22px;
	height: 21px;
	background-image: url("../img/cmn/icon_tel_wh.svg");
	position: static;
	top: inherit;
}
.hd_btn .hd_tel .en {
	color: #fff;
	font-size: 1.2rem;
	width: 100%;
	display: block;
	line-height: 1;
	text-align: center;
	margin-top: 4px;
}
}
@media screen and (max-width: 768px) {
.logo.is_hd .is_pc {
	display: none;
}
}
@media screen and (max-width: 480px) {
header {
	padding: 12px 10px;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10;
}
.logo.is_hd {
	font-size: 1.8rem;
}
.logo.is_hd a {
	padding-left: 28px;
}
.logo.is_hd a::before {
	width: 30px;
	height: 30px;
	top: calc(50% - 15px);
}
.logo.is_hd span {
	font-size: 1rem;
	margin-bottom: 2px;
}
.hd_btn .hd_tel {
	width: 42px;
	height: 42px;
	padding: 4px;
}
.hd_btn .hd_tel::before {
	width: 18px;
	height: 18px;
}
.hd_btn .hd_tel .en {
	font-size: 1rem;
	margin-top: 2px;
}

}

/* footer
-------------------------------------------------------- */
.ft_map,
.ft_info {
	width: 50%;
}
.ft_map {
}
.ft_map .iframe {
	height: 475px;
}
.ft_info {
	color: #fff;
	background: #4d4d4d;
	padding: 0 16px;
}
.ft_info > div {
	display: inline-block;
}
.ft_info .logo {
	color: #fff;
	margin-bottom: 24px;
}
.ft_info address {
	margin-bottom: 16px;
}
.ft_info .hd_tel {
	color: #fff;
	margin-bottom: 8px;
}
.ft_info .hd_tel::before {
	background-image: url(../img/cmn/icon_tel_gr.svg);
}
.time_table {
	font-size: 1.5rem;
}
.time_table > div {
	margin-bottom: 8px;
}
.time_table > div:last-child {
	margin-bottom: 0;
}
.time_table > div > dt {
	width: 72px;
	border-right: solid 1px #b3b3b3;
}
.time_table > div > dd {
	width: calc(100% - 72px);
	padding-left: 16px;
}
.time_table dd dl dt {
	width: 68px;
}
.time_table dd dl dd {
	width: calc(100% - 68px);
}
.time_table .en,
.time_table .en {
	font-size: 2rem;
	line-height: .5;
}
#copyright {
	color: #fff;
	font-size: 1.2rem;
	background: #19906b;
	padding: 8px 0;
}
.fix_btn {
	font-size: 1.4rem;
	position: fixed;
	right: 0;
	bottom: 8px;
	z-index: 10;
}
.fix_btn .btn {
	color: #fff;
	width: 90px;
	height: 90px;
	background: #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.fix_btn .btn.is_humb {
	color: #19906b;
	background: #fff;
	cursor: pointer;
}
.fix_btn .btn.is_humb .icon {
	width: 34px;
	height: 20px;
	position: relative;
}
.fix_btn .btn.is_humb .icon span {
	width: 100%;
	height: 1px;
	background: #19906b;
	display: block;
	position: absolute;
	transition: .5s;
}
.fix_btn .btn.is_humb .icon span:first-child {
	top: 0;
}
.fix_btn .btn.is_humb .icon span:nth-child(2) {
	top: 50%;
}
.fix_btn .btn.is_humb .icon span:nth-child(3) {
	bottom: 0;
}
.fix_btn .btn.is_humb .txt::before {
	content: "メニュー";
}
.fix_btn .btn .icon {
	margin: 0 auto 4px;
}
.fix_btn .btn.is_guide {
	background: #19906b;
}
.fix_btn .btn.is_guide .icon {
	max-width: 19px;
}
.fix_btn .btn.is_ex {
	background: #cf3b41;
}
.fix_btn .btn.is_ex .icon {
	max-width: 17px;
}
.drawer {
	color: #fff;
	font-size: 2rem;
	max-width: 502px;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: #19906b;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	right: -100%;
	transition: .5s;
	z-index: 5;
}
.drawer .list01 {
	padding: 40px 0;
}
.drawer .list01 a span {
	display: inline-block;
	padding-left: 40px;
	position: relative;
}
.drawer .list01 a span::before {
	content: "";
	width: 24px;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
}
.drawer ul li {
	margin-bottom: 40px;
}
.drawer ul li:last-child {
	margin-bottom: 0;
}
.drawer_bg {
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 4;
}
.is_open { overflow: hidden; }
.is_open .drawer { right: 90px; }
.is_open .fix_btn .btn.is_humb .txt::before {
	content: "閉じる";
}
.is_open .drawer_bg {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.85);
	display: block;
}
.is_open .fix_btn .btn.is_humb .icon span:first-child {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.is_open .fix_btn .btn.is_humb .icon span:nth-child(2) {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.is_open .fix_btn .btn.is_humb .icon span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
.ft_wrap {
	display: block;
}
.ft_map,
.ft_info {
	width: 100%;
}
.ft_map .iframe {
	height: auto;
	padding-top: 59%;
}
.ft_info {
	padding: 40px 16px;
}
#copyright {
	font-size: 1rem;
}
.fix_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
}
.fix_btn .btn {
	width: 33.333%;
	height: 50px;
}
.fix_btn .btn > div,
.fix_btn .btn > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.fix_btn .btn .icon {
	margin: 0 8px 0 0;
}
.drawer {
	display: block;
}
.drawer .list01 {
	padding: 0;
}
.is_open .drawer { right: 0; }
.fix_btn .btn.is_humb .icon {
	width: 20px;
	height: 14px;
	position: relative;
}
.fix_btn .btn.is_guide .icon,
.fix_btn .btn.is_ex .icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.fix_btn .btn.is_guide .icon {
	max-width: 15px;
}
.fix_btn .btn.is_ex .icon {
	max-width: 12px;
}
.is_open .fix_btn .btn.is_humb .icon span:first-child {
	top: 6px;
}
.is_open .fix_btn .btn.is_humb .icon span:nth-child(3) {
	top: 6px;
}
	.drawer {
		display: block;
		padding: 100px 4% 80px;
	}
.drawer ul li {
	margin-bottom: 24px;
}
}
@media screen and (max-width: 480px) {
	.logo.is_ft {
		font-size: 2rem;
	}
.logo.is_ft span {
	font-size: 1rem;
	margin-bottom: 4px;
}
.logo.is_ft a {
	padding-left: 40px;
}
.logo.is_ft a::before {
	width: 26px;
	height: 37px;
	top: calc(50% - 18.5px);
}
.ft_info address {
	margin-bottom: 8px;
}
}

/* mainv
-------------------------------------------------------- */
.mainv { position: relative; }
.mainv .swiper-slide {
	height: 480px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mainv .swiper-slide.img01 { background-image: url("../img/index/main01.jpg"); }
.mainv .swiper-slide.img02 { background-image: url("../img/index/main02.jpg"); }
.mainv .swiper-slide.img03 { background-image: url("../img/index/main03.jpg"); }
.mainv .mainv_txt {
	position: absolute;
	top: 50%;
	left: 4%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
.mainv .mainv_txt {
	line-height: 1;
}
.mainv .mainv_txt .title,
.mainv .mainv_txt .txt {
	animation-delay: 0.25s;
}
.mainv .mainv_txt .title {
	font-size: 4rem;
}
.mainv .mainv_txt .txt {
	font-size: 2.4rem;
}
.mainv .mainv_txt span {
	background: rgba(255, 255, 255, 0.82);
	display: inline-block;
	padding: 24px 32px;
}
@media screen and (max-width: 768px) {
.mainv .swiper-slide {
	height: auto;
	padding-top: 41.333%;
}
.mainv .mainv_txt .title {
	font-size: 2rem;
}
.mainv .mainv_txt .txt {
	font-size: 1.4rem;
}
.mainv .mainv_txt span {
	padding: 16px 8px;
}

}


/* important
-------------------------------------------------------- */
.index_important {
	animation-delay: 0.5s;
	padding: 32px 0;
}
.important_wrap {
	border: solid 1px #cf3b41;
	border-radius: 10px;
	overflow: hidden;
}
.index_important .head {
	color: #fff;
	width: 204px;
	background: #cf3b41;
	position: relative;
}
.index_important .head::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8vh 0 8vh 21px;
	border-color: transparent transparent transparent #cf3b41;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
.index_important .head span {
	display: inline-block;
	padding-left: 36px;
	position: relative;
}
.index_important .head span::before {
	content: "";
	width: 25px;
	height: 25px;
	background-image: url("../img/index/important.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_important .list {
	font-size: 1.6rem;
	width: calc(100% - 204px);
	padding: 16px 16px 16px 50px;
}

.index_important .list li {
	margin-bottom: 16px;
}
.index_important .list li:last-child {
	margin-bottom: 0;
}
.index_important .list li a {
	display: inline-block;
	padding-left: 24px;
	position: relative;
}
.index_important .list li a::before {
	content: "";
	width: 5px;
	height: 10px;
	background-image: url("../img/cmn/arrow01_rd.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
}

@media screen and (max-width: 768px) {
.index_important {
	padding: 16px 0;
}
.important_wrap {
	display: block;
}
.index_important .head,
.index_important .list {
	width: 100%;
}
.index_important .head {
	padding: 8px;
}
.index_important .head::before {
	content: none;
}
.index_important .list {
	padding: 16px;
}
.index_important .list li a {
	padding-left: 16px;
}
}


/* index_pickup
-------------------------------------------------------- */
.index_pickup {
	animation-delay: 1s;
	overflow: hidden;
	padding: 40px 0 24px;
}
.index_pickup img {
	width: 100%;
}
.index_pickup a {
	width: 100%;
	height: 100%;
	display: block;
}
.index_pickup .swiper-pagination {
	margin-top: 30px;
	position: static;
}
.index_pickup .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	background: #19906b;
}
.index_pickup .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 8px;
}

@media screen and (max-width: 768px) {
.index_pickup {
	padding: 24px 0;
}
.index_pickup .swiper-pagination {
	margin-top: 16px;
}
.index_pickup .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
}
}


/* index_news
-------------------------------------------------------- */
.news_list li {
	border-bottom: dotted 1px #b7b7b7;
}
.news_list li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 16px 0;
}
.date {
	color: #808080;
	margin-right: 20px;
}
.category {
	color: #fff;
	font-size: 1.4rem;
	min-width: 116px;
	height: 21px;
	background: #19906b;
	border-radius: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.category.important {
	background: #bc272d;
}
.news_list .txt {
	margin-left: 24px;
}
.index_news .btn_wrap {
	margin-top: 30px;
}
@media screen and (max-width: 768px) {
.news_list li a {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.news_list .txt {
	width: 100%;
	margin-top: 8px;
	margin-left: 0;
}
.index_news .btn_wrap {
	margin-top: 24px;
}
}


/* index_calendar
-------------------------------------------------------- */
.calendar_list li {
	width: 48%;
}
.calendar_list li:nth-child(2) {
	transition-delay: 0.25s;
}
.index_calendar .xo-months .xo-month-wrap:nth-child(2) {
	transition-delay: 0.25s;
}
.index_calendar .xo-months {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.index_calendar .xo-months .xo-month-wrap {
}
.index_calendar .xo-event-calendar table.xo-month .month-header {
	color: #fff;
	font-weight: bold;
	background: #19906b;
	text-align: center;
	margin: 0;
	padding: 8px;
}
.index_calendar .xo-event-calendar table.xo-month {
	font-size: 1.4rem;
	border: none;
	text-align: center;
	margin: 0;
}
.xo-event-calendar table.xo-month th, .xo-event-calendar table.xo-month td {
	border: solid 1px #c1c1c1;
}
.index_calendar .holiday-titles {
	display: none;
}
.xo-event-calendar table.xo-month .month-dayname td div.today {
	color: #353535;
	font-weight: normal;
}
.xo-event-calendar table.xo-month .month-dayname td div.other-month {
	opacity: 1;
}
.index_calendar .txt {
	font-size: 1.4rem;
	margin-top: 10px;
}
.index_calendar .txt p { position: relative; }
.index_calendar .txt p::before {
	content: "";
	width: 31px;
	height: 19px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_calendar .txt p.is_closed::before {
	background: #b2272d;
}
.index_calendar .txt p {
	margin-right: 20px;
	padding-left: 36px;
}
.index_calendar .txt p:last-child {
	margin-right: 0;
}
.index_calendar .note_list01 {
	margin-bottom: 16px;
}
.index_calendar .note_list01 .is_closed {
	padding-left: 30px;
	position: relative;
}
.index_calendar .note_list01 .is_closed::before {
	content: "";
	width: 27px;
	height: 27px;
	background: #c1daf3;
	border: solid 1px #353535;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_calendar .calendar{
	width: 100%;
	background: #fff;
}
.index_calendar .calendar caption {
	color: #fff;
	font-weight: bold;
	background: #19906b;
	text-align: center;
	padding: 8px;
}
.index_calendar .calendar td {
	font-size: 1.4rem;
	border: solid 1px #c1c1c1;
	text-align: center;
	padding:8px;
}
.index_calendar .test {
	background:#42bbf8;
}
.index_calendar .closed {
	color: #fff;
	background:#b2272d;
}
.index_calendar .txt {
	font-size: 1.4rem;
	margin-top: 10px;
}
.index_calendar .txt p { position: relative; }
.index_calendar .txt p::before {
	content: "";
	width: 31px;
	height: 19px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_calendar .txt p.is_closed::before {
	background: #b2272d;
}
.index_calendar .txt p.is_test::before {
	background: #42bbf8;
}
.index_calendar .txt p {
	margin-right: 20px;
	padding-left: 36px;
}
.index_calendar .txt p:last-child {
	margin-right: 0;
}
.index_calendar .event_list {
	margin-top: 16px;
}
.index_calendar .event_list dt,
.index_calendar .event_list dd {
	line-height: 1;
}
.index_calendar .event_list dt {
	font-weight: 700;
	margin-bottom: 8px;
}
.index_calendar .event_list dd {
	margin-bottom: 16px;
}
.index_calendar .event_list dd:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
.calendar_list li {
	width: 100%;
	margin-bottom: 40px;
}
.calendar_list li:nth-child(2) {
	transition-delay: 0s;
}
.calendar_list li:last-child {
	margin-bottom: 0;
}
}


/* index_program
-------------------------------------------------------- */
.index_program {
	padding: 70px 4%;
}
.index_pprogram_list {
}
.index_program_list li {
	width: 49%;
	border-radius: 4px;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
	position: relative;
}
.index_program_list li:nth-child(2) {
	transition-delay: 0.25s;
}
.index_program_list li:nth-child(3) {
	transition-delay: 0.5s;
}
.index_program_list li:nth-child(4) {
	transition-delay: 0.75s;
}
.index_program_list li a {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-right: 24px;
	padding-bottom: 30px;
}

.index_program_list .no1 {
	width: 20%;
	max-width: 140px;
	position: absolute;
	top: -24%;
	left: -4%;
	z-index: 3;
}
.index_program_list .grad {
	width: 90%;
	height: 80%;
	border-radius: 4px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.index_program_list .grad.grad01 {
	background: rgb(207,59,65);
	background: linear-gradient(60deg, rgba(207,59,65,0.73) 0%, rgba(207,59,65,1) 100%);
}
.index_program_list .grad.grad02 {
	background: rgb(25,144,107);
	background: linear-gradient(60deg, rgba(25,144,107,0.73) 0%, rgba(25,144,107,1) 100%);
}
.index_program_list .grad.grad03 {
	background: rgb(40,129,212);
	background: linear-gradient(60deg, rgba(40,129,212,0.73) 0%, rgba(40,129,212,1) 100%);
}
.index_program_list .image {
	width: 40%;
	padding-top: 30px;
	padding-left: 24px;
	position: relative;
}
.index_program_list li .image .cover {
	padding-top: 72%;
	position: relative;
	z-index: 1;
}
.index_program_list li:nth-child(1) .image .cover {
	background-image: url("../img/index/program01.jpg");
}
.index_program_list li:nth-child(2) .image .cover {
	background-image: url("../img/index/program02.jpg");
}
.index_program_list li:nth-child(3) .image .cover {
	background-image: url("../img/index/program03.jpg");
}
.index_program_list li:nth-child(4) .image .cover {
	background-image: url("../img/index/program04.jpg");
}
.index_program_list .txt_wrap {
	width: 55%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-top: 24px;
}
.index_program_list .title,
.index_program_list .txt {
	max-width: 100%;
}
.index_program_list .title {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 8px;
}
.index_program_list .txt {
	margin-bottom: 16px;
}
.index_program_list .btn02 {
	margin-top: auto;
	margin-left: auto;
	margin-right: 0;
}
.index_program .btn_wrap {
	margin-top: 40px;
}
@media screen and (min-width: 1025px) {
.index_program_list li {
	margin-top: 40px;
}
.index_program_list li:nth-child(-n + 2) {
	margin-top: 0;
}
}
@media screen and (max-width: 1024px) {
.index_program_list li {
	width: 100%;
	margin-top: 40px;
}
.index_program_list li:nth-child(1) {
	margin-top: 0;
}
.index_program_list li:nth-child(2),
.index_program_list li:nth-child(3),
.index_program_list li:nth-child(4) {
	transition-delay: 0s;
}
}
@media screen and (max-width: 768px) {
.index_program {
	padding: 40px 4%;
}
.index_program_list li {
	margin-top: 24px;
}
.index_program_list li a {
	padding-bottom: 16px;
	padding-right: 16px;
}
.index_program_list .no1 {
	width: 30%;
	top: -4%;
	left: 0;
}
.index_program_list .image,
.index_program_list .txt_wrap {
	width: 100%;
}
.index_program_list .image {
	margin-bottom: 16px;
	padding-top: 16px;
	padding-left: 16px;
}
.index_program_list li a,
.index_program_list .txt_wrap {
	height: auto;
}
.index_program_list .txt_wrap {
	padding-top: 0;
	padding-left: 16px;
}
.index_program_list .title {
	font-size: 2rem;
}
.index_program .btn_wrap {
	margin-top: 24px;
}
}


/* index_facility
-------------------------------------------------------- */
.index_facility .swiper-wrapper {
	transition-timing-function: linear !important;
}
.index_facility_list .swiper-slide {
}
.index_facility .btn_wrap {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
.index_facility .btn_wrap {
	margin-top: 24px;
}
}


/* index_guid
-------------------------------------------------------- */
.index_guid .inner {
	overflow: hidden;
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
}
.index_guid .txt_wrap {
	width: 50%;
}
.index_guid .title01 {
	margin-bottom: 16px;
}
.index_guid .btns {
	margin-top: 32px;
}
.index_guid .btns a {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 16px;
	padding-left: 52px;
}
.index_guid .btns a span {
	display: inline-block;
	padding-left: 52px;
	position: relative;
}
.index_guid .btns a span::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_guid .btns a::after {
	width: 9px;
	height: 15px;
	background-image: url("../img/cmn/arrow01.svg");
}
.index_guid .btns a:nth-child(1) {
	background: #005e5b;
}
.index_guid .btns a:nth-child(1) span::before {
	width: 27px;
	height: 33px;
	background-image: url("../img/cmn/icon_guide.svg");
}
.index_guid .btns a:nth-child(2) {
	background: #00715b;
}
.index_guid .btns a:nth-child(2) span::before {
	width: 35px;
	height: 35px;
	background-image: url("../img/cmn/icon_price.svg");
}
.index_guid .btns a:nth-child(3) {
	margin-bottom: 0;
}
.index_guid .btns a:nth-child(3) span::before {
	width: 44px;
	height: 41px;
	background-image: url("../img/cmn/icon_qaa.svg");
}
.index_guid .image {
	max-width: 700px;
	width: 70%;
	position: absolute;
	right: -5%;
	bottom: 0;
	z-index: -1;
}
@media screen and (max-width: 1024px) {
.index_guid .inner {
	padding-bottom: 0;
}
.index_guid .txt_wrap {
	width: 100%;
}
.index_guid .image {
	width: 100%;
	position: static;
}
}
@media screen and (max-width: 768px) {
.index_guid .inner {
	padding-top: 40px;
}
.index_guid .title01 {
	text-align: center;
}
.index_guid .btns a {
	padding-left: 24px;
}
.index_guid .btns a span {
	padding-left: 40px;
}
.index_guid .btns a:nth-child(1) span::before {
	width: 20px;
	height: 25px;
}
.index_guid .btns a:nth-child(2) span::before {
	width: 25px;
	height: 25px;
}
.index_guid .btns a:nth-child(3) span::before {
	width: 30px;
	height: 29px;
}
}
/* index_ft_bnr
-------------------------------------------------------- */
.index_ft_bnr {
	padding: 50px 0;
}
.index_ft_bnr ul li {
	width: 24%;
}
.index_ft_bnr ul li:nth-child(2) {
	transition-delay: 0.25s;
}
.index_ft_bnr ul li:nth-child(3) {
	transition-delay: 0.5s;
}
.index_ft_bnr ul li:nth-child(4) {
	transition-delay: 0.75s;
}
.index_ft_bnr ul li:nth-child(5) {
	transition-delay: 1s;
}
.index_ft_bnr ul li:nth-child(6) {
	transition-delay: 1.25s;
}
@media screen and (min-width: 769px) {
.index_ft_bnr ul li {
	margin: 0 1% 0 1%;
}
/*.index_ft_bnr ul li:last-child {
	margin-right: 0;
}*/
}
@media screen and (max-width: 768px) {
.index_ft_bnr {
	padding: 24px 0;
}
.index_ft_bnr ul li {
	width: 48%;
	margin-top: 10px;
	margin-right: 4%;
}
.index_ft_bnr ul li:nth-child(-n + 2) {
	margin-top: 0;
}
.index_ft_bnr ul li:nth-child(2n) {
	margin-right: 0;
}
}





/* guid
-------------------------------------------------------- */
/* flow */
.flow_list01 li {
	border-bottom: solid 2px #c7c7c7;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
.flow_list01 li:first-child {
	padding-top: 0;
}
.flow_list01 li:not(:last-child)::before,
.flow_list01 li:not(:last-child)::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flow_list01 li:not(:last-child)::before {
	border-width: 26px 22px 0 22px;
	border-color: #fff transparent transparent transparent;
	bottom: -26px;
	z-index: 1;
}
.flow_list01 li:not(:last-child)::after {
	border-width: 30px 25px 0 25px;
	border-color: #c7c7c7 transparent transparent transparent;
	bottom: -30px;
	z-index: 0;
}
.icon_title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.icon_title .icon {
	color: #fff;
	width: 71px;
	height: 71px;
	background: #19906b;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.icon_title .icon span {
	display: block;
	line-height: 0.5;
	text-align: center;
}
.icon_title .icon .en {
	font-size: 1.4rem;
}
.icon_title .icon .num {
	font-size: 3.6rem;
	margin-top: 10px;
}
.icon_title .title {
	font-size: 2.8rem;
	width: calc(100% - 71px);
}
.flow_list01 .icon_title .title {
	padding-left: 29px;
}
.flow_list01 .grid {
	margin-top: 0;
	padding-left: 100px;
}
.flow_list01 .txt_wrap {
	width: 62%;
}
.flow_list01 .image {
	width: 35%;
}
.flow_list01 .btn_wrap {
	margin-top: 40px;
}
.flow_list02 li {
	margin-bottom: 100px;
}
.flow_list02 li:last-child {
	margin-bottom: 0;
}
.flow_list02 .image {
	width: 48%;
}
.flow_list02 .txt_wrap {
	width: 46%;
}
.flow_list02 .icon_title {
	margin-bottom: 24px;
}
.flow_list02 .icon_title .title {
	padding-left: 20px;
}
.flow_list02 .btn_wrap {
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
.flow_list01 li {
	padding-bottom: 40px;
}
.flow_list01 li:first-child {
	padding-top: 16px;
}
.icon_title .icon {
	width: 66px;
	height: 66px;
}
.icon_title .icon .en {
	font-size: 1.2rem;
}
.icon_title .icon .num {
	margin-top: 8px;
}
.icon_title .title {
	font-size: 2.2rem;
}
.icon_title .title {
	width: calc(100% - 66px);
}
.flow_list01 .icon_title .title {
	padding-left: 16px;
}
.flow_list01 .grid {
	display: block;
	padding-left: 0;
}
.flow_list01 .grid::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 66%;
	display: block;
}
.flow_list01 li .grid {
	margin-top: 16px;
}
.flow_list01 li:first-child .grid::before {
	background-image: url("../img/guid/img01.jpg");
}
.flow_list01 li:nth-child(2) .grid::before {
	background-image: url("../img/guid/img02.jpg");
}
.flow_list01 li:nth-child(3) .grid::before {
	background-image: url("../img/guid/img03.jpg");
}
.flow_list01 .txt_wrap {
	width: 100%;
	margin-top: 24px;
}
.flow_list01 .image {
	display: none;
}
.flow_list01 .btn_wrap {
	margin-top: 24px;
}
.flow_list02 li {
	display: block;
	margin-bottom: 40px;
}
.flow_list02 .image,
.flow_list02 .txt_wrap {
	width: 100%;
}
	.flow_list02 .image {
		margin-bottom: 24px;
	}
.flow_list02 .icon_title {
	margin-bottom: 16px;
}
.flow_list02 .btn_wrap {
	margin-top: 24px;
}

}
/* chk_list01 */
.chk_list01 li {
	font-size: 1.8rem;
	background: #fff;
	margin-bottom: 4px;
	padding: 16px 24px;
}
.chk_list01 li:last-child {
	margin-bottom: 0;
}
.chk_list01 li span {
	display: inline-block;
	padding-left: 32px;
	position: relative;
}
.chk_list01 li span::before {
	content: "";
	width: 19px;
	height: 16px;
	background-image: url("../img/cmn/chk01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}
@media screen and (max-width: 768px) {
.chk_list01 li {
	font-size: 1.6rem;
	padding: 16px;
}
.chk_list01 li span::before {
	top: 6px;
}
}
/* note_list01 */
.note_list01 li,
.note_list02 li {
	position: relative;
}
.note_list01 li {
	margin-bottom: 10px;
	padding-left: 24px;
}
.note_list02 li {
	font-size: 1.4rem;
	padding-left: 16px;
}
.note_list01 li:last-child {
	margin-bottom: 0;
}
.note_list01 li::before,
.note_list02 li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
.note_list01 li {
}
}
/* contact */
.contact .txt {
	font-size: 2.2rem;
	margin-bottom: 40px;
}
.contact .hd_tel {
	font-size: 5.6rem;
	line-height: 0.5;
	margin-bottom: 40px;
	padding-left: 64px;
}
.contact .hd_tel::before {
	width: 41px;
	height: 39px;
	top: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
.contact .txt {
	font-size: 1.6rem;
}
.contact .hd_tel {
	font-size: 3.6rem;
	margin-bottom: 24px;
	padding-left: 40px;
}
.contact .hd_tel::before {
	width: 30px;
	height: 29px;
	top: calc(50% - 12px);
}
}


/* ex
-------------------------------------------------------- */
.intro {
	margin-top: -16px;
	z-index: 0;
}
.intro_top {
	height: 490px;
	background-image: url("../img/ex/bg01.jpg");
	background-position: left 50% center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.intro_top .txt {
	max-width: 560px;
	width: 50%;
	position: absolute;
	top: 50%;
	right: 8%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.intro_btm .image,
.intro_btm .txt_wrap {
	width: 50%;
}
.intro_btm {
	padding: 32px 0;
}
.intro_btm .txt_wrap {
	padding-left: 8%;
}
.intro_btm .title {
	font-size: 2.2rem;
	margin-bottom: 40px;
}
.intro_btm .txt p {
	margin-bottom: 24px;

}
.intro_btm .txt p:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
.intro_top {
	height: auto;
	background-image: url("../img/ex/bg01_sp.jpg");
	padding-top: 76%;
}
.intro_btm .image,
.intro_btm .txt_wrap {
	width: 100%;
}
.intro_btm .image {
	margin-bottom: 24px;
}
.intro_btm .txt_wrap {
	padding-left: 0;
}
.intro_btm .title {
	font-size: 1.8rem;
	margin-bottom: 24px;
}
}


/* program
-------------------------------------------------------- */
.program01 .head01 {
	margin-bottom: 0;
}

.program01 .btns a {
	margin-bottom: 16px;
	margin-right: 16px;
}
.program01 .btns a:last-child {
	margin-bottom: 0;
	margin-right: 0px;
}
.program01 .btns .btn01::after {
	width: 16px;
	height: 16px;
	background-image: url("../img/cmn/icon_popup.svg");
	display: inline-block;
	margin-left: 8px;
	position: static;
	transform: none;
}
.program01 .covid_txt {
	font-size: 1.6rem;
	font-weight: normal;
	margin-top: 16px;
}
.program02 .title01 {
	margin-bottom: 100px;
}
.program02 .flex {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.program02 .image {
	max-width: 800px;
	width: 50vw;
	margin-right: calc(50% - 100vw);
}
.program02 .image,
.program02 .image img {
	position: relative;
}
.program02 .image figure {
	padding: 0 8% 8% 0;
}
.program02 .image figure::after {
	content: "";
	width: 80%;
	height: 80%;
	background: #cf3b41;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}
.program02 .image img {
	width: 100%;
	z-index: 1;
}
.program02 .no1 {
	max-width: 200px;
	position: absolute;
	top: -60px;
	right: 0;
	z-index: 2;
}
.program02 .txt_wrap {
	width: 45%;
	padding-right: 3%;
}
.program02 .title {
	font-size: 2.4rem;
	margin-bottom: 40px;
}
.program02 .txt {
	font-size: 1.6rem;
}
.program02 ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 16px;
	margin-left: -16px;
}
.program02 ul li {
	color: #19906b;
	font-size: 2.4rem;
	font-weight: bold;
	background: #fff;
	border-radius: 100px;
	margin-top: 16px;
	padding: 10px 6%;
	margin-left: 16px;
}
.program02 .btn01 {
	margin-top: 56px;
}
.program_wrap.studio {
	margin-bottom: 100px;
}
.program_list li {
	margin-bottom: 100px;
}
.program_list li:last-child {
	margin-bottom: 0;
}
.program_list .title {
	color: #fff;
	font-size: 2.8rem;
	padding: 16px;
}
.program_wrap.studio .program_list .title {
	background: #19906b;
}
.program_wrap.swim .program_list .title {
	background: #1755a4;
}
.program_list .image .cover {
	height: 210px;
}
.program_note {
	border: solid 2px #cf3b41;
	margin-top: 160px;
	padding: 80px 56px 60px;
	position: relative;
}
.program_note .title {
	color: #cf3b41;
	font-size: 2.4rem;
	width: 100%;
	position: absolute;
	top: -20px;
	left: 0;
}
.program_note .title span {
	background: #fff;
	display: inline-block;
	padding: 0 40px;
}
.program_note ul li {
	padding-left: 18px;
	position: relative;
}
.program_note ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.personal01 {
	background-image: url("../img/personal/img01.jpg");
	background-position: center;
	background-size: cover;
	position: relative;
}
.personal01::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 88, 36, 0.39);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.personal01 .inner {
	height: 423px;
}
.personal01 .txt_wrap {
	color: #fff;
	font-size: 3rem;
	position: relative;
	z-index: 1;
}
.personal01 .txt {
	margin-bottom: 16px;
}
.personal01 .title {
	font-size: 4.6rem;
}
.personal02 ul li {
	width: 32%;
}
.personal02 ul li .flex {
	flex: 1 1 auto;
	background: #fff;
	border: solid 3px #19906b;
	padding: 16% 2%;
}
.personal02 ul li .icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	flex: 1 1 auto;
	margin: 0 auto 24px;
}
.personal02 ul li:nth-child(1) .icon {
	max-width: 127px;
}
.personal02 ul li:nth-child(2) .icon {
	max-width: 94px;
}
.personal02 ul li:nth-child(3) .icon {
	max-width: 116px;
}
.personal02 ul li:nth-child(4) .icon {
	max-width: 76px;
}
.personal02 ul li:nth-child(5) .icon {
	max-width: 73px;
}

.personal02 ul li .txt {
	margin-top: auto;
}
.personal02 .ft_txt {
	font-size: 2.4rem;
	margin-top: 40px;
}
.personal03 ul li {
	width: 48%;
}
.personal03 .head .en01 {
	color: #fff;
	font-size: 2.4rem;
	background: #cf3b41;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	padding: 8px;
	position: relative;
}
.personal03 .head .en01 .icon {
	width: 52px;
	position: absolute;
	top: 0;
}
.personal03 .head .en01 .icon.icon01 {
	left: 0;
}
.personal03 .head .en01 .icon.icon02 {
	right: 0;
}
.personal03 .head .en01 .num {
	font-size: 3.6rem;
	margin-left: 10px;
}
.personal03 .head .title {
	font-size: 2.4rem;
	padding: 4px;
}
.personal03 .image {
	margin-bottom: 16px;
}
.personal03 .image img {
	width: 100%;
}
.personal03 .btm {
	color: #fff;
	background: rgb(25,144,107);
	background: linear-gradient(60deg, rgba(25,144,107,1) 0%, rgba(0,73,73,1) 100%);
	margin-top: 60px;
	padding: 40px 0;
}
.personal03 .btm dl {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.personal03 .btm dl dt {
	font-size: 4.8rem;
	border: solid 1px #fff;
	line-height: 1.2;
	padding: 16px 24px;
}
.personal03 .btm dl dd {
	padding-left: 24px;
}
.personal03 .btm dl dd .day {
	font-size: 4.8rem;
	line-height: 1;
	margin-bottom: 8px;
}
.personal03 .btm dl dd .price {
	font-size: 7.7rem;
	line-height: 1;
}
.personal03 .btm dl dd .price span {
	font-size: 3.6rem;
}
.personal04 ul li {
	width: 32%;
}
.personal04 .title {
	color: #fff;
	font-size: 2.4rem;
	background: #19906b;
	margin-bottom: 16px;
	padding: 4px;
}
.personal04 .image img {
	width: 100%;
}
.personal05 ul li {
	background: #fff;
	margin-bottom: 16px;
	padding: 24px;
}
.personal05 ul li:last-child {
	margin-bottom: 0;
}
.personal05 ul li .head {
	width: 22%;
}
.personal05 .head .icon {
	margin:  0 auto 8px;
}
.personal05 .head .icon.icon01 {
	max-width: 81px;
}
.personal05 .head .icon.icon02 {
	max-width: 92px;
}

.personal05 ul li .txt_wrap {
	width: 75%;
}
.personal05 ul li .txt_wrap .title {
	font-size: 2.4rem;
	margin-bottom: 8px;
}
.personal06 .head {
	margin-bottom: 40px;
}
.personal06 .head .title01 {
	margin-bottom: 24px;
}
.personal06 ul li:not(:last-child) {
	margin-bottom: 40px;
}
.personal06 .image {
	width: 48%;
}
.personal06 .txt_wrap {
	width: 46%;
}
.personal06 .txt_wrap p:not(:last-child) {
	margin-bottom: 24px;
}

.personal07 .personal_title01 {
	color: #fff;
	font-size: 3rem;
	background: rgb(25,144,107);
	background: linear-gradient(45deg, rgba(25,144,107,1) 0%, rgba(0,74,75,1) 100%);
	padding: 16px 0;
}
.personal_wrap .head {
	margin-bottom: 40px;
}
.personal_wrap.wrap01 {
	margin-bottom: 100px;
}
.personal_wrap.wrap02 .personal_dl02 {
	margin-bottom: 60px;
}
.personal_wrap .circle01 {
	position: relative;
}
.personal_wrap .circle01::before {
	content: "";
	width: 9px;
	height: 9px;
	background: #19906b;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: -8px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.personal_title02 {
	font-size: 3rem;
}
.personal_title03 {
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	background: #19906b;
	text-align: center;
	padding: 8px;
}

.personal_title04 {
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	background: #00715b;
	text-align: center;
	padding: 8px;
}

.personal_title05 {
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	background: #005e5b;
	text-align: center;
	padding: 8px;
}
.personal_dl01, .personal_dl04{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.personal_dl01 dt, .personal_dl04 dt{
	font-size: 3rem;
	font-weight: bold;
	background: #d7efdb;
	text-align: center;
}

.personal_dl05 dt{
	font-size: 3rem;
	font-weight: bold;
	background: #00715b;
	text-align: center;
	color: #ffffff;
}
.personal_dl01 .price_span1,.personal_dl04 .price_span1, .personal_dl05 .price_span1{
	color: #cf3b41;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}
.personal_dl01 .price_span2,.personal_dl04 .price_span2 {
	font-size: 2rem;
}
.personal_dl01 .price_span3,.personal_dl04 .price_span3 {
	font-size: 1.5rem;
}
.personal_dl01 dt,
.personal_dl01 dd,
.personal_dl04 dt,
.personal_dl04 dd{
	border: solid 1px #39b04a;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
}
.personal_dl01 dt,.personal_dl04 dt ,.personal_dl05 dt {
	border-right: none;
}
.personal_dl01 dd,.personal_dl04 dd ,.personal_dl05 dd{
	border-left: none;
}
.personal_dl01.col4 dt {
	width: 20%;
}
.personal_dl01.col4 dd:first-of-type {
	border-right: none;
}
.personal_dl01.col4 dd {
	width: 30%;
}
.personal_dl01.col2 dt,
.personal_dl01.col2 dd,
.personal_dl04.col2 dt,
.personal_dl04.col2 dd{
	width: 50%;
}

.personal_dl04.col2:not(:last-child){
	border-bottom: none;
}

.personal_dl02 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.personal_dl02 > div {
	font-weight: bold;
	width: 48%;
	margin-top: 40px;
}
.personal_dl02 > div:nth-child(-n + 2) {
	margin-top: 0;
}
.personal_dl02 dt,
.personal_dl02 dd {
	text-align: center;
}
.personal_dl02 dt {
	color: #fff;
	font-size: 2.6rem;
	background: #cf3b41;
	margin-bottom: 16px;
}
.personal_dl02 dd {
	font-size: 2.4rem;
}
.personal_ul01 li:not(:last-child) {
	margin-bottom: 24px;
}
.ketos,.ketos02{
	max-width: 15vw;
}
.ketos02{
	margin-left: 10px;
}

.personal_dl03 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.personal_dl03 dt,.personal_dl03 dd{
	font-size: 3rem;
	font-weight: bold;
	background: #ffffff;
	text-align: center;
}
.personal_dl03 dt,.personal_dl03 dd {
	border: solid 1px #39b04a;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
}

.personal_dl03.col4 dt {
	width: 20%;
}
.personal_dl03.col4 dd:first-of-type {
	border-right: none;
}
.personal_dl03.col4 dd {
	width: 30%;
}

.personal_dl05 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.personal_dl05 dt{
	font-size: 3rem;
	font-weight: bold;
	background: #00715b;
	text-align: center;
}

.personal_dl05 dd{
	font-size: 3rem;
	font-weight: bold;
	background: #ffffff;
	text-align: center;
}
.personal_dl05 dt,.personal_dl05 dd {
	border: solid 1px #39b04a;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
}

.personal_dl01 dt,
.personal_dl01 dd,
.personal_dl03 dt,
.personal_dl03 dd, 
.personal_dl04 dt,
.personal_dl04 dd {
	width: 100%;
	border-top: none;
}

.personal_dl05 dt{
	border-bottom:none;
	border-top:none;
}

.personal_dl03.col2 dt,
.personal_dl03.col2 dd,
.personal_dl05.col2 dt,
.personal_dl05.col2 dd{
	width: 50%;
}

.personal_dl03.col2 dt,.personal_dl05.col2 dt{
	border-right: none;
}

.br_sp{
		display: none;
}

.ketos_text a {
	
	font-size: 2rem;
}

.ketos_text2{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.ketos_text, .ketos_text2{
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

	.br_ipad2, .br_ipad3{
		display: none;	
	}




	
@media screen and (max-width: 1100px) {
.program02 .no1 {
	max-width: 150px;
}
.program02 ul li {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 1024px) {
.personal03 .btm dl dt {
	font-size: 4rem;
}
.personal03 .btm dl dd .day {
	font-size: 4rem;
}
.personal03 .btm dl dd .price {
	font-size: 7rem;
}
.personal02 .ft_txt {
	font-size: 1.8rem;
	margin-top: 24px;
}
}
@media screen and (min-width: 769px) {
.personal02 ul li {
	margin-top: 2%;
	margin-right: 2%;
}
.personal02 ul li:nth-child(-n + 3) {
	margin-top: 0;
}
.personal02 ul li:nth-child(3n),
.personal02 ul li:last-child {
	margin-right: 0;
}
	.personal03 ul li {
		margin-top: 90px;
	}
	.personal03 ul li:nth-child(-n + 2) {
		margin-top: 0;
	}
}
@media screen and (max-width: 768px) {
.program01 .btns {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.program01 .btns a {
	margin-bottom: 16px;
	margin-right: 0px;
}
.program01 .btns a:last-child {
	margin-bottom: 0;
}
.program02 .title01 {
	margin-bottom: 60px;
}
.program01 .covid_txt {
	font-size: 1.4rem;
}

.program02 .flex {
	display: block;
}
.program02 .image,
.program02 .txt_wrap {
	width: 100%;
}
.program02 .no1 {
	width: 35%;
	top: -40px;
}
.program02 .image {
	margin-bottom: 24px;
	margin-right: 0;
}
.program02 .title {
	font-size: 2rem;
	margin-bottom: 16px;
}
.program02 .btn01 {
	margin-top: 32px;
}
.personal03 .head .title {
	font-size: 2rem;
}

.program_wrap.studio {
	margin-bottom: 40px;
}
.program_list li {
	margin-bottom: 40px;
}
.program_list .title {
	color: #fff;
	font-size: 2.8rem;
	padding: 16px;
}
	.program_list .image .cover {
		height: 140px;
	}
.program_list .title {
	font-size: 2rem;
	padding: 10px 16px;
}
.program_note {
	margin-top: 60px;
	padding: 40px 16px 24px;
}
.program_note .title {
	font-size: 1.8rem;
	top: -16px;
}
.program_note .title span {
	padding: 0 24px;
}
.personal01 {
	background-image: url("../img/personal/img01.jpg");
	background-position: center;
	background-size: cover;
	position: relative;
}
.personal01 .inner {
	height: 300px;
}
.personal01 .txt_wrap {
	color: #fff;
	font-size: 2rem;
	position: relative;
	z-index: 1;
}
.personal01 .txt {
	margin-bottom: 8px;
}
.personal01 .title {
	font-size: 3.2rem;
}
.personal02 ul li {
	width: 49%;
	margin-top: 2%;
	margin-right: 2%;
}
.personal02 ul li:nth-child(-n + 2) {
	margin-top: 0;
}
.personal02 ul li:nth-child(2n),
	.personal02 ul li:last-child {
		margin-right: 0;
	}
.personal02 .arrow {
	display: none;
}
.personal03 ul li {
	width: 100%;
	margin-bottom: 40px;
}
.personal03 ul li:last-child {
	margin-bottom: 0;
}
.personal03 .btm {
	margin-top: 40px;
	padding: 24px 0;
}
.personal03 .btm dl {
	display: block;
}
.personal03 .btm dl dt {
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 16px;
}
	.personal03 .btm dl dd {
		text-align: center;
		padding-left: 0;
	}
.personal03 .btm dl dd .day {
	font-size: 3.6rem;
}
.personal03 .btm dl dd .price {
	font-size: 5.2rem;
}
.personal03 .btm dl dd .price span {
	font-size: 2.4rem;
}

.personal04 ul li {
	width: 100%;
	margin-bottom: 40px;
}
.personal04 ul li:last-child {
	margin-bottom: 0;
}
.personal04 .title {
	font-size: 2rem;
}

.personal05 ul li {
	display: block;
	background: #fff;
	margin-bottom: 16px;
	padding: 24px;
}
.personal05 ul li .head,
.personal05 ul li .txt_wrap {
	width: 100%;
}
.personal05 ul li .head {
	margin: 0 auto 16px;
}
.personal05 ul li .txt_wrap .title {
	font-size: 2rem;
}
.personal06 .head {
	margin-bottom: 24px;
}
.personal06 .head .title01 {
	margin-bottom: 16px;
}
	.personal06 ul li {
		display: block;
	}
.personal06 .image,
.personal06 .txt_wrap {
	width: 100%;
}
	.personal06 .image {
		margin-bottom: 24px;
	}
.personal06 .txt_wrap p:not(:last-child) {
	margin-bottom: 16px;
}

.personal07 .personal_title01 {
	font-size: 2.4rem;
	padding: 10px 0;
}
.personal_wrap .head {
	margin-bottom: 24px;
}
.personal_wrap.wrap01 {
	margin-bottom: 40px;
}
.personal_wrap.wrap02 .personal_dl02 {
	margin-bottom: 30px;
}
.personal_wrap .circle01::before {
	width: 5px;
	height: 5px;
	top: -4px;
}
.personal_title02 {
	font-size: 2rem;
}
.personal_title03 {
	font-size: 2rem;
}
.personal_title04 {
	font-size: 2rem;
}
.personal_title05 {
	font-size: 2rem;
}
.personal_dl01 {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.personal_dl01 dt {
	font-size: 2rem;
}
.personal_dl01 .price_span1,.personal_dl04 .price_span1,.personal_dl05 .price_span1{
	font-size: 2.2rem;
}
.personal_dl01 .price_span2,.personal_dl05 .price_span2 {
	font-size: 1.8rem;
}
.personal_dl01 .price_span3,.personal_dl05 .price_span3 {
	font-size: 1.2rem;
}
.personal_dl04 .price_span4{
		font-size: 1.3rem;
	letter-spacing: -0.1px;
	}
	
.personal_dl01 dt,
.personal_dl01 dd {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.personal_dl01 dt {
	border-right: none;
}
.personal_dl01 dd {
	border-left: none;
}
.personal_dl01.col4 dt {
	width: 35%;
}
/*
.personal_dl01.col4 dt:first-of-type,
.personal_dl01.col4 dd:first-of-type {
	border-bottom: none;
	}
*/
.personal_dl01.col4 dd:first-of-type {
	border-right: solid 1px #39b04a;
}
.personal_dl01.col4 dd {
	width: 65%;
}
.personal_dl01.col2 dt,
.personal_dl01.col2 dd {
	width: 100%;
}
.personal_dl01.col2 dt {
	border-right: solid 1px #39b04a;
	border-bottom: none;
}
.personal_dl01.col2 dd {
	border-left: solid 1px #39b04a;
}

.personal_dl02 {
	display: block;
}
.personal_dl02 > div {
	width: 100%;
	margin-top: 24px;
}
.personal_dl02 > div:nth-child(-n + 2) {
	margin-top: 24px;
}
.personal_dl02 > div:first-child {
	margin-top: 0;
}
.personal_dl02 dt {
	font-size: 2rem;
	margin-bottom: 8px;
}
.personal_dl02 dd {
	font-size: 1.8rem;
}
.personal_ul01 li:not(:last-child) {
	margin-bottom: 24px;
}
.personal_dl03 dt,.personal_dl03 dd{
	font-size: 2rem;
	display: block;
}
.personal_dl04 dt,.personal_dl04 dd{
	font-size: 2rem;
}
	
.personal_dl04.col2 dt{
		width: 60%;
	}
	
.personal_dl04.col2 dd{
		width: 40%;
	}
	
	.personal_dl04.col2 .personal_dl04_dd{
		display: block;
		text-align: center;
	}
	
.personal_dl05 dt{
	font-size: 2rem;
	}

	
}


@media screen and (max-width: 820px) and (min-width: 768px){
	
	
	.ketos,.ketos02 {
		max-width: 7vw;
	}	
	
	
	.br_ipad3{
		display: block;	
	}
	
		.indent-1{
	padding-left:1em;
	text-indent:-1em;
	font-size: 1.75rem;
	}
	
	.ketos_text2{
		font-size: 1.45rem;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	}
	
	.br_ipad{
		display: none;
	}
}

@media screen and (max-width: 767px){
	
	.ketos02{
	margin-left: 0px;
}

	
	.br_sp{
		display: block;
	}
	
	.ketos_text{
		font-size: 1.45rem;
		-webkit-justify-content: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;
	}
	
	.br_ipad2{
	display: block;
		
	}
	
	.ketos_text2{
	-webkit-justify-content: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;
	}
	
	.indent-1{
	padding-left:1em;
	text-indent:-1em;
	font-size: 1.5rem;
	}
		
}


/* access
-------------------------------------------------------- */
.about_wrap {
	width: 50%;
}
.about_wrap.l .cover {
	height: 100%;
	background-image: url("../img/access/about01.jpg");
}
.about_wrap.r {
	background: #ededed;
	padding: 4%;
}
.about_wrap.r .head {
	line-height: 1.4;
	margin-bottom: 24px;
}
.about_wrap.r .title {
	font-size: 2.8rem;
	margin-bottom: 8px;
	transition-delay: 0.25s;
}
.about_wrap.r .txt01 {
	font-size: 1.8rem;
	text-align: left;
	transition-delay: 0.5s;
}
.about_wrap.r .txt02 {
	font-size: 2.4rem;
	margin-top: 10px;
	transition-delay: 1s;
}
.about_wrap.r .image {
	transition-delay: 0.75s;
}
.about_wrap.r .image .cover {
	background-image: url("../img/access/about02.jpg");
	padding-top: 62%;
}

.map .image {
	border: solid 1px #c7c7c7;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.about_wrap {
	width: 100%;
}
.about_wrap.l .cover {
	height: auto;
	padding-top: 67.5%;
}
.about_wrap.r {
	padding: 24px 4%;
}
.about_wrap.r .head {
	margin-bottom: 16px;
}
.about_wrap.r .title {
	font-size: 2.4rem;
}
.about_wrap.r .txt01 {
	font-size: 1.6rem;
}
.about_wrap.r .txt02 {
	font-size: 1.8rem;
}
.about_wrap.r .title,
.about_wrap.r .txt01,
.about_wrap.r .txt02,
.about_wrap.r .image {
	transition-delay: 0s;
}

.map .image {
	margin-bottom: 24px;
}
}
/* news
-------------------------------------------------------- */
.news_wrap .news_main {
	width: 78%;
}
.news_wrap .news_side {
	width: 19%;
}
.news_wrap .news_side .side_wrap {
	margin-bottom: 32px;
}
.news_wrap .news_side .side_wrap:last-child {
	margin-bottom: 0;
}
.news_wrap .news_side .title {
	color: #fff;
	font-size: 1.4rem;
	background: #19906b;
	margin-bottom: 8px;
	padding: 8px;
}
.news_wrap .news_side ul li {
	border-bottom: dotted 1px #e1e1e1;
}
.news_wrap .news_side ul li a {
	font-size: 1.6rem;
	display: block;
	padding: 10px 0;
}
.wp-pagenavi {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 32px;
}
.wp-pagenavi a,
.wp-pagenavi span {
	font-size: 2.1rem;
	width: 32px;
	height: 37px;
	border-radius: 8px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 4px;
}
.wp-pagenavi a {
	background: #d1e9e1;
}
.wp-pagenavi span,
.wp-pagenavi a:hover {
	color: #fff;
	background: #19906b;
	opacity: 1;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: 32px;
	height: 37px;
	border: none;
	background: none;
	display: block;
	overflow: hidden;
	text-align: center;
	text-indent: -999999999999px;
	position: relative;
}
.wp-pagenavi .previouspostslink {
	margin-right: 24px;
}
.wp-pagenavi .nextpostslink {
	margin-left: 24px;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	content: "";
	background-image: url("../img/cmn/arrow05_gr.svg");
	width: 11px;
	height: 15px;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.wp-pagenavi .previouspostslink::before {
	-webkit-transform: translateY(-50%) scale(-1, 1);
	transform: translateY(-50%) scale(-1, 1);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	background: none;
}
.article_head {
	border-bottom: dotted 1px #b7b7b7;
	margin-bottom: 40px;
	padding-bottom: 16px;
}
.article_head .article_meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 16px;
}
.article_head .title {
	font-size: 2.4rem;
}
.article_body {
	border-bottom: dotted 1px #b7b7b7;
	margin-bottom: 24px;
	padding-bottom: 40px;
}
.single_pager {
	position: relative;
}
.single_pager .btn {
	font-size: 1.4rem;
	max-width: 176px;
	width: 32%;
	height: 37px;
	border-radius: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.single_pager .btn.list {
	color: #fff;
	background: #19906b;
}
.single_pager .prev,
.single_pager .next {
	max-width: 144px;
	background: #d1e9e1;
	position: absolute;
	top: 0;
}
.single_pager .prev {
	left: 0;
}
.single_pager .next {
	right: 0;
}
@media screen and (max-width: 768px) {
.news_wrap {
	display: block;
}
.news_wrap .news_main,
.news_wrap .news_side {
	width: 100%;
}
	.news_wrap .news_main {
		margin-bottom: 40px;
	}
.wp-pagenavi {
	margin-top: 16px;
}
.wp-pagenavi .previouspostslink {
	margin-right: 16px;
}
.wp-pagenavi .nextpostslink {
	margin-left: 16px;
}
.article_head {
	margin-bottom: 24px;
}
.article_head .title {
	font-size: 2rem;
}
.article_body {
	margin-bottom: 16px;
	padding-bottom: 24px;
}
.single_pager .btn {
	font-size: 1.2rem;
}
}
/* faq
-------------------------------------------------------- */
.faq_list li {
	margin-bottom: 24px;
}
.faq_list li:last-child {
	margin-bottom: 0;
}
.faq_list .quest,
.faq_list .answer {
	position: relative;
}
.faq_list .quest {
	color: #fff;
	font-size: 2rem;
	background: #19906b;
	padding: 16px 24px;
	padding-left: 72px;
}
.faq_list .quest .icon,
.faq_list .answer .icon {
	font-size: 3.6rem;
	line-height: 0.4;
	position: absolute;
	left: 24px;
}
.faq_list .quest .icon {
	top: 21px;
}
.faq_list .answer .icon {
	color: #cf3b41;
	top: 20px;
}
.faq_list .quest .txt {
	display: inline-block;
	line-height: 1.4;
}
.faq_list .answer {
	background: #ededed;
	padding: 24px;
}
.faq_list .answer .txt_wrap {
	padding-left: 48px;
}

.faq_list .btn_wrap {
	margin-top: 16px;
}

@media screen and (max-width: 768px) {
.faq_list .quest .icon,
.faq_list .answer .icon {
	font-size: 2.8rem;
	left: 16px;
}
.faq_list .quest {
	padding: 8px 16px;
	padding-left: 56px;
}
.faq_list .answer {
	padding: 16px;
}
.faq_list .answer .txt_wrap {
	padding-left: 40px;
}
}

/* partner
-------------------------------------------------------- */
.head01 {
	margin-bottom: 80px;
}
.head01 .txt {
	font-size: 2.4rem;
	line-height: 2;
}
.head01 .btn_wrap {
	margin-top: 40px;
}
.partner_list li {
	margin-bottom: 80px;
}
.partner_list li:last-child {
	margin-bottom: 0;
}
.partner_list .title {
	color: #fff;
	font-size: 2rem;
	background: #19906b;
	line-height: 1.4;
	margin-bottom: 24px;
	padding: 16px;
}
.partner_list .flex {
	margin-bottom: 40px;
}
.partner_list .image,
.partner_list .txt_wrap {
	width: 50%;
}
.partner_list .image .cover {
	padding-top: 68%;
}
.partner_list .txt_wrap {
	padding: 0 2.5%;
}
.partner_list .tbl02 th {
	width: 140px;
}
.partner_list .tbl02 a {
	word-break: break-all;
}
@media screen and (max-width: 768px) {
.head01 {
	text-align: left;
	margin-bottom: 32px;
}
.head01 .txt {
	font-size: 1.8rem;
}
.head01 .btn_wrap {
	margin-top: 24px;
}
.partner .head {
	font-size: 1.8rem;
	text-align: left;
	margin-bottom: 32px;
}
.partner_list li {
	margin-bottom: 40px;
}
.partner_list .title {
	margin-bottom: 16px;
	padding: 8px 16px;
}
.partner_list .image,
.partner_list .txt_wrap {
	width: 100%;
}
	.partner_list .image {
		margin-bottom: 16px;
	}
.partner_list .txt_wrap {
	padding: 0;
}
.partner_list .tbl02 th {
	width: auto;
}
}
/* ex
-------------------------------------------------------- */
.ex01 .image_list figure {
	width: 25%;
}
.ex01 .image_list figure img {
	width: 100%;
}
.ex01 .txt_wrap {
	padding: 80px;
}
.ex01 .txt_wrap .txt {
	font-size: 2.4rem;
	margin-bottom: 40px;
}
.ex02 .image,
.ex02 .txt_wrap {
	width: 50%;
}
.ex02 .image .cover {
	height: 100%;
}
.ex02 .image.img01 .cover { background-image: url("../img/ex/img05.jpg"); }
.ex02 .image.img02 .cover { background-image: url("../img/ex/img06.jpg"); }
.ex02 .txt_wrap {
	background: #eee;
	padding: 8%;
	position: relative;
}
.ex02 .txt_wrap .title01,
.ex02 .txt_wrap .txt {
	position: relative;
	z-index: 1;
}
.ex02 .txt_wrap::before,
.ex02 .txt_wrap::after {
	content: "";
	width: 260px;
	height: 120px;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	z-index: 0;
}
.ex02 .txt_wrap::before {
	background-image: url("../img/cmn/page_title01.svg");
	top: 0;
	left: 0;
}
.ex02 .txt_wrap::after {
	background-image: url("../img/cmn/page_title02.svg");
	bottom: 0;
	right: 0;
}
.ex02 .txt_wrap .title01 {
	font-size: 3rem;
	margin-bottom: 24px;
}
.ex02 .txt_wrap .txt p {
	margin-bottom: 40px;
}
.ex02 .txt_wrap .txt p:last-child {
	margin-bottom: 0;
}
.campaign .title01 {
	font-size: 3rem;
}
.campaign .image {
	width: 60%;
	margin-left: -10%;
}
.campaign .txt_wrap {
	width: 45%;
}
.campaign .title {
	font-size: 2.4rem;
	margin-bottom: 16px;
}
.campaign .txt {
	margin-bottom: 40px;
}
.campaign .hd_tel {
	font-size: 5.5rem;
	white-space: nowrap;
	margin-top: -18px;
	padding-left: 72px;
}
.campaign .hd_tel::before {
	width: 50px;
	height: 48px;
	top: calc(50% - 24px);
}
.campaign ul {
	max-width: 410px;
	width: 100%;
}
.campaign ul li {
	width: 50%;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 4px;
}
.campaign ul li:nth-child(-n + 2) {
	margin-top: 0;
}
.campaign ul li span {
	font-size: 2.2rem;
	margin-left: 8px;
	line-height: 1;
}
@media screen and (max-width: 1024px) {
.campaign .hd_tel {
	font-size: 4rem;
	white-space: nowrap;
	margin-top: -18px;
	padding-left: 50px;
}
.campaign .hd_tel::before {
	width: 33px;
	height: 32px;
	top: calc(50% - 12px);
}
.campaign ul {
	max-width: 410px;
	width: 100%;
}
.campaign ul li {
	width: 100%;
}
.campaign ul li:nth-child(-n + 2) {
	margin-top: 4px;
}
.campaign ul li:first-child {
	margin-top: 0;
}
}
@media screen and (max-width: 768px) {
.ex01 .image_list figure {
	width: 50%;
}
.ex01 .txt_wrap {
	padding: 24px 4%;
}
.ex01 .txt_wrap .txt {
	font-size: 1.8rem;
	margin-bottom: 24px;
}
.ex02 .flex {
	display: block;
}
.ex02 .image,
.ex02 .txt_wrap {
	width: 100%;
}
.ex02 .image .cover {
	height: auto;
	padding-top: 66%;
}
.ex02 .txt_wrap {
	padding: 24px 4%;
}
.ex02 .txt_wrap .title01 {
	font-size: 2.4rem;
	margin-bottom: 16px;
}
.ex02 .txt_wrap .txt p {
	margin-bottom: 24px;
}
.campaign .title01 {
	font-size: 2.4rem;
}
.campaign .image,
.campaign .txt_wrap {
	width: 100%;
}
.campaign .image {
	margin-bottom: 24px;
	margin-left: 0;
}
.campaign .title {
	font-size: 2rem;
}
.campaign .txt {
	margin-bottom: 24px;
}
.campaign .hd_tel {
	font-size: 3.5rem;
	margin-top: -5px;
	padding-left: 36px;
}
.campaign .hd_tel::before {
	width: 23px;
	height: 22px;
	top: calc(50% - 8px);
}
}
/* facility
-------------------------------------------------------- */
.facility_list li {
	margin-bottom: 100px;
}
.facility_list li:last-child {
	margin-bottom: 0;
}
.facility_list .title {
	color: #fff;
	font-size: 3.4rem;
	background: #19906b;
	margin-bottom: 32px;
	padding: 8px 16px;
}
.facility_list .txt {
	margin-bottom: 40px;
}
.slider-wrap.facility_wrap {
	position: relative;
}
.slider-wrap.facility_wrap .swiper-button {
	background: rgba(51, 51, 51, 0.6);
	padding: 16px 18px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 4;
}
.slider-wrap.facility_wrap .swiper-button.prev {
	left: 0;
}
.slider-wrap.facility_wrap .swiper-button.next {
	right: 0;
}
.slider-wrap.facility_wrap .swiper-button.prev::before,
.slider-wrap.facility_wrap .swiper-button.next::before {
	content: "";
	width: 14px;
	height: 28px;
	background-image: url("../img/cmn/arrow05.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}
.slider-wrap.facility_wrap .swiper-button.prev::before {
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
.facility_list .swiper-slide .image .cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 66.5%;
}
.slider-wrap.facility_wrap .swiper-pagination-bullet {
	height: auto;
	background-color: transparent;
}
.slider-wrap.facility_wrap .Swiper-Container-Pagination-ImgBox {
	width: 18.7%;
	margin-right: 1.25%;
}
.slider-wrap.facility_wrap .Swiper-Container-Pagination-ImgBox:last-of-type {
	margin-right: 0;
}
.slider-wrap.facility_wrap .Swiper-Container-Pagination-ImgBox-Img {
	padding-top: 66.666%;
}
.slider-wrap.facility_wrap .thumb {
	margin-top: 32px;
}
.swiper-container .facility .image {
	margin-bottom: 16px;
}
.jim_title {
	margin-top: 20px;
	font-size: 2.4rem;
	margin-bottom: 8px;
}
.slider-wrap.facility_wrap .swiper-container.is_txt .swiper-button {
	top: 38%;
	-webkit-transform: translateY(-38%);
	transform: translateY(-38%);
}
@media screen and (max-width: 768px) {
.head01.facility {
	margin-bottom: 40px;
}
.facility_list li {
	margin-bottom: 40px;
}
.facility_list .title {
	font-size: 2.4rem;
	margin-bottom: 16px;
}
.facility_list .txt {
	margin-bottom: 24px;
}
.slider-wrap.facility_wrap .thumb {
	margin-top: 1.25%;
}
.slider-wrap.facility_wrap .swiper-button {
	padding: 16px 10px;
}
.slider-wrap.facility_wrap .swiper-button.prev::before,
.slider-wrap.facility_wrap .swiper-button.next::before {
	width: 10px;
	height: 20px;
}
.swiper-container.facility.facility03 .image {
	margin-bottom: 8px;
}
.jim_title {
	font-size: 2.4rem;
	margin-bottom: 0;
}
.slider-wrap.facility_wrap .swiper-container.is_txt .swiper-button {
	top: 35%;
	-webkit-transform: translateY(-35%);
	transform: translateY(-35%);
}
}
@media screen and (max-width: 480px) {
.slider-wrap.facility_wrap .swiper-container.is_txt .swiper-button {
	top: 24%;
	-webkit-transform: translateY(-24%);
	transform: translateY(-24%);
}
}
/* price
-------------------------------------------------------- */
.price_list {
	margin-bottom: 72px;
}
.price_list li {
	margin-bottom: 40px;
}
.price_list li:last-child {
	margin-bottom: 0;
}
.price_list .head {
	color: #fff;
	width: 42%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 32px;
}
.price_list .head .title {
	font-size: 2.8rem;
	line-height: 1.4;
	margin-bottom: 8px;
}
.price_list table {
	width: 58%;
}
.price_list .tbl02 th,
.price_list .tbl02 td {
	padding: 32px 24px;
}
.price_list .tbl02 th {
	color: #353535;
	width: 182px;
	text-align: center;
}
.price_list li:nth-child(1) .head {
	background: #e16c00;
}
.price_list li:nth-child(1) .tbl02 th,
.price_list li:nth-child(1) .tbl02 td {
	border-color: #e16c00;
}
.price_list li:nth-child(1) .tbl02 th {
	background: rgba(225, 108, 0, 0.2);
}
.price_list li:nth-child(2) .head {
	background: #ff9c09;
}
.price_list li:nth-child(2) .tbl02 th,
.price_list li:nth-child(2) .tbl02 td {
	border-color: #ff9c09;
}
.price_list li:nth-child(2) .tbl02 th {
	background: rgba(255, 156, 9, 0.2);
}
.price_list li:nth-child(3) .head {
	background: #39b04a;
}
.price_list li:nth-child(3) .tbl02 th,
.price_list li:nth-child(3) .tbl02 td {
	border-color: #39b04a;
}
.price_list li:nth-child(3) .tbl02 th {
	background: rgba(57, 176, 74, 0.2);
}
.price_list li:nth-child(4) .head {
	background: #00a498;
}
.price_list li:nth-child(4) .tbl02 th,
.price_list li:nth-child(4) .tbl02 td {
	border-color: #00a498;
}
.price_list li:nth-child(4) .tbl02 th {
	background: rgba(0, 164, 152, 0.2);
}
.price_list li:nth-child(5) .head {
	background: #c1976d;
}
.price_list li:nth-child(5) .tbl02 th,
.price_list li:nth-child(5) .tbl02 td {
	border-color: #c1976d;
}
.price_list li:nth-child(5) .tbl02 th {
	background: rgba(193, 151, 109, 0.2);
}
.price_list li:nth-child(6) .head {
	background: #ff7ba7;
}
.price_list li:nth-child(6) .tbl02 th,
.price_list li:nth-child(6) .tbl02 td {
	border-color: #ff7ba7;
}
.price_list li:nth-child(6) .tbl02 th {
	background: rgba(255, 123, 167, 0.2);
}
.price_list li:nth-child(7) .head {
	background: #42bbf8;
}
.price_list li:nth-child(7) .tbl02 th,
.price_list li:nth-child(7) .tbl02 td {
	border-color: #42bbf8;
}
.price_list li:nth-child(7) .tbl02 th {
	background: rgba(66, 187, 248, 0.2);
}
.price_list li:nth-child(8) .head {
	background: #1755a4;
}
.price_list li:nth-child(8) .tbl02 th,
.price_list li:nth-child(8) .tbl02 td {
	border-color: #1755a4;
}
.price_list li:nth-child(8) .tbl02 th {
	background: rgba(23, 85, 164, 0.2);
}
.price_list li:nth-child(9) .head {
	background: #644e91;
}
.price_list li:nth-child(9) .tbl02 th,
.price_list li:nth-child(9) .tbl02 td {
	border-color: #644e91;
}
.price_list li:nth-child(9) .tbl02 th {
	background: rgba(100, 78, 145, 0.2);
}
.price_list li:nth-child(10) .head {
	background: #d6565c;
}
.price_list li:nth-child(10) .tbl02 th,
.price_list li:nth-child(10) .tbl02 td {
	border-color: #d6565c;
}
.price_list li:nth-child(10) .tbl02 th {
	background: rgba(214, 86, 92, 0.2);
}
@media screen and (max-width: 768px) {
.price_list {
	margin-bottom: 24px;
}
.price_list li {
	margin-bottom: 24px;
}
.price_list li:last-child {
	margin-bottom: 0;
}
.price_list .head,
.price_list table {
	width: 100%;
}
.price_list .head {
	padding: 16px;
}
.price_list .head .title {
	font-size: 2.4rem;
	margin-bottom: 4px;
}
.price_list .tbl02 th,
.price_list .tbl02 td {
	display: table-cell;
	padding: 16px 8px;
}
	.price_list .tbl02 th {
		width: 130px;
		border-style: solid;
		border-width: 2px;
	}


}

.index_ft_bnr .inner .flex{
	    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;

}
.index_ft_bnr ul li {
display: inline-block
}