@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: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
	color: #535353;
	font-size: 1.6em;
	font-weight: 500;
	background: #fff;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

/* フォント */
.ff_yakuHan { font-family: YakuHanMP, sans-serif; }
.ff_shippori-antique {
	font-family: "Shippori Antique", sans-serif;
	font-weight: 400;
}
.ff_zen-old-mincho {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
}
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }

/* 文字色 */
.fc_rd { color: #7d0000; }
.fc_bk { color: #1b1b1b; }

/* マーカー */

/* 背景 */

@media screen and (max-width: 768px) {
body { font-size: 1.4em; }
}


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

/* アンカーリンク
-------------------------------------------------------- */
.anchor {
	margin-top: -90px;
	padding-top: 90px;
}
@media screen and (max-width: 1024px) {
.anchor {
	margin-top: -200px;
	padding-top: 200px;
}
}
@media screen and (max-width: 768px) {
.anchor {
	margin-top: -68px;
	padding-top: 68px;
}
}



/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
.inner {
	max-width: 1200px;
	width: 90.6666%;
	margin: auto;
}
.inner.mw1080 { max-width: 1080px; }

@media screen and (max-width: 768px) {
.inner.is_wide { width: 100%; }
.wide_wrap {
	padding: 0 4%;
}
}


/* iframe */
.iframe { position: relative; }
.iframe.youtube { padding-top: 56.25%; }
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* flex */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.nowrap { flex-wrap: nowrap; }
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.fd_rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.ai_fs {
	-webkit-box-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

/* --------------------------------------------------------
	アニメーション
-------------------------------------------------------- */
.trigger {
	opacity: 0;
}
/* 下から上へ */
.animation.animation01 {
	animation: fadeup .8s ease forwards;
}
/* 左から右へ */
.animation.animation02 {
	animation: faderight .8s ease forwards;
}
/* 右から左へ */
.animation.animation03 {
	animation: fadeleft .8s ease forwards;
}

@keyframes fadeup{
	from {
		opacity: 0;
		transform: translateY(2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes faderight{
	from {
		opacity: 0;
		transform: translateX(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeleft{
	from {
		opacity: 0;
		transform: translateX(2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}


/* --------------------------------------------------------
	title
-------------------------------------------------------- */
.c-en_title {
	text-align: center;
	margin: 0 0 48px;
}
.c-en_title .en {
	color: #7d0000;
	font-size: 3.6rem;
	letter-spacing: .5em;
}
.c-en_title .circle {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 10px 0;
}
.c-en_title .circle span {
	width: 10px;
	height: 10px;
	border: solid 1px #7d0000;
	border-radius: 50%;
}
.c-en_title .circle span:not(:last-child) {
	margin: 0 12px 0 0;
}
.c-en_title .ja {
	font-size: 2.4rem;
}
.c-en_title.is_wh .en,
.c-en_title.is_wh .ja {
	color: #fff;
}
.c-en_title.is_wh .circle span {
	border-color: #fff;
}
@media screen and (max-width: 768px) {
.c-en_title {
	margin: 0 0 32px;
}
.c-en_title .en {
	font-size: 2.7rem;
	letter-spacing: .2em;
}
.c-en_title .circle span {
	width: 8px;
	height: 8px;
}
.c-en_title .ja {
	font-size: 1.8rem;
}
}

.c-border_title {
	color: #7d0000;
	font-size: 2.4rem;
	border-bottom: solid 1px #7d0000;
	margin: 0 0 32px;
	padding: 0 0 6px;
}
@media screen and (max-width: 768px) {
.c-border_title {
	font-size: 1.8rem;
	margin: 0 0 24px;
}
}

.c-border_title02 {
	color: #7d0000;
	font-size: 4.8rem;
	padding: 0 0 0 200px;
	position: relative;
}
.c-border_title02::before {
	content: "";
	width: 180px;
	height: 2px;
	background: #7d0000;
	position: absolute;
	top: 50%;
	left: 0;
}
@media screen and (max-width: 768px) {
.c-border_title02 {
	font-size: 2.4rem;
	padding: 0;
}
.c-border_title02::before {
	width: 1px;
	height: 75px;
	background: #7d0000;
	position: absolute;
	top: -75px;
	left: 50%;
}
}
.c-border_title03 {
	font-size: 2.4rem;
	margin: 0 0 32px;
}
.c-border_title03::after {
	content: "";
	width: 100px;
	height: 2px;
	background: #7d0000;
	display: block;
	margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
.c-border_title03 {
	font-size: 1.8rem;
	margin: 0 0 24px;
}
.c-border_title03::after {
	width: 75px;
}
}

/* アイコン付見出し
-------------------------------------------------------- */
.c-border_title.is_icon {
	font-size: 2.8rem;
	padding: 0 0 14px;
}
.c-border_title.is_icon {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.c-border_title.is_icon .icon {
	font-size: 0;
	max-width: 49px;
}
.c-border_title.is_icon .text {
	padding: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
.c-border_title.is_icon {
	font-size: 1.8rem;
	padding: 0 4% 10px;
}
.c-border_title.is_icon .icon {
	max-width: 30px;
}
}

/* --------------------------------------------------------
	btn
-------------------------------------------------------- */
.c-btn01 {
	color: #fff;
	font-size: 1.8rem;
	max-width: 580px;
	width: 100%;
	background: #bc8a54;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	letter-spacing: 0;
	text-align: center;
	padding: 14px 8px 16px;
	position: relative;
}
.c-btn01::before,
.c-btn01::after {
	content: "";
	position: absolute;
}
.c-btn01::before {
	width: 41px;
	height: 11px;
	background: url(../img/cmn/arrow_r_wh.svg) no-repeat;
	background-size: contain;
	top: calc(50% - 5.5px);
	right: 20px;
}
.c-btn01::after {
	width: 100%;
	height: 100%;
	background: #bc8a54;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	mix-blend-mode: multiply;
	opacity: .4;
	top: 0;
	left: 0;
	z-index: 0;
}
.c-btn01 > div {
	position: relative;
	z-index: 1;
}
.c-btn01 .c-btn_title {
	font-size: 2.5rem;
	margin: 0 0 2px;
}
.c-btn01.is_line {
	background: #02c302;
}
.c-btn01.is_line::after {
	background: #02c302;
}
.c-btn01.is_line .c-btn_text span {
	color: #fff100;
}
@media screen and (max-width: 768px) {
.c-btn01 {
	font-size: 1.5rem;
	padding: 20px 0 24px;
}
.c-btn01 .c-btn_title {
	font-size: 1.8rem;
	margin: 0 0 6px;
}
.c-btn01::before {
		width: 30px;
		height: 8px;
		top: inherit;
		right: 7px;
		bottom: 15px;
}
}
@media screen and (max-width: 480px) {
.c-btn01 {
	font-size: 3.5vw;
}
.c-btn01 .c-btn_title {
	font-size: 4.8vw;
}
}

/* --------------------------------------------------------
	リスト
-------------------------------------------------------- */
/* SNS
-------------------------------------------------------- */
.c-sns_list li {
	font-size: 0;
	max-width: 28px;
}
.c-sns_list li:not(:last-child) {
	margin: 0 30px 0 0;
}
.c-sns_list li.is_facebook {
	max-width: 16px;
}
.c-sns_list li.is_line {
	max-width: 32px;
}
@media screen and (max-width: 768px) {
.c-sns_list li {
	max-width: 21px;
}
.c-sns_list li:not(:last-child) {
	margin: 0 23px 0 0;
}
.c-sns_list li.is_facebook {
	max-width: 12.5px;
}
.c-sns_list li.is_line {
	max-width: 23px;
}
}

/* 注釈
-------------------------------------------------------- */
.c-note01 > li {
	padding-left: 18px;
	position: relative;
}
.c-note01 > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.c-note01.pb_on > li:not(:last-child) {
	margin: 0 0 4px;
}

@media screen and (max-width: 768px) {
.c-note01 > li {
	padding-left: 16px;
}
}

.c-note02 {
	max-width: 494px;
	width: 100%;
	margin: auto;
}
.c-note02 > li {
	padding-left: 32px;
	position: relative;
}
.c-note02.pb_on > li:not(:last-child) {
	margin: 0 0 4px;
}
.c-note02 > li::before {
	content: "";
	width: 16px;
	height: 11px;
	background-image: url("../img/cmn/icon_check_rd02.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 6px;
	left: 0;
}
@media screen and (max-width: 768px) {
.c-note02 > li {
	padding-left: 20px;
}
.c-note02 > li::before {
	width: 12px;
	height: 9px;
}
}


/* --------------------------------------------------------
	テーブル
-------------------------------------------------------- */
.c-tbl01 th,
.c-tbl01 td {
	letter-spacing: 0;
	padding: 10px 0;
}
.c-tbl01 th {
	width: 210px;
}
@media screen and (max-width: 768px) {
.c-tbl01 th,
.c-tbl01 td {
	width: 100%;
	display: block;
}
.c-tbl01 th {
	padding: 0;
}
.c-tbl01 td {
	padding-bottom: 20px;
}
}



/* --------------------------------------------------------
	プラグイン
-------------------------------------------------------- */
/* Cookie Notice & Compliance for GDPR / CCPA
-------------------------------------------------------- */
#cookie-notice {
	font-size: 16px;
	z-index: 999;
}
#cookie-notice .cn-button { color: #fff !important; }
.cn-close-icon { opacity: 1; }
.cn-close-icon:before,
.cn-close-icon:after { background: #1b1b1b; }
@media screen and (max-width: 768px) {
	#cookie-notice {
		font-size: 14px;
	}
}

/* --------------------------------------------------------
	PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}


/* --------------------------------------------------------
	header
-------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.top_bar,
.hd_wrap {
	position: relative;
	z-index: 3;
}
.top_bar {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .4s;
}
.top_bar > div {
	background: #82040f;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	overflow: hidden;
}
.top_bar_logo {
	max-width: 305px;
}
.top_bar_btn {
	flex: 1 1 auto;
	padding: 0 0 0 24px;
}
.top_bar_btn a {
	color: #fff;
	font-size: min(1.7vw, 17px);
	background: #02c302;
	border-radius: 5px;
	display: block;
	text-align: center;
	overflow: hidden;
	padding: 10px;
	position: relative;
}
.top_bar_btn a::before {
	content: "";
	width: 100%;
	height: 50%;
	background: #02c302;
	mix-blend-mode: multiply;
	opacity: .4;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.top_bar_btn a > div {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
	position: relative;
	z-index: 1;
}
.top_bar_btn a > div::before {
	content: "";
	width: 45px;
	height: 42px;
	background: url("../img/cmn/icon_line_wh.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 21px);
	left: 5px;
}
.top_bar_btn_title {
	font-size: min(2.4vw, 25px);
	margin: 4px 0 0;
}
.top_bar_btn_text span {
	color: #fff100;
}
.hd_wrap {
	height: min(7.3vw, 88px);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	overflow: hidden;
	padding: 0 28px 0 24px;
}
.hd_wrap::after {
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: -120%;
	left: 0;
	transition: .5s;
	z-index: 0;
}
.hd_logo,
.hd_nav,
.hd_wrap .c-sns_list {
	position: relative;
	z-index: 1;
}
.hd_logo {
	max-width: min(21.785vw, 305px);
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.hd_logo a {
	width: 100%;
	display: block;
	overflow: hidden;
	padding-top: 23.4%;
	position: relative;
}
.hd_logo a img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
}
.hd_logo .is_wh {
	opacity: 0;
}
.hd_nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	flex: 1 1 auto;
	padding: 0 min(2.4vw, 44px) 0 0;
}
.hd_nav ul {
	display: -webkit-box;
	display: flex;
}
.hd_nav ul,
.hd_nav ul li,
.hd_nav ul li a {
	height: 100%;
}
.hd_nav ul li:not(:last-child) {
	margin: 0 min(2vw, 32px) 0 0;
}
.hd_nav ul li a {
	font-size: min(1.142vw, 16px);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	position: relative;
}
.hd_nav ul li a::before {
	content: "";
	width: 1px;
	height: calc(50% - min(1.142vw, 16px));
	background: #7d0000;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: .5s;
}
.hd_nav ul li.is_active a,
.hd_nav ul li a:hover {
	color: #7d0000 !important;
	opacity: 1;
}
.hd_nav ul li.is_active a::before,
.hd_nav ul li a:hover::before {
	opacity: 1;
}
.hd_wrap .c-sns_list li:not(:last-child) {
	margin: 0 min(1.1428vw, 16px) 0 0;
}
.hd_wrap .c-sns_list li a {
	width: 100%;
	display: block;
	padding-top: 100%;
	position: relative;
}
.hd_wrap .c-sns_list li a img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
}
.hd_wrap .c-sns_list li,
.hd_wrap .c-sns_list li.is_facebook,
.hd_wrap .c-sns_list li.is_line {
	max-width: inherit;
	width: min(3vw, 36px);
}
.hd_wrap .c-sns_list li a img.is_wh {
	opacity: 0;
}
header.is_top .hd_nav ul li a {
	color: #7d0000;
}
.is_scroll .hd_wrap::after { top: 0; }
.is_scroll header.is_top .hd_logo .is_normal {
	opacity: 1;
}
.is_scroll header.is_top .hd_logo .is_wh {
	opacity: 0;
}
.is_scroll header.is_top .hd_nav ul li a {
	color: #1b1b1b;
}
#hamb { display: none; }
.hamb_nav { display: none; }
.hamb_bg {
	width: 100%;
	height: 100%;
	background: #fff;
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 0;
}
@media screen and (max-width: 1024px) {
.hd_wrap {
	width: 100%;
	height: 88px;
}
.hd_logo {
	max-width: 305px;
}
.hd_nav { display: none; }
.hd_wrap .c-sns_list {
	position: absolute;
	top: 50%;
	right: 115px;
	transform: translateY(-50%);
}
.hd_wrap .c-sns_list li,
.hd_wrap .c-sns_list li.is_facebook,
.hd_wrap .c-sns_list li.is_line {
	width: 36px;
}
#hamb {
	width: 80px;
	height: 80px;
	background: #7d0000;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 40px);
	right: 10px;
	transition: .5s;
	z-index: 2;
}
#hamb .hamb_icon {
	width: 50px;
	height: 17px;
	position: relative;
}
#hamb .hamb_icon span {
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	left: 0;
	transition: .5s;
}
#hamb .hamb_icon span:nth-child(1) {
	top: 0;
}
#hamb .hamb_icon span:nth-child(2) {
	top: calc(100% - 1px);
}
.hamb_nav {
	color: #fff;
	max-width: 480px;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: #82040f;
	display: block;
	overflow: auto;
	padding: 88px 0 40px;
	position: fixed;
	top: 0;
	right: -480px;
	transition: .5s;
	z-index: 1;
}
.hamb_nav_list li {
	border-bottom: solid 1px #fff;
}
.hamb_nav_list li a {
	display: block;
	padding: 16px;
	position: relative;
}
.hamb_nav_list li a::before {
	content: "";
	width: 41px;
	height: 11px;
	background: url("../img/cmn/arrow_r_wh.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 5.5px);
	right: 10px;
}
.hamb_nav_btn {
	margin: 32px 0 0;
	padding: 0 16px;
}
.hamb_nav_btn a {
	color: #fff;
	height: 100%;
	background: #01b101;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	padding: 16px 0;
	position: relative;
}
.hamb_nav_btn a::before,
.hamb_nav_btn a::after {
	content: "";
	position: absolute;
}
.hamb_nav_btn a::before {
	width: 41px;
	height: 11px;
	background: url("../img/cmn/arrow_r_wh.svg") no-repeat;
	background-size: contain;
	top: calc(50% - 5.5px);
	right: 10px;
}
.hamb_nav_btn a::after {
	width: 100%;
	height: 100%;
	background: #02c302;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	mix-blend-mode: multiply;
	opacity: .4;
	top: 0;
	left: 0;
	z-index: 0;
}
.hamb_nav_btn a > div {
	position: relative;
	z-index: 1;
}
.hamb_nav_btn_title {
	font-size: 1.8rem;
}
.hamb_nav_btn_text {
	font-size: 1.4rem;
	margin: 8px 0 0;
}
.hamb_nav_btn_text > span {
	color: #fff100;
}
.hamb_nav_sns {
	margin: 24px 0 0;
}
.is_scroll .hd_wrap::after {
	top: -120%;
}
.is_scroll header .hd_logo,
.is_scroll header.is_top .hd_logo { opacity: 0; }
.is_hamb_open.is_scroll .top_bar {
	grid-template-rows: 0fr;
}

.hd_wrap .c-sns_list li:not(:last-child),
.is_scroll header.is_top .hd_wrap .c-sns_list li:not(:last-child) {
	margin: 0 16px 0 0;
}
.is_scroll .top_bar {
	grid-template-rows: 1fr;
}
.is_scroll .top_bar > div {
	padding: 12px 10px;
}
.is_hamb_open {
	overflow: hidden;
}
.is_hamb_open #hamb .hamb_icon span:nth-child(1),
.is_hamb_open #hamb .hamb_icon span:nth-child(2) {
	top: 7.5px;
}
.is_hamb_open #hamb .hamb_icon span:nth-child(1) {
	transform: rotate(28deg);
}
.is_hamb_open #hamb .hamb_icon span:nth-child(2) {
	transform: rotate(-28deg);
}
.is_hamb_open.is_scroll .top_bar > div {
	padding: 0;
}
.is_hamb_open .hd_wrap::after { top: 0; }
.is_hamb_open.is_scroll .hd_logo,
.is_hamb_open.is_scroll .hd_logo .is_normal,
.is_hamb_open.is_scroll header.is_top .hd_logo,
.is_hamb_open.is_scroll header.is_top .hd_logo .is_normal,
.is_hamb_open header.is_top .hd_logo .is_normal {
	opacity: 1;
}
.is_hamb_open.is_scroll .hd_logo .is_wh,
.is_hamb_open.is_scroll header.is_top .hd_logo .is_wh,
.is_hamb_open header.is_top .hd_logo .is_wh {
	opacity: 0;
}
.is_hamb_open .hamb_nav {
	right: 0;
}
.is_hamb_open .hamb_bg {
	opacity: .7;
	visibility: inherit;
}
}
@media screen and (max-width: 768px) {
.is_scroll .top_bar > div {
	padding: 10px;
}
.top_bar_logo {
	max-width: 177px;
	width: calc(100% - 160px);
}
.top_bar_btn {
	padding: 0 0 0 10px;
}
.top_bar_btn a {
	font-size: 1rem;
}
.top_bar_btn a > div::before {
	width: 22.5px;
	height: 21px;
	top: calc(50% - 10.5px);
	left: 0;
}
.top_bar_btn_title {
	font-size: 1.5rem;
	margin: 2px 0 0;
}
.hd_wrap {
	height: 60px;
	padding: 0 10px;
}
.hd_logo {
	max-width: 190px;
	width: calc(100% - 160px);
}
.hd_nav { display: none; }
.hd_wrap .c-sns_list {
	right: 60px;
}
.hd_wrap .c-sns_list li,
.hd_wrap .c-sns_list li.is_facebook,
.hd_wrap .c-sns_list li.is_line {
	width: 26px;
}
header .hd_wrap .c-sns_list li:not(:last-child),
.is_scroll header.is_top .hd_wrap .c-sns_list li:not(:last-child),
.is_hamb_open header.is_top .hd_wrap .c-sns_list li:not(:last-child) {
	margin: 0 10px 0 0;
}
#hamb {
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
}
#hamb .hamb_icon {
	width: 20px;
	height: 8px;
}
.hamb_nav {
	padding-top: 60px;
}
.hamb_nav_list li a::before,
.hamb_nav_btn a::before {
	width: 30px;
	height: 8px;
	top: calc(50% - 4px);
}
.is_hamb_open #hamb .hamb_icon span:nth-child(1),
.is_hamb_open #hamb .hamb_icon span:nth-child(2) {
	top: 3.75px;
}
}
@media screen and (max-width: 480px) {
.top_bar_btn a {
	font-size: 1.8vw;
	padding: 10px 5px;
}
.top_bar_btn a > div {
	padding: 0 0 0 5.5vw;
}
.top_bar_btn a > div::before {
	width: 5vw;
	height: 5vw;
	top: calc(50% - 2.5vw);
}
.top_bar_btn_title {
	font-size: 2.6vw;
}
}
@media screen and (max-width: 320px) {
.top_bar_btn a {
	font-size: 1.5vw;
}
.top_bar_btn_title {
	font-size: 2.5vw;
}
}

/* --------------------------------------------------------
	footer
-------------------------------------------------------- */
.ft_wrap {
	color: #fff;
	background: #82040f;
	padding: 76px 0;
}
.ft_info,
.ft_nav {
	width: 50%;
}
.ft_logo {
	max-width: 354px;
	width: 100%;
	margin: 0 0 24px;
}
.ft_address {
	line-height: 1.875;
}
footer .c-sns_list {
	margin: 32px 0 0;
}
.ft_nav ul li:not(:last-child) {
	border-bottom: solid 1px #fff;
}
.ft_nav ul li a {
	display: block;
	padding: 20px 36px;
	position: relative;
}
#copyright {
	color: #fff;
	font-size: 1.4rem;
	background: #000;
	text-align: center;
	padding: 10px;
}
.fixed_btn {
	width: 176px;
	height: 176px;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	right: 8px;
	bottom: 10px;
	transition: .5s;
	z-index: 5;
}
#fixed_btn_close {
	width: 30px;
	height: 30px;
	background: #000;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
}
#fixed_btn_close::before {
	content: "";
	width: 15px;
	height: 15px;
	background: url("../img/cmn/icon_close_wh.svg") no-repeat;
	background-size: contain;
	display: block;
}
.fixed_btn.is_shown {
	opacity: 1;
	visibility: inherit;
}
.fixed_btn.is_hide,
.fixed_btn.is_shown.is_hide {
	opacity: 0;
	visibility: hidden;
}
.fixed_btn a {
	width: 100%;
	height: 100%;
	background: #02c302;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	position: relative;
}
.fixed_btn_icon {
	max-width: 45px;
	width: 100%;
}
.fixed_btn_textWrap {
	color: #fff;
	letter-spacing: 0;
	text-align: center;
	margin: -6px 0 0;
}
.fixed_btn_title {
	font-size: 2.4rem;
	line-height: 1.3;
}
.fixed_btn_title > span:not(.ls_small),
.fixed_btn_text > span:not(.ls_small) {
	color: #ffff00;
}
.fixed_btn_title > span:not(.ff_yakuHan) span {
	font-size: 3.25rem;
}
.fixed_btn_text {
	font-size: 1.3rem;
	letter-spacing: -.075em;
	margin: 2px 0 0;
}
.fixed_btn_text .ls_small {
	display: inline-block;
	margin-right: -6px;
}

@media screen and (max-width: 768px) {
.ft_wrap {
	padding: 40px 0 0;
}
.ft_wrap .inner,
.ft_info,
.ft_nav {
	width: 100%;
}
.ft_info {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	margin: 0 0 40px;
}
.ft_logo {
	max-width: 255px;
	width: 90%;
	margin: 0 0 16px;
}
footer .c-sns_list {
	margin: 20px 0 0;
}
.ft_nav {
	border-top: solid 1px #fff;
}
.ft_nav ul li a {
	padding: 16px 20px;
}
.ft_nav ul li a::after {
	content: "";
	width: 30px;
	height: 8px;
	background: url("../img/cmn/arrow_r_wh.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 4px);
	right: 20px;
}
#copyright {
	font-size: 1rem;
}
.fixed_btn {
	width: 150px;
	height: 150px;
}
#fixed_btn_close {
	width: 24px;
	height: 24px;
}
#fixed_btn_close::before {
	width: 10px;
	height: 10px;
}
.fixed_btn a::before {
	width: 28px;
	height: 31px;
	top: 10px;
	right: 10px;
}
.fixed_btn_icon {
	max-width: 27px;
}
.fixed_btn_textWrap {
	margin: 0;
}
.fixed_btn_title {
	font-size: 1.6rem;
}
.fixed_btn_title > span:not(.ff_yakuHan) span {
	font-size: 2rem;
}
.fixed_btn_text {
	font-size: 1.2rem;
	margin: 0;
}
.fixed_btn_text .ls_small {
	margin-right: -4px;
}
}

.c-cta {
	background-image: url("../img/cmn/cta_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}
.c-cta_list li {
	width: 48%;
}
.c-cta_list li a {
	color: #fff;
	height: 100%;
	background: #01b101;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	padding: 24px 0;
	position: relative;
}
.c-cta_list li a::before,
.c-cta_list li a::after {
	content: "";
	position: absolute;
}
.c-cta_list li a::before {
	width: 41px;
	height: 11px;
	background: url("../img/cmn/arrow_r_wh.svg") no-repeat;
	background-size: contain;
	top: calc(50% - 5.5px);
	right: min(0.7vw, 10px);
}
.c-cta_list li a::after {
	width: 100%;
	height: 100%;
	background: #02c302;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	mix-blend-mode: multiply;
	opacity: .4;
	top: 0;
	left: 0;
	z-index: 0;
}
.c-cta_list li:nth-child(1) a {
	background: #82040f;
}
.c-cta_list li:nth-child(1) a::after {
	background: #7d0000;
	opacity: .3;
}
.c-cta_list li a > div {
	position: relative;
	z-index: 1;
}
.c-cta_list_title {
	font-size: min(1.9vw, 25px);
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 10px;
}
.c-cta_list_text {
	font-size: min(1.4vw, 18px);
}
.c-cta_list_text span {
	color: #fff100;
}
@media screen and (min-width: 1025px) {
.c-cta_list li {
	margin-right: 4%;
}
.c-cta_list li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
.c-cta_list li {
	width: 100%;
}
.c-cta_list li:not(:last-child) {
	margin: 0 0 20px;
}
.c-cta_list_title {
	font-size: 2.5rem;
}
.c-cta_list_text {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
.c-cta {
	background-image: url("../img/cmn/cta_bg_sp.jpg");
	padding: 64px 0;
}
.c-cta_list li a {
	padding: 20px 0;
}
.c-cta_list li:nth-child(1) a {
	padding: 28px 0;
}
.c-cta_list li a::before {
	width: 30px;
	height: 8px;
	top: inherit;
	right: 7px;
	bottom: 15px;
}
.c-cta_list_title {
	font-size: 1.8rem;
}
.c-cta_list_text {
	font-size: 1.5rem;
}
.c-cta_list li:nth-child(2) .c-cta_list_text::before {
	content: "LINEに登録して";
}
}
@media screen and (max-width: 480px) {
.c-cta_list_title {
	font-size: 4.8vw;
}
.c-cta_list_text {
	font-size: 4vw;
}
}

/* --------------------------------------------------------
	トップページ
-------------------------------------------------------- */
/* メインビジュアル
-------------------------------------------------------- */
#mv {
	min-height: 750px;
	height: 100svh;
	position: relative;
}
.mv_list {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.mv_list .img {
	width: 100%;
	height: 100%;
}
/*.mv_list .swiper-slide-active .img img,
.mv_list .swiper-slide-duplicate-active .img, img
.mv_list .swiper-slide-prev .img img {
transform: translateX(-2rem);
transition: transform 8s linear;
}
*/
.mv_list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mv_textWrap {
	position: relative;
	z-index: 1;
}
.mv_textWrap,
.mv_textWrap .inner {
	height: 100%;
}
.mv_textWrap .inner {
	position: relative;
}
.mv_copy {
	color: #fff;
	font-size: min(2.666vw, 32px);
	text-shadow: 
		rgba(188, 138, 84, 0.6) 1px 1px 20px, rgba(188, 138, 84, 0.6) -1px 1px 20px,
		rgba(188, 138, 84, 0.6) 1px -1px 20px, rgba(188, 138, 84, 0.6) -1px -1px 20px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0;
	position: absolute;
	top: 13%;
	right: 0;
	z-index: 2;
}
.mv_copy span {
	font-size: min(4vw, 48px);
}
.mv_logo_main {
	color: #7d0000;
	line-height: 1;
}
.mv_logo_main .en {
	font-size: min(16.666vw, 200px);
}
.mv_logo_main .ja {
	font-size: min(4.166vw, 50px);
	text-align: right;
	margin: 8px -20px 0 0;
}
.mv_logo_sub {
	font-size: min(2.5vw, 30px);
	width: 100%;
	text-align: center;
	line-height: 1.3;
	margin: 24px 0 0;
}
.mv_logo_sub span {
	font-size: min(4vw, 48px);
}
.mv_management {
	margin: 24px 0 0;
}
.mv_management_main {
	margin: 0 0 16px;
}
.mv_management_main ul li {
	color: #7d0000;
	font-size: min(2vw, 24px);
	font-weight: 700;
	max-width: min(12vw, 144px);
	width: 100%;
	background: #fff;
	border: solid 1px #7d0000;
	border-radius: 100px;
	text-align: center;
	padding: 2px;
}
.mv_management_main ul li:not(:last-child) {
	margin: 0 6px 0 0;
}
.mv_management_sub {
	max-width: 521px;
	width: 100%;
	margin: auto;
}
.mv_management_sub ul li {
	color: #fff;
	font-size: min(1.6666vw, 20px);
	width: 23%;
	background: rgba(125, 0, 0, .8);
	border: solid 1px rgba(255, 255, 255, .8);
	border-radius: 5px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	line-height: 1.5;
	text-align: center;
	padding-top: 23%;
	position: relative;
}
.mv_management_sub ul li:not(:last-child) {
	margin: 0 2.6666% 0 0;
}
.mv_management_sub ul li span {
	width: 100%;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
.mv_logo {
	text-shadow:
		0px 0px 10px rgba(255, 255, 255, 0.5),
		0px 0px 10px rgba(255, 255, 255, 0.5),
		0px 0px 10px rgba(255, 255, 255, 0.5);
}
}
@media screen and (max-width: 768px) {
#mv {
	min-height: inherit;
	height: auto;
}
.mv_list {
	position: relative;
}
.mv_textWrap {
	background: #7d0000;
	padding: 0 0 48px;
}
.mv_textWrap .inner {
	-webkit-box-align: center;
	align-items: center;
}
.mv_textWrap .inner > div {
	width: 100%;
}
.mv_copy {
	font-size: 2rem;
	letter-spacing: 0;
	position: absolute;
	top: 80px;
	right: 7.4666%;
}
.mv_copy span {
	font-size: 2.6rem;
}
.mv_logo,
.mv_logo_main {
	color: #fff;
}
.mv_logo {
	margin-top: max(-17.0666vw, -64px);
}
.mv_logo_main {
	max-width: 308px;
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	margin: auto;
}
.mv_logo_main .en {
	font-size: 11rem;
}
.mv_logo_main .ja {
	width: 100%;
	font-size: 2.5rem;
	margin-right: 0;
}
.mv_logo_sub {
	font-size: 2.3rem;
	margin: 16px 0 0;
}
.mv_logo_sub span {
	font-size: 3.5rem;
}
.mv_management_main ul li,
.mv_management_sub ul li {
	font-size: 1.5rem;
}
.mv_management_main ul li {
	max-width: 90px;
}
}
@media screen and (max-width: 480px) {
.mv_logo_main .en {
	font-size: 29.3333vw;
}
.mv_logo_main .ja {
	font-size: 6.6666vw;
}
.mv_logo_sub {
	font-size: 6.1333vw;
}
.mv_logo_sub span {
	font-size: 9.3333vw;
}
.mv_management_main ul li,
.mv_management_sub ul li {
	font-size: 4vw;
}
}


/* 無料体験レッスン実施中
-------------------------------------------------------- */
#line {
	background: #7d0000;
	text-align: center;
	padding: 16px 2.5% 0;
	position: relative;
}
#line::after {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	border-style: solid;
	border-width: 25px 24px 0px 24px;
	border-color: #7d0000 transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.line_text {
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 0;
	margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
#line {
	padding-top: 0;
}
#line::after {
	border-width: 15px 15px 0px 15px;
}
}
@media screen and (max-width: 480px) {
.line_text {
	font-size: 3.7333vw;
}
}

/* syokoサロンアカデミーはこんな方におすすめです
-------------------------------------------------------- */
#top_academy {
	overflow: hidden;
	position: relative;
	padding: 90px 0;
}
#top_academy .inner {
	position: relative;
	z-index: 1;
}
#top_academy .butterfly {
	max-width: 449px;
	width: 100%;
	position: absolute;
	right: 0;
	z-index: 0;
}
.top_academy_list li {
	width: 18.3333%;
	margin-right: 2.083375%;
	position: relative;
}
.top_academy_list li::before {
	content: "";
	width: 31px;
	height: 31px;
	background: url("../img/cmn/icon_check_rd.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: -10px;
	left: -10px;
}
.top_academy_list_img img {
	width: 100%;
}
.top_academy_list_text {
	color: #1a0b0c;
	font-size: min(1.5vw, 18px);
	background: #eee;
	letter-spacing: 0;
	text-align: center;
	padding: 20px 0;
	position: relative;
}
.top_academy_list_text::after {
	content: "";
	width: 100%;
	height: 100%;
	background: #dcdcdc;
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.top_academy_list_text span {
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 1025px) {
#top_academy .butterfly {
	top: 64px;
}
.top_academy_list li:nth-child(5n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
#top_academy .butterfly {
	max-width: 250px;
	mix-blend-mode: multiply;
	bottom: 0;
}
.top_academy_list li {
	width: 31.9444166666%;
	margin-top: 32px;
}
.top_academy_list li:nth-child(-n + 3) {
	margin-top: 0;
}
.top_academy_list li:nth-child(3n),
.top_academy_list li:last-child {
	margin-right: 0;
}
.top_academy_list_text {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
#top_academy {
	padding: 80px 0;
}
#top_academy .butterfly {
	max-width: 165px;
	width: 44%;
	top: 40px;
	bottom: inherit;
}
.top_academy_list li {
	width: 48%;
}
.top_academy_list li,
.top_academy_list li:nth-child(-n + 3) {
	margin-top: 32px;
}
.top_academy_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.top_academy_list li,
.top_academy_list li:nth-child(3n),
.top_academy_list li:last-child {
	margin-right: 4%;
}
.top_academy_list li:nth-child(2n) {
	margin-right: 0;
}
.top_academy_list li::before {
	width: 23px;
	height: 23px;
	top: -7px;
	left: -7px;
}
.top_academy_list_text {
	font-size: 1.5rem;
	padding: 15px 0;
}
}


/* ABOUT US
-------------------------------------------------------- */
#top_about {
	padding: 100px 0 80px;
	position: relative;
}
#top_about .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	clip-path: inset(0);
	z-index: -1;
}
#top_about .bg::before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../img/top/about_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
}
#top_about .head {
	margin: 0 0 88px;
}
#top_about .c-en_title {
	margin: 0 0 24px;
}
#top_about .c-en_title .circle {
	margin-bottom: 32px;
}
#top_about .head_text {
	max-width: 517px;
	width: 68.9%;
	text-align: center;
	margin: auto;
}
.top_about_list li {
	width: 46.6666%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.top_about_list li:not(:last-child) {
	margin: 0 6.6668% 0 0;
}
.top_about_list_textWrap {
	background: rgba(255, 255, 255, .7);
	flex: 1 1 auto;
	padding: 24px;
}
.top_about_list_title {
	font-size: 2.6rem;
	max-width: 310px;
	text-align: center;
	margin: auto;
}
.top_about_list_text {
	line-height: 2.25;
	margin: 12px 0 0;
}
.top_about_list .c-link_wrap {
	margin: 24px 0 0;
}
@media screen and (max-width: 768px) {
#top_about {
	padding: 64px 0;
}
#top_about .head {
	margin: 0 0 56px;
}
#top_about .c-en_title .ja img {
	width: 88%;
}
.top_about_list li {
	width: 100%;
}
.top_about_list li:not(:last-child) {
	margin: 0 0 32px;
}
.top_about_list_textWrap {
	padding: 24px 16px;
}
.top_about_list_title {
	font-size: 2.4rem;
}
}


/* syokoサロンアカデミー生の声
-------------------------------------------------------- */
#top_voice {
	overflow: hidden;
	padding: 98px 0;
}
#top_voice .c-link_wrap {
	margin: 40px 0 0;
}
.c-voice_list a {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	background: #f9f8f5;
}
.c-voice_list_img {
	text-align: center;
	padding: 18px 18px 0;
}
.c-voice_list_nameWrap {
	text-align: center;
	padding: 18px 4px;
}
.c-voice_list_job {
	letter-spacing: 0;
	margin: 0 0 4px;
}
.c-voice_list_name {
	font-size: 2.4rem;
}
.c-voice_list_name span {
	font-size: 3rem;
	display: inline-block;
	margin: 0 8px 0 0;
}
.c-voice_list_title {
	color: #bc8a54;
	font-size: 2rem;
	border-top: solid 1px #bc8a54;
	padding: 18px 12px 24px;
}
.c-voice_list_title br.is_pc {
	display: none;
}
.is_grid.c-voice_list > li {
	width: 32%;
	margin-top: 40px;
	margin-right: 2%;
}
@media screen and (min-width: 1025px) {
.is_grid.c-voice_list > li:nth-child(-n + 3) {
	margin-top: 0;
}
.is_grid.c-voice_list > li:nth-child(3n) {
	margin-right: 0;
}
}
.swiper.c-voice_list {
	width: 85%;
	overflow: visible;
}
.swiper.c-voice_list .swiper-slide {
	height: auto;
}
.swiper.c-voice_list .swiper-slide a {
}
@media screen and (max-width: 1024px) {
.is_grid.c-voice_list > li {
	width: 49%;
}
.is_grid.c-voice_list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.is_grid.c-voice_list > li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (min-width: 1025px) {
.swiper.c-voice_list .c-voice_list_job {
	font-size: min(1vw, 1.4rem);
}
.swiper.c-voice_list .c-voice_list_name {
	font-size: min(1.57vw, 2.2rem);
}
.swiper.c-voice_list .c-voice_list_name span {
	font-size: min(2vw, 2.8rem);
}
.swiper.c-voice_list .c-voice_list_title {
	font-size: min(1.2857vw, 1.8rem);
}
}
@media screen and (max-width: 768px) {
#top_voice {
	padding: 64px 0;
}
#top_voice .c-link_wrap {
	margin: 24px 0 0;
}
.is_grid.c-voice_list > li {
	width: 100%;
	margin-right: 0;
}
.is_grid.c-voice_list > li,
.is_grid.c-voice_list > li:nth-child(-n + 2) {
	margin-top: 24px;
}
.is_grid.c-voice_list > li:nth-child(1) {
	margin-top: 0;
}
.c-voice_list_name {
	font-size: 1.8rem;
}
.c-voice_list_name span {
	font-size: 2rem;
}
.c-voice_list_title {
	font-size: 1.6rem;
}
}

/* 講座のご紹介
-------------------------------------------------------- */
#top_lesson {
	background: #7d0000;
	padding: 80px 0 140px;
}
#top_lesson .c-en_title {
	margin: 0 0 100px;
}
#top_lesson .list_wrap {
	padding: 80px 0 8px;
	position: relative;
}
#top_lesson .list_wrap::before {
	content: "";
	width: 100vw;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 33.3333%;
	z-index: 0;
}
.top_lesson_list {
	position: relative;
	z-index: 1;
}
.top_lesson_list li {
	position: relative;
	z-index: 1;
}
.top_lesson_list li:not(:last-child) {
	margin: 0 0 50px;
}
.top_lesson_list li a {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.top_lesson_list_img,
.top_lesson_list_textWrap {
	position: relative;
}
.top_lesson_list_img {
	width: 67%;
	margin-left: -14%;
	z-index: 0;
}
.top_lesson_list_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	object-fit: cover;
	transition: .5s;
}
.top_lesson_list_textWrap {
	width: 47%;
	letter-spacing: 0;
	padding: 48px 0;
	transition: .5s;
	z-index: 1;
}
.top_lesson_list_textWrap > div {
	background: #fff;
	padding: 32px 24px 56px;
	position: relative;
}
.top_lesson_list li:nth-child(3) .top_lesson_list_textWrap > div::before,
.top_lesson_list_textWrap > div::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
}
.top_lesson_list_textWrap > div::after {
	width: 60px;
	height: 17px;
	background-image: url("../img/cmn/arrow_r_rd.svg");
	right: 18px;
	bottom: 16px;
}
.top_lesson_list li:nth-child(3) .top_lesson_list_textWrap > div::before {
	width: min(36.75vw, 588px);
	height: min(51.5625vw, 825px);
	background-image: url("../img/top/butterfly02.jpg");
	mix-blend-mode: multiply;
	bottom: max(-8.5vw, -115px);
	right: 32%;
	pointer-events: none;
	z-index: 0;
}
.top_lesson_list li:nth-child(3) {
	z-index: 0;
}
.top_lesson_list li:nth-child(3) a:hover {
	opacity: 1;
}
.top_lesson_list li:nth-child(3) a:hover .top_lesson_list_textWrap,
.top_lesson_list li:nth-child(3) a:hover .top_lesson_list_img img{
	opacity: .5;
}
.top_lesson_list_title,
.top_lesson_list_price,
.top_lesson_list_text {
	position: relative;
	z-index: 1;
}
.top_lesson_list_title {
	font-size: 3.6rem;
	margin: 0 0 8px;
}
.top_lesson_list_price {
	color: #bc8a54;
	font-size: 1.8rem;
	margin: 0 0 16px;
}
.top_lesson_list_price span {
	font-size: 2.4rem;
}
.top_lesson_list_text {
	line-height: 2.25;
}
#top_lesson .c-link_wrap {
	color: #fff;
	margin: 56px 0 0;
}
@media screen and (max-width: 1024px) {
#top_lesson .inner {
	width: 100%;
}
#top_lesson .c-en_title {
	margin: 0 0 88px;
}
#top_lesson .list_wrap {
	padding: 0;
}
#top_lesson .list_wrap::before {
	content: none;
}
.top_lesson_list_img,
.top_lesson_list_textWrap {
	width: 100%;
}
.top_lesson_list_img {
	padding-top: 50.6666%;
}
.top_lesson_list_textWrap {
	margin: -20px 0 0;
	padding: 0;
}
.top_lesson_list_textWrap > div {
	width: 92%;
	margin: auto;
}
.top_lesson_list li:nth-child(3) .top_lesson_list_textWrap > div::before { content: none; }
.top_lesson_list_title,
.top_lesson_list_price {
	text-align: center;
}
#top_lesson .c-link_wrap {
	padding: 0 4%;
}
}
@media screen and (max-width: 768px) {
#top_lesson {
	padding: 56px 0 64px;
}
#top_lesson .c-en_title {
	margin: 0 0 40px;
}
.top_lesson_list li:not(:last-child) {
	margin: 0 0 40px;
}
.top_lesson_list_textWrap > div {
	padding: 24px 16px;
}
.top_lesson_list_textWrap > div::after {
	width: 30px;
	height: 8.5px;
	right: 10px;
	bottom: 10px;
}
.top_lesson_list_title {
	font-size: 2.4rem;
	margin: 0;
}
.top_lesson_list_price {
	font-size: 1.3rem;
}
.top_lesson_list_price span {
	font-size: 1.8rem;
}
.top_lesson_list_text {
	line-height: 1.7;
}
#top_lesson .c-link_wrap {
	margin: 32px 0 0;
}
}

/* instagram
-------------------------------------------------------- */
#instagram {
	overflow: hidden;
	padding: 100px 0 0;
}
@keyframes tor {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0%);
	}
}
@keyframes tol {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
#insta_list {
	display: -webkit-box;
	display: flex;
}
#insta_list li a {
	background-color: #eee;
	display: block;
	overflow: hidden;
	padding-top: 132%;
	position: relative;
}
#insta_list li:nth-child(even) a {
	background-color: #ccc;
}
#insta_list li a img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
@media screen and (min-width: 769px) {
.scroll_infinity.tor li {
	animation: tor 20s infinite linear 0.5s both;
}
.scroll_infinity.tol li {
	animation: tol 20s infinite linear 0.5s both;
}
#insta_list li {
	min-width: min(29.8vw, 400px);
	margin-right: 8px;
}
}
@media screen and (max-width: 768px) {
#instagram {
	padding: 64px 0 0;
}
#insta_list {
	flex-wrap: wrap;
}
#insta_list li {
	width: 33.3333%;
}
}


/* お知らせ
-------------------------------------------------------- */
#top_news { padding: 100px 0 72px; }
#top_news .c-en_title {
	margin: 0 0 24px;
}
.c-news_list li:not(:last-child) {
	margin: 0 0 20px;
}
.c-news_list li a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 20px 16px;
}
.c-news_list li a:hover {
	background: #f9f8f5;
	opacity: 1;
}
.c-news_list li a > div {
	max-width: 1000px;
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
}
.c-news_list .c-news_date,
.c-news_list .c-news_category {
	position: relative;
}
.c-news_list .c-news_date::after,
.c-news_list .c-news_category::after {
	content: "";
	width: 1px;
	height: 20px;
	background: #535353;
	position: absolute;
	top: calc(50% -10px);
	right: -1px;
}
.c-news_list .c-news_date {
	min-width: 116px;
}
.c-news_list .c-news_category {
	min-width: 110px;
	text-align: center;
}
.c-news_list .c-news_title {
	flex: 1 1 auto;
	text-decoration: underline;
	padding: 0 48px 0 32px;
	transition: .5s;
	position: relative;
}
.c-news_list .c-news_title::after {
	content: "";
	width: 41px;
	height: 12px;
	background: url("../img/cmn/arrow_r_rd.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 6px);
	right: 0;
}
.c-news_list li a:hover .c-news_title {
	text-decoration: none;
}
#top_news .c-link_wrap {
	margin: 32px 0 0;
}
@media screen and (max-width: 768px) {
#top_news {
	padding-top: 64px;
}
.c-news_list li a {
	padding: 16px 4.6667%;
}
.c-news_list li:not(:last-child) {
	margin: 0 0 0;
}
.c-news_list li a > div {
	flex-wrap: wrap;
}
.c-news_list .c-news_date,
.c-news_list .c-news_category {
	min-width: inherit;
}
.c-news_list .c-news_date {
	padding: 0 20px 0 0;
}
	.c-news_list .c-news_category {
		padding: 0 20px;
	}
.c-news_list .c-news_category::after {
	content: none;
}
.c-news_list .c-news_title {
	width: 100%;
	margin: 10px 0 0;
	padding: 0 32px 0 0;
}
.c-news_list .c-news_title::after {
	width: 30px;
	height: 8px;
	top: calc(50% - 4px);
}
#top_news .c-link_wrap {
	padding: 0 4.6667%;
}
}


/* --------------------------------------------------------
	下層ページ共通
-------------------------------------------------------- */
/* ページタイトル
-------------------------------------------------------- */
.page_head {
	padding: 160px 0 72px;
	position: relative;
}
.page_head .c-en_title {
	position: relative;
	z-index: 1;
}
.page_head img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
.page_head {
	padding: 88px 0 56px;
}
}
.c-section {
	padding: 98px 0;
}
@media screen and (max-width: 768px) {
.c-section {
	padding: 48px 0 64px;
}
}

/* パンくず
-------------------------------------------------------- */
#breadcrumb {
	padding: 20px 0 0;
}
#breadcrumb ul,
#breadcrumb ul li {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
#breadcrumb ul li:not(:last-child) {
	color: #d2d2d2;
}
#breadcrumb ul li:not(:last-child)::after {
	content: ">";
	color: #d2d2d2;
	margin: 0 10px;
}
@media screen and (max-width: 768px) {
#breadcrumb {
	padding: 12px 0 0;
}
}

/* ナビゲーション
-------------------------------------------------------- */
.page_nav {
	margin: 72px 0 120px;
}
.page_nav ul li {
	width: 25%;
	position: relative;
}
.page_nav ul li:nth-child(1)::before,
.page_nav ul li::after {
	content: "";
	width: 1px;
	height: 100%;
	background: #7d0000;
	position: absolute;
	top: 0;
}
.page_nav ul li:nth-child(1)::before {
	left: 0;
}
.page_nav ul li::after {
	right: 0;
}
.page_nav ul li a {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	text-align: center;
	padding: 10px 0;
}
.page_nav .icon {
	height: 49px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.page_nav .icon img {
	max-width: 49px;
}
.page_nav ul li:nth-child(3) .icon img {
	max-width: 46px;
}
.page_nav .text {
	color: #7d0000;
	font-size: 1.8rem;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	flex: 1 1 auto;
	line-height: 1.25;
	margin: 6px 0 0;
}
.page_nav .text br { display: none; }
.page_nav .text > div {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	flex: 1 1 auto;
	margin: 0 0 6px;
}
.page_nav .text::after {
	content: "";
	width: 18px;
	height: 10px;
	background: url("../img/cmn/arrow_b_rd.svg") no-repeat;
	background-size: contain;
	display: block;
	margin-top: auto;
}
@media screen and (max-width: 1024px) {
.page_nav .text br { display: block; }
}
@media screen and (max-width: 768px) {
.page_nav {
	margin: 24px 0 64px;
}
.page_nav ul li:nth-child(1)::before,
.page_nav ul li:last-child::after {
	content: none;
}
.page_nav ul li a {
	padding: 4px 0;
}
.page_nav .icon {
	height: 30px;
}
.page_nav .icon img {
	max-width: 30px;
}
.page_nav ul li:nth-child(3) .icon img {
	max-width: 27px;
}
.page_nav .text {
	font-size: 1.2rem;
}
.page_nav .text::after {
	width: 9px;
	height: 5px;
}
}
@media screen and (max-width: 480px) {
.page_nav .text {
	font-size: 3.2vw;
}
}


/* --------------------------------------------------------
	syokoサロンアカデミーとは
-------------------------------------------------------- */
/* アカデミーについて
-------------------------------------------------------- */
#about_academy {
	color: #1b1b1b;
	letter-spacing: 0;
	padding: 0 0 90px;
}
.about_academy_title {
	font-size: 3rem;
	text-align: center;
	margin: 0 0 40px;
}
.about_academy_flexWrap_img {
	width: 39%;
	margin: 0 4% 0 0;
}
.about_academy_flexWrap_text {
	width: 57%;
	line-height: 2.25;
}
.about_academy_flexWrap_text p:not(:last-child) {
	margin: 0 0 40px;
}
@media screen and (max-width: 1024px) {
.about_academy_title .is_sp {
	display: block;
}
.about_academy_flexWrap {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.about_academy_flexWrap_img,
.about_academy_flexWrap_text {
	width: 100%;
}
.about_academy_flexWrap_img {
	max-width: 472px;
	margin: 0 0 24px;
}
}
@media screen and (max-width: 768px) {
#about_academy {
	padding: 0 0 56px;
}
.about_academy_title {
	font-size: 1.8rem;
	margin: 0 0 24px;
}
.about_academy_flexWrap_text p:not(:last-child) {
	margin: 0 0 24px;
}
}

.about_academy_list {
	margin: 56px 0 0;
}
.about_academy_list li {
	width: 46%;
	text-align: center;
	margin-top: 40px;
	margin-right: 8%;
}
.about_academy_list_img {
	margin: 0 0 16px;
}
.about_academy_list_title {
	color: #7d0000;
	font-size: 2.4rem;
	margin: 0 0 16px;
}
@media screen and (min-width: 769px) {
.about_academy_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.about_academy_list li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.about_academy_list li {
	width: 100%;
	margin-right: 0;
}
.about_academy_list li:nth-child(1) {
	margin-top: 0;
}
.about_academy_list_title {
	font-size: 1.8rem;
	margin: 0 0 10px;
}
}

/* 講座内容
-------------------------------------------------------- */
#about_lecture {
	color: #1b1b1b;
	background: #f9f8f5;
	letter-spacing: 0;
	padding: 80px 0 100px;
}
.about_lecture_head {
	text-align: center;
	margin: 0 0 40px;
}
.about_lecture_head_title {
	font-size: 3rem;
}
.about_lecture_head_text {
	font-size: 2.4rem;
	margin: 10px 0 0;
}
.about_lecture_content {
	max-width: 1600px;
	width: 100%;
	margin: auto;
	padding: 140px 0 0;
	position: relative;
}
.about_lecture_content_img {
	width: 62.5%;
	height: calc(100% - 40px);
	position: absolute;
	top: 0;
	right: 37.5%;
	z-index: 0;
}
.about_lecture_content_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	object-fit: cover;
}
.about_lecture_content_textWrap {
	max-width: 600px;
	width: 52%;
	position: relative;
	z-index: 1;
}
.about_lecture_step {
	background: #fff;
}
.about_lecture_step > div {
	display: -webkit-box;
	display: flex;
	padding: 16px 0;
}
.about_lecture_step > div:nth-child(even) {
	background: #f9f8f5;
}
.about_lecture_step dt {
	color: #bc8a54;
	font-size: 1.8rem;
	width: 138px;
	text-align: center;
}
.about_lecture_step dd {
	width: calc(100% - 138px);
	padding: 4px 16px 0 0;
}
.about_lecture_content .c-btn_wrap {
	margin: 40px 0 0;
	padding: 0 4%;
}
.about_lecture_content .c-btn_wrap .c-btn01 {
	width: 98%;
}
@media screen and (max-width: 1024px) {
.about_lecture_head_text .is_sp {
	display: block;
}
.about_lecture_content {
	padding: 0;
}
.about_lecture_content .inner {
	width: 100%;
	-webkit-box-pack: center;
	justify-content: center;
}
.about_lecture_content_img {
	width: 100%;
	padding-top: 60%;
	position: relative;
	right: 0;
}
.about_lecture_content_textWrap {
	width: 100%;
	margin: 30px 0 0;
}
}
@media screen and (max-width: 768px) {
#about_lecture {
	padding: 64px 0;
}
.about_lecture_head {
	margin: 0 0 24px;
}
.about_lecture_head_title {
	font-size: 2.4rem;
}
.about_lecture_head_text {
	font-size: 1.4rem;
}
.about_lecture_content_textWrap {
	margin: 16px 0 0;
}
.about_lecture_step dt {
	font-size: 1.4rem;
	width: 88px;
}
.about_lecture_step dd {
	font-size: 1.3rem;
	width: calc(100% - 88px);
	padding: 3px 10px 0 0;
}
.about_lecture_content .c-btn_wrap {
	margin: 16px 0 0;
}
}

/* こんな方におすすめ
-------------------------------------------------------- */
#about_recommend {
	padding: 72px 0 100px;
}
#about_recommend .c-border_title.is_icon .icon {
	max-width: 46px;
}
.about_recommend_list > li {
	width: 32%;
	background: #f9f8f5;
	letter-spacing: 0;
	margin-right: 2%;
}
.about_recommend_list_text {
	font-size: min(1.8vw, 24px);
	text-align: center;
	padding: 24px 8px 16px;
}
.about_recommend_list_text span {
	font-size: min(1.23vw, 16px);
}
.about_recommend_list .c-note02 {
	margin: 0 0 32px;
	padding: 0 24px;
}
.about_recommend_list_img img {
	width: 100%;
}
.about_recommend_list_title {
	color: #fff;
	font-size: min(1.5vw, 20px);
	background: #7d0000;
	text-align: center;
	padding: 12px 8px;
	position: relative;
}
.about_recommend_list_title::before {
	content: "";
	width: 41px;
	height: 11px;
	background: url(../img/cmn/arrow_r_wh.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 5.5px);
	right: 10px;
}
@media screen and (min-width: 1025px) {
.about_recommend_list li:nth-child(3n) {
	margin-right: 0;
}
.about_recommend_list .c-note02 > li {
	font-size: min(1.23vw, 16px);
}
.about_recommend_list .c-note02 > li {
	padding-left: min(2.46vw, 32px);
}
.about_recommend_list .c-note02 > li::before {
	width: min(1.23vw, 16px);
	height: min(0.846vw, 11px);
	top: min(0.46vw, 6px);
}
}
@media screen and (max-width: 1024px) {
.about_recommend_list > li {
	width: 49%;
	margin-top: 32px;
	margin-right: 2%;
}
.about_recommend_list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.about_recommend_list > li:nth-child(2n) {
	margin-right: 0;
}
.about_recommend_list_text {
	font-size: 2.4rem;
}
.about_recommend_list_text span {
	font-size: 1.6rem;
}
.about_recommend_list_title {
	font-size: 2rem;
}
}
@media screen and (max-width: 768px) {
#about_recommend {
	padding: 64px 0;
}
#about_recommend .c-border_title.is_icon .icon {
	max-width: 27px;
}
.about_recommend_list > li {
	width: 100%;
	margin-right: 0;
}
.about_recommend_list > li,
.about_recommend_list > li:nth-child(-n + 2) {
	margin-top: 16px;
}
.about_recommend_list > li:nth-child(1) {
	margin-top: 0;
}
.about_recommend_list .c-note02 {
	margin: 0 0 16px;
	padding: 0 16px;
}
.about_recommend_list_text {
	font-size: 2rem;
}
.about_recommend_list_text span {
	font-size: 1.4rem;
}
.about_recommend_list_title {
	font-size: 1.5rem;
	padding: 12px 8px;
}
.about_recommend_list_title::before {
	width: 30px;
	height: 8px;
	top: calc(50% - 4px);
}
}
@media screen and (max-width: 480px) {
.about_recommend_list_text {
	font-size: 5.333vw;
}
.about_recommend_list_text span {
	font-size: 3.7vw;
}
.about_recommend_list_title {
	font-size: 4vw;
}
}

/* 入学の流れ
-------------------------------------------------------- */
#about_flow {
	color: #1b1b1b;
	background: #f9f8f5;
	letter-spacing: 0;
	padding: 80px 0 100px;
}
.about_flow_list > li {
	width: 25%;
	display: -webkit-box;
	display: flex;
}
.about_flow_list_img {
	width: min(16vw, 160px);
	height: min(16vw, 160px);
	border: solid 1px #bc8a54;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 0 6px;
	position: relative;
}
.about_flow_list_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.about_flow_list_title {
	color: #bc8a54;
	font-size: min(2.3vw, 24px);
	width: 100%;
	margin: 0 0 16px;
	position: relative;
}
.about_flow_list_title span {
	width: 10px;
	height: 10px;
	background: #bc8a54;
	border-radius: 50%;
	display: block;
	margin: 4px 0 0;
}
.about_flow_list_title::before,
.about_flow_list_title::after {
	content: "";
	height: 1px;
	background: #bc8a54;
	position: absolute;
}
.about_flow_list_title::before {
	width: 100vw;
	right: 0;
	bottom: 5px;
}
.about_flow_list_title::after {
	width: 13px;
	right: -1px;
	bottom: 10px;
	transform: rotate(-135deg);
}
.about_flow_list > li:not(:last-child) .about_flow_list_title::after {
	opacity: 0;
}
.about_flow_list_info dt {
	font-size: min(1.8vw, 18px);
	text-align: center;
	margin: 0 0 16px;
}
.about_flow_list_info dd {
	font-size: min(1.6vw, 16px);
	line-height: 1.75;
	padding: 0 16px;
}
.about_flow_list_info dd span {
	font-size: min(1.4vw, 14px);
}
.about_flow_list_info .c-note01 > li {
	padding-left: min(1.6vw, 16px);
}
#about_flow .c-btn_wrap {
	margin: 64px 0 0;
}
@media screen and (min-width: 769px) {
.about_flow_list > li {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.about_flow_list_title {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
}
}
@media screen and (max-width: 768px) {
#about_flow {
	padding: 64px 0;
}
.about_flow_list {
	position: relative;
}
.about_flow_list::before,
.about_flow_list::after {
	content: "";
	background: #bc8a54;
	position: absolute;
}
.about_flow_list::before {
	width: 1px;
	height: 100%;
	top: 0;
	left: 52px;
}
.about_flow_list::after {
	width: 14px;
	height: 1px;
	bottom: 6px;
	left: 51px;
	transform: rotate(-45deg);
}
.about_flow_list > li {
	width: 100%;
}
.about_flow_list > li:nth-child(1) {
	padding-top: 24px;
}
.about_flow_list > li:not(:last-child) {
	padding-bottom: 40px;
}
.about_flow_list_img {
	width: 104px;
	height: 104px;
}
.about_flow_list_textWrap {
	width: calc(100% - 104px);
	padding: 0 0 0 8px;
}
.about_flow_list_title {
	font-size: 1.8rem;
	margin: 0 0 4px;
	padding: 0 0 0 12px;
}
.about_flow_list_title span {
	width: 5px;
	height: 5px;
	margin: 0;
	position: absolute;
	top: 12px;
	left: 0;
}
.about_flow_list_title::before,
.about_flow_list_title::after {
	content: none;
}
.about_flow_list_info {
	padding: 0 0 0 12px;
}
.about_flow_list_info dt {
	font-size: 1.5rem;
	text-align: left;
	margin: 0 0 8px;
}
.about_flow_list_info dd,
.about_flow_list_info dd span {
	font-size: 1.3rem;
}
.about_flow_list_info dd {
	padding: 0;
}
.about_flow_list_info .c-note01 > li {
	padding-left: 16px;
}
.about_flow_list_info dd > div {
	text-align: left;
}
#about_flow .c-btn_wrap {
	margin: 40px 0 0;
}
}

/* こんなあなたになれます
-------------------------------------------------------- */
#about_result {
	color: #1b1b1b;
	background-image: url("../img/about/result_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	letter-spacing: 0;
	padding: 100px 0;
}
#about_result .inner {
	background: #fff;
	padding: 42px 4% 72px;
}
.about_result_title {
	font-size: 3rem;
	max-width: 600px;
	width: 100%;
	text-align: center;
	margin: 0 0 40px;
}
.about_result_title .icon {
	font-size: 0;
	margin: 14px 0 0;
}
.about_result_list {
	max-width: 764px;
	width: 100%;
}
.about_result_list > li {
	display: -webkit-box;
	display: flex;
}
.about_result_list > li:not(:last-child) {
	margin: 0 0 30px;
}
.about_result_list_icon {
	color: #82040f;
	font-size: 3.6rem;
	width: 70px;
	height: 70px;
	border: solid 1px #82040f;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.about_result_list_textWrap {
	width: calc(100% - 70px);
	padding: 0 0 0 32px;
}
.about_result_list_title {
	font-size: 2.6rem;
}
.about_result_list_text {
	margin: 4px 0 0;
}
@media screen and (max-width: 768px) {
#about_result {
	background-image: url("../img/about/result_bg_sp.jpg");
	padding: 64px 0;
}
#about_result .inner {
	padding: 40px 4%;
}
.about_result_title {
	font-size: 1.8rem;
	margin: 0 0 24px;
}
.about_result_list > li:not(:last-child) {
	margin: 0 0 20px;
}
.about_result_list_icon {
	font-size: 1.8rem;
	width: 35px;
	height: 35px;
}
.about_result_list_textWrap {
	padding: 0 0 0 20px;
}
.about_result_list_title {
	font-size: 1.5rem;
}
.about_result_list_text {
	font-size: 1.3rem;
}
}


/* --------------------------------------------------------
	講師プロフィール
-------------------------------------------------------- */
/* プロフィール
-------------------------------------------------------- */
#profile {
	padding: 140px 0 0;
}
.profile_img {
	width: 39%;
	margin: 0 7% 0 0;
}
.profile_textWrap {
	width: 54%;
}
.profile_nameWrap {
	letter-spacing: 0;
	margin: 0 0 40px;
	position: relative;
}
.profile_name {
	color: #1b1b1b;
}
.profile_name .ja {
	font-size: 4.8rem;
	line-height: 1.2;
}
.profile_name .en {
	font-size: 2.7rem;
	margin: 6px 0 0;
}
.profile_job {
	margin: 8px 0 0;
}
.profile_nameWrap .c-sns_list {
	position: absolute;
	top: 6px;
	right: 0;
}
.profile_list > dt {
	text-decoration: underline;
	margin: 0 0 24px;
}
.profile_list dl > div {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 0 24px;
	position: relative;
}
.profile_list dl > div::before {
	content: "";
	width: 5px;
	height: 5px;
	background: #1b1b1b;
	border-radius: 50%;
	position: absolute;
	top: 9px;
	left: 0;
}
.profile_list dl > div:not(:last-child) {
	margin: 0 0 16px;
}
.profile_list dl dt {
	width: 80px;
}
.profile_list dl dd {
	width: calc(100% - 80px);
	padding: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
#profile {
	padding: 48px 0 0;
}
.profile_img,
.profile_textWrap {
	width: 100%;
}
.profile_img {
	text-align: center;
	margin: 0 0 24px;
}
.profile_img img {
	max-width: 470px;
	width: 80%;
}
.profile_nameWrap {
	text-align: center;
}
.profile_name .ja {
	font-size: 3rem;
	line-height: 1.2;
}
.profile_name .en {
	font-size: 1.8rem;
}
.profile_job {
	max-width: 320px;
	margin: 16px auto 0;
}
.profile_nameWrap .c-sns_list {
	-webkit-box-pack: center;
	justify-content: center;
	margin: 20px 0 0;
	position: static;
}
.profile_list > dt {
	text-align: center;
}
.profile_list dl > div {
	padding: 0 0 0 16px;
}
.profile_list dl > div::before {
	top: 8px;
}
.profile_list dl dt {
	width: 60px;
}
.profile_list dl dd {
	width: calc(100% - 60px);
}
}

/* ごあいさつ
-------------------------------------------------------- */
#message {
	color: #1b1b1b;
	letter-spacing: 0;
	padding: 176px 0 0;
}
.message_wrap.message01 {
	background: #F9F8F5;
	padding: 100px 0 150px;
	container-type: inline-size;
	position: relative;
}
.message_wrap.message01 .c-border_title02 {
	position: absolute;
	top: -38px;
	left: 0;
}
.message_list > li {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	letter-spacing: 0;
}
.message_list > li:not(:last-child) {
	margin: 0 0 150px;
}
.message_list > li:nth-child(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.message_list_img {
	width: 50vw;
	top: min(7.3vw, 88px);
}
.message_list_textWrap {
	width: 50%;
}
.message_list_textWrap > div:not(:last-child) {
	margin: 0 0 80px;
}
.message_list_text {
	line-height: 2.25;
}
@media screen and (max-width: 1024px) {
.message_list_img {
	top: 200px;
}
}
@media screen and (min-width: 769px) {
.message_list_img {
	position: -webkit-sticky;
	position: sticky;
}
.message_list > li:nth-child(odd) .message_list_img {
	margin-right: calc(50% - 50vw);
}
.message_list > li:nth-child(even) .message_list_img {
	margin-left: calc(50% - 50vw);
	text-align: right;
}
.message_list > li:nth-child(odd) .message_list_textWrap {
	padding: 0 4% 0 0;
}
.message_list > li:nth-child(even) .message_list_textWrap {
	padding: 0 0 0 4%;
}
}
@media screen and (max-width: 768px) {
#message {
	padding: 80px 0 0;
}
.message_wrap.message01 {
	padding: 40px 0 64px;
}
.message_wrap.message01 .c-border_title02 {
	text-align: center;
	margin: 0 0 32px;
	position: relative;
	top: 0;
}
.message_list > li {
	flex-wrap: wrap;
}
.message_list > li:not(:last-child) {
	margin: 0 0 64px;
}
.message_list_img,
.message_list_textWrap {
	width: 100%;
}
.message_list_img {
	margin: 0 0 32px;
}
.message_list_textWrap > div:not(:last-child) {
	margin: 0 0 40px;
}
}


@media screen and (min-width: 1401px) {
.message02_head {
	height: 570px;
}
}
.message02_head img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.message02_content {
	padding: 100px 0;
}
.message02_img {
	width: 39%;
	margin: 0 4% 0 0;
}
.message02_textWrap {
	width: 57%;
}
.message02_text {
	line-height: 2.25;
}
.message02_text div:not(:last-child) {
	margin: 0 0 24px;
}
@media screen and (max-width: 1024px) {
.message02_content .inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.message02_img.is_pc {
	display: none;
}
.message02_img.is_sp {
	max-width: 472px;
	width: 100%;
	display: block;
	margin: 0 auto 24px;
}
.message02_textWrap {
	width: 100%;
}
.message02_text div:not(:last-child) {
	margin: 0 0 16px;
}
}
@media screen and (max-width: 768px) {
.message02_content {
	padding: 64px 0;
}
}
.message_wrap.message03 {
	background-image: url("../img/profile/message03_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}
.message_wrap.message03 .inner {
	background: rgba(255, 255, 255, .9);
	border-radius: 10px;
	text-align: center;
	padding: 64px 4%;
}
.message03_title {
	font-size: 2.7rem;
	margin: 0 0 24px;
}
.message03_text {
	line-height: 2.25;
}
.message03_text span {
	line-height: 1.875;
}
@media screen and (max-width: 768px) {
.message_wrap.message03 {
	background-image: url("../img/profile/message03_bg_sp.jpg");
	padding: 64px 0;
}
.message_wrap.message03 .inner {
	border-radius: 5px;
	padding: 40px 4%;
}
.message03_title {
	font-size: 1.8rem;
	margin: 0 0 16px;
}
.message03_text {
	text-align: left;
}
.message03_text span {
	display: block;
	text-align: center;
	margin: 16px 0 0;
}
}


/* --------------------------------------------------------
	講座のご案内
-------------------------------------------------------- */
/* ナビゲーション
-------------------------------------------------------- */
.page_nav.is_lesson {
	margin-bottom: 40px;
}
.page_nav.is_lesson ul li {
	width: 33.3333%;
}
.page_nav.is_lesson .icon {
	height: 50px;
}
.page_nav.is_lesson .icon img,
.page_nav.is_lesson ul li:nth-child(3) .icon img {
	max-width: 50px;
}
.page_nav.is_lesson ul li:nth-child(1) .icon img {
	max-width: 43px;
}
@media screen and (max-width: 768px) {
.page_nav.is_lesson {
	margin-bottom: 24px;
}
.page_nav.is_lesson .icon {
	height: 30px;
}
.page_nav.is_lesson .icon img,
.page_nav.is_lesson ul li:nth-child(3) .icon img {
	max-width: 30px;
}
.page_nav.is_lesson ul li:nth-child(1) .icon img {
	max-width: 27px;
}
}

#lesson {
	letter-spacing: 0;
	padding: 100px 0;
}
#lesson > div:not(:last-child) {
	margin-bottom: 80px;
}
.lesson_wrap .c-border_title.is_icon .icon {
	max-width: 50px;
}
.lesson_wrap.lesson01 .c-border_title.is_icon .icon {
	max-width: 43px;
}
@media screen and (max-width: 768px) {
#lesson {
	padding: 64px 0;
}
#lesson > div:not(:last-child) {
	margin-bottom: 40px;
}
.lesson_wrap .c-border_title.is_icon .icon {
	max-width: 30px;
}
.lesson_wrap.lesson01 .c-border_title.is_icon .icon {
	max-width: 27px;
}
}

.lesson_list > li {
	position: relative;
}
.lesson_list > li:not(:last-child) {
	margin-bottom: 10px;
}
.lesson_list_content {
	background: #f9f8f5;
	padding: 30px;
}
.lesson_list_flexWrap {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.lesson_list_badge {
	max-width: 112px;
	width: 100%;
	position: absolute;
	top: 90px;
	left: -27px;
	z-index: 4;
}
.lesson_list_badge span {
	color: #fff;
	font-size: 2.4rem;
	width: 100%;
	display: block;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.lesson_list_img {
	width: 44%;
	margin: 0 4% 0 0;
}
.swiper.lesson_img_list .swiper-pagination {
	margin: 12px 0 0;
	position: static;
}
.swiper.lesson_img_list .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	border: solid 1px #7d0000;
	opacity: 1;
}
.swiper.lesson_img_list .swiper-pagination-bullet-active {
	background: #7d0000;
}
.swiper.lesson_img_list .img {
	padding-top: 72%;
	position: relative;
}
.swiper.lesson_img_list .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.lesson_list_textWrap {
	width: 52%;
	position: relative;
}
.lesson_list_present {
	max-width: 214px;
	position: absolute;
	top: -10px;
	right: 0;
}
.lesson_list_indent {
	padding: 0 0 0 24px;
}
.lesson_list_title {
	font-size: 2.4rem;
}
.lesson_list_titleWrap {
	margin: 0 0 10px;
}
.lesson_list_titleWrap .lesson_list_title {
	margin: 0 20px 0 0;
}
.lesson_list_tag span {
	color: #7d0000;
	border: solid 1px #7d0000;
	border-radius: 100px;
	line-height: 1;
	margin: 4px 4px 0 0;
	padding: 4px 16px;
}
.lesson_list_price {
	color: #bc8a54;
	font-size: 1.8rem;
	margin: 4px 0 0;
}
.lesson_list_price span {
	font-size: 2.4rem;
}
.lesson_list_price s {
	color: #7d7d7d;
}
.lesson_list_text {
	line-height: 2;
	margin: 16px 0 0;
}
.lesson_list_copy {
	font-size: 2.4rem;
	margin: 12px 0 0;
}
.lesson_list .c-note01 {
	margin: 16px 0 0;
}
.lesson_list .c-btn_wrap {
	margin: 32px 0 0;
}
.lesson_list_info {
	margin: 24px 0 0;
}
.lesson_list_info > div {
	background: #fff;
	margin-top: 20px;
	padding: 20px;
}
.lesson_list_info > div:nth-child(1) {
	margin-top: 0;
}
.lesson_list_info > div:nth-child(1) .c-note02 > li::before {
	background-image: url("../img/cmn/icon_check_gl.svg");
}
.lesson_list_info > div > dt span {
	color: #fff;
	font-weight: 700;
	background: #caad71;
	border-radius: 100px;
	display: inline-block;
	text-align: center;
	padding: 4px 16px;
}
.lesson_list_info > div:nth-child(even) > dt span {
	background: #7d0000;
}
.lesson_list_info > div > dd {
	padding: 24px 20px 8px;
}
.lesson_list_lecturer,
.lesson_list_feedback {
	margin: 64px 0 0;
}
.lesson_list_lecturer dt,
.lesson_list_feedback dt {
	font-size: 2rem;
	text-align: center;
	margin: 0 0 24px;
}
.lecturer_list > li {
	font-size: min(1.23vw, 1.6rem);
	width: 49%;
	background: #fff;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	margin-top: 20px;
}
.lecturer_list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.lecturer_list_textWrap {
	width: 63%;
	padding: min(1.5vw, 20px);
}
.lecturer_list_img {
	width: 37%;
}
.lecturer_list_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lecturer_list_job span {
	color: #fff;
	max-width: 110px;
	width: 100%;
	background: #bc8a54;
	border-radius: 100px;
	display: inline-block;
	text-align: center;
	padding: 2px;
}
.lecturer_list_name {
	color: #bc8a54;
	font-size: min(1.38vw, 1.8rem);
	margin: 8px 0 0;
}
.lecturer_list_charge {
	margin: 8px 0 0;
}
.lesson_list .c-note02 {
	max-width: inherit;
}
.lesson_wrap.lesson02 .c-note02 {
	margin: 16px 0 0;
}
.lesson_wrap.lesson02 .c-note02 li {
	font-size: 1.8rem;
	padding-left: 24px;
}
.lesson_wrap.lesson02 .c-note02 li::before {
	top: 10px;
}
@media screen and (max-width: 1024px) {
.lecturer_list {
	max-width: 750px;
	margin: auto;
}
.lecturer_list > li {
	font-size: 1.6rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.lecturer_list_textWrap,
.lecturer_list_img {
	width: 100%;
}
.lecturer_list_textWrap {
	padding: 20px;
}
.lecturer_list_job span {
	max-width: 85px;
}
.lecturer_list_name {
	font-size: 1.8rem;
}
.lecturer_list .c-note01 {
	margin: 8px 0 0 !important;
}
}
@media screen and (max-width: 768px) {
.lesson_list_lecturer dt,
.lesson_list_feedback dt {
	font-size: 1.8rem;
	margin: 0 0 16px;
}
.lesson_list_lecturer,
.lesson_list_feedback {
	margin: 32px 0 0;
	padding: 0 16px;
}
.lecturer_list > li {
	font-size: 1.3rem;
	margin-top: 10px;
}
.lecturer_list_name {
	font-size: 1.4rem;
}
.lecturer_list_textWrap {
	padding: 16px 8px;
}
.swiper.lesson_img_list .img {
	padding-top: 63.38%;
}
}
.lesson_list_feedback dd {
	background: #fff;
	padding: 24px 10px;
}
.feedback_list {
	max-width: 895px;
	width: 100%;
	margin: auto;
}
.feedback_list li {
	width: 19%;
	margin-right: 8%;
}
.feedback_list li a {
	display: block;
	position: relative;
}
.feedback_list li a::before,
.feedback_list li a::after {
	content: "";
	position: absolute;
}
.feedback_list li a::before {
	width: 86px;
	height: 86px;
	background: url("../img/cmn/icon_zoom_wh.svg") no-repeat;
	background-size: contain;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.feedback_list li a::after {
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .3;
	top: 0;
	left: 0;
	z-index: 0;
}
.feedback_list li:nth-child(4n) {
	margin-right: 0;
}
.lesson_list_video {
	max-width: 1000px;
	margin: 56px auto 0;
}
.lesson_list_video > div {
	background-color: #eee;
	padding-top: 56.2%;
	position: relative;
}
.lesson_list_video iframe,
.lesson_list_video video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1024px) {
.feedback_list li {
	width: 49%;
	margin-top: 10px;
	margin-right: 2%;
}
.feedback_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.feedback_list li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.lesson_list_video {
	margin: 32px auto 0;
	padding: 0 16px;
}
}

#top_anchor_lesson02 .c-btn01,
#top_anchor_lesson03 .c-btn01 {
	background: #82040f;
}
#top_anchor_lesson02 .c-btn01 .c-btn_title,
#top_anchor_lesson03 .c-btn01 .c-btn_title {
	margin: 0;
}
.c-note02.is_col02 > li {
	width: 49%;
	margin-top: 10px;
	margin-right: 2%;
}
.c-note02.title_on > li {
	padding-left: 24px;
}
.c-note02.title_on > li::before {
	top: 10px;
}
.c-note02 dl dt {
	font-size: 1.8rem;
	margin: 0 0 4px;
}
@media screen and (min-width: 769px) {
.c-note02.is_col02 > li:nth-child(-n + 2) {
	margin-top: 0;
}
.c-note02.is_col02 > li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.c-note02.is_col02 > li {
	width: 100%;
	margin-top: 8px;
	margin-right: 0;
}
.c-note02.is_col02 > li:nth-child(1) {
	margin-top: 0;
}
.c-note02.title_on > li {
	padding-left: 20px;
}
.c-note02.title_on > li::before {
	top: 8px;
}
.c-note02 dl dt {
	font-size: 1.5rem;
}
}

.c-note02.is_col03 > li {
	width: 32%;
	margin-top: 8px;
	margin-right: 2%;
}
@media screen and (min-width: 1025px) {
.c-note02.is_col03 > li:nth-child(-n + 3) {
	margin-top: 0;
}
.c-note02.is_col03 > li:nth-child(3n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
.c-note02.is_col03 > li {
	width: 49%;
	margin-right: 2%;
}
.c-note02.is_col03 > li:nth-child(-n + 2) {
	margin-top: 0;
}
.c-note02.is_col03 > li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.c-note02.is_col03 > li {
	width: 100%;
	margin-right: 0;
}
.c-note02.is_col03 > li,
.c-note02.is_col03 > li:nth-child(-n + 2) {
	margin-top: 8px;
}
.c-note02.is_col03 > li:nth-child(1) {
	margin-top: 0;
}
}
.c-note03 > li {
	padding-left: 16px;
	position: relative;
}
.c-note03 > li::before {
	content: "-";
	position: absolute;
	top: 0;
	left: 0;
}
.more_wrap {
	height: 740px;
	overflow: hidden;
	position: relative;
}
.more_wrap::before {
	content: "";
	width: 100%;
	height: 20%;
	background: #F9F8F5;
	background: linear-gradient(6deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
}
.more_wrap_btn {
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	position: absolute;
	bottom: 50px;
	left: 0;
	z-index: 6;
}
.more_wrap_btn label {
	max-width: 500px;
	width: 83%;
	background: #fff;
	border: solid 2px #7d0000;
	border-radius: 100px;
	text-align: center;
	padding: 2px 4px 2px;
	position: relative;
	z-index: 1;
}
.more_wrap_btn label span {
	display: inline-block;
	padding-right: 24px;
	position: relative;
}
.more_wrap_btn label span::before {
	content: "詳細を見る";
	color: #7d0000;
	font-size: 1.8rem;
}
.more_wrap_btn label span::after {
	content: "";
	width: 18px;
	height: 10px;
	background: url("../img/cmn/arrow_b_rd.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	right: 0;
}
.lesson_list li input:checked ~ .more_wrap {
	height: auto;
}
.lesson_list li input:checked ~ .more_wrap::before {
	content: none;
}
.lesson_list li input:checked ~ .more_wrap .more_wrap_btn {
	margin: 24px 0 0;
	position: static;
}
.lesson_list li input:checked ~ .more_wrap .more_wrap_btn span::before {
	content: "閉じる";
}
.lesson_list li input:checked ~ .more_wrap .more_wrap_btn span::after {
	transform: scale(1, -1);
}
@media screen and (max-width: 768px) {
.more_wrap {
	height: 540px;
}
.more_wrap_btn {
	padding: 0 16px;
	bottom: 25px;
}
}

.lesson_list_step {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin: 20px 0 0;
}
.lesson_list_step > div {
	width: 49.5%;
	background: #fff;
	margin-top: 10px;
	padding: 20px;
}
.lesson_list_step dt {
	max-width: 110px;
	width: 100%;
	margin: 0 0 8px;
	position: relative;
	z-index: 1;
}
.lesson_list_step dt span {
	color: #fff;
	background: #7d0000;
	border-radius: 100px;
	display: block;
	text-align: center;
	padding: 4px;
}
.lesson_list_step_title {
	font-size: 1.8rem;
	padding: 2px 0 0;
}
.lesson_list .lesson_list_step .c-note01 {
	margin: 8px 0 0;
}
@media screen and (min-width: 769px) {
.lesson_list_step > div:nth-child(-n + 2) {
	margin-top: 0;
}
}

@media screen and (max-width: 1024px) {
.lesson_list_badge {
	top: 200px;
}
.lesson_list_flexWrap {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.lesson_list_img,
.lesson_list_textWrap {
	width: 100%;
}
.lesson_list_img {
	max-width: 500px;
	margin: 0 0 24px;
}
}
@media screen and (max-width: 768px) {
.lesson_list_content {
	padding: 0 0 24px;
}
.lesson_list_badge {
	max-width: 70px;
	top: 60px;
	left: -6%;
}
.lesson_list_badge span {
	font-size: 1.5rem;
}
.lesson_list_img {
	max-width: inherit;
}
.lesson_list_img {
	margin: 0;
}
.lesson_list_textWrap {
	padding: 24px 16px 0;
}
.lesson_list_present {
	max-width: 160px;
	width: 40%;
	top: min(4vw, 15px);
	right: min(6.666vw, 25px);
}
.lesson_list_indent {
	padding: 0;
}
.lesson_list_title {
	font-size: 2.1rem;
}
.lesson_list_price {
	font-size: 1.4rem;
}
.lesson_list_price span {
	font-size: 1.8rem;
}
.lesson_wrap.lesson02 .c-note02 li {
	font-size: 1.5rem;
	padding-left: 20px;
}
.lesson_wrap.lesson02 .c-note02 li::before {
	top: 8px;
}
.lesson_list .c-btn_wrap {
	margin: 24px 0 0;
	padding: 0 16px;
}
.lesson_list_titleWrap {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: start;
	align-items: flex-start;
}
.lesson_list_titleWrap .lesson_list_title {
	margin: 0 0 4px;
}
.more_wrap_btn label {
	width: 100%;
}
.more_wrap_btn label span {
	padding-right: 20px;
}
.more_wrap_btn label span::before {
	font-size: 1.4rem;
}
.more_wrap_btn label span::after {
	width: 14px;
	height: 8px;
	top: 7px;
}
.lesson_list_copy {
	font-size: 1.6rem;
}
	.lesson_list_info {
		padding: 0 16px;
	}
.lesson_list_info > div {
	padding: 24px 16px;
}
.lesson_list_info > div > dt span {
	font-size: 1.6rem;
}
.lesson_list_info > div > dd {
	padding: 16px 0 0;
}
	.lesson_list_step {
		padding: 0 16px;
	}
.lesson_list_step > div {
	width: 100%;
}
.lesson_list_step dt {
	font-size: 1.3rem;
	position: relative;
	z-index: 1;
}
.lesson_list_step_title {
	font-size: 1.6rem;
}
}
@media screen and (max-width: 480px) {
.lesson_list_info > div > dt span {
	font-size: 3.6vw;
}
}

/* --------------------------------------------------------
	お知らせ
-------------------------------------------------------- */
/* 一覧
-------------------------------------------------------- */
.pager {
	margin: 40px 0 0;
}
.wp-pagenavi {
	font-size: 1.8rem;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.wp-pagenavi .extend {
	display: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
	color: #d2d2d2;
	width: 40px;
	height: 40px;
	border: solid 1px #fff;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0 2px;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
	color: #7d0000;
	border-color: #7d0000 !important;
	opacity: 1;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	border: none;
	display: block;
	overflow: hidden;
	text-align: center;
	text-indent: -999999999999px;
	position: relative;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	border: none;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	content:"";
	width: 16px;
	height: 28px;
	background-image: url("../img/cmn/arrow_r_gy.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .5s;
}
.wp-pagenavi .previouspostslink::before {
	transform: translate(-50%, -50%) scale(-1, 1);
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
	background-image: url("../img/cmn/arrow_r_rd02.svg");
}
@media screen and (max-width: 768px) {
.pager {
	margin: 24px 0 0;
}
.wp-pagenavi {
	font-size: 1.4rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
	width: 30px;
	height: 30px;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	width: 8px;
	height: 14px;
}
}

/* 詳細
-------------------------------------------------------- */
.article_news .article_head {
	border-bottom: solid 1px #d2d2d2;
	margin: 0 0 32px;
	padding: 0 0 10px;
}
.article_news .article_meta {
	margin: 0 0 6px;
} 
.article_news .c-news_category {
	margin: 0 0 0 20px;
}
.article_news .c-news_title {
	font-size: 2.4rem;
}
.article_news .article_content {
	border-bottom: solid 1px #d2d2d2;
	line-height: 2;
	padding: 0 0 48px;
}
.article_news .article_content,
.article_news .article_content h4,
.article_news .article_content h5,
.article_news .article_content h6 {
	font-size: 1.6rem;
}
.article_news .article_content h1 {
	font-size: 3rem;
}
.article_news .article_content h2 {
	font-size: 2.4rem;
}
.article_news .article_content h3 {
	font-size: 2rem;
}
.article_news .article_content table,
.article_news .article_content table th,
.article_news .article_content table td {
	border: 1px solid #ccc;
	padding: 10px;
}
.article_news .article_content b,
.article_news .article_content strong {
	font-weight: 700;
}
.article_news .article_content em {
	font-style: italic;
}
.article_news .article_content a {
	color: #82040f;
	text-decoration: underline;
}
.article_news .article_content a:hover {
	text-decoration: none;
	opacity: 1;
}
.article_news .article_content ul {
	list-style: initial;
	padding-left: 40px;
}
.article_news .article_content ol {
	list-style-type: decimal;
	padding-left: 40px;
}
.single_pager {
	color: #d2d2d2;
	margin: 24px 0 0;
	position: relative;
}
.single_pager a:hover {
	text-decoration: none;
	opacity: 1;
}
.single_pager .back {
	text-decoration: underline;
}
.single_pager .next,
.single_pager .prev {
	position: absolute;
	top: 0;
}
.single_pager .next {
	right: 0;
}
.single_pager .prev {
	left: 0;
}
.single_pager .next::after,
.single_pager .prev::before {
	content:"";
	width: 10px;
	height: 18px;
	background-image: url("../img/cmn/arrow_r_gy.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	transition: .5s;
}
.single_pager .next::after {
	margin: 0 0 0 6px;
}
.single_pager .prev::before {
	transform: scale(-1, 1);
	margin: 0 6px 0 0;
}
.single_pager .next:hover,
.single_pager .prev:hover {
	color: #82040f;
}
.single_pager .next:hover::after,
.single_pager .prev:hover::before {
	background-image: url("../img/cmn/arrow_r_rd02.svg");
}
@media screen and (max-width: 768px) {
.article_news .article_head,
.article_news .article_content {
	padding-left: 16px;
	padding-right: 16px;
}
.article_news .c-news_category {
	margin: 0 0 0 10px;
}
.article_news .c-news_title {
	font-size: 1.8rem;
}
.article_news .article_content,
.article_news .article_content h4,
.article_news .article_content h5,
.article_news .article_content h6 {
	font-size: 1.4rem;
}
.article_news .article_content h1 {
	font-size: 2.4rem;
}
.article_news .article_content h2 {
	font-size: 2.2rem;
}
.article_news .article_content h3 {
	font-size: 1.8rem;
}
.single_pager .next {
	right: 16px;
}
.single_pager .prev {
	left: 16px;
}
}


/* --------------------------------------------------------
	syokoサロンアカデミー生の声
-------------------------------------------------------- */
#voice {
	padding: 96px 0 100px;
}
@media screen and (max-width: 768px) {
#voice {
	padding: 40px 0 64px;
}
}

.article_voice {
	border-bottom: solid 1px #d2d2d2;
	padding: 58px 0 32px;
}
.article_voice .article_head,
.article_voice .article_content {
	position: relative;
}
.article_voice .article_head::after,
.article_voice .article_content::after {
	content: "";
	width: 100vw;
	height: 100%;
	background: #f9f8f5;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.article_voice .article_head {
	width: 46%;
	margin: -58px 0 0;
}
.article_voice .article_head::after {
	opacity: 0;
}
.article_voice .article_head_img {
	margin: 0 0 24px;
}
.article_voice .article_head_job {
	font-size: 2rem;
	margin: 0 0 2px;
}
.article_voice .article_head_name {
	font-size: 2.4rem;
}
.article_voice .article_head_name span {
	font-size: 3rem;
}
.article_voice .article_content {
	width: 50%;
	padding: 56px 56px 96px 0;
	position: relative;
}
.article_voice .article_content_title {
	color: #bc8a54;
	font-size: 2.8rem;
	letter-spacing: 0;
	margin: 0 0 40px;
}
.article_voice .article_content_text {
	line-height: 2.25;
}
@media screen and (max-width: 1024px) {
.article_voice {
	padding: 0 0 32px;
}
.article_voice .article_head,
.article_voice .article_content {
	width: 100%;
}
.article_voice .article_head {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	margin: 0;
	position: relative;
}
.article_voice .article_head::after {
	height: calc(100% - 58px);
	opacity: 1;
	top: 58px;
}
.article_voice .article_head_img {
	max-width: 550px;
	width: 73%;
}
.article_voice .article_head_nameWrap {
	width: 100%;
}
}
@media screen and (max-width: 768px) {
.article_voice .article_head_nameWrap {
	padding: 0 16px;
}
.article_voice .article_head_job {
	font-size: 1.4rem;
}
.article_voice .article_head_name {
	font-size: 1.8rem;
}
.article_voice .article_head_name span {
	font-size: 2rem;
}
.article_voice .article_content {
	padding: 40px 16px;
}
.article_voice .article_content_title {
	font-size: 1.8rem;
	margin: 0 0 30px;
}
}


/* --------------------------------------------------------
	お問い合わせ
-------------------------------------------------------- */
/* よくある質問
-------------------------------------------------------- */
#faq {
	padding: 56px 0 140px;
}
.faq_text {
	line-height: 2.25;
	margin: 0 0 64px;
}
.c-acc_list > div:not(:last-child) {
	margin: 0 0 16px;
}
.c-acc_list dt,
.c-acc_list dd > div {
	display: -webkit-box;
	display: flex;
	padding: 10px 30px;
}
.c-acc_list dt {
	background: #f9f8f5;
	cursor: pointer;
	position: relative;
	padding-right: 40px;
}
.c-acc_list dt::before {
	content: "";
	width: 18px;
	height: 10px;
	background: url("../img/cmn/arrow_b_rd.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
}
.c-acc_list dt.is_acc_open::before {
	transform: scale(1, -1);
}
.c-acc_list_icon {
	color: #82040f;
	font-size: 2.4rem;
	width: 37px;
}
.c-acc_list_textWrap {
	width: calc(100% - 37px);
	padding: 10px 0 0;
}
.c-acc_list dd {
	display: none;
}
.c-acc_list dd > div {
	padding: 16px 30px;
}
.c-acc_list > div:last-child dd > div {
	padding-bottom: 0;
}
.c-acc_list dd .c-acc_list_icon {
	color: #ac6a00;
}
.c-acc_list dd .c-acc_list_textWrap {
	line-height: 2.25;
	padding-top: 0;
}
.c-acc_list_textWrap.flex .c-acc_list_text {
	width: calc(100% - 280px);
	padding: 0 10px 0 0;
}
.c-acc_list_textWrap.flex .c-acc_list_img {
	width: 280px;
	text-align: center;
}
@media screen and (max-width: 768px) {
#faq {
	padding: 40px 0 64px;
}
.faq_text {
	margin: 0 0 40px;
}
.c-acc_list dt,
.c-acc_list dd > div {
	padding: 10px 14px;
}
.c-acc_list dt {
	padding-right: 32px;
}
.c-acc_list dt::before {
	width: 14px;
	height: 8px;
	top: calc(50% - 4px);
	right: 8px;
}
.c-acc_list_icon {
	font-size: 1.8rem;
	width: 25px;
}
.c-acc_list_textWrap {
	width: calc(100% - 25px);
	padding: 6px 0 0;
}
.c-acc_list_textWrap.flex .c-acc_list_text,
.c-acc_list_textWrap.flex .c-acc_list_img {
	width: 100%;
}
.c-acc_list_textWrap.flex .c-acc_list_img {
	margin: 16px 0 0;
}
}

/* 特商法に基づく表記
-------------------------------------------------------- */
#law {
	background: #f9f8f5;
	padding: 88px 0 100px;
}
.law_list > div {
	background: #fff;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	padding: 12px 20px;
}
.law_list > div:not(:last-child) {
	margin: 0 0 5px;
}
.law_list dt {
	color: #7d0000;
	width: 297px;
}
.law_list dd {
	width: calc(100% - 297px);
	word-break: break-all;
}
@media screen and (max-width: 768px) {
#law {
	padding: 64px 0;
}
.law_list > div {
	padding: 12px;
}
.law_list dt,
.law_list dd {
	width: 100%;
}
.law_list dt {
	margin: 0 0 4px;
}
}

/* お問い合わせフォーム
-------------------------------------------------------- */
#contact {
	padding: 100px 0 160px;
}
#contact ::placeholder {
	color: #a0a0a0;
}
/* 旧Edge対応 */
#contact ::-ms-input-placeholder {
	color: #a0a0a0;
}
/* IE対応 */
#contact :-ms-input-placeholder {
	color: #a0a0a0;
}
.contact_text {
	margin: 0 0 16px;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact select,
#contact textarea {
	width: 100%;
	background: #eee;
	display: block;
	padding: 16px 24px;
}
#contact textarea {
	height: 200px;
}
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block;
	position: relative;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 0;
	transition: .5s;
}
.wpcf7-radio .wpcf7-list-item {
	display: block;
	margin-top: 8px;
	margin-left: 0;
}
.wpcf7-radio .wpcf7-list-item.first {
	margin-top: 0;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
	border-radius: 50%;
}
.wpcf7-radio .wpcf7-list-item-label {
	padding-left: 35px;
}
.wpcf7-radio .wpcf7-list-item-label::before {
	width: 20px;
	height: 20px;
	background: #eee;
	top: 1px;
}
.wpcf7-radio .wpcf7-list-item-label::after {
	width: 10px;
	height: 10px;
	background: #7d0000;
	opacity: 0;
	top: 6px;
	left: 5px;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	padding-left: 32px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
	width: 12px;
	height: 12px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
	width: 25px;
	height: 25px;
	border: solid 1px #7d0000;
	top: -1px;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
	width: 20px;
	height: 16px;
	background: url("../img/cmn/icon_check_rd02.svg") no-repeat;
	background-size: contain;
	opacity: 0;
	top: 5px;
	left: 3px;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}
.form_privacy {
	font-size: 1.4rem;
	max-height: 200px;
	border: solid 1px #dcdcdc;
	border-radius: 10px;
	overflow: auto;
	margin: 0 0 16px;
	padding: 16px;
}
.form_privacy_list > div:not(:last-child) {
	margin: 0 0 24px;
}
.form_privacy_list dt {
	font-weight: 700;
	margin: 0 0 4px;
}
.form_privacy_list dd:not(:first-of-type) {
	margin: 10px 0 0;
}
.submit_wrap {
	margin: 46px 0 0;
}
.submit_wrap > p {
	max-width: 550px;
	width: 100%;
	background: #82040f;
	text-align: center;
	position: relative;
}
.submit_wrap > p::before,
.submit_wrap > p::after {
	content: "";
	position: absolute;
}
.submit_wrap > p::before {
	width: 41px;
	height: 11px;
	background: url(../img/cmn/arrow_r_wh.svg) no-repeat;
	background-size: contain;
	top: calc(50% - 5.5px);
	right: 28px;
}
.submit_wrap > p::after {
	width: 100%;
	height: 100%;
	background: #7d0000;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	mix-blend-mode: multiply;
	opacity: .3;
	top: 0;
	left: 0;
	z-index: 0;
}
.submit_wrap input,
.submit_wrap a {
	color: #fff;
	font-size: 2.5rem;
	width: 100%;
	background: none;
	display: block;
	padding: 20px;
	position: relative;
	z-index: 1;
}
.wpcf7 .wpcf7-submit:disabled {
	background: #eee;
}
.wpcf7-spinner { display: none; }
@media screen and (max-width: 768px) {
#contact {
	padding: 64px 0;
}
.contact_text {
	margin: 0 0 32px;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact select,
#contact textarea {
	padding: 14px 10px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
	width: 20px;
	height: 20px;
	top: 1px;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
	width: 15.5px;
	height: 11.5px;
}
.form_privacy {
	font-size: 1.2rem;
	max-height: 150px;
	border-radius: 5px;
	padding: 14px 10px;
}
.submit_wrap {
	margin: 16px 0 0;
}
.submit_wrap > p {
	width: 90%;
}
.submit_wrap > p::before {
	width: 30px;
	height: 8px;
	top: calc(50% - 4px);
	right: 15px;
}
.submit_wrap input,
.submit_wrap a {
	font-size: 1.5rem;
}
}

/* Cloudflare Turnstile */
.cf7-cf-turnstile{
	width: fit-content;
	margin: 20px auto 0 !important;
}
