@charset "UTF-8";


/* ===================================================================

 file name  :common.css
 style info :共通のスタイル指定（リセット、ストラクチャ、ヘッダー、フッター）

=================================================================== */

/* reset
---------------------------------------- */

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;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

/* border-box */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* structure
---------------------------------------- */

html {
	/*color: #4f4f4f;*/
	color: #000;
	font-size: 62.5%;
	font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'YuGothic', 'メイリオ', 'ＭＳ Ｐゴシック',sans-serif;
	line-height: 1.8;
	min-width: 1080px;
	-webkit-text-size-adjust: 100%;
}

#wrapper {
	position: relative;
	opacity: 0;
}

#wrapper:not(.mb) a:hover,
#wrapper:not(.mb) button:hover {
	-webkit-transition: .6s;
	-o-transition: .6s;
	transition: .6s;
	opacity: .6;
}

.inner {
	position: relative;
	min-width: 1080px;
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 40px;
}

.inner.-form {
	max-width: 1080px;
}

/* slick
---------------------------------------- */

.slick-arrow {
	position: absolute;
	width: 60px;
	height: 60px;
	font-size: 0;
	line-height: 0;
	border: none;
	cursor: pointer;
	opacity: .8;
	outline: none;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: transparent;
	z-index: 2;
}

#wrapper:not(.mb) .slick-arrow:hover {
	-webkit-transition: .6s;
	-o-transition: .6s;
	transition: .6s;
	opacity: 1;
}

.slick-prev {
	top: calc(50% - 30px);
	left: calc(50% - 685px);
	background-image: url(../images/common/btn_slidePrev.png);
}

.slick-next {
	top: calc(50% - 30px);
	right: calc(50% - 685px);
	background-image: url(../images/common/btn_slideNext.png);
}

.slick-dots {
	position: absolute;
	bottom: 23px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0 7px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 16px;
	height: 16px;
	padding: 5px;
	cursor: pointer;
	border: 0;
	outline: none;
	border-radius: 50%;
	background-color: #c8c8c8;
}

.slick-dots li.slick-active button {
	background-color: #038ebb;
}

/* .menu-button
---------------------------------------- */

/* form
---------------------------------------- */

.form-step {
	margin-bottom: 50px;
}

.form-flow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 5px;
}

.form-flow span {
	position: relative;
	width: calc((100% - 20px) / 3);
	color: #e84091;
	font-size: 2.4rem;
	line-height: 60px;
	text-align: center;
}

.form-flow span::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 4px solid #e84091;
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	transform: skewX(-10deg);
	z-index: -1;
	content: '';
}

.form-flow span.current {
	color: #ffffff;
}

.form-flow span.current::before {
	background-color: #e84091;
}

.form-table {
	width: 100%;
	margin-bottom: 40px;
	border: 2px solid #1f2b5e;
}

.form-table tr {
	border-top: 2px solid #1f2b5e;
}

.form-table tr:first-child {
	border-top: none;
}

.form-table tr.row-student {
	display: none;
}

.form-table th {
	width: 28%;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
	background-color: #e9f5f9;
}

.form-table th p {
	position: relative;
	padding: 10px 75px 10px 15px;
}

.form-table th em {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -10px;
	padding: 0 7px;
	color: #ffffff;
	font-size: 1.2rem;
	font-style: normal;
	z-index: 2;
}

.form-table th em::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: #e84091;
	-webkit-transform: skewX(-11deg);
	-ms-transform: skewX(-11deg);
	transform: skewX(-11deg);
	z-index: -1;
	content: '';
}

.form-table td {
	width: 78%;
	height: 60px;
	padding: 8px 20px;
	font-size: 1.4rem;
	vertical-align: middle;
}

.form-table input[type='text'],
.form-table input[type='email'],
.form-table input[type='tel'] {
	height: 40px;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #c8c8c8;
	outline: none;
}
#input .form-table input[type='text'],
#input .form-table input[type='email'],
#input .form-table input[type='tel'] {
	background-color: #F8EFE6;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#b7b2ae;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#b7b2ae;
}
::placeholder{ /* Others */
 color:#b7b2ae
}

.form-table input[type='radio'] {
	display: none;
}

.form-table input[type='radio'] + label {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-right: 20px;
}

.form-table input[type='radio'] + label::before {
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	border: 1px solid #c8c8c8;
	content: '';
}

.form-table input[type='radio'] + label::after {
	position: absolute;
	left: 4px;
	top: 50%;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 50%;
	background: #4f4f4f;
	content: '';
	opacity: 0;
}

.form-table input[type='radio']:checked + label::after {
	opacity: 1;
}

.form-table .select-wrap,
.form-wrap .select-wrap {
	position: relative;
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #c8c8c8;
}
#input .form-table .select-wrap {
	background-color: #F8EFE6;
}

.form-table .select-wrap::before,
.form-wrap .select-wrap::before {
	position: absolute;
	top: 9px;
	right: 10px;
	display: block;
	border-style: solid;
	border-width: 0 5px 9px 5px;
	border-color: transparent transparent #c8c8c8 transparent;
	content: '';
}

.form-table .select-wrap::after,
.form-wrap .select-wrap::after {
	position: absolute;
	bottom: 9px;
	right: 10px;
	display: block;
	border-style: solid;
	border-width: 9px 5px 0 5px;
	border-color: #c8c8c8 transparent transparent transparent;
	content: '';
}

.form-table select,
.form-wrap  select {
	position: relative;
	height: 40px;
	padding: 5px 30px 5px 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 5px;
	background-color: transparent;
	outline: none;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	z-index: 2;
}

.form-table select::-ms-expand,
.form-wrap select::-ms-expand {
	display: none;
}

.form-table textarea {
	width: 100%;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #c8c8c8;
	outline: none;
}

.form-table #input_studentName,
.form-table #input_studentKana,
.form-table #input_address,
.form-table #input_mail {
	width: 100%;
}

.form-table .wrap-input-fullname input:first-of-type {
	width: 19.5%;
	margin-right: 10px;
}

.form-table .wrap-input-fullname input:last-of-type {
	width: 19.5%;
}

.form-table #customers-gender-0 + label {
	margin-right: 20px;
}

.form-table #input_birthYear {
	width: 19.5%;
	margin: 0 10px;
}

.form-table #input_birthMonth {
	width: 12.5%;
	margin: 0 10px;
}

.form-table #input_birthDay {
	width: 12.5%;
	margin: 0 10px;
}

.form-table #input_zip01 {
	width: 19.5%;
	margin: 0 10px 0 0;
}

.form-table #input_zip02 {
	width: 19.5%;
	margin: 0 0 0 10px;
}

.form-table #input_tel01 {
	width: 19.5%;
	margin: 0 10px 0 0;
}

.form-table #input_tel02 {
	width: 19.5%;
	margin: 0 10px;
}

.form-table #input_tel03 {
	width: 19.5%;
	margin: 0 0 0 10px;
}

.form-table #select_hour {
	width: 90px;
	margin-right: 10px;
}

.form-table #select_minute {
	width: 90px;
	margin-left: 10px;
}

.form-table #err_chk_request {
	margin-bottom: 10px;
}

.button-confirm,
.button-submit,
.button-back {
	width: 490px;
	font-size: 2.4rem;
	line-height: 70px;
	border: none;
	cursor: pointer;
	outline: none;
}

.button-confirm::after,
.button-submit::after,
.button-back::after {
	left: calc(100% - 44px);
	width: 15px;
	height: 15px;
	border-width: 2px !important;
}

.button-back {
	margin-right: 20px;
}

/* .button
---------------------------------------- */

.button-style {
	position: relative;
	display: inline-block;
	border: none;
	text-align: center;
}

.button-style::after {
	position: absolute;
	top: 50%;
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	-webkit-transform: rotate(45deg) translate(0, -50%);
	-ms-transform: rotate(45deg) translate(0, -50%);
	transform: rotate(45deg) translate(0, -50%);
	content: '';
}

.button-style.-hasIcon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.button-style.-hasIcon::before {
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

.button-style.-pink {
	color: #ffffff;
	background-color: #e84091;
}

.button-style.-white {
	color: #0583c9;
	border: 4px solid #0583c9;
	background-color: #ffffff;
}

.button-style.-white::after {
	border-top: 2px solid #0583c9;
	border-right: 2px solid #0583c9;
}

.button-style.-blue {
	color: #ffffff;
	background-color: #0583c9;
}

.button-style.-blue::after {
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

.button-style.-down::after {
	-webkit-transform: rotate(135deg) translate(0, -50%);
	-ms-transform: rotate(135deg) translate(0, -50%);
	transform: rotate(135deg) translate(0, -50%);
}

.button-style.-check {
	min-width: 1000px;
	margin: 0 auto;
	padding: 8px 0;
	color: #ffffff;
	font-size: 2.4rem;
	border: none;
	background-color: #e84091;
	outline: none;
	cursor: pointer;
}

.button-style.-check em {
	font-size: 4.0rem;
	margin-right: 0.2em;
}

.button-style.-check::before {
	width: 35px;
	height: 35px;
	margin: 0 10px 0 0;
	background-image: url(../images/common/icon_search.png);
}

.button-style.-check::after {
	right: 28px;
	width: 15px;
	height: 15px;
	border-width: 2px;
}

.button-style.-check.disabled {
	background-color: #cccccc;
}

.button-style.-check.disabled::before {
	background-image: url(../images/common/icon_search-04.png);
}

.button-style.-save {
	color: #ffffff;
	background-color: #e84091;
}

.button-style.-save::before {
	width: 18px;
	height: 20px;
	margin: 0 5px 0 0;
	background-image: url(../images/common/icon_save.png);
}

.button-style.-save::after {
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

.button-style.-save.disabled {
	background-color: #cccccc;
}

.button-style.-event {
	color: #e84091;
	border: 2px solid #e84091;
	background-color: #ffffff;
}

.button-style.-event::before {
	width: 20px;
	height: 20px;
	margin: 0 5px 0 0;
	background-image: url(../images/common/icon_calendar.png);
}

.button-style.-event::after {
	left: calc(100% - 20px);
	width: 8px;
	height: 8px;
	border-top: 1px solid #e84091;
	border-right: 1px solid #e84091;
}

.button-style.-news {
	color: #ffffff;
	background-color: #0583c9;
}

.button-style.-news::before {
	display: inline-block;
	width: 36px;
	height: 28px;
	margin: 0 5px 0 0;
	background-image: url(../images/common/icon_news.png);
}

.button-style.-news::after {
	left: calc(100% - 43px);
	width: 14px;
	height: 14px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

.button-style.-archive {
	color: #0583c9;
	font-size: 2.4rem;
	line-height: 70px;
	border: 2px solid #0583c9;
}

.button-style.-archive::before {
	width: 38px;
	height: 32px;
	margin: 0 10px 0 0;
	background-image: url(../images/common/icon_search-02.png);
}

.button-style.-archive::after {
	left: calc(100% - 42px);
	width: 14px;
	height: 14px;
	border-top: 2px solid #0583c9;
	border-right: 2px solid #0583c9;
}

.button-style.-request {
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 70px;
	background-color: #e84091;
}

.button-style.-request::before {
	width: 24px;
	height: 31px;
	margin: 0 10px 0 0;
	background-image: url(../images/common/icon_request.png);
}

.button-style.-request::after {
	left: calc(100% - 42px);
	width: 14px;
	height: 14px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

.button-style.-search {
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 70px;
	background-color: #0583c9;
}

.button-style.-search::before {
	width: 40px;
	height: 40px;
	margin: 0 10px 0 0;
	background-image: url(../images/common/icon_search-05.png);
}

.button-style.-search::after {
	left: calc(100% - 42px);
	width: 14px;
	height: 14px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

.button-style.disabled {
	cursor: default;
	pointer-events: none;
}

/* pager
---------------------------------------- */

/* pager
---------------------------------------- */

#pager {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin: 6rem 0 0 0;
}
@media screen and (max-width: 767px) {
	#pager {
		gap: 2.5rem;
	}
}
#pager span,
#pager a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
   width: 3.4rem;
  	height: 3.4rem;
	color: #a4a7aa;
	font-size: 1.8rem;
	font-weight: 500;
	background-color: #f6f6f6;
	border: 0.4rem solid #f6f6f6;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	#pager span,
	#pager a {
		width: 4.4rem;
	  	height: 4.4rem;
		font-size: 2.3rem;
	}
}
#pager span {
	color: #fff;
	border-color: #1883ca;
	background-color: #1883ca;
}
#pager .prev {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: auto;
}
#pager .prev img,
#pager .next img {
	width: .8rem;
}
@media screen and (max-width: 767px) {
	#pager .prev img,
	#pager .next img {
		width: 1.2rem;
	}
}
#pager .next {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
}
#pager .disabled {
	opacity: 0;
}

/* helper
---------------------------------------- */

._wf-MPR1c {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
}

._wf-Nunito {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
}

._wf-Nunito-i {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-style: italic;
}

._spOnly {
	display: none !important;
}

._valign-top {
	vertical-align: top !important;
}

._valign-middle {
	vertical-align: middle !important;
}

._valign-bottom {
	vertical-align: bottom !important;
}

/* header
---------------------------------------- */

#top:not(.index) #header {
	line-height: 1.6;
	-webkit-box-shadow: 2px 2px 5px rgba(51, 51, 51, .15);
	box-shadow: 2px 2px 5px rgba(51, 51, 51, .15);
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: #ffffff;
}

#header .header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 40px;
}

#header .link-privacy {
	display: inline-block;
	width: 35px;
	margin: 25px auto 0 15px;
}

#header .tel-button {
	position: relative;
	padding: 15px 0;
	margin-right: 10px;
}
#header .tel-button a {
	display: flex;
	align-items: center;
	padding: 0 20px;
	height: 70px;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
	background-color: #0583c9;
	line-height: 1;
}
#header .tel-button a span {
	display: block;
	font-size: 1.6rem;
	margin-top:5px;
}

#header .request-button {
	position: relative;
	padding: 15px 0;
}

#header .request-button a {
	display: block;
	padding: 12px 17px 10px 29px;
	color: #ffffff;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
	background-color: #e84091;
}

#header .request-button a span {
	color: #f9e0e9;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: .05em;
}

#header .request-button a em {
	position: relative;
	display: inline-block;
	min-width: 50px;
	margin-right: 10px;
	padding: 0 5px 0 7px;
	color: #ffffff;
	font-size: 3.0rem;
	letter-spacing: .03em;
	z-index: 2;
}

#header .request-button a em::before {
	position: absolute;
	top: 0;
	left: 3px;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background-color: #0583c9;
	-webkit-transform: skewX(-21deg);
	-ms-transform: skewX(-21deg);
	transform: skewX(-21deg);
	z-index: -1;
	content: '';
}

#header .request-button .cart-popup-contents.disabled {
	display: none;
}

#header .request-button .cart-popup-contents {
	position: absolute;
	width: 100%;
	right: 0;
	margin: 20px 0 0 0;
	padding: 2rem;
	border: 2px solid #e84091;
	background-color: #fff;
	box-shadow: 0.1em 0.1em 0.2em 0 rgba(55,61,55,0.51);
}

#header .request-button .cart-popup-contents::before {
    position: absolute;
    top: -20px;
    left: 40px;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #e84091;
    border-left: 12px solid transparent;
    content: '';
}

#header .request-button .cart-popup-contents::after {
    position: absolute;
    top: -16px;
    left: 43px;
    border-right: 9px solid transparent;
    border-bottom: 16px solid #fff;
    border-left: 9px solid transparent;
    content: '';
}

#header .request-button .cart-popup-contents .title {
	color: #e84091;
	font-size: 1.8rem;
	font-weight: 700;
}

#header .request-button .cart-popup-contents .text {
	font-size: 1.4rem;
}

/* header-navi
---------------------------------------- */

#header-navi {
	display: none;
	width: 100%;
	height: 100%;
	background: #0583C9;
	border-top: none;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999;
}

#header-navi .list {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	white-space: nowrap;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	border-top: 1px solid #fff;
}

#header-navi .list li {
	border-bottom: 1px solid #fff;
}

#header-navi .list li a {
	position: relative;
	display: block;
	padding: 10px 40px 10px 20px;
	color: #fff;
	font-size: 1.5rem;
	text-align: left;
}

#header-navi .list li a::after {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	border-radius: 2px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	content: '';
}

#header-navi .list li.title {
	position: relative;
	display: block;
	padding: 35px 40px 5px 20px;
	color: #fff;
	font-size: 1.4rem;
	text-align: left;
}
#header-navi .list li.sub {
    width: 50%;
    float: left;
}
#header-navi .list li.sub:nth-child(odd) {
    border-left: 1px solid #fff;
}
#header-navi .list li.sub a {
	font-size: 1.3rem;
	line-height: 1.6;
}

/* footer
---------------------------------------- */

#pagetop {
	position: absolute;
	right: 40px;
	top: -120px;
	width: 60px;
	z-index: 999;
}

#pagetop.fixed {
	position: fixed;
	top: auto;
	right: 40px;
	bottom: 60px;
}

#footer {
	position: relative;
	background-color: #000000;
}

#footer .footer-inner {
	position: relative;
	padding: 40px 40px 20px 40px;
	min-width: 1080px;
	max-width: 1450px;
	margin: 0 auto;
}

#footer .footer-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 45px;
}

#footer .sns-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#footer .sns-list p {
	width: 50px;
	margin-left: 10px;
}

#footer .sns-list p:first-child {
	margin-left: 0;
}

#footer .footer-navi {
	margin-bottom: 10px;
	padding: 15px 20px 20px 20px;
	background-color: #1a1a1a;
}

#footer .footer-navi:last-child {
	margin-bottom: 0;
}

#footer .footer-navi .title {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 1.6rem;
}

#footer .footer-navi .list li {
	display: inline-block;
	font-size: 1.4rem;
	letter-spacing: normal;
}
#footer .footer-navi .list li p{
	color: #fff;
}
#footer .footer-navi .list li:after {
	display: inline-block;
	width: 1px;
	height: 100%;
	margin: 0 6px;
	color: #ffffff;
	content: '|';
}

#footer .footer-navi .list li:last-child::after {
	display: none;
}
#footer .footer-navi .list.list2 li:last-child::after {
	display: none;
}

#footer .footer-navi .list a {
	color: #ffffff;
}

#footer .footer-navi .form-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

#footer .footer-navi .form-wrap dl {
	position: relative;
	margin: 5px 40px 5px 0;
}

#footer .footer-navi .form-wrap dl::after {
	position: absolute;
	top: 50%;
	right: -25px;
	color: #ffffff;
	font-size: 1.4rem;
	content: '×';
}

#footer .footer-navi .form-wrap dl:last-of-type {
	margin-right: 0;
}

#footer .footer-navi .form-wrap dl:last-of-type::after {
	display: none;
}

#footer .footer-navi .form-wrap dt {
	margin-right: 10px;
	color: #ffffff;
	font-size: 1.4rem;
}

#footer .footer-navi .form-wrap dd .select-wrap {
	background-color: #fff;
}

#footer .footer-navi .form-wrap .btn_search {
	margin: 0 0 11px 20px;
	padding: 8px 20px;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1;
	background-color: #e84091;
	border: none;
}

#footer .footer-navi-02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

#footer .footer-navi-02 li {
	margin: 0 10px 10px 10px;
	width: auto;
}

#footer .footer-navi-02 li a {
	color: #ffffff;
	font-size: 1.4rem;
}

#footer .copyright {
	padding: 10px 0;
	color: #ffffff;
	font-size: 1.4rem;
	text-align: center;
	background-color: #1a1a1a;
}

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

.slick-prev {
	left: 40px;
}

.slick-next {
	right: 40px;
}

}

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

html {
	min-width: 100%;
}

.inner {
	width: 100%;
	min-width: inherit;
	max-width: 100%;
	padding: 0 4vw;
}

.inner.-form {
	max-width: inherit;
}

.slick-slide{
	/*width: 3.5%;*/
	width: 85vw;
}

.slick-arrow {
	width: 8vw;
	height: 8vw;
	margin-top: -4vw;
}

.slick-prev {
	top: 50%;
	left: 3vw;
}

.slick-next {
	top: 50%;
	right: 3vw;
}

.slick-dots {
	bottom: 15px;
}

.slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0 8px;
}

.slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 0;
}

.form-step {
	margin-bottom: 3vw;
}

.form-flow {
	padding: 0;
}

.form-flow span {
	width: calc((100% - 7px) / 3);
	font-size: 4vw;
	line-height: 30px;
}

.form-flow span::before {
	border-radius: 5px;
	border-width: 2px;
}

.form-table {
	margin-bottom: 20px;
}

.form-table th {
	display: block;
	width: 100%;
	font-size: 2.93333vw;
}

.form-table th p {
	padding: 6px 8px;
	font-size: 4.4vw;
}

.form-table .field-notes{
	font-size: 3.5vw;
	line-height: 1.5em;
}

.form-table th em {
	right: 10px;
	font-size: 3.5vw;
}

.form-table td {
	display: block;
	width: 100%;
	height: auto;
	padding: 10px 8px;
	font-size: 4.8vw;
}

.form-table input[type='text'],
.form-table input[type='email'],
.form-table input[type='tel'] {
	padding-top: 10px;
	padding-bottom: 10px;
}

.form-table .select-wrap::before,
.form-wrap .select-wrap::before {
	top: 8px;
	right: 7px;
	border-width: 0 5px 10px 5px;
}

.form-table .select-wrap::after,
.form-wrap .select-wrap::after {
	bottom: 8px;
	right: 7px;
	border-width: 10px 5px 0 5px;
}

.form-table select,
.form-wrap select {
	padding-top: 10px;
	padding-bottom: 10px;
}
#input select {
	width: 100%;
	height: auto;
}

.form-table .wrap-input-fullname input:first-of-type {
	width: 48%;
	margin-right: 4%;
}

.form-table .wrap-input-fullname input:last-of-type {
	width: 48%;
}

.form-table #select_hour {
	width: 19%;
	margin-right: 5px;
}

.form-table #select_minute {
	width: 19%;
	margin-left: 5px;
}

.form-table #select_course,
.form-table #select_relation,
.form-table #select_status,
.form-table #select_pref {
	width: 100%;
}

.form-table #alert_message {
	margin-bottom: 10px;
	font-size: 3.2vw;
}

.form-table input[type='text'],
.form-table input[type='email'],
.form-table input[type='tel'],
.form-table select,
.form-table textarea {
	font-size: 4.8vw;
}

.button-confirm,
.button-submit,
.button-back {
	width: 100%;
	padding: 10px;
	line-height: 30px;
	font-size: 4.8vw;
}

.button-confirm::after,
.button-submit::after,
.button-back::after {
	left: calc(100% - 25px);
	width: 10px;
	height: 10px;
	border-width: 1px !important;
}

.button-back {
	margin: 0 0 15px 0;
}

.button-style.-hasIcon::before {
	height: auto;
}

.button-style.-white {
	border-width: 2px;
}

.button-style.-check {
	min-width: 100%;
	padding: 15px 0;
	font-size: 4.5vw;
}

.button-style.-check em {
	font-size: 8vw;
}

.button-style.-check::before {
	width: 7%;
	height: auto;
	margin: 0 6px 0 0;
	padding-top: 7%;
}

.button-style.-check::after {
	right: 14px;
	width: 10px;
	height: 10px;
}

.button-style.-save::before {
	width: 6%;
	padding-top: 7%;
}

.button-style.-news::before {
	width: 8%;
	height: auto;
	padding-top: 7%;
}

.button-style.-news::after {
	left: calc(100% - 25px);
	width: 10px;
	height: 10px;
	border-width: 1px;
}

.button-style.-archive {
	padding: 13px;
	font-size: 4.8vw;
	line-height: 1.3;
	border-width: 1px;
}

.button-style.-archive::before {
	width: 8%;
	height: auto;
	margin-right: 5px;
	padding-top: 7%;
}

.button-style.-archive::after {
	left: calc(100% - 25px);
	width: 10px;
	height: 10px;
	border-width: 1px;
}

.button-style.-request {
	padding: 13px;
	font-size: 4.8vw;
	line-height: 1.3;
	border-width: 1px;
}

.button-style.-request::before {
	width: 8%;
	height: auto;
	margin-right: 5px;
	padding-top: 7%;
}

.button-style.-request::after {
	left: calc(100% - 25px);
	width: 10px;
	height: 10px;
	border-width: 1px;
}

#pager {
	margin: 40px 0 0 0;
}

._pcOnly {
	display: none !important;
}

._spOnly {
	display: inline-block !important;
}

#header {
	height: 13.33333vw;
}

#header .logo {
	width: 30vw;
}
#header .logo a {
	display: flex;
}
#header .logo a img{
	width: 100%;
	height: intrinsic;
}
#header .link-privacy {
	width: 2vw;
	margin-left: 0.3vw
}
#header .link-privacy img {
	display: flex;
}
#header .header-inner {
	max-width: 100%;
	padding: 0 0 0 2vw;
}


#header .tel-button {
	position: relative;
	padding: 0;
	margin-right: 1px;
}
#header .tel-button a {
	padding: 0 1vw;
	height: 13.33333vw;
	color: #ffffff;
	font-size: 2.5vw;
}
#header .tel-button a span {
	display: block;
	font-size: 2.5vw;
	margin-top:5px;
}

#header .request-button {
	position: relative;
	padding: 0;
}

#header .request-button a {
	display: block;
	padding: .66667vw 2.4vw;
	height: 13.33333vw;
	font-size: 3.5vw;
}

#header .request-button a span {
	display: block;
	font-size: 2.93333vw;
	letter-spacing: 0;
}

#header .request-button a em {
	min-width: 6.66667vw;
	margin-right: .66667vw;
	padding: 0;
	font-size: 4vw;
}

#header .request-button a em::before {
	top: 50%;
	left: 53%;
	-webkit-transform: translate(-50%, -50%) skewX(-20deg);
	-ms-transform: translate(-50%, -50%) skewX(-20deg);
	transform: translate(-50%, -50%) skewX(-20deg);
	width: 6.66667vw;
	height: 6.13333vw;
	border-radius: 1.6vw;
}

#header .request-button .cart-popup-contents {
	width: calc(100% + 11.33333vw);
    right: -11.33333vw;
	margin: 20px 0 0 0;
	padding: 2vw;
}

#header .request-button .cart-popup-contents .title {
	font-size: 3.5vw;
}

#header .request-button .cart-popup-contents .text {
	font-size: 3vw;
}

#pagetop {
	position: absolute;
	right: 4vw;
	top: -60px;
	width: 40px;
}

#pagetop.fixed {
	right: 4vw;
	bottom: 20px;
}

#footer .footer-inner {
	min-width: inherit;
	max-width: 100%;
	padding: 20px 4vw;
}

#footer .footer-head {
	margin-bottom: 20px;
}

#footer .logo {
	width: 140px;
}

#footer .sns-list p {
	width: 10.66667vw;
	margin-left: 2.66667vw;
}

#footer .footer-navi {
	margin-bottom: 10px;
	padding: 2.66667vw;
}

#footer .footer-navi .title {
	margin-bottom: 8px;
	font-size: 2.66667vw;
}

#footer .footer-navi .list li {
	font-size: 2.66667vw;
	line-height: 2;
}

#footer .footer-navi .form-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

#footer .footer-navi .form-wrap dl {	
	display: flex;
	align-items: center;
	margin-right: 0;
	width: 100%;
}

#footer .footer-navi .form-wrap dl::after {
	display: none;
}

#footer .footer-navi .form-wrap dt {
	width: 32%;
	font-size: 2.66667vw;
	white-space: nowrap;
}

#footer .footer-navi .form-wrap dd select {
	height: 30px;
	padding: 5px 15px 5px 5px;
	font-size: 2.66667vw;
}

#footer .footer-navi .form-wrap .select-wrap::before {
	top: 7px;
    right: 4px;
    border-width: 0 3px 6px 3px;
}

#footer .footer-navi .form-wrap .select-wrap::after {
	bottom: 7px;
    right: 4px;
    border-width: 6px 3px 0 3px;
}

#footer .footer-navi .form-wrap .btn_search {
	width: 40%;
	margin: 10px auto 0 auto;
	font-size: 2.66667vw;
}

#footer .footer-navi-02 li {
	width: 40%;
}
#footer .footer-navi-02 li a {
	font-size: 2.66667vw;
}

#footer .copyright {
	font-size: 2.66667vw;
}

}

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

.menu-button {
	width: 13.33333vw;
	height: 13.33333vw;
	margin-left: .26667vw;
	text-align: center;
	background-color: #0583c9;
}

.menu-button > div {
	position: relative;
	width: 13.33333vw;
	height: 6.66667vw;
}

.menu-button > div span {
	position: absolute;
	width: 70%;
	left: 15%;
	display: block;
	height: 1.33333vw;
	border-radius: .66667vw;
	background: #ffffff;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.menu-button > div span:nth-child(1) {
	top: 1.6vw;
}

.menu-button > div span:nth-child(2) {
	top: 4.26667vw;
}

.menu-button > div span:nth-child(3) {
	top: 6.93333vw;
}

.menu-button p {
	margin-top: 1.6vw;
	color: #ffffff;
	font-size: 2.93333vw;
}

.menu-button.is-open {
	position: absolute;
	top: 0;
	right: 0;
}

.menu-button.is-open > div span:nth-child(1) {
	top: 50%;
	-webkit-transform: rotate(-35deg);
	-ms-transform: rotate(-35deg);
	transform: rotate(-35deg);
}

.menu-button.is-open > div span:nth-child(2) {
	opacity: 0;
}

.menu-button.is-open > div span:nth-child(3) {
	top: 50%;
	-webkit-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
	transform: rotate(35deg);
}

}

/* 191224 add */
#advance-request-container {
  padding: 4em 0;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
	#advance-request-container {
		font-size: 4vw;
	}
}
/* 191224 add end */
#breadcrumbs {
	border-bottom: 1px solid #ddd;
}
#breadcrumbs ul li {
	display: inline-block;
	font-size: 1.4rem;
	white-space: nowrap;
}
#breadcrumbs ul li + li::before {
	display: inline-block;
	margin: 0 0.5em;
	content: '>';
}
@media screen and (max-width: 767px) {
	#breadcrumbs ul li {
		font-size: 3.2vw;
	}
}

/* 211008 add */
form .privacy-wrap {
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	form .privacy-wrap {
		font-size: 2.66rem;
	}
}
form .privacy-title {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
@media screen and (max-width: 767px) {
	form .privacy-title {
		font-size: 3.8rem;
	}
}
form .privacy-lead {
	text-align: center;
}
form .privacy-scroll {
    height: 260px;
    border: 3px solid #dcdcdc;
    padding: 20px;
    margin: 20px 0;
    overflow-y: scroll;
}
@media screen and (max-width: 767px) {
	form .privacy-scroll {
		height: 240px;
		border: 2px solid #dcdcdc;
		padding: 10px;
		margin: 10px 0;
	}
}
form .privacy-scroll::-webkit-scrollbar {
	width: 10px;
}
form .privacy-scroll::-webkit-scrollbar-track {
	background: #fafafa;
	border: none;
	border-left: 1px solid #dcdcdc;
}
form .privacy-scroll::-webkit-scrollbar-thumb {
	background: #dcdcdc;
	box-shadow: none;
}
form .privacy-scroll dl dt {
	font-weight: bold;
}
form .privacy-scroll dl dt:not(:first-child) {
	margin-top: 1em;
}
form .privacy-scroll dl + p {
	margin-top: 2em;
}
form .privacy-agree {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px 0;
}
form .privacy-agree .wpcf7-list-item {
	margin: 0;
}
form .privacy-agree label {
    font-size: 1.8rem;
    margin: 0 1.5em;
}
@media screen and (max-width: 767px) {
	form .privacy-agree label {
		font-size: 3.42rem;
	}
}
form .privacy-agree .error {
	width: 100%;
}
form #err_group_agree {
	margin: -40px 0 40px 0;
}
form #err_group_agree .formErrorMsg {
	margin: 0 auto;
}

.page-form {
	margin: 80px 0;
}
.page-form .note {
	margin: 4rem 0;
	text-align: center;
}
.page-form .c-form-submit {
	margin-top: 4rem;
}
@media screen and (min-width: 768px) {
	.page-form .c-form-navi__item.is-current,
	.page-form .c-form-navi__item.is-done {
		clip-path: polygon(2% 0%, 94% 0%, 100% 50%, 94% 100%, 2% 100%, 8% 50%);
	}
	.page-form .c-form-navi__item:first-child.is-current,
	.page-form .c-form-navi__item:first-child.is-done {
	  clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
	}
}
@media screen and (max-width: 767px) {
	.page-form {
     margin: 10.66667vw 0;
  }
  .page-form .c-form-navi__item.is-current,
  .page-form .c-form-navi__item.is-done {
  	  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 10% 50%);
  }
  .page-form .note {
		margin: 6rem 0;
	}
	.page-form .c-form-submit {
		margin-top: 6rem;
	}
	.page-form .c-form-submit p {
		flex: 1;
	}
	.page-form .c-form-submit p .c-button {
		width: 100%;
		margin: 0;
	}
	.page-form .wpcf7-not-valid-tip {
		font-size: 2.8rem;
	}
}