@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: "Noto Sans JP", sans-serif;
	color: #000;
	font-size: 1.6em;
	font-weight: 400;
	background: #fff;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

/* フォント */
.ff_yakuHan { font-family: YakuHanJP, sans-serif; }
.ff_m-plus-1p {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 100;
}
.ff_m-plus-1 {
	font-family: "M PLUS 1", sans-serif;
	font-weight: 700;
}
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }

/* 文字色 */
.fc_grad {
	background: linear-gradient(90deg, rgba(186, 46, 255, 1) 0%, rgba(102, 255, 214, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* マーカー */
.c-marker { background: linear-gradient(transparent 70%, #f9e7fe 70%); }

/* 背景 */
.c-bg01 { background: #7304b3; }
.c-bg02 { background: #ba2eff; }

@media screen and (max-width: 768px) {
body { font-size: 1.4em; }
.c-pattern02 {
	background: url("../img/pattern02_sp.jpg") repeat;
	background-size: 100% auto;
}
}


/* --------------------------------------------------------
	リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover { opacity: 0.5; }
::-moz-selection {
	color: #fff;
	background: #E6141A;
}
::selection {
	color: #fff;
	background: #E6141A;
}

/* テキストリンク
-------------------------------------------------------- */

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



/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
.inner {
	max-width: 1400px;
	width: 95%;
	margin: auto;
}
.c-section { padding: 80px 0 200px; }

@media screen and (max-width: 768px) {
.inner.is_wide {
	width: 95%;
}
.c-section { padding: 56px 0 100px; }
}


/* 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
-------------------------------------------------------- */
.en_title {
	text-align: center;
}
.en_title .en {
	color: #e6e6e6;
	font-size: 12rem;
}
.en_title.is_pl01 .en { color: #8d00e0; }
.en_title.is_pl02 .en { color: #a725f4; }

.en_title .ja {
	font-size: 3.6rem;
	font-weight: 700;
	margin: -80px 0 0;
}
@media screen and (max-width: 768px) {
.en_title .en {
	font-size: 6rem;
}
.en_title .ja {
	font-size: 2.4rem;
	line-height: 1.5;
	margin: -42px 0 0;
}
}
@media screen and (max-width: 480px) {
.en_title .ja {
	font-size: 6.4vw;
}
}

.border_title {
	font-size: 3rem;
	font-weight: 700;
	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 0 32px;
}
.border_title::after {
	content: "";
	width: 40px;
	height: 4px;
	background: #BA2EFF;
	margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
.border_title {
	font-size: 2.2rem;
	margin: 0 0 32px;
}
}

.c-head01 {
	text-align: center;
	margin: 0 0 64px;
}
.c-head01 .c-head_text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	margin: 56px 0 0;
}
.c-head01.is_wh { color: #fff; }

@media screen and (max-width: 768px) {
.c-head01 {
	margin: 0 0 32px;
}
.c-head01 .c-head_text {
	font-size: 1.6rem;
	text-align: left;
	margin: 24px 0 0;
	padding: 0 min(4vw, 30px);
}
}
/* --------------------------------------------------------
	btn
-------------------------------------------------------- */
.c-btn01 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	max-width: 308px;
	width: 90%;
	background: #BA2EFF;
	background: linear-gradient(45deg, rgba(186, 46, 255, 1) 0%, rgba(102, 255, 214, 1) 100%);
	border-radius: 100px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 20px;
}
@media screen and (max-width: 768px) {
.c-btn01 {
	font-size: 1.6rem;
	max-width: 272px;
	padding: 16px;
}
}

.c-btn_wrap .btn_text {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 24px;
}
.c-btn_wrap .btn_text span {
	display: inline-block;
	padding: 0 36px;
	position: relative;
}
.c-btn_wrap .btn_text span::before,
.c-btn_wrap .btn_text span::after {
	content: "";
	width: 18px;
	height: 31px;
	background: url("../img/bubble01.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
}
.c-btn_wrap .btn_text span::before {
	left: 0;
}
.c-btn_wrap .btn_text span::after {
	right: 0;
	transform: scale(-1, 1);
}
.c-btn_wrap .c-btn01 {
	font-size: 2.2rem;
	max-width: 400px;
	padding: 28px 20px;
}
@media screen and (max-width: 768px) {
.c-btn_wrap .btn_text {
	font-size: 2.2rem;
}
.c-btn_wrap .btn_text span {
	padding: 0 20px 0 30px;
}
.c-btn_wrap .btn_text span::before,
.c-btn_wrap .btn_text span::after {
	width: 22.5px;
	height: 40px;
	top: inherit;
	bottom: 0;
}
.c-btn_wrap .c-btn01 {
	font-size: 1.8rem;
	padding: 20px;
}
}

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


/* --------------------------------------------------------
	header
-------------------------------------------------------- */
header {
	width: 100%;
	height: 100px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 0 48px 0 20px;
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 10;
}
header::after {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../img/mv_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 2;
}
.hd_logo,
.hd_btn {
	position: relative;
	z-index: 3;
}
.hd_logo a,
.hd_btn {
	height: 56px;
}
.hd_logo a {
	color: #fff;
	font-size: 2.2rem;
	font-style: italic;
	font-weight: 700;
	background: #333;
	border-radius: 10px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 0 20px;
}
.hd_btn {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	flex: 1 1 auto;
}
.hd_cta {
	max-width: 240px;
	width: 100%;
	margin: 0 20px 0 0;
	transition: .5s;
}
.hd_cta .c-btn01 {
	font-size: 1.8rem;
	max-width: none;
	width: 100%;
	height: 100%;
	padding: 0;
}
#hamb {
	width: 56px;
	height: 100%;
	background: #ba2eff;
	border-radius: 10px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}
#hamb .icon {
	width: 22px;
	height: 16px;
	position: relative;
}
#hamb span {
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	transition: .5s;
}
#hamb span:nth-child(1) { top: 0; }
#hamb span:nth-child(2) { top: calc(50% - 1px); }
#hamb span:nth-child(3) { top: calc(100% - 2px); }
#menu {
	color: #fff;
	max-width: 400px;
	width: 100%;
	min-height: 100svh;
	height: 100%;
	background: #ba2eff;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	overflow: auto;
	padding: 140px 0 0;
	position: fixed;
	top: 0;
	right: -400px;
	transition: .5s;
	z-index: 1;
}
.menu_list {
	padding: 0 40px 56px;
}
.menu_list li {
	padding: 0 0 0 40px;
	position: relative;
}
.menu_list li::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/arrow_r_wh.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 6px;
	left: 0;
}
.menu_list li:not(:last-child) {
	margin: 0 0 20px;
}
.menu_list .en {
	font-size: 2.2rem;
	font-weight: 700;
}
.menu_list .ja {
	font-weight: 500;
}
.menu_btn {
	background: #fff;
	flex: 1 1 auto;
	padding: 40px;
}
.menu_btn .c-btn01 {
	max-width: inherit;
	width: 100%;
}
.menu_bg {
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 0;
}

@media screen and (min-width: 769px) {
.is_scroll header {
	height: 80px;
}
.is_hamb_open header {
	height: 100px;
}
}
.is_hamb_open #hamb::before,
.is_hamb_open #hamb::after {
	width: 100%;
	height: 100%;
}
.is_hamb_open #hamb span:nth-child(1),
.is_hamb_open #hamb span:nth-child(3) {
	top: 7px;
}
.is_hamb_open #hamb span:nth-child(1) {
	transform: rotate(324deg);
}
.is_hamb_open #hamb span:nth-child(2) {
	transform: scaleX(0);
}
.is_hamb_open #hamb span:nth-child(3) {
	transform: rotate(-324deg);
}

.is_hamb_open { overflow: hidden; }
.is_hamb_open header::after { opacity: 1; }
.is_hamb_open .hd_cta {
	max-width: 200px;
	width: 100%;
	margin: 0 20px 0 0;
}
.is_hamb_open .hd_cta .c-btn01 {
	font-size: 1.6rem;
}
.is_hamb_open #menu {
	right: 0;
}
.is_hamb_open .menu_bg {
	opacity: .5;
	visibility: inherit;
}
@media screen and (max-width: 768px) {
header {
	height: 90px;
	padding: 0 2.6666%;
}
header::after {
	background-image: url("../img/mv_bg_sp.jpg");
}
.hd_logo a {
	font-size: 2rem;
}
.hd_cta {
	display: none;
}
.menu_list li {
	padding: 0 0 0 32px;
}
.menu_list li::before {
	width: 20px;
	height: 20px;
	top: 5px;
}
.menu_list .en {
	font-size: 1.8rem;
}
.menu_list .ja {
	font-size: 1.4rem;
}
.menu_btn {
	padding: 24px 40px;
}
.is_hamb_open .hd_cta .c-btn01 {
	padding: 20px;
}
}


/* --------------------------------------------------------
	footer
-------------------------------------------------------- */
footer {
	color: #fff;
	background: #7304b3;
	text-align: center;
}
.ft_info {
	line-height: 2;
	padding: 72px 0;
}
#copyright {
	font-size: 1.2rem;
	border-top: solid 1px #fff;
	padding: 10px;
}
@media screen and (max-width: 768px) {
.ft_info {
	line-height: 1.5;
	padding: 48px 0;
}
}

/* --------------------------------------------------------
	メインビジュアル
-------------------------------------------------------- */
.first_view {
	background-image: url("../img/mv_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
}
#mv {
	overflow: hidden;
	padding: 120px 0 0;
}
#mv > div {
	max-width: 1600px;
	margin: auto;
}
.mv_movie {
	width: 58%;
}
.mv_movie > div {
	overflow: hidden;
	padding-top: 56%;
	position: relative;
}
.mv_movie > div > video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.mv_textWrap {
	width: 42%;
	padding: min(3.375vw, 54px) 0 0;
}
.mv_textWrap .sub {
	padding: 0 min(4vw, 64px) 0 min(2vw, 32px);
	position: relative;
	z-index: 1;
}
.mv_textWrap .sub .text {
	font-size: min(1.6875vw, 27px);
	font-style: italic;
	font-weight: 700;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.mv_textWrap .sub .text > div:nth-child(1) {
	font-size: min(2.25vw, 36px);
	margin: 0 0 max(-.25vw, -4px);
}
.mv_textWrap .main {
	margin-top: max(-4.5vw, -72px);
	padding: min(5.625vw, 90px) 0 min(2.5vw, 40px);
	position: relative;
	z-index: 0;
}
.mv_textWrap .main::before {
	content: "";
	width: 100vw;
	height: 100%;
	background: #ba2eff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.mv_textWrap .main .text {
	color: #fff;
	font-size: min(3vw, 48px);
	font-style: italic;
	font-weight: 700;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
.mv_movie,
.mv_textWrap {
	width: 100%;
}
.mv_movie {
	padding: 20px;
}
.mv_textWrap {
	padding: 0;
}
.mv_textWrap .sub {
	max-width: 600px;
	margin: auto;
}
.mv_textWrap .sub .text { font-size: 2.7rem; }
.mv_textWrap .sub .text > div:nth-child(1) { font-size: 3.6rem; }
.mv_textWrap .main {
	margin-top: -72px;
	padding: 90px 0 40px;
}
.mv_textWrap .main .text {
	font-size: 4.8rem;
}
}
@media screen and (max-width: 768px) {
.first_view {
	background-image: url("../img/mv_bg_sp.jpg");
}
#mv {
	padding: 100px 0 0;
}
.mv_movie {
	padding: 10px;
}
.mv_movie > div { padding-top: 177%; }
.mv_textWrap .sub {
	max-width: 347px;
	width: 92.5%;
	padding: 0;
}
.mv_textWrap .sub .text { font-size: 1.8rem; }
.mv_textWrap .sub .text > div:nth-child(1) { font-size: 2.4rem; }
.mv_textWrap .main {
	margin-top: -44px;
	padding: 64px 0 40px;
}
.mv_textWrap .main .text {
	font-size: 3rem;
	text-align: center;
}
}
@media screen and (max-width: 480px) {
.mv_textWrap .sub .text { font-size: 4.8vw; }
.mv_textWrap .sub .text > div:nth-child(1) { font-size: 6.4vw; }
.mv_textWrap .main .text { font-size: 8vw; }
}


/* --------------------------------------------------------
	メインビジュアル
-------------------------------------------------------- */
#intro {
	padding: 56px 0 0;
}
@media screen and (max-width: 768px) {
#intro {
	padding: 24px 0 0;
}
}

/* すべてAIでできる！
-------------------------------------------------------- */
.intro01_title {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 32px;
}
.intro01_title span {
	display: inline-block;
	padding: 0 36px;
	position: relative;
}
.intro01_title span::before,
.intro01_title span::after {
	content: "";
	width: 18px;
	height: 31px;
	background: url("../img/bubble01.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
}
.intro01_title span::before {
	left: 0;
}
.intro01_title span::after {
	right: 0;
	transform: scale(-1, 1);
}
.intro01_list li {
	max-width: 159px;
	width: 100%;
}
.intro01_list li > div {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 15px -2px rgba(230, 230, 230, .5);
	padding-top: 100%;
	position: relative;
}
.intro01_list_text,
.intro01_list_icon {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.intro01_list_text {
	z-index: 1;
}
.intro01_list_text {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.intro01_list_icon {
	z-index: 0;
}
.intro01_list_icon img {
	max-width: 90px;
}
.intro01_list li:nth-child(4) .intro01_list_icon img {
	max-width: 94px;
}
@media screen and (min-width: 1025px) {
.intro01_list li:not(:last-child) {
	margin: 0 20px 0 0;
}
}
@media screen and (max-width: 1024px) {
.intro01_list {
	max-width: 610px;
	flex-wrap: wrap;
	margin: auto;
}
.intro01_list li {
	max-width: inherit;
	width: 32%;
	margin-top: 2%;
	margin-right: 2%;
}
.intro01_list li:nth-child(-n + 3) {
	margin-top: 0;
}
.intro01_list li:nth-child(3n) {
	margin-right: 0;
}
.intro01_list_icon img {
	max-width: 127px;
	width: 56%;
}
.intro01_list li:nth-child(4) .intro01_list_icon img {
	max-width: 134px;
	width: 59.5%;
}
}
@media screen and (max-width: 768px) {
.intro01_title {
	font-size: 2.2rem;
	margin: 0 0 16px;
}
.intro01_title span {
	padding: 0 20px;
}
.intro01_title span::before,
.intro01_title span::after {
	width: 14px;
	height: 24px;
}
.intro01_list_text {
	font-size: 1.8rem;
	line-height: 1.5;
}
}

/* 最初の一歩は無料セミナーから
-------------------------------------------------------- */
.intro_wrap.intro02 {
	padding: 114px 0 0;
}
.intro02_text {
	color: #7304b3;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 -40px;
}
.intro02_text span {
	color: #fff;
	max-width: 520px;
	width: 100%;
	background: #ba2eff;
	border-radius: 100px;
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
	display: inline-block;
	padding: 20px 8px;
	position: relative;
}
.intro02_text span::before {
	content: "";
	width: 37px;
	height: 18px;
	background: url(../img/arrow_b_pl.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
}
.intro02_bg {
	max-width: 900px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	margin: auto;
	padding: 90px min(4vw, 30px) 72px;
}
.c-check_list01 {
	margin: 0 0 56px;
}
.c-check_list01 li {
	font-size: 3rem;
	font-weight: 700;
	padding: 0 0 0 40px;
	position: relative;
}
.c-check_list01 li::before {
	content: "";
	width: 30px;
	height: 30px;
	background: url("../img/icon_check_pl01.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 0;
}
.c-check_list01 li:not(:last-child) {
	margin: 0 0 8px;
}
.intro_wrap.intro02 .c-btn_wrap {
	width: 100%;
}
.intro_wrap.intro02 .c-btn_wrap .c-btn01 {
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
}
@media screen and (max-width: 768px) {
.intro_wrap.intro02 {
	padding: 60px 0 0;
}
.intro02_text {
	font-size: 2.2rem;
	margin: 0 0 -56px;
}
.intro02_text span {
	max-width: 300px;
	width: 70%;
	border-radius: 20px;
}
.intro02_text span::before {
	width: 27px;
	height: 10px;
}
.intro02_bg {
	border-radius: 10px;
	padding: 88px min(4vw, 30px) 40px;
}
.c-check_list01 {
	margin: 0 0 32px;
}
.c-check_list01 li {
	font-size: 2.2rem;
}
.c-check_list01 li::before {
	top: 4px;
}
}
@media screen and (max-width: 320px) {
.intro02_text {
	font-size: 5.8666vw;
}
}

/* レイナ
-------------------------------------------------------- */
.intro_wrap.intro03 {
	padding: 100px 0 0;
}
.intro03_head {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	margin: 0 0 32px;
}
.intro03_reina {
	max-width: 881px;
	width: 100%;
	margin: auto;
}
.intro03_reina_textWrap {
	width: 52%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	text-align: center;
	margin: min(3.2vw, 32px) 0 0;
	padding: 62px 0;
}
.intro03_reina_name {
	font-style: italic;
	font-weight: 700;
	margin: 0 0 32px;
	position: relative;
}
.intro03_reina_name .job,
.intro03_reina_name .ja {
	position: relative;
	z-index: 1;
}
.intro03_reina_name .job {
	font-size: min(2.2vw, 22px);
}
.intro03_reina_name .ja {
	font-size: min(9vw, 90px);
	font-weight: 500;
	line-height: 1;
}
.intro03_reina_name .en {
	color: #f2f2f2;
	font-size: min(12.1vw, 121px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.intro03_reina_text {
	font-size: min(1.8vw, 18px);
	font-weight: 500;
	line-height: 2;
}
.intro03_reina_img {
	width: 59%;
}
@media screen and (min-width: 769px) {
.intro03_reina_img {
	margin: 0 0 0 -11%;
}
}
@media screen and (max-width: 768px) {
.intro_wrap.intro03 {
	padding: 56px 0 0;
}
.intro03_head {
	font-size: 1.6rem;
	text-align: left;
	margin: 0 0 32px;
	padding: 0 min(4vw, 30px);
}
.intro03_reina_textWrap,
.intro03_reina_img {
	width: 100%;
}
.intro03_reina_textWrap {
	border-radius: 10px;
	margin: 0;
	padding: 40px 0 56px;
}
.intro03_reina_name {
	margin: 0 0 16px;
}
.intro03_reina_name .job {
	font-size: 1.8rem;
}
.intro03_reina_name .ja {
	font-size: 7.5rem;
}
.intro03_reina_name .en {
	font-size: 8rem;
}
.intro03_reina_text {
	font-size: 1.6rem;
}
.intro03_reina_img {
	text-align: center;
	margin-top: max(-10vw, -38px);
}
.intro03_reina_img img {
	max-width: 370px;
	width: 73.333%;
	margin-left: max(-5.333vw, -40px)
}
}
@media screen and (max-width: 320px) {
.intro03_head,
.intro03_reina_name .job {
	font-size: 4.8vw;
}
.intro03_reina_name .ja {
	font-size: 20vw;
}
.intro03_reina_name .en {
	font-size: 21.333vw;
}
}

/* セミナー参加者限定特典プレゼント中！
-------------------------------------------------------- */
.intro_wrap.intro04 {
	color: #fff;
	background-image: url("../img/intro04_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 110px 0 120px;
}
.intro04_text {
	font-size: 3.6rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 64px;
}
.intro04_text > span {
	font-size: 4.8rem;
}
.intro04_text > span::before,
.intro04_text > span::after {
	content: "";
	width: 38px;
	height: 42px;
	background: url("../img/bubble02.svg") no-repeat;
	background-size: contain;
	display: inline-block;
}
.intro04_text > span::before {
	margin: 0 10px 0 8px;
}
.intro04_text > span::after {
	margin: 0 8px 0 10px;
	transform: scale(-1, 1);
}
.intro04_list li {
	width: 22.5%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	margin-right: 3.3333%;
}
.intro04_list_text {
	text-align: center;
	position: relative;
}
.intro04_list_text > div {
	font-size: min(2vw, 30px);
	font-weight: 700;
	width: 100%;
	position: absolute;
	top: min(1.3333vw, 20px);
	left: 0;
	z-index: 1;
}
.intro04_list_text > img {
	-webkit-filter: drop-shadow(0 5px 10px rgba(128, 128, 128, .5));
	filter: drop-shadow(0 5px 10px rgba(128, 128, 128, .5));
}
.intro04_list_bg {
	width: 88%;
	background: #ba2eff;
	border-radius: 0 0 20px 20px;
	box-shadow: 0px 0px 15px -2px rgba(186, 46, 255, 1);
	flex: 1 1 auto;
	text-align: center;
	margin: max(-1.6vw, -24px) auto 0;
	padding: min(3.2vw, 48px) 0;
}
.intro04_list_icon {
	width: 75px;
	height: 80px;
}
.intro04_list li:nth-child(1) .intro04_list_icon img {
	max-width: 61px;
}
.intro04_list li:nth-child(2) .intro04_list_icon img {
	max-width: 75px;
}
.intro04_list li:nth-child(3) .intro04_list_icon img {
	max-width: 73px;
}
.intro04_list li:nth-child(4) .intro04_list_icon img {
	max-width: 63px;
}
.intro04_list_title {
	font-size: min(1.6666vw, 20px);
	font-weight: 700;
	margin: 20px 0 0;
}
@media screen and (min-width: 1025px) {
.intro04_list li:nth-child(4n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
.intro04_list {
	max-width: 610px;
	margin: auto;
}
.intro04_list li {
	width: 48.33335%;
	margin-top: 40px;
}
.intro04_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.intro04_list li:nth-child(2n) {
	margin-right: 0;
}
.intro04_list_text > div {
	font-size: 3rem;
	top: 20px;
}
.intro04_list_bg {
	margin: -24px auto 0;
	padding: 48px 0;
}
.intro04_list_title {
	font-size: 2rem;
}
}
@media screen and (min-width: 769px) {
.intro04_list_icon {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: auto;
}
}
@media screen and (max-width: 768px) {
.intro_wrap.intro04 {
	background-image: url("../img/intro04_bg_sp.jpg");
	padding: 64px 0 80px;
}
.intro04_text {
	font-size: 2.4rem;
	margin: 0 0 40px;
}
.intro04_text > span {
	font-size: 4rem;
}
.intro04_text > span::before,
.intro04_text > span::after {
	width: 27.5px;
	height: 30.5px;
}
.intro04_list li {
	width: 100%;
}
.intro04_list li,
.intro04_list li:nth-child(-n + 2) {
	margin-top: 40px;
}
.intro04_list li:nth-child(1) {
	margin-top: 0;
}
.intro04_list_text > img {
	max-width: 200px;
	width: 66.6666%;
}
.intro04_list_text > div {
	font-size: 2.2rem;
	top: min(3vw, 12px);
}
.intro04_list_bg {
	border-radius: 10px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: -40px auto 0;
	padding: 56px 0 24px;
}
.intro04_list_icon {
	width: 56.5px;
	height: auto;
}
.intro04_list li:nth-child(1) .intro04_list_icon img {
	max-width: 46px;
}
.intro04_list li:nth-child(2) .intro04_list_icon img {
	max-width: 56.5px;
}
.intro04_list li:nth-child(3) .intro04_list_icon img {
	max-width: 54.5px;
}
.intro04_list li:nth-child(4) .intro04_list_icon img {
	max-width: 48px;
}
.intro04_list_title {
	font-size: 1.8rem;
	margin: 0 0 0 24px;
}
}


/* --------------------------------------------------------
	AIアシスタントレイナとは
-------------------------------------------------------- */
#about {
	background-image: url("../img/about_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	padding: 116px 0 0;
}
@media screen and (max-width: 768px) {
#about {
	background-image: url("../img/about_bg_sp.jpg");
	padding: 80px 0 0;
}
}
.about_wrap.about01 {
	max-width: 1600px;
	margin: auto;
	position: relative;
}
.about01_bg {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	text-align: center;
	padding: 110px min(4vw, 30px) 100px;
	position: relative;
}
.about01_bg::before {
	content: "";
	width: 1px;
	height: 100px;
	background: #66FFD6;
	background: linear-gradient(0deg, rgba(102, 255, 214, 1) 0%, rgba(186, 46, 255, 1) 100%);
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}
.about01_title,
.about01_text {
	position: relative;
	z-index: 2;
}
.about01_title {
	font-size: 3.6rem;
	font-weight: 700;
	margin: 0 0 48px;
}
.about01_text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
}
.about01_text p:not(:last-child) {
	margin: 0 0 40px;
}
.about01_img {
	position: absolute;
	bottom: 0;
	left: 6%;
	z-index: 1;
}
.about01_en {
	max-width: 664px;
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 120px;
	z-index: 0;
}
@media screen and (max-width: 1024px) {
.about01_bg {
	padding-bottom: 0;
}
.about01_en.is_pc { display: none; }
.about01_en.is_sp { display: block; }
.about01_en {
	max-width: inherit;
	width: 100vw;
	right: inherit;
	left: 50%;
	bottom: min(4.9vw, 64px);
	transform: translateX(-50%);
}
.about01_img {
	position: relative;
	left: 0;
	z-index: 0;
}
.about01_img img {
	width: 40%;
	max-width: 305px;
}
}
@media screen and (max-width: 768px) {
.about01_bg {
	border-radius: 10px;
	padding-top: 64px;
}
.about01_bg::before {
	height: 60px;
	top: -30px;
}
.about01_title {
	font-size: 2.4rem;
	margin: 0 0 24px;
}
.about01_text {
	font-size: 1.6rem;
	text-align: left;
}
.about01_text p:not(:last-child) {
	margin: 0 0 20px;
}
}

.about_wrap.about02 {
	margin: 80px 0 0;
}
.about_wrap.about02 .c-head01 {
	margin: 0 0 32px;
}
.about_wrap.about02 .en_title .ja {
	margin-top: -90px;
}
.about_wrap.about02 .en_title .ja .fc_grad {
	font-size: 4.8rem;
}
.about_wrap.about02 .c-head01 .c-head_text {
	margin: 40px 0 0;
}
.about02_img {
	text-align: center;
}
@media screen and (max-width: 768px) {
.about_wrap.about02 {
	margin: 24px 0 0;
}
.about_wrap.about02 .inner {
	width: 100%;
}
.about_wrap.about02 .c-head01 {
	padding: 0 2.5%;
}
.about_wrap.about02 .en_title .ja {
	line-height: 1.3;
	margin-top: -42px;
}
.about_wrap.about02 .en_title .ja .fc_grad {
	font-size: 4rem;
}
.about_wrap.about02 .c-head01 .c-head_text {
	margin: 24px 0 0;
}
}
@media screen and (max-width: 480px) {
.about_wrap.about02 .en_title .ja .fc_grad {
	font-size: 10.6666vw;
}
}


/* --------------------------------------------------------
	あなたの想像が、動き出す。世界に届く。
-------------------------------------------------------- */
#service .movie_wrap {
	margin: 0 0 70px;
}
#service .movie_wrap .movie_text {
	color: #7304b3;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
}
#service .movie_wrap .movie_text span {
	max-width: 520px;
	width: 100%;
	background: #fff;
	border-radius: 100px;
	box-shadow: 0px 0px 15px -2px rgba(186, 46, 255, 1);
	display: inline-block;
	padding: 20px 8px;
	position: relative;
}
#service .movie_wrap .movie_text span::before {
	content: "";
	width: 37px;
	height: 18px;
	background: url("../img/arrow_b_wh.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
}
#service .movie_wrap .movie_video {
	max-width: 848px;
	width: 100%;
	margin: auto;
}
#service .movie_wrap .movie_video > div {
	box-shadow: 0px 0px 15px -2px rgba(186, 46, 255, 1);
	padding-top: 75%;
	position: relative;
}
#service .movie_wrap .movie_video > div > video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#service .c-btn_wrap .btn_text {
	color: #fff;
}
#service .c-btn_wrap .c-btn01 {
	box-shadow: 0px 0px 15px -2px rgba(186, 46, 255, 1);
}

@media screen and (max-width: 768px) {
#service .movie_wrap {
	margin: 0 0 48px;
}
#service .movie_wrap .movie_text {
	font-size: 2.2rem;
	margin: 0 0 24px;
}
#service .movie_wrap .movie_text span {
	max-width: 300px;
	width: 84.5%;
	border-radius: 20px;
}
#service .movie_wrap .movie_text span::before {
	width: 27px;
	height: 10px;
}
}
@media screen and (max-width: 480px) {
}

/* --------------------------------------------------------
	お客様の声
-------------------------------------------------------- */
#voice {
	position: relative;
	z-index: 1;
}
.voice_list li {
	width: 48%;
	border-radius: 20px;
	box-shadow: 0px 0px 15px -2px rgba(115, 4, 179, .5);
	display: -webkit-box;
	display: flex;
	padding: min(4.48vw, 56px) min(2.4vw, 30px) min(4.48vw, 56px) min(3.2vw, 40px);
	margin-top: 4%;
	margin-right: 4%;
}
.voice_list_img {
	width: min(12.8vw, 160px);
}
.voice_list_textWrap {
	color: #fff;
	width: calc(100% - min(12.8vw, 160px));
	padding: 0 0 0 min(3.2vw, 40px);
}
.voice_list_title {
	font-size: 2.2rem;
	font-weight: 700;
	margin: 0 0 16px;
}
@media screen and (min-width: 1025px) {
.voice_list li:nth-child(-n + 2) {
	margin-top: 0;
}
}
@media screen and (max-width: 1024px) {
.voice_list li {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	margin-top: calc(4% + 70px);
	padding-top: 0;
}
.voice_list li:nth-child(-n + 2) {
	margin-top: 70px;
}
.voice_list_img {
	max-width: 160px;
	width: 100%;
	margin: -70px 0 12px;
}
.voice_list_textWrap {
	width: 100%;
	padding: 0;
}
}
@media screen and (min-width: 769px) {
.voice_list li:nth-child(2n) {
	margin-right: 0;
}
.voice_list_title { max-width: 300px; }
.voice_list li:nth-child(2) .voice_list_title { max-width: 280px; }
}
@media screen and (max-width: 768px) {
.voice_list li {
	width: 100%;
	border-radius: 10px;
	margin-right: 0;
}
.voice_list li,
.voice_list li:nth-child(-n + 2) {
	margin-top: 56px;
}
.voice_list li:nth-child(1) {
	margin-top: 35px;
}
.voice_list_img {
	max-width: 80px;
	margin-top: -35px;
}
.voice_list_title {
	font-size: 2rem;
	text-align: center;
	margin: 0 0 8px;
}
}


/* --------------------------------------------------------
	無料セミナーのご案内
-------------------------------------------------------- */
#seminar{
	padding: 80px 0 0;
}
.seminar_bg {
	max-width: 900px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	margin: auto;
	padding: 90px min(4vw, 30px) 72px;
	position: relative;
}
.seminar_img {
	max-width: 200px;
	width: 22.2%;
	position: absolute;
	right: min(6.8vw, 70px);
	bottom: 0;
}
.seminar_bg > div:not(.seminar_img) {
	max-width: 600px;
	width: 100%;
	margin: auto;
}
.seminar_list {
	margin: 0 0 56px;
}
#seminar dl > div {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 12px 32px;
}
#seminar dl > div:not(:last-child) {
	border-bottom: solid 1px #E6E6E6;
}
#seminar dl dt {
	width: 120px;
}
#seminar dl dt span {
	color: #fff;
	font-size: 1.8rem;
	width: 100%;
	background: #BA2EFF;
	border-radius: 100px;
	display: inline-block;
	text-align: center;
	padding: 10px;
}
#seminar dl dd {
	font-size: 2rem;
	font-weight: 700;
	width: calc(100% - 120px);
	padding: 0 0 0 40px;
}
#seminar dl dd span {
	color: #BA2EFF;
}
#seminar dl dd span span {
	font-size: 3rem;
}
.seminar_list > li:not(:last-child) {
	margin: 0 0 80px;
}
.c-check_list02 li:not(:last-child) {
	margin: 0 0 20px;
}
.c-check_list02 li {
	color: #BA2EFF;
	font-size: 2.2rem;
	font-weight: 700;
	padding: 0 0 0 40px;
	position: relative;
}
.c-check_list02 li::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/icon_check_pl02.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 6px;
	left: 0;
}
#seminar .c-btn_wrap .btn_text {
	font-size: 2rem;
	margin: 0 0 20px;
}
#seminar .c-btn_wrap .btn_text span {
	padding: 0 24px;
}
#seminar .c-btn_wrap .btn_text span::before,
#seminar .c-btn_wrap .btn_text span::after {
	width: 12px;
	height: 21px;
	top: 8px;
}
@media screen and (max-width: 768px) {
#seminar{
	padding: 56px 0 0;
}
.seminar_bg {
	border-radius: 10px;
	overflow: hidden;
	padding: 60px min(4vw, 30px) 72px;
}
#seminar dl > div {
	padding: 12px 0;
}
#seminar dl dt {
	width: 90px;
}
#seminar dl dt span {
	font-size: 1.6rem;
}
#seminar dl dd {
	font-size: 1.8rem;
	width: calc(100% - 90px);
	padding: 0 0 0 16px;
}
#seminar dl dd > span {
	line-height: 1.2;
}
#seminar dl dd span span {
	font-size: 2.2rem;
}
.seminar_list {
	margin: 0 0 40px;
}
.seminar_list > li:not(:last-child) {
	margin: 0 0 40px;
}
.c-check_list02 li {
	font-size: 1.8rem;
	padding: 0 0 0 28px;
}
.c-check_list02 li::before {
	width: 18px;
	height: 18px;
}
.seminar_img {
	max-width: 226px;
	width: 30%;
	right: max(-5.6vw, -42px);
}
#seminar .c-btn_wrap .btn_text span {
	padding: 0 30px;
}
#seminar .c-btn_wrap .btn_text span::before,
#seminar .c-btn_wrap .btn_text span::after {
	width: 22.5px;
	height: 40px;
	top: inherit;
}
}


/* --------------------------------------------------------
	今だけ限定特典プレゼント！
-------------------------------------------------------- */
#present {
	padding: 40px 0 120px;
}
#present .c-head01 {
	margin: 0 0 80px;
}
#present .c-head01 .en_title .ja .fc_grad {
	font-size: 4.8rem;
}
#present .c-head01 .en_title .ja .fc_grad::before,
#present .c-head01 .en_title .ja .fc_grad::after {
	content: "";
	width: 38px;
	height: 42px;
	background: url("../img/bubble02.svg") no-repeat;
	background-size: contain;
	display: inline-block;
}
#present .c-head01 .en_title .ja .fc_grad::before {
	margin: 0 10px 0 8px;
}
#present .c-head01 .en_title .ja .fc_grad::after {
	margin: 0 8px 0 10px;
	transform: scale(-1, 1);
}
#present .c-head01 .c-head_text {
	margin: 48px 0 0;
}
.present_list {
	max-width: 900px;
	width: 100%;
	margin: auto;
}
.present_list > li {
	background: #BA2EFF;
	border-radius: 20px;
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
	padding: 0 60px 0 calc(315px + 35px);
	position: relative;
}
.present_list_img {
	width: 315px;
	position: absolute;
	bottom: 0;
	left: 35px;
}
.present_list > li:not(:last-child) {
	margin: 0 0 40px;
}
.present_list > li:nth-child(1) .present_list_img img {
	max-width: 219px;
}
.present_list > li:nth-child(2) .present_list_img {
	bottom: -7px;
}
.present_list > li:nth-child(3) .present_list_img img {
	max-width: 303px;
}
.present_list > li:nth-child(4) .present_list_img img {
	max-width: 296px;
}
.present_list_textWrap {
	padding: 20px 0 20px 32px;
}
.present_list_title {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}
.present_list_title span {
	font-size: 2rem;
	display: inline-block;
}
.present_list_title span::before,
.present_list_title span::after {
	content: "";
	width: 8px;
	height: 19px;
	background: url("../img/present_deco.svg") no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: inherit;
	position: relative;
	top: 4px;
}
.present_list_title span::before {
	margin: 0 6px 0 0;
}
.present_list_title span::after {
	margin: 0;
	transform: scale(-1, 1);
}
.present_list_text {
	color: #BA2EFF;
	background: #fff;
	border-radius: 10px;
	text-align: center;
	margin: 24px 0 0;
	padding: 16px 10px;
	position: relative;
}
.present_list_text::before {
	content: "";
	width: 0;
	height: 0;
	border-style:solid;
	border-width: 0 7px 8px 7px;
	border-color: transparent transparent #fff transparent;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}
#present .btn_wrap {
	margin: 40px 0 0;
}
#present .c-btn_wrap .c-btn01 {
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
}
@media screen and (max-width: 1024px) {
.present_list > li {
	background: none;
	box-shadow: none;
	padding: 0;
}
.present_list_img {
	max-width: 158px;
	width: 42%;
	margin: auto;
	position: static;
}
.present_list > li:nth-child(1) .present_list_img img {
	max-width: 110px;
}
.present_list > li:nth-child(3) .present_list_img img {
	max-width: 151px;
}
.present_list > li:nth-child(4) .present_list_img img {
	max-width: 148px;
}
.present_list_textWrap {
	background: #BA2EFF;
	border-radius: 20px;
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
	margin-top: -70px;
	padding: 80px 16px 24px;
}
}
@media screen and (max-width: 768px) {
#present {
	padding: 24px 0 80px;
}
#present .c-head01 {
	margin: 0 0 32px;
}
#present .c-head01 .en_title .ja .fc_grad {
	font-size: 4rem;
}
#present .c-head01 .en_title .ja .fc_grad::before,
#present .c-head01 .en_title .ja .fc_grad::after {
	width: 27.5px;
	height: 30.5px;
}
#present .c-head01 .c-head_text {
	margin: 24px 0 0;
}
.present_list > li:not(:last-child) {
	margin: 0 0 24px;
}
.present_list_title,
.present_list_title span {
	font-size: 1.8rem;
}
.present_list_textWrap {
	border-radius: 10px;
}
.present_list_text {
	border-radius: 5px;
}
}


/* --------------------------------------------------------
	よくあるご質問
-------------------------------------------------------- */
.qa_bg {
	max-width: 1100px;
	width: 90%;
	margin: auto;
	padding: 16px min(3.9vw, 40px) 0 0;
	position: relative;
}
.qa_bg::before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../img/qa_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.qa_list {
	max-width: 702px;
	width: 72.5%;
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translateY(-50%);
	z-index: 2;
}
.qa_list li {
	font-size: min(1.953vw, 20px);
	font-weight: 700;
}
.qa_list li:not(:last-child) {
	margin: 0 0 32px;
}
.qa_list li span {
	display: inline-block;
	background: #fff;
	border-radius: 40px;
	box-shadow: 0px 0px 15px -2px rgba(179, 179, 179, 1);
	padding: 24px 32px;
	position: relative;
}
.qa_list li span::before {
	content: "";
	width: 27px;
	height: 13px;
	background-image: url("../img/qa_icon_wh.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
}
.qa_list li:nth-child(odd) span::before {
	left: 0;
}
.qa_list li:nth-child(even) {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.qa_list li:nth-child(even) span::before {
	background-image: url("../img/qa_icon_mi.svg");
	right: 0;
}
.qa_list li:nth-child(even) span {
	background: #57ddb7;
}
.qa_img {
	max-width: 350px;
	width: 50%;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
.qa_bg {
	width: 100%;
	padding: 24px 0 0;
}
.qa_bg::before {
	width: 80%;
	background-image: url("../img/qa_bg_sp.jpg");
	border-radius: 10px;
	left: 50%;
	transform: translateX(-50%);
}
.qa_list {
	max-width: inherit;
	width: 100%;
	position: static;
	transform: none;
	z-index: 1;
}
.qa_list li {
	font-size: 1.8rem;
}
.qa_list li:not(:last-child) {
	margin: 0 0 20px;
}
.qa_list li:nth-child(odd) {
	padding: 0 17% 0 2.8%;
}
.qa_list li:nth-child(even) {
	padding: 0 2.8% 0 17%;
}
.qa_list li span {
	border-radius: 20px;
	padding: min(4.2vw, 32px) min(5.3vw, 40px);
}
.qa_list li:nth-child(odd) span::before {
	left: -2.4%;
}
.qa_list li:nth-child(even) span::before {
	right: -2.4%;
}
.qa_img {
	width: 46.666%;
	margin: max(-2.666vw, -20px) auto 0;
	z-index: 2;
}
}

/* --------------------------------------------------------
	Instagram
-------------------------------------------------------- */
#insta_list li {
	width: 19.625%;
	margin-right: 0.46875%;
}
#insta_list li a {
	display: block;
	overflow: hidden;
	padding-top: 100%;
	position: relative;
}
#insta_list li a img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
#insta_list .count_wrapper {
	display: none;
}
#instagram .btn_wrap {
	margin: 68px 0 0;
}
#instagram .btn_wrap .c-btn01 {
	background: #7304b3;
	box-shadow: 0px 5px 10px -5px rgba(115, 4, 179, .5);
}
@media screen and (min-width: 769px) {
#insta_list li:nth-child(5n),
#insta_list li:last-child {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
#instagram .c-head01 {
	padding: 0 2.5%;
}
#insta_list li {
	width: 49.4666%;
	margin-top: 1.0668%;
	margin-right: 1.0668%;
}
#insta_list li:nth-child(-n + 2) {
	margin-top: 0;
}
#insta_list li:nth-child(2n),
#insta_list li:last-child {
	margin-right: 0;
}
#insta_list li:nth-child(n + 5) {
	display: none;
}
#instagram .btn_wrap {
	margin: 37px 0 0;
}
}

/* --------------------------------------------------------
	セミナー予約・お問い合わせ
-------------------------------------------------------- */
#contact {
	background-image: url("../img/contact_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0 115px;
}
.contact_form {
	max-width: 900px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	margin: auto;
	padding: 100px min(4vw, 30px);
}
.form_text {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
}
.contact_form table {
	max-width: 740px;
	margin: auto;
}
.contact_form table th,
.contact_form table td {
	padding: 20px 0;
}
.contact_form table th {
	width: 223px;
}
.form_radio_list li:not(:last-child) {
	margin: 0 30px 0 0;
}
.contact_form .required > span {
	color: #fff;
	font-size: 1.2rem;
	background: #ba2eff;
	border-radius: 100px;
	display: inline-block;
	line-height: 1;
	margin: 0 0 0 6px;
	padding: 4px 8px;
	position: relative;
	top: -1px;
}
.contact_form .btn_wrap {
	margin: 60px 0 0;
}
.contact_form .btn_wrap .c-btn01 {
	border: none;
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	text-shadow: none;
	transition: .5s;
}
.contact_form .btn_wrap .c-btn01:hover {
	background: #BA2EFF;
	background: linear-gradient(45deg, rgba(186, 46, 255, 1) 0%, rgba(102, 255, 214, 1) 100%);
	box-shadow: 0px 0px 10px -5px rgba(230, 230, 230, .5);
	opacity: .7;
}
#contact.thanks { padding-top: 120px; }
.thanks_title {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
#contact {
	background-image: url("../img/contact_bg_sp.jpg");
	padding: 56px 0 98px;
}
.form_text {
	font-size: 1.8rem;
	margin: 0 0 32px;
}
.contact_form {
	border-radius: 10px;
	padding: 56px min(4vw, 30px);
}
.contact_form table th,
.contact_form table td {
	width: 100%;
	display: block;
}
.contact_form table th { padding: 0; }
.contact_form table td { padding: 8px 0 32px; }
.contact_form table tr:last-child td { padding-bottom: 0; }
.contact_form .btn_wrap {
	margin: 32px 0 0;
}
#contact.thanks { padding-top: 100px; }
.thanks_title {
	font-size: 2.2rem;
}
}


#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro select,
#mailformpro textarea {
	font-size: 16px;
	width: 100% !important;
	background: #fff;
	border: solid 1px #ccc;
	border-radius: 5px;
	box-shadow: none;
	padding: 10px 16px;
	box-sizing: border-box;
}
#mailformpro input.mfp_element_all,
#mailformpro textarea.mfp_element_all {
	max-width: 100% !important;
}
#mailformpro textarea {
	height: 200px !important;
}
#mailformpro .radio {
	display: inline-block;
	margin: 0;
	padding: 0 0 0 18px;
	position: relative;
	cursor: pointer;
}
#mailformpro .radio::before,
#mailformpro .radio::after {
	content: "";
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: .5s;
}
#mailformpro .radio::before {
	width: 10px;
	height: 10px;
	background: #ba2eff;
	opacity: 0;
	left: 2px;
	z-index: 1;
}
#mailformpro .radio::after {
	width: 14px;
	height: 14px;
	background: #fff;
	border: solid 1px #bfbfbf;
	left: 0;
	z-index: 0;
}
#mailformpro input[type=radio]:checked ~ label:before {
	opacity: 1;
}
#mailformpro input::placeholder,
#mailformpro textarea::placeholder {
	color: #b3b3b3;
}
/* 旧Edge対応 */
#mailformpro input::-ms-input-placeholder,
#mailformpro textarea::-ms-input-placeholder {
	color: #b3b3b3;
}
/* IE対応 */
#mailformpro input:-ms-input-placeholder,
#mailformpro textarea:-ms-input-placeholder {
	color: #b3b3b3;
}
@media screen and (max-width: 768px) {
#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro select,
#mailformpro textarea {
	font-size: 14px;
}
#mailformpro textarea {
	height: 160px !important;
}
}
