@charset "UTF-8";

html * {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: normal;
	font-size: 16px;
	color: #555;
	word-wrap: break-word;
	box-sizing: border-box;
	outline: none;
	letter-spacing: 0.5px;
}
	a { opacity: 1; text-decoration: none; color: inherit; font-size: inherit; font-weight: inherit; }
	a:hover { opacity: 0.8; }
	p { line-height: 1.8; }
	img { max-width: 100%; width: auto; height: auto; }
	iframe { max-width: 100%; width: auto; height: auto; }
	small { font-size: 0.6em; }
	span { color: inherit; }
	b { color: inherit; font-weight: bold; }
	strong { color: inherit; font-weight: bold; }
	@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
	@keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }

/* -------------------------------------------- */
/* common class */
/* -------------------------------------------- */
	.center { text-align: center !important; }
	.alignright { text-align: right !important; }
	.alignleft { text-align: left !important; }
	.hidden { display: none; }
	.shadow { box-shadow: 0 1rem 1rem -1rem hsl(200 50% 20% / 40%); }
	.border { border: solid 1px #ddd; }
	.border-radius { border-radius: 3px; }
	.line { width: auto; height: 1px; border: none; border-bottom: solid 1px #ddd; padding: 30px 0 0; }
	.required { color: red; vertical-align: middle; margin: 0 5px; }
	.main_title { font-size: 36px; font-weight: normal; margin: 0 0 30px 0; line-height: 1.4; color: #9F832E; }
	.sub_title { font-size: 24px; font-weight: normal; border-bottom: solid 1px #ddd; padding: 10px 0; margin: 0 0 30px 0; position: relative; }
	.head_title { font-size: 34px; font-weight: normal; line-height: 1.4; color: #9F832E; }
	.copy_title { font-size: 24px; font-weight: normal; border-bottom: solid 1px #666; padding: 10px 0; margin: 0 0 30px 0; position: relative; }
	.bg_gray { background: #fafafa; }
	.underline { text-decoration: underline; }
	.link { color: #25297C; text-decoration: underline; }
	.link_btn { display: block; background: #9F832E; text-align: center; font-size: 20px; color: #fff; padding: 5px 20px; line-height: 1.4; }
	.list_disc { list-style: disc; margin: 0 0 1em 0.3em; padding-left: 1em; }
	.list_ast { list-style: none; margin: 0 0 1em 0; }
	.list_ast__li { position: relative; margin: 0; padding-left: 1em; }
	.list_ast__li:before { content: '※'; position: absolute; top: 0; left: 0; }
	.grecaptcha-badge { display: none; }

/* -------------------------------------------- */
/* layout */
/* -------------------------------------------- */
#page { min-width: 360px; max-width: 2000px; margin: 0 auto; height: 100%; padding-top: 120px; }
#header { background: #fff; box-shadow: 0 0px 20px 0px hsl(200 50% 20% / 5%); z-index: 1000; height: 120px; position: fixed; top: 0; left: 0; right: 0; transform: translateY(0); transition: all .3s; opacity: 1; }
#header.hide { opacity: 0; transform: translateY(-100%); }
#header .inner { max-width: 2000px; padding: 0 20px; box-sizing: border-box; }
	.topnav { position: relative; display: flex; justify-content: space-between; align-items: center; }
	.topnav_logo { }
	.topnav_logo__title { display: inline-block; white-space: nowrap; }
	.topnav_logo__link { display: block; padding: 15px 15px; }
	.topnav_logo__img { width: 180px; height: auto; vertical-align: middle; }
	.topnav_menu { display: inline-block; }
	.topnav_menu__list { display: flex; padding: 20px 30px 30px; }
	.topnav_menu__li { position: relative; }
	.topnav_menu__link { display: block; padding: 20px 20px; font-size: 18px; white-space: nowrap; text-align: center; }
	.topnav_menu__link_for { display: block; position: absolute; bottom: 0; left: 0; right: 0; font-size: 12px; color: #9F832E; }
	.topnav_menu__link.has_sub_menu:after { content: "\f107"; font-family: 'Font Awesome 5 Free'; padding: 0 0 0 10px; font-size: 10px; font-weight: bold; }
	.topnav_sub_menu__list { display: none; position: absolute; top: 60px; left: 0; background: #fff; box-shadow: 0px 5px 10px -5px hsl(200 50% 20% / 40%); z-index: 10; }
	.topnav_menu__li:hover .topnav_sub_menu__list { display: block; }
	.topnav_sub_menu__link { display: block; padding: 10px 16px; background: #fff; border-bottom: solid 1px #eee; white-space: nowrap; font-size: 16px; }
	.topnav_sub_menu__link:hover { background: #9F832E; color: #fff; }
	.topnav_btn { display: none; }
	.topnav_btn__menu { display: inline-block; padding: 15px 20px 5px; font-size: 10px; }
	.topnav_btn__menu .fa-bars { display: block; text-align: center; font-size: 30px; margin: 0 0 5px 0; }
	.topnav_btn__menu.open .fa-bars:before { content: '\f00d'; }
#contents {}
	.inner { width: auto; max-width: 990px; margin: 0 auto; }
	.wrapper .inner { padding: 60px 20px; position: relative; }
	.row { display: flex; flex-wrap: wrap; }
	.row .col { flex-basis: 0; flex-grow: 1; max-width:100%; }
	.row .col-4 { flex:0 0 33.333333%; max-width: 33.333333%; }
	.row .col-6 { flex:0 0 50%; max-width: 50%; }
	.row .col-8 { flex:0 0 66.666667%; max-width: 66.666667%; }
.entry {}
	.entry {}
	.entry h1 { margin: 30px 0; font-size: 28px; font-weight: normal; line-height: 1.4; }
	.entry h2 { margin: 30px 0; font-size: 26px; font-weight: normal; line-height: 1.4; }
	.entry h3 { margin: 30px 0; font-size: 24px; font-weight: normal; line-height: 1.4; }
	.entry h4 { margin: 30px 0; font-size: 22px; font-weight: normal; line-height: 1.4; }
	.entry h5 { margin: 30px 0; font-size: 20px; font-weight: normal; line-height: 1.4; }
	.entry h6 { margin: 30px 0; font-size: 18px; font-weight: normal; line-height: 1.4; }
	.entry p { margin: 0 0 30px 0; }
	.entry span { font-size: inherit; font-weight: inherit; }
	.entry ul { list-style: disc; margin: 0 0 1em 0.3em; padding-left: 1em; }
	.entry ol { list-style: decimal; margin: 0 0 1em 0.3em; padding-left: 1em; }
	.entry iframe { margin: 1em 0; }
	.entry img { width: auto; max-width: 100%; height: auto; margin: 1em 0; }
	.entry_img { padding: 30px 0; }
	.entry table { width: 100%; margin: 30px 0; }
	.entry table tr {}
	.entry table th { padding: 15px; border: solid 1px #ccc; }
	.entry table td { padding: 15px; border: solid 1px #ccc; }
.blog {}
	.blog_entry { max-width: 800px; margin: 0 auto 60px; }
	.blog_date { display: inline-block; font-size: 14px; margin: 0 5px 10px 0; padding: 0 10px 0 0; border-right: solid 1px #9F832E; color: #9F832E; line-height: 1; }
	.blog_cat { display: inline-block; font-size: 14px; margin: 0 0 10px 0; color: #9F832E; }
	.blog_title { display: block; font-size: 26px; margin: 10px 0 30px 0; padding: 0 0 20px 0; line-height: 1.4; border-bottom: double 4px #9F832E; letter-spacing: 0; }
	.blog_content { display: block; margin: 0 0 30px 0; padding: 0 0 30px 0; }
	.blog_list { margin: 0 0 60px 0; }
	.blog_list__li { display: flex; padding: 20px 0; margin: 0 0 20px 0; }
	.blog_list__thumbnail { flex: 0 1 20%; }
	.blog_list__content { flex: 0 1 80%; padding: 0 0 0 30px; }
	.blog_list__link { display: block; }
	.blog_list__image { display: block; }
	.blog_list__img { width: 100%; height: auto; }
	.blog_list__date { display: inline-block; font-size: 14px; margin: 0 5px 5px 0; padding: 0 10px 0 0; border-right: solid 1px #9F832E; color: #9F832E; line-height: 1; }
	.blog_list__cat { display: inline-block; font-size: 14px; margin: 0 0 5px 0; color: #9F832E; }
	.blog_list__title { display: block; font-size: 24px; margin: 0 0 10px 0; line-height: 1.4; }
	.blog_list__excerpt { display: block; }
	.blog_meta { overflow: hidden; margin: 0 0 30px 0; padding: 30px; border-top: double 4px #ddd; border-bottom: double 4px #ddd; }
	.blog_meta_title { margin: 0 0 10px 0; }
	.blog_meta .post-categories { margin: 0 0 20px 0; }
	.blog_meta .post-tags {}
	.blog_nav { overflow: hidden; text-align: center; }
	.blog_nav a { display: inline-block; margin: 0 15px 15px 0; padding: 6px 12px; }
	.blog_pagenav { overflow: hidden; padding: 20px 0; text-align: center; }
	.blog_pagenav span { display: inline-block; margin: 0 5px 5px 0; background: #eee; padding: 6px 12px; text-align: center; vertical-align: middle; }
	.blog_pagenav a { display: inline-block; margin: 0 5px 5px 0; padding: 6px 12px; background: #eee; }
	.blog_pagenav a:hover, .blog_pagenav .current { background: #9F832E; color: #fff; }
	.cat_list { display: flex; flex-wrap: wrap; margin: 20px 0 0; }
	.cat_list__li { margin: 0 0 10px 0; }
	.cat_list__link { padding: 0 15px; border-left: solid 1px #ddd; line-height: 1; }
	.cat_list__li:last-child .cat_list__link { border-right: solid 1px #ddd; }
.slide {}
	.slide_list {}
	.slide_list__li { position: relative; float: left; display: none; }
	.slide_list__bg { display: block; width: 100%; max-width: 2000px; position: relative; margin: 0 auto; }
	.slide_list__img { width: 100%; height: auto; vertical-align: bottom; }
	.slide_list__content { width: auto; max-width: 990px; height: 100%; position: absolute; top: 0; left: 0; right: 0; margin: 0 auto; }
	.slide_list__title { font-size: 46px; right: 3%; bottom: 25%; position: absolute; color: #333; text-shadow: 1px 0px 2px #fff, -1px 0px 2px #fff, 0px -1px 2px #fff, 1px 1px 2px #FFF; }
	.slide_list__txt { display: block; letter-spacing: 1px; font-size: 36px; color: #333; text-shadow: 1px 0px 2px #fff, -1px 0px 2px #fff, 0px -1px 2px #fff, 1px 1px 2px #FFF; }
	.slide_list__li:nth-child(1) .slide_list__txt { left: 3%; bottom: 15%; position: absolute; color: #fff; text-shadow: none; }
	.slide_list__li:nth-child(2) .slide_list__txt { left: 3%; top: 15%; position: absolute; }
	.slide_list__li:nth-child(3) .slide_list__txt { left: 3%; bottom: 15%; position: absolute; }
	.slide_list__li:nth-child(4) .slide_list__txt { right: 3%; top: 15%; position: absolute; }
	.slide_list__li:nth-child(5) .slide_list__txt { left: 3%; top: 15%; position: absolute; }
	.slide_list__li:nth-child(6) .slide_list__txt { left: 3%; bottom: 25%; position: absolute; }
	.slide_list__li:nth-child(7) .slide_list__txt { left: 3%; bottom: 25%; position: absolute; }
	.slide_list__li:nth-child(8) .slide_list__txt { right: 3%; top: 15%; position: absolute; }
	.slide_list__li:nth-child(9) .slide_list__txt { left: 3%; bottom: 25%; position: absolute; }
.slide_nav {}
	.slide_nav .inner { padding: 40px 20px 20px; }
	.slide_nav_title { display: inline-block; padding: 0 20px 0 0; margin: 0 0 20px 0; }
	.slide_nav_list { display: inline-flex; flex-wrap: wrap; }
	.slide_nav_list__li { border-left: solid 1px #ddd; line-height: 1; padding: 0 15px; margin: 0 0 15px 0; cursor: pointer; }
	.slide_nav_list__li:last-child { border-right: solid 1px #ddd; }
	.slide_nav_list__link.active, .slide_nav_list__link:hover { color: #9F832E; }
.cert {}
	.cert_title { font-size: 30px; margin: 0 0 30px 0; text-align: center; }
	.cert_list { display: flex; justify-content: center; margin: 0 -30px; flex-wrap: wrap; }
	.cert_list__li { flex: 0 1 33%; }
	.cert_list__link { display: block; padding: 30px; }
	.cert_list__img { display: block; text-align: center; margin: 0 0 15px 0; }
	.cert_list__title { display: block; text-align: center; font-size: 20px; font-weight: normal; line-height: 1.4; color: #9F832E; margin: 0 0 10px 0; }
	.cert_list__desc { display: block; text-align: center; }
	.cert_card { padding: 0 30px; }
	.cert_card__title { font-size: 24px; margin: 0 0 30px 0; }
	.cert_movie_list { display: flex; flex-wrap: wrap; margin: 0 -20px; justify-content: center; }
	.cert_movie_list__li { padding: 20px; box-sizing: border-box; flex: 1 1 33.3%; }
	.cert_movie_list__iframe { width: 100%; min-height: 200px; margin: 0 0 10px 0; }
	.cert_movie_list__title { text-align: center; font-size: 16px; }
	.cert_map {}
	.cert_map__link { display: block; }
	.cert_map__img { vertical-align: bottom; }
	.cert .copy_title { border-color: #666; margin: 30px 0; }
	.cert .sub_title { border-color: #9F832E; margin: 30px 0; font-size: 22px; }
	.cert .link { font-size: 22px; }
	.cert .col { margin: 0 0 30px 0; }
	.cert  p { margin: 0 0 30px 0; }
.jpps {}
	.jpps_title { font-size: 30px; margin: 0 0 30px 0; }
	.jpps_sub_title { margin: 30px 0; padding: 10px 0; font-size: 20px; font-weight: normal; line-height: 1.4; border-bottom: solid 1px #9F832E; }
	.jpps_title_cap { font-size: 14px; }
	.jpps_desc { margin: 0 0 60px 0; }
	.jpps_list { display: flex; justify-content: flex-start; margin: 0 -20px 30px; flex-wrap: wrap; }
	.jpps_list__li { flex: 0 1 25%; padding: 20px; }
	.jpps_list__link { display: block; }
	.jpps_list__image { display: block; margin: 0 0 10px 0; }
	.jpps_list__image .attachment-thumbnail { width: 100%; height: auto; }
	.jpps_list__name { display: block; margin: 0 0 10px 0; font-size: 20px; }
	.jpps_list__cap { display: block; font-size: 14px; }
	.jpps_profile { margin-bottom: 60px; }
	.jpps_profile  p { margin: 0 0 30px 0; }
	.jpps_profile .col { margin: 0 0 30px 0; }
	.jpps_profile .col-8 { padding: 0 0 0 60px; }
	.jpps_profile__image { margin-bottom: 30px; display: block; }
	.jpps_profile__name { font-size: 30px; margin: 0 0 5px 0; letter-spacing: 1px; }
	.jpps_profile__name_en { margin: 0 0 30px 0; font-size: 12px; letter-spacing: 2px; color: #9F832E; }
	.jpps_profile__cap { margin: 0 0 30px 0; }
	.jpps_profile__company { display: block; }
	.jpps_profile__store { display: block; }
	.jpps_profile__position { display: block; }
	.jpps_profile__career { margin: 0 0 20px 0; font-size: 14px; }
	.jpps_profile__url { margin: 0 0 20px 0; font-size: 14px; }
.update {}
	.update_title { margin: 0 0 20px 0; font-size: 20px; }
	.update_table { width: 100%; }
	.update_table__item { padding: 10px 10px 10px 0; white-space: nowrap; }
	.update_table__val { padding: 10px 0 10px 10px; }
	.update_table__date { padding: 0 10px 0 0; color: #9F832E; }
	.update_table__title {}
.first {}
	.first_title { font-size: 34px; text-align: center; padding: 60px 0; letter-spacing: 1px; line-height: 1.8; }
	.first_bg { vertical-align: bottom; margin: 0 auto; }
.made {}
	.made_title { font-size: 30px; margin: 0 0 30px 0; }
	.made_desc { margin: 0 0 30px 0; }
.guideline {}
	.guideline_title { font-size: 30px; margin: 0 0 30px 0; }
	.guideline_desc { margin: 0 0 30px 0; }
	.guideline_table { width: 100%; margin: 0 auto; }
	.guideline_table tr {}
	.guideline_table th { font-size: 18px; padding: 15px 15px; white-space: nowrap; }
	.guideline_table td { font-size: 18px; padding: 15px 15px; text-align: center; }
.knowledge {}
	.knowledge_title { font-size: 30px; margin: 0 0 30px 0; }
	.knowledge p { margin: 0 0 30px 0; }
.howtocare {}
	.howtocare_title { font-size: 30px; margin: 0 0 30px 0; }
	.howtocare_sub_title { margin: 0 0 10px 0; font-size: 20px; font-weight: normal; line-height: 1.4; color: #91803A; }
	.howtocare p { margin: 0 0 30px 0; }
	.howtocare ul { margin: 0 0 30px 0; }
.course {}
	.course_title { font-size: 30px; margin: 0 0 30px 0; }
	.course_desc { margin: 0 0 30px 0; }
	.course p { margin: 0 0 30px 0; }
	.course_movie_list { display: flex; flex-wrap: wrap; margin: 0 -20px 30px; justify-content: center; }
	.course_movie_list__li { padding: 20px; box-sizing: border-box; flex: 1 1 33.3%; }
	.course_movie_list__iframe { width: 100%; height: 165px; margin: 0 0 10px 0; }
	.course_movie_list__title { text-align: center; font-size: 16px; }
.beginner {}
	.beginner_title { font-size: 30px; margin: 0 0 30px 0; }
	.beginner_sub_title { font-size: 24px; margin: 0 0 30px 0; }
	.beginner_desc { margin: 0 0 30px 0; }
	.beginner_image { background: #fff; text-align: center; }
	.beginner_image_img { width: 80%; }
	.beginner  p { margin: 0 0 30px 0; }
.salon {}
	.salon_title { font-size: 30px; margin: 0 0 30px 0; }
	.salon_desc { margin: 0 0 30px 0; }
	.salon_calendar { width: 100%; min-height: 600px; }
	.salon_sp_list { display: flex; margin: 0 -20px; flex-wrap: wrap; }
	.salon_sp_list__li { flex: 0 1 25%; padding: 20px; }
	.salon_sp_list__link { display: block; }
	.salon_sp_list__image { display: block; margin: 0 0 10px 0; }
	.salon_sp_list__year { display: block; margin: 0 0 0 0; font-size: 14px; }
	.salon_sp_list__name { display: block; margin: 0 0 10px 0; font-size: 20px; }
	.salon_sp_list__desc { display: block; margin: 0 0 20px 0; font-size: 14px; }
	.salon_sp_list__btn { display: none; margin: 0 0 10px 0; font-size: 14px; letter-spacing: 0; text-align: center; border: solid 1px #9F832E; border-radius: 3px; padding: 5px 10px; }
	.salon_sp_list__btn .fas { font-size: 12px; color: inherit; }
	.salon_sp_list__link:hover .salon_sp_list__btn { background: #9F832E; color: #fff; }
.about {}
	.about_table { width: 100%; max-width: 800px; margin: 0 auto; }
	.about_table tr {}
	.about_table th { font-size: 18px; padding: 15px 15px; white-space: nowrap; }
	.about_table td { font-size: 18px; padding: 15px 15px; }
.legal {}
	.legal_table { width: 100%; max-width: 800px; margin: 0 auto; }
	.legal_table tr {}
	.legal_table th { font-size: 18px; padding: 15px 15px; white-space: nowrap; }
	.legal_table td { font-size: 18px; padding: 15px 15px; }

.pronav { background: #eee; }
	.bnr_list { display: flex; justify-content: center; flex-wrap: wrap; align-items: stretch; }
	.bnr_list__li { flex: 0 1 25%; margin: 0 0 30px 0; }
	.bnr_list__link { display: block; text-align: center; padding: 15px; }
	.bnr_list__img { display: inline-block; margin: 0 0 10px 0; max-width: 200px; }
	.bnr_list__txt { display: block; }
.firstnav { background: #eee; }
	.firstnav_list { display: flex; flex-wrap: wrap; align-items: stretch; margin: 0 0 -20px 0; }
	.firstnav_list__li { flex: 0 1 50%; margin: 0 0 20px 0; }
	.firstnav_list__link { display: block; font-size: 26px; padding: 0 20px 0 35px; position: relative; }
	.firstnav_list__link:before { content: "◯"; position: absolute; top: 0; left: 0; }
	.firstnav_list__link:after { content: "-"; position: absolute; top: -0.1em; left: 0.32em; }

#subfooter {}
#subfooter .inner { padding: 60px 15px; }
	.footer_nav { display: flex; flex-wrap: wrap; margin: 0 0 30px 0; }
	.footer_menu { flex: 1 1 25%; padding-left: 15px; }
	.footer_menu__title { margin: 0 0 10px 0; }
	.footer_menu__link { font-weight: normal; font-size: 15px; }
	.footer_menu_list { margin: 0 0 30px 0; }
	.footer_menu_list__li { margin: 0 0 10px 0; }
	.footer_menu_list__link { font-size: 15px; }
	.footer_snsnav {}
	.footer_sns_list { display: flex; justify-content: center; }
	.footer_sns_list__li { margin: 15px; }
	.footer_sns_list__link .fab { font-size: 30px; }
#footer {}
#footer .inner { padding: 60px 15px; }
	.footer_sign { text-align: center; }
	.footer_logo { margin: 0 0 30px; padding: 0 20px; }
	.footer_logo__img { width: 360px; }
	.footer_address { font-size: 15px; margin: 0 0 60px 0; }
	.copyright { font-size: 12px; text-align: center; color: #666; }
#menu {
	display: none; background: #fff; box-shadow: 0 1rem 1rem -1rem hsl(200 50% 20% / 20%);
	position: fixed; top: 0; left: 0; right: 0; padding-top: 140px; width: 100%; height: 100%;
	z-index: 100; overflow-y: scroll; -webkit-overflow-scrolling: touch;
}
#menu .inner { padding: 30px 20px; }
	.menu_block { display: flex; flex-wrap: wrap; margin: 0 0 30px 0; }
	.menu { margin: 0 0 60px 0; flex: 1 1 50%; padding: 0 30px 0 15px; }
	.menu__title { margin: 0 0 20px 0; position: relative; }
	.menu__link { font-size: 16px; font-weight: normal; display: block; }
	.menu_list {}
	.menu_list__li { margin: 0 0 10px 0; }
	.menu_list__link { display: block; font-weight: normal; }
	.menu_list__link br { display: none; }
	.menu_close {}
	.menu_close__link { display: block; background: #fafafa; text-align: center; padding: 20px; font-size: 20px; cursor: pointer; }

/* -------------------------------------------- */
/* pearl class */
/* -------------------------------------------- */
.sa {}
	.sa_title { font-size: 30px; font-weight: normal; text-align: center; margin: 0 0 30px 0; }
	.sa_sub_title { font-size: 26px; margin: 0 0 30px 0; font-weight: normal; line-height: 1.4; }
	.sa_title_cap { font-size: 14px; }
	.sa_desc { margin: 0 0 60px 0; }
	.sa_search { margin: 0 0 60px 0; }
	.sa_search_table { width: 100%; margin: 0 auto 30px; border-top: dotted 1px #ddd; }
	.sa_search_table tr { border-bottom: dotted 1px #ddd; }
	.sa_search_table th { padding: 15px; white-space: nowrap; }
	.sa_search_table td { padding: 15px; }
	.sa_search_pref_table {}
	.sa_search_pref_table tr { border: none; }
	.sa_search_pref_table th { padding: 10px 10px; white-space: nowrap; }
	.sa_search_pref_table td { padding: 10px 10px; }

	.sa .checkbox { display: inline-block; }
	.sa .checkbox label { padding: 0 50px 0 0; cursor: pointer; }
	.sa input[type="checkbox"] { margin: 0 15px 0 5px; }
	.sa input[type="text"] { width: 100%; padding: 5px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.sa select { width: 100%; padding: 10px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.sa .submit { text-align: center; }
	.sa .submit input[type="submit"] { display: inline-block; padding: 5px 30px; min-width: 300px; margin: 0 auto; background: #3D60A9; color: #fff; font-size: 18px; border: none; }
	.sa .submit input[type="submit"]:hover { opacity: 0.8; }
	.sa_reault {}
	.sa_table { width: 100%; margin: 0 auto 30px; border-bottom: solid 1px #ddd; }
	.sa_table tr { border-top: solid 1px #ddd; }
	.sa_table th { padding: 30px 15px; vertical-align: top; width: 30%; }
	.sa_table td { padding: 30px 15px; vertical-align: top; width: 70%; }
	.sa_table__thumbnail {}
	.sa_table__thumbnail_link { display: block; width: 100%; height: 240px; overflow: hidden; text-align: center; }
	.sa_table__thumbnail img { width: auto; height: auto; max-height: 100%; }
	.sa_table__link { display: block; }
	.sa_table__link:hover { opacity: 0.8; }
	.sa_table__category { font-size: 12px; color: #9F832E; }
	.sa_table__lank { font-size: inherit; color: inherit; }
	.sa_table__pref { font-size: inherit; color: inherit; }
	.sa_table__name { font-size: 26px; margin: 0 0 10px 0; letter-spacing: 1px; }
	.sa_table__company { margin: 0 0 5px 0; }
	.sa_table__store { font-size: 14px; margin: 0 0 10px 0; }
	.sa_table__message { font-size: 14px; }
	.sa_pager { margin: 0 0 30px 0; }
	.sa_pager_txt { margin: 0 0 30px 0; }
	.sa_paging a {}
	.sa_paging a:hover { color: #9F832E; }
	.sa_paging span { display: inline-block; margin: 0 5px 5px 0; padding: 6px 12px; background: #eee; }
	.sa_paging span.current { display: inline-block; margin: 0 5px 5px 0; padding: 6px 12px; background: #9F832E; color: #fff; }
	.sa_profile { margin-bottom: 60px; }
	.sa_profile  p { margin: 0 0 30px 0; }
	.sa_profile .col { margin: 0 0 30px 0; }
	.sa_profile .col-8 { padding: 0 0 0 60px; }
	.sa_profile__image { margin-bottom: 30px; display: block; }
	.sa_profile__image img { width: 100%; height: auto; }
	.sa_profile__name { font-size: 30px; margin: 0 0 5px 0; letter-spacing: 1px; }
	.sa_profile__name_en { margin: 0 0 30px 0; font-size: 12px; letter-spacing: 2px; color: #9F832E; }
	.sa_profile__cap { margin: 0 0 30px 0; }
	.sa_profile__company { display: block; }
	.sa_profile__position { display: block; }
	.sa_profile__career { margin: 0 0 20px 0; font-size: 14px; }
	.sa_profile__url { margin: 0 0 20px 0; font-size: 14px; }
.schedule {}
	.schedule_event { margin: 0 0 60px 0; }
	.schedule_title { font-size: 30px; font-weight: normal; text-align: center; margin: 0 0 30px 0; }
	.schedule_name { font-size: 20px; font-weight: normal; margin: 0 0 20px 0; }
	.schedule_table { width: 100%; margin: 0 0 30px 0; border-top: solid 1px #ddd; }
	.schedule_table tr { border-bottom: solid 1px #ddd; }
	.schedule_table th { padding: 15px; width: 20%; white-space: nowrap; background: #eee; }
	.schedule_table td { padding: 15px; width: 80%; background: #fff; word-break: break-all; }
	.schedule_link { text-align: right; margin: 0 0 30px 0; text-decoration: underline; }
	.schedule_link_btn { text-align: center; }
	.schedule_link_btn a { text-align: center; display: inline-block; padding: 10px 30px; min-width: 300px; background: #3D60A9; color: #fff; }
	.schedule_pager { margin: 0 0 30px 0; }
	.schedule_pager_txt { margin: 0 0 30px 0; }
	.schedule_paging a {}
	.schedule_paging a:hover { color: #9F832E; }
	.schedule_paging span { display: inline-block; margin: 0 5px 5px 0; padding: 6px 12px; background: #eee; }
	.schedule_paging span.current { display: inline-block; margin: 0 5px 5px 0; padding: 6px 12px; background: #9F832E; color: #fff; }
	.schedule_message { margin: 0 0 60px 0; }
	.schedule_form { margin: 0 auto 60px; padding: 60px 30px; background: #fff; border: solid 1px #eee; }
	.schedule_form_title { font-size: 26px; font-weight: normal; margin: 0 0 30px 0; text-align: center; }
	.eventview-content { display: flex; flex-wrap: wrap; overflow: hidden; padding: 15px 15px; border-top: dotted 1px #eee; align-items: center; }
	.eventview-content dt { flex: 0 1 30%; }
	.eventview-content dd { flex: 0 1 70%; }
	.privacy_policycheck { padding: 20px; margin: 0 0 20px 0; }
	.schedule input[type="radio"] { margin: 0 5px 0 0; }
	.schedule input[type="checkbox"] { margin: 0 15px 0 5px; }
	.schedule input[type="text"] { width: 100%; padding: 5px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.schedule input[type="email"] { width: 100%; padding: 5px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.schedule input[type="tel"] { width: 100%; padding: 5px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.schedule select { width: 100%; padding: 10px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.schedule textarea { width: 100%; padding: 10px 8px; background: #fff; border: solid 1px #ddd; border-radius: 3px; box-sizing: border-box; outline: none; -webkit-appearance: none; }
	.schedule .sex label { padding: 0 50px 0 0; cursor: pointer; }
	.schedule .days-select select { width: auto; min-width: 4em; }
	.schedule .postalcode input[type="text"] { width: auto; min-width: 4em; }
	.schedule .submit { text-align: center; }
	.schedule .submit input[type="submit"] { display: inline-block; padding: 5px 30px; min-width: 300px; margin: 0 auto; background: #3D60A9; color: #fff; font-size: 18px; border: none; }
	.schedule .submit input[type="submit"]:hover { opacity: 0.8; }
	.error-message { color: red; font-size: 14px; padding: 5px 0; }
	#flashMessage { max-width: 990px; padding: 50px 20px; margin: 0 auto; color: red; }

/* -------------------------------------------- */
/* wpcf7 class */
/* -------------------------------------------- */
	.wpcf7-text {
		font-size: 16px; width: 100%; padding: 5px 8px;
		background: #fff; border: solid 1px #ddd; border-radius: 3px;
		box-sizing: border-box; outline: none; -webkit-appearance: none;
	}
	.wpcf7-text:focus { border: solid 1px #333; }
	.wpcf7-text.wpcf7-not-valid { border: solid 1px #f00; }
	.wpcf7-textarea {
		font-size: 16px; width: 100%; padding: 5px 8px;
		background: #fff; border: solid 1px #ddd; border-radius: 3px;
		box-sizing: border-box; outline: none; -webkit-appearance: none;
	}
	.wpcf7-textarea:focus { border: solid 1px #333; }
	.wpcf7-textarea.wpcf7-not-valid { border: solid 1px #f00; }
	.wpcf7-list-item-label { cursor: pointer; }
	.wpcf7-submit {
		display: block; padding: 10px 20px; margin: 0 auto;
		font-size: 18px; font-weight: normal; color: #fff; text-align: center;
		background: #9F832E; border: solid 1px #9F832E; box-sizing: border-box; white-space: normal;
		max-width: 240px; width: 100%; outline: none;
	}
	.wpcf7-submit:hover { background: #fff; border: solid 1px #9F832E; color: #9F832E; }
	.wpcf7-form { max-width: 800px; margin: 0 auto; }
	.wpcf7-form-control-wrap { display: block; margin: 0 0 20px 0; }
	.wpcf7-form-control-wrap.your-tel { max-width: 230px; }
	.wpcf7-form-control-wrap.your-fax { max-width: 230px; }
	.wpcf7-form-control-wrap.your-post { margin: 0 0 10px 0; max-width: 230px; position: relative; }
	.wpcf7-form-control-wrap.your-post:before { content: '〒'; position: absolute; top: 3px; left: 8px; font-weight: bold; }
	.wpcf7-form-control-wrap.your-post .wpcf7-text { padding: 5px 8px 5px 26px; }
	.wpcf7-mail-sent-ng, .wpcf7-aborted, .wpcf7-spam-blocked, .wpcf7-validation-errors, .wpcf7-acceptance-missing {
		border: none !important; background: #aaa !important;
		color: #fff; font-weight: bold; padding: 15px !important;
		text-align: center;
	}
	.wpcf7-mail-sent-ok { border: none !important; background: #409d44 !important; color: #fff; font-weight: bold; padding: 15px !important; text-align: center; }
	.wpcf7-not-valid-tip { padding: 5px; }

/* -------------------------------------------- */
/* Extra large devices (large desktops, 1200px and down) */
/* -------------------------------------------- */
@media (max-width:1200px) {
	.topnav_menu { display: none; }
	.topnav_btn { display: block; }
}
/* -------------------------------------------- */
/* Large devices (desktops, 992px and down) */
/* -------------------------------------------- */
@media (max-width:992px) {
	.bnr_list__li { flex: 0 1 33%; }
	.footer_menu { flex: 1 1 50%; padding: 0 30px 20px; margin: 0 0 30px 0; border-bottom: solid 1px #eee; }
	.footer_menu br { display: none; }
}
/* -------------------------------------------- */
/* Medium devices (tablets, 768px and down) */
/* -------------------------------------------- */
@media (max-width:769px) {
	#page { padding-top: 90px; }
	#header { height: 90px; }
	#header .inner { padding: 0; }
	.topnav_logo__img { width: 140px; }
	.bnr_list__li { flex: 0 1 33.3%; }
	.firstnav_list__li { flex: 0 1 100%; }
	.firstnav_list__link { font-size: 18px; }
	.main_title { font-size: 24px; }
	.sub_title { font-size: 20px; }
	.head_title { font-size: 24px; }
	.copy_title { font-size: 20px; }
	.update_title { font-size: 20px; }
	.update_table__item { display: block; padding: 10px 0 0;}
	.update_table__val { display: block; padding: 0 0 10px; }
	.first_title { font-size: 20px; }
	.blog_title { font-size: 20px; }
	.blog_list__content { padding: 0 0 0 20px }
	.blog_list__title { font-size: 20px; }
	.slide_nav_title { font-size: 20px; }
	.slide_list__title { font-size: 24px; }
	.slide_list__txt { font-size: 24px; }
	.cert_title { font-size: 24px; }
	.cert_list { margin: 0 0; }
	.cert_list__li { flex: 0 1 50%; }
	.cert_list__link { padding: 20px; }
	.cert_list__title { font-size: 18px; }
	.cert_movie_list__li { flex: 1 1 100%; }
	.jpps_list__li { flex: 0 1 33.3%; }
	.jpps_profile .col-8 { padding: 0 0 0 0; }
	.sp_profile .col-8 { padding: 0 0 0 0; }
	.made_title { font-size: 24px; }
	.knowledge_title { font-size: 24px; }
	.course_title { font-size: 24px; }
	.course_movie_list__li { flex: 0 1 50%; }
	.salon_sp_list__li { flex: 0 1 33.3%; }
	.beginer_image_img { width: 100%; }
	.row {}
	.row .col {}
	.row .col-4 { flex:0 0 100%; max-width: 100%; }
	.row .col-6 { flex:0 0 100%; max-width: 100%; }
	.row .col-8 { flex:0 0 100%; max-width: 100%; }
	.about_table {}
	.about_table th { display: block; font-size: 16px; padding: 15px 15px 5px; }
	.about_table td { display: block; font-size: 16px; padding: 0 15px 15px; }
	.legal_table {}
	.legal_table th { display: block; font-size: 16px; padding: 15px 15px 5px; }
	.legal_table td { display: block; font-size: 16px; padding: 0 15px 15px; }
	.entry h1 { font-size: 24px; }
	.entry h2 { font-size: 22px; }
	.entry h3 { font-size: 20px; }
	.entry h4 { font-size: 18px; }
	.entry h5 { font-size: 16px; }
	.entry h6 { font-size: 14px; }
	.sa_title { font-size: 24px; }
	.sa_sub_title { font-size: 20px; }
	.sa_profile__name { font-size: 24px; }
	.sa_profile .col-8 { padding: 0 0 0 0; }
	.schedule_title { font-size: 24px; }
	.schedule_form_title { font-size: 22px; }
	.schedule_form { padding: 30px 10px; }
	.eventview-content dt { flex: 0 1 100%; }
	.eventview-content dd { flex: 0 1 100%; }

	.sa_search_table th { display: block; padding: 15px 15px 5px 15px; }
	.sa_search_table td { display: block; padding: 5px 15px 15px 15px; }
}
/* -------------------------------------------- */
/* Small devices (landscape phones, 576px and down) */
/* -------------------------------------------- */
@media (max-width:577px) {
	html * { font-size: 14px; }
	.footer_menu { flex: 1 1 100%; padding: 0 30px 20px; margin: 0 0 30px 0; border-bottom: solid 1px #eee; }
	.menu { flex: 1 1 100%; margin: 0 0 30px 0; padding-bottom: 30px; border-bottom: solid 1px #eee; }
	.bnr_list__li { flex: 0 1 50%; }
	.jpps_list__li { flex: 0 1 50%; }
	.salon_sp_list__li { flex: 0 1 50%; }
	.first_title br { display: none; }

}