<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*==============================================

    STYLE SHEET

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

  RESET

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

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

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

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

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

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

  SETTING MIXIN

==============================================*/
/*==============================================
    2-1. mixins
==============================================*/
/* font family */
/* safari browser hack */
/*==============================================

  BASE

==============================================*/
html {
	font-size: 14px;
}
@media screen and (min-width: 1024px) {
	html {
		font-size: 15px;
	}
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.5;
	background-color: #ffffff;
	color: #333333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
a:link, a:visited {
	color: #333333;
}

@media screen and (min-width: 1024px) {
	a:hover {
		opacity: 0.7;
	}
}

a[data-rel=external]:after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: 0.5em;
}

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

  LAYOUT

==============================================*/
/*==============================================
  LAYOUT LIMIT
==============================================*/
.l-limit {
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.l-limit {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

.l-container {
	padding-top: 0;
}
@media screen and (min-width: 1024px) {
	.l-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		position: relative;
		max-width: 1280px;
		margin: 0 auto;
		padding-top: 0;
	}
}
.home .l-container {
	padding-top: 0;
}
@media screen and (min-width: 1024px) {
	.home .l-container {
		position: relative;
		padding-top: 82px;
	}
}

@media screen and (min-width: 1024px) {
	.l-main-area {
		width: calc(100% - 300px);
		margin-left: auto;
		padding-left: 1.40625%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

.l-main-area__wrap {
	padding-top: 50px;
}

/*==============================================
  LAYOUT FRAME
==============================================*/
.l-frame {
	width: 89.3333333333%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.l-frame {
		width: 89.0625%;
	}
}

/*==============================================
  LAYOUT COLUMNS
==============================================*/
@media screen and (min-width: 1024px) {
	.l-column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.l-column-both {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.l-column--wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.l-column--reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

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

  HEADER

==============================================*/
.l-header {
	z-index: 120;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 58px;
	padding: 8px 3.2%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
	.l-header {
		min-height: 81px;
		padding: 6px 3.125% 12px 3.75%;
		border-bottom: 1px solid #dcdcdc;
	}
}
.home .l-header {
	position: fixed;
}

@media screen and (min-width: 1024px) {
	.l-header-inner {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0 auto;
		padding: 0;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
@media screen and (min-width: 1280px) {
	.l-header-inner {
		padding: 0 0.4% 0 1%;
	}
}

.l-header__logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media screen and (min-width: 1024px) {
	.l-header__logo {
		position: absolute;
		top: 10px;
		left: 1.5625%;
		padding-left: 28px;
	}
}
.l-header__logo a {
	display: block;
}
.l-header__logo .-main {
	width: 128px;
}
@media screen and (min-width: 1024px) {
	.l-header__logo .-main {
		width: 187px;
	}
}
.l-header__logo .-sub {
	width: 75px;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
}
@media screen and (min-width: 1024px) {
	.l-header__logo .-sub {
		width: 110px;
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
	}
}

.l-header__btn {
	position: fixed;
	top: 8px;
	right: 2%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	-webkit-transition: all 0.5s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.5s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.l-header__btn {
		display: none;
	}
}
.home .l-header__btn {
	position: absolute;
	top: 8px;
	right: 2%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.home .l-header__btn {
		display: none;
	}
}
.l-header__btn.is-fixed {
	top: 120px;
	background: #ffffff;
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.l-header__btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 19px;
	height: 3px;
	border-radius: 200px;
	background-color: #707070;
	-webkit-transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.l-header__btn span::before {
	content: "";
	position: absolute;
	top: -6px;
	width: 19px;
	height: 3px;
	border-radius: 200px;
	background-color: #707070;
	-webkit-transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.l-header__btn span::after {
	content: "";
	position: absolute;
	top: 6px;
	width: 19px;
	height: 3px;
	border-radius: 200px;
	background-color: #707070;
	-webkit-transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.l-header__btn.is-active span {
	background-color: #ffffff;
}
.l-header__btn.is-active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.l-header__btn.is-active span::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.l-header__login {
	padding: 10px 0 2px;
}
@media screen and (min-width: 1024px) {
	.l-header__login {
		display: block;
		margin-left: auto;
		padding: 0;
		-webkit-transform: translateY(12px);
		transform: translateY(12px);
	}
}
.l-header__login ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 1024px) {
	.l-header__login ul {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}
.l-header__login li {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.l-header__login li a {
	display: block;
}
.l-header__login li {
	text-align: center;
	width: calc((100% - 10px) / 2);
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8666666667rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.l-header__login li {
		width: 174px;
		font-size: 0.9333333333rem;
		line-height: 1;
	}
}
.l-header__login li a {
	display: block;
	padding: 14px 0;
	border-radius: 200px;
	white-space: nowrap;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.l-header__login li a {
		width: 100%;
		padding: 14px 0;
	}
}
.l-header__login li:nth-child(1) a {
	border: 1px solid #ff8400;
	background-color: #ff8400;
	color: #ffffff;
}
.l-header__login li:nth-child(1) a:hover {
	opacity: 1;
	background-color: #ed800c;
}
.l-header__login li:nth-child(2) a {
	border: 1px solid #cccccc;
	background-color: #ffffff;
}
.l-header__login li:nth-child(2) a:hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}
@media screen and (min-width: 1024px) {
	.l-header__login li + li {
		margin-left: 10px;
	}
}

/*
* clone header
*/
.home .l-header {
	position: relative;
}
@media screen and (min-width: 1024px) {
	.home .l-header {
		position: fixed;
	}
}

@media screen and (max-width: 1023px) {
	.l-header.is-clone {
		position: fixed !important;
		top: 0;
		left: 0;
		padding-top: 10px;
		padding-bottom: 10px;
		-webkit-transform: translateY(-200px);
		transform: translateY(-200px);
		-webkit-transition: -webkit-transform 0.5s ease 0s;
		transition: -webkit-transform 0.5s ease 0s;
		transition: transform 0.5s ease 0s;
		transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	}
}
@media screen and (min-width: 1024px) {
	.l-header.is-clone {
		display: none;
	}
}
@media screen and (max-width: 1023px) {
	.l-header.is-clone .l-header__logo {
		width: 166px;
	}
}
@media screen and (max-width: 1023px) {
	.l-header.is-clone .l-header__btn {
		z-index: 100;
		top: 60px;
		background-color: #ffffff;
		border-radius: 50%;
	}
}
@media screen and (max-width: 1023px) {
	.l-header.is-clone .l-header__login {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 2.6666666667%;
		width: calc(100% - 200px);
		padding-top: 0;
	}
	.l-header.is-clone .l-header__login li {
		width: calc((100% - 6px) / 2);
		font-family: "Zen Maru Gothic", sans-serif;;
		font-weight: 700;
		font-size: 0.6666666667rem;
		line-height: 1;
	}
}

.l-header.l-header--fixed {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.l-header.l-header--fixed .l-header__btn {
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

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

  FOOTER

==============================================*/
.l-footer {
	padding-bottom: 0;
}
.home .l-footer {
	padding-bottom: 117px;
}
@media screen and (min-width: 1024px) {
	.home .l-footer {
		padding-bottom: 0;
	}
}
@media screen and (max-width: 1023px) {
	.l-footer .c-btn-question {
		width: 89.3333333333%;
		margin: 0 auto;
	}
}

.l-footer-sidebar {
	padding-top: 70px;
}
@media screen and (min-width: 1024px) {
	.l-footer-sidebar {
		display: none;
	}
}

.l-footer__pagetop {
	z-index: 21;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 0.5%;
	bottom: 20px;
	width: 40px;
	-webkit-transition: opacity 0.5s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: opacity 0.5s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.l-footer__pagetop {
		right: 10px;
		bottom: 20px;
		width: 60px;
	}
}
.l-footer__pagetop.is-active {
	opacity: 1;
	pointer-events: auto;
}
.home .l-footer__pagetop {
	bottom: 126px;
}
@media screen and (min-width: 1024px) {
	.home .l-footer__pagetop {
		bottom: 70px;
	}
}

.l-footer__banner {
	display: none;
	z-index: 30;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 10px 0;
	background-color: #f7f3b2;
}
@media screen and (min-width: 1024px) {
	.l-footer__banner {
		display: none;
	}
}
.l-footer__banner a {
	display: block;
	width: 58.6666666667%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.l-footer__banner p {
	text-decoration: underline;
	padding-top: 8px;
	font-size: 0.8571428571rem;
	line-height: 1.4166666667;
}
@media screen and (min-width: 1024px) {
	.l-footer__banner p {
		font-size: 0.8rem;
		line-height: 1.4166666667;
	}
}
.home .l-footer__banner {
	display: block;
}
@media screen and (min-width: 1024px) {
	.home .l-footer__banner {
		display: none;
	}
}

.l-footer__banner__icon {
	position: absolute;
	left: 5.3333333333%;
	background-color: #ffffff;
	width: 46px;
	height: 46px;
	border-radius: 50%;
}
.l-footer__banner__icon span {
	text-align: center;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: "Fredoka", sans-serif;;
	font-weight: 700;
	font-size: 0.7857142857rem;
	line-height: 1.2727272727;
}

.l-footer__sns {
	padding-top: 80px;
	padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
	.l-footer__sns {
		padding-top: 140px;
	}
}
.l-footer__sns p {
	text-align: center;
	padding-bottom: 15px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-footer__sns p {
		font-size: 1.4666666667rem;
		line-height: 1.5;
	}
}
.l-footer__sns ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.l-footer__sns li {
	width: 50px;
	padding: 0 4px;
}

.l-footer__copyright {
	z-index: 20;
	position: relative;
	text-align: center;
	background-color: #59b4e6;
	padding: 1em;
}
.l-footer__copyright small {
	color: #ffffff;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-footer__copyright small {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

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

  SIDE BAR

==============================================*/
.l-sidebar {
	opacity: 0;
	pointer-events: none;
	z-index: 100;
	position: fixed;
	top: 52px;
	left: 0;
	width: 100%;
	height: 100dvh;
	padding: 60px 5.3333333333%;
	background-color: #f2f2f2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	-webkit-transition: opacity 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: opacity 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
@media screen and (min-width: 1024px) {
	.l-sidebar {
		z-index: 5;
		opacity: 1;
		pointer-events: auto;
		position: fixed;
		top: 82px;
		left: 1.5625%;
		width: 277px;
		height: 100%;
		margin: 40px 0;
		padding: 0 0 140px;
		background-color: transparent;
	}
}
.l-sidebar::-webkit-scrollbar {
	display: none;
}
.l-sidebar.is-active {
	opacity: 1;
	pointer-events: auto;
}
.l-sidebar.is-fixed {
	top: 0;
}

@media screen and (max-width: 1023px) {
	.l-sidebar .l-sidebar-wrap--banner,
	.l-sidebar .l-sidebar-wrap--book,
	.l-sidebar .l-sidebar-wrap--benefits {
		display: none;
	}
}

.l-sidebar-wrap {
	position: relative;
	padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap {
		padding: 30px 28px 20px;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap:nth-of-type(1) {
		border-radius: 16px;
		background-color: #eff3d7;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap:nth-of-type(2) {
		border-radius: 16px;
		background-color: #f7e8e7;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap:nth-of-type(3) {
		border-radius: 16px;
		background-color: #EBEBF4;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap--banner, .l-sidebar-wrap--book, .l-sidebar-wrap--benefits {
		padding: 0 28px 30px;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar-wrap + .l-sidebar-wrap {
		margin-top: 10px;
	}
}

.l-sidebar__category {
	padding-bottom: 10px;
}
.l-sidebar__category p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__category p {
		font-size: 1.8666666667rem;
		line-height: 1;
	}
}

.l-sidebar__object {
	position: absolute;
	width: 43px;
	top: -6px;
	right: 0;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__object {
		top: 28px;
		right: 30px;
	}
}

.l-sidebar__list {
	padding: 0 2.2727272727%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.l-sidebar__list li {
	position: relative;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__list li {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.l-sidebar__list li a {
	display: block;
	padding: 7px 14px;
	border-radius: 5px;
	-webkit-transition: background-color 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: background-color 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	cursor: pointer;
}
.l-sidebar__list li a:hover {
	opacity: 1;
	background-color: #ffffff;
}
.l-sidebar__list li a.is-active {
	background-color: #ffffff;
}
.l-sidebar__list li p {
	display: block;
	padding: 7px 14px;
	border-radius: 5px;
	-webkit-transition: background-color 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: background-color 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	cursor: pointer;
}
.l-sidebar__list li p:hover {
	opacity: 1;
	background-color: #ffffff;
}
.l-sidebar__list li p.is-active {
	background-color: #ffffff;
}
.l-sidebar__list li span.-star {
	position: relative;
	display: inline-block;
}
.l-sidebar__list li span.-star::before {
	content: "";
	position: absolute;
	top: -2px;
	right: -20px;
	width: 16.7px;
	height: 17.1px;
	background: transparent url(../../image/icon_star.svg) no-repeat scroll center center/cover;
}
.l-sidebar__list ul li ul li a:hover {
	background-color: #ededed;
}

.l-sidebar__list .is-current a, .l-sidebar__list .is-current p {
	background-color: #ffffff;
}
.l-sidebar__list .is-current .l-sidebar__list__btn {
	pointer-events: none;
}
.l-sidebar__list .is-current .l-sidebar__list__btn span {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}
.l-sidebar__list .is-current .l-sidebar__list__btn span::before {
	width: 6px;
	top: -2px;
	right: 0;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}
.l-sidebar__list .is-current .l-sidebar__list__btn span::after {
	width: 6px;
	top: 2px;
	right: 0;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.l-sidebar__list .is-current .l-sidebar__list__btn + ul {
	display: block;
}

/*==============================================
  serch.css/know.css/learn.css　共通編集
==============================================*/
/* .search-works .l-sidebar__list .is-current ul li:nth-child(1) a,
.search-works-look .l-sidebar__list .is-current ul li:nth-child(1) a,
.search-works-result .l-sidebar__list .is-current ul li:nth-child(1) a,
.search-monthly .l-sidebar__list .is-current ul li:nth-child(1) a,
.search-session .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.search-seminar .l-sidebar__list .is-current ul li:nth-child(2) a {
	background-color: #ededed;
}

.know-explanation-index .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-explanation-01 .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-explanation-02 .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-explanation-03 .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-explanation-04 .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.know-study-index .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-study-01 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-study-02 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-study-03 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-study-04 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-study-05 .l-sidebar__list .is-current ul li:nth-child(2) a {
	background-color: #ededed;
}

.know-words .l-sidebar__list .is-current ul li:nth-child(3) a,
.know-words-detail .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
}

.know-qa .l-sidebar__list .is-current ul li:nth-child(4) a {
	background-color: #ededed;
}

.know-interview .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
}

.know-training .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.know-training_diary .l-sidebar__list .is-current ul li:nth-child(2) a {
	background-color: #ededed;
}

.know-diary_example .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
}

.know-play_movie .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.know-kousaku .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-01 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-02 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-03 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-04 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-05 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-06 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-07 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-08 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-09 .l-sidebar__list .is-current ul li:nth-child(2) a,
.know-kousaku-10 .l-sidebar__list .is-current ul li:nth-child(2) a {
	background-color: #ededed;
}

.know-lifestyle .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-lifestyle-00 .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.know-interview .l-sidebar__list .is-current ul li:nth-child(1) a,
.know-interview-result .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
} */

.learn-young_surv-index .l-sidebar__list .is-current ul li:nth-child(1) a {
	background-color: #ededed;
}

.learn-men_surv-index .l-sidebar__list .is-current ul li:nth-child(2) a {
	background-color: #ededed;
}

/* .learn-thanks .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
} */

/* .learn-candidate-index .l-sidebar__list .is-current ul li:nth-child(3) a,
.learn-candidate-01_24 .l-sidebar__list .is-current ul li:nth-child(3) a,
.learn-candidate-02_24 .l-sidebar__list .is-current ul li:nth-child(3) a,
.learn-candidate-03_24 .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
} */

.learn-interview-index .l-sidebar__list .is-current ul li:nth-child(3) a,
.learn-interview-01 .l-sidebar__list .is-current ul li:nth-child(3) a,
.learn-interview-02 .l-sidebar__list .is-current ul li:nth-child(3) a {
	background-color: #ededed;
}


/* .learn-male .l-sidebar__list .is-current ul li:nth-child(5) a {
	background-color: #ededed;
} */


.learn-zadankai .l-sidebar__list .is-current ul li:nth-child(4) a {
	background-color: #ededed;
}

.learn-experience-index .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-01 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-02 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-03 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-04 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-05 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-06 .l-sidebar__list .is-current ul li:nth-child(5) a,
.learn-experience-07 .l-sidebar__list .is-current ul li:nth-child(5) a {
	background-color: #ededed;
}

/*==============================================
  serch.css/know.css/learn.css　共通編集
==============================================*/

.l-sidebar__list__btn {
	position: absolute;
	right: 0;
	top: 8px;
	width: 33px;
	height: 20px;
	border-left: 1px solid #d1d1d1;
	cursor: pointer;
	pointer-events: none;
}
.l-sidebar__list__btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 13px;
	height: 1px;
	border-radius: 200px;
	background-color: #b3b3b3;
	-webkit-transition: -webkit-transform 0.4s ease 0s;
	transition: -webkit-transform 0.4s ease 0s;
	transition: transform 0.4s ease 0s;
	transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}
.l-sidebar__list__btn span::before {
	content: "";
	position: absolute;
	top: -4px;
	width: 13px;
	height: 1px;
	border-radius: 200px;
	background-color: #b3b3b3;
	-webkit-transition: -webkit-transform 0.4s ease 0s;
	transition: -webkit-transform 0.4s ease 0s;
	transition: transform 0.4s ease 0s;
	transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
}
.l-sidebar__list__btn span::after {
	content: "";
	position: absolute;
	top: 4px;
	width: 13px;
	height: 1px;
	border-radius: 200px;
	background-color: #b3b3b3;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.l-sidebar__list__btn:hover span {
	-webkit-transform: scale(1.2) rotate(0.1deg) translate(-50%, -50%);
	transform: scale(1.2) rotate(0.1deg) translate(-50%, -50%);
}
.l-sidebar__list__btn.is-active span {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}
.l-sidebar__list__btn.is-active span::before {
	width: 6px;
	top: -2px;
	right: 0;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}
.l-sidebar__list__btn.is-active span::after {
	width: 6px;
	top: 2px;
	right: 0;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.l-sidebar__list__btn + ul {
	display: none;
	margin-left: 4.7619047619%;
	margin-bottom: 10px;
	padding: 1px 0;
	background-color: #ffffff;
	border-radius: 0 0 5px 5px;
}
.l-sidebar__list__btn + ul a {
	margin: 6px;
	border-radius: 5px;
}

.l-sidebar__banner {
	padding: 0 20.8%;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__banner {
		padding: 0;
	}
}
.l-sidebar__banner + * {
	padding-top: 20px;
}
.l-sidebar__banner p {
	text-decoration: underline;
	padding-top: 8px;
	font-size: 0.8571428571rem;
	line-height: 1.4166666667;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__banner p {
		font-size: 0.8rem;
		line-height: 1.4166666667;
	}
}

.l-sidebar__book {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 88.7323943662%;
	margin: 20px auto 0;
	padding: 40px 6.3492063492% 20px;
	border: 1px solid #EDEDED;
	border-radius: 6px;
	background-color: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__book {
		display: block;
		width: 100%;
		padding: 40px 0;
	}
}
.l-sidebar__book p {
	display: inline-block;
	text-align: center;
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.2;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__book p {
		font-size: 1.0666666667rem;
		line-height: 1.2;
	}
}
.l-sidebar__book p &gt; span {
	position: relative;
}
.l-sidebar__book p &gt; span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -20px;
	-webkit-transform: translateY(-50%) rotate(75deg);
	transform: translateY(-50%) rotate(75deg);
	width: 20px;
	height: 1px;
	background-color: #000000;
}
.l-sidebar__book p &gt; span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-transform: translateY(-50%) rotate(-75deg);
	transform: translateY(-50%) rotate(-75deg);
	width: 20px;
	height: 1px;
	background-color: #000000;
}
.l-sidebar__book span:not(p span) {
	display: block;
	text-align: left;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__book span:not(p span) {
		text-align: center;
		padding-top: 16px;
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.l-sidebar__book a {
	display: block;
	width: 72px;
	margin-right: 20px;
	-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1024px) {
	.l-sidebar__book a {
		width: 118px;
		margin: 0 auto;
	}
}

.l-sidebar__benefits {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 88.7323943662%;
	margin: 0 auto;
	padding: 12px 3.1746031746% 12px;
	background-color: #FBF0D1;
	border-radius: 6px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 10px 10px 20px;
	}
}

.l-sidebar__benefits__title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 3.1746031746%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__title {
		padding: 0;
	}
}
.l-sidebar__benefits__title span {
	width: 70px;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__title span {
		width: 60px;
	}
}
.l-sidebar__benefits__title p {
	width: calc(100% - 70px);
	padding-left: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__title p {
		width: calc(100% - 60px);
		padding-left: 6px;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
@media screen and (max-width: 1023px) {
	.l-sidebar__benefits__title p br {
		display: none;
	}
}

.l-sidebar__benefits__image {
	width: 96px;
	padding: 16px 0;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__image {
		width: 120px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 1023px) {
	.l-sidebar__benefits__explanation {
		width: calc(100% - 96px);
		padding-left: 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__explanation {
		padding: 0 2px;
	}
}
.l-sidebar__benefits__explanation p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__explanation p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.l-sidebar__benefits__explanation ul {
	padding-top: 4px;
}
.l-sidebar__benefits__explanation li {
	font-size: 0.8571428571rem;
	line-height: 1.4;
}
@media screen and (min-width: 1024px) {
	.l-sidebar__benefits__explanation li {
		font-size: 0.8rem;
		line-height: 1.4;
	}
}
.l-sidebar__benefits__explanation li + * {
	padding-top: 4px;
}

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

  COMPONENT

==============================================*/
/*==============================================
  COMPONENT TEXT
==============================================*/
.c-h1 {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-h1 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-p {
	margin: 1em 0;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-p {
		font-size: 1rem;
		line-height: 1.5;
	}
}

.c-note {
	padding-top: 40px;
}
.c-note + * {
	padding-top: 10px !important;
}
.c-note p {
	color: red;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-note p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-note p::before {
	content: "★";
}

/*==============================================
  COMPONENT TEXT
==============================================*/
.c-title-wrap {
	position: relative;
}
.c-title-wrap + * {
	padding-top: 50px;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap + * {
		padding-top: 140px;
	}
}

.c-title-wrap__category {
	position: relative;
	width: 130px;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category {
		width: 217px;
	}
}
.c-title-wrap__category p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.5428571429rem;
	line-height: 1.1990740741;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category p {
		font-size: 2.4rem;
		line-height: 1.2;
	}
}
.c-title-wrap__category span {
	display: block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.7714285714rem;
	line-height: 1.462962963;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category span {
		font-size: 1.2rem;
		line-height: 1.4611111111;
	}
}
.know .c-title-wrap__category p {
	top: 64px;
	left: 76px;
}
@media screen and (min-width: 1024px) {
	.know .c-title-wrap__category p {
		top: 104px;
		left: 118px;
	}
}
.learn .c-title-wrap__category p {
	top: 58px;
	left: 60px;
}
@media screen and (min-width: 1024px) {
	.learn .c-title-wrap__category p {
		top: 96px;
		left: 99px;
	}
}

.c-title-wrap__category--sm {
	width: 100px;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category--sm {
		width: 138px;
	}
}
.c-title-wrap__category--sm p {
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category--sm p {
		font-size: 1.5333333333rem;
		line-height: 1.5;
	}
}
.c-title-wrap__category--sm span {
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__category--sm span {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

.c-title-wrap__title {
	text-align: center;
	width: 94.6666666667%;
	margin: 0 auto;
	padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__title {
		margin-top: -40px;
		padding-bottom: 30px;
	}
}
.c-title-wrap__title + * {
	margin-top: 0 !important;
}
.c-title-wrap__title h2 {
	display: inline-block;
	position: relative;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1142857143rem;
	line-height: 1.1987179487;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__title h2 {
		font-size: 1.7333333333rem;
		line-height: 1.2;
	}
}
.c-title-wrap__title span {
	font-size: 2rem;
	line-height: 1.2;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__title span {
		font-size: 3.0666666667rem;
		line-height: 1.2;
	}
}
.c-title-wrap__title small {
	display: block;
	padding-top: 6px;
	font-size: 0.5714285714rem;
	line-height: 1.25;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__title small {
		font-size: 0.9333333333rem;
		line-height: 1.2;
	}
}
.c-title-wrap__title p {
	text-align: center;
	padding-top: 30px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-title-wrap__title p {
		padding-top: 36px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-title-wrap__title + .c-box-column {
	padding-top: 0;
}

.c-title-search::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: -10px;
	width: 36px;
	height: 36px;
	background-color: #a5d544;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-title-search::before {
		top: -20px;
		width: 60px;
		height: 60px;
	}
}

.c-title-info::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: -10px;
	width: 36px;
	height: 36px;
	background-color: #94D2EC;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-title-info::before {
		top: -20px;
		width: 60px;
		height: 60px;
	}
}

.c-title-know::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: -10px;
	left: -10px;
	width: 36px;
	height: 36px;
	background-color: #f1917a;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-title-know::before {
		top: -20px;
		left: -20px;
		width: 60px;
		height: 60px;
	}
}

.c-title-learn::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: -10px;
	width: 36px;
	height: 36px;
	background-color: #b0b0eb;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-title-learn::before {
		top: -20px;
		width: 60px;
		height: 60px;
	}
}

.-r::before {
	right: -10px;
	left: auto;
}
@media screen and (min-width: 1024px) {
	.-r::before {
		right: -20px;
		left: auto;
	}
}

.-l::before {
	right: auto;
	left: -10px;
}
@media screen and (min-width: 1024px) {
	.-l::before {
		right: auto;
		left: -20px;
	}
}

/*==============================================
  COMPONENT BUTTON
==============================================*/
.c-btn {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.c-btn a {
	position: relative;
	text-align: center;
	display: inline-block;
	width: 284px;
	padding: 12px 42px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-btn a {
		font-size: 0.9333333333rem;
		line-height: 1.75;
	}
}
.c-btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	width: 30px;
	height: 30px;
	background: transparent url(../../image/btn_01.svg) no-repeat scroll center center/cover;
}
.c-btn a:hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}

.c-btn--rr a::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: auto;
	left: 10px;
	width: 30px;
	height: 30px;
	background: transparent url(../../image/btn_01.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.c-btn-question a {
	position: relative;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
	padding: 12px 9.0909090909% 12px 10%;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1;
}

.c-btn-question.publish-question {
    margin-top: 16px;
}

.c-btn-question.publish-question &gt; a {
    padding: 12px;
}


@media screen and (min-width: 1024px) {
	.c-btn-question a {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		width: 100%;
		margin: 0;
		font-size: 0.8666666667rem;
		line-height: 1;
	}
}
.c-btn-question a img {
	width: 10px;
}
.c-btn-question a span {
	padding-left: 10px;
}
.c-btn-question a:hover {
	background-color: #ededed;
	border-color: #ededed;
}

.c-btn-arrow,
.c-btn-sticky {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-btn-arrow,
	.c-btn-sticky {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		margin: 0 auto;
		padding-bottom: 0;
	}
}
.c-btn-arrow a,
.c-btn-sticky a {
	position: relative;
	display: block;
	width: 94.6666666667%;
	margin: 0 2px;
	padding: 10px 0;
	color: #ffffff;
	background-color: #FF8400;
	border-radius: 200px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.2666666667;
}
@media screen and (min-width: 1024px) {
	.c-btn-arrow a,
	.c-btn-sticky a {
		width: 100%;
		margin: 0;
		padding: 20px 0;
		font-size: 1rem;
		line-height: 1.6;
	}
}
.c-btn-arrow a:hover,
.c-btn-sticky a:hover {
	opacity: 1;
	background-color: #ed800c;
}
.c-btn-arrow a::before,
.c-btn-sticky a::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 12px;
	width: 30px;
	height: 30px;
	background: transparent url(../../image/btn_03.svg) no-repeat scroll center center/cover;
}

.c-btn-sticky {
	z-index: 10;
	position: -webkit-sticky;
	position: sticky;
	top: 40px;
}
@media screen and (min-width: 1024px) {
	.c-btn-sticky {
		top: 54px;
		padding-right: 5.1867219917%;
	}
}
.c-btn-sticky a {
	width: 79.2%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-btn-sticky a {
		width: 100%;
		max-width: 504px;
	}
}

/*==============================================
  COMPONENT BREAD CLUMB
==============================================*/
.c-breadcrumb {
	z-index: 20;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	padding: 10px 0 5px 2.6666666667%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-breadcrumb {
		top: 0;
		padding: 16px 4.1493775934% 11px;
	}
}
.search .c-breadcrumb {
	background-color: #f3f8e8;
}
.know .c-breadcrumb {
	background-color: #faf1f0;
}
.learn .c-breadcrumb {
	background-color: #f3f3fa;
}
.c-breadcrumb ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow-x: scroll;
	padding-bottom: 5px;
}
@media screen and (min-width: 1024px) {
	.c-breadcrumb ul {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.c-breadcrumb ul::-webkit-scrollbar {
		display: none;
	}
}
.c-breadcrumb li {
	padding: 0 10px;
	white-space: nowrap;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 400;
	font-size: 0.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-breadcrumb li {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-breadcrumb li:first-of-type {
	padding-left: 0;
}
.c-breadcrumb a {
	position: relative;
	color: #4d4d4d;
}
.c-breadcrumb a::before {
	content: "/";
	position: absolute;
	top: -4px;
	right: -12px;
	color: #cccccc;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-breadcrumb a::before {
		top: -3px;
		right: -14px;
		font-size: 1rem;
		line-height: 1.5;
	}
}

/*==============================================
  COMPONENT CAROUSEL
==============================================*/
.c-carousel-card {
	position: relative;
	padding-bottom: 30px;
	overflow: hidden;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card {
		padding-bottom: 40px;
	}
}
.c-carousel-card .swiper-button-prev {
	left: 1.0666666667%;
	width: 42px;
	height: 42px;
	background: transparent url(../../image/arrow_prev_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card .swiper-button-prev {
		display: none;
		width: 56px;
		height: 56px;
	}
}
.c-carousel-card .swiper-button-next {
	right: 1.0666666667%;
	width: 42px;
	height: 42px;
	background: transparent url(../../image/arrow_next_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card .swiper-button-next {
		right: 2.0746887967%;
		width: 56px;
		height: 56px;
	}
}

.c-carousel-card--publish {
	padding-top: 0 !important;
}
.c-carousel-card--publish .swiper-button-prev {
	left: 1.0666666667%;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card--publish .swiper-button-prev {
		display: block;
		top: 44%;
		left: 1.0373443983%;
	}
}
.c-carousel-card--publish .swiper-button-next {
	right: 1.0666666667%;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card--publish .swiper-button-next {
		top: 44%;
		right: 1.0373443983%;
	}
}
.c-carousel-card--publish .c-carousel-card__item {
	padding-top: 0 !important;
}
.c-carousel-card--publish .c-carousel-card__item__textarea {
	padding: 20px 7.0422535211% 30px !important;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card--publish .c-carousel-card__item__textarea {
		padding: 16px 7.0422535211% 16px !important;
	}
}

.c-carousel-card__item {
	height: auto !important;
	border-radius: 18px 18px;
}
.c-carousel-card__item a {
	display: block;
	height: 100%;
}
.c-carousel-card__item a:hover {
	opacity: 1;
}
.c-carousel-card__item a:hover .c-carousel-card__item__thumb {
	-webkit-transform: scale(0.97) rotate(0.1deg);
	transform: scale(0.97) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-carousel-card__item a:hover .c-carousel-card__item__thumb img {
	display: block;
	-webkit-transform: scale(1.1) rotate(0.1deg);
	transform: scale(1.1) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-carousel-card__item .c-thumbnail__wrap {
	border-radius: 10px 10px 0 0;
}

.c-carousel-card__item__comment {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__comment {
		top: 0;
		left: 0;
	}
}
.c-carousel-card__item__comment p {
	position: relative;
	display: inline-block;
	padding: 8px 16px;
	background-color: #ffffff;
	border: 2px solid #a3d344;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__comment p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-carousel-card__item__comment p::before {
	content: "";
	position: absolute;
	left: 20px;
	bottom: -8px;
	width: 12px;
	height: 6px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid #a3d344;
	border-left: 2px solid #a3d344;
	border-bottom: 2px solid #a3d344;
}
.c-carousel-card__item__comment p::after {
	content: "";
	position: absolute;
	left: 34px;
	bottom: -20px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid #b0b0eb;
	pointer-events: none;
}

.c-carousel-card__item__thumb {
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	border-radius: 10px 10px 0 0;
}
.c-carousel-card__item__thumb img {
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}

.c-carousel-card__item__textarea {
	padding: 20px 7.0422535211% 30px;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
}
.c-carousel-card__item__textarea h3, .c-carousel-card__item__textarea h5 {
	padding-bottom: 14px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea h3, .c-carousel-card__item__textarea h5 {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-carousel-card__item__textarea table {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.c-carousel-card__item__textarea table tr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	vertical-align: middle;
}
.c-carousel-card__item__textarea table tr + * {
	padding-top: 5px;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea table tr + * {
		padding-top: 8px;
	}
}
.c-carousel-card__item__textarea table th, .c-carousel-card__item__textarea table td {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea table th, .c-carousel-card__item__textarea table td {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-carousel-card__item__textarea table th {
	position: relative;
	width: 82px;
}
.c-carousel-card__item__textarea table th::before {
	content: ":";
	position: absolute;
	top: 0;
	right: 0;
}
.c-carousel-card__item__textarea table td {
	width: calc(100% - 82px);
	padding-left: 3.125%;
}
.c-carousel-card__item__textarea p {
	font-size: 0.9285714286rem;
	line-height: 1.6153846154;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.6153846154;
	}
}
.c-carousel-card__item__textarea span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.6153846154;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-carousel-card--either {
	padding-right: 4.979253112%;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card--either .swiper-wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-carousel-card--either .c-carousel-card__item {
		width: 31.0043668122%;
	}
}

.c-carousel-card__item__textarea__btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 16px;
}
.c-carousel-card__item__textarea__btn a {
	text-align: center;
	display: block;
	width: 47%;
	padding: 14px 0;
	border-radius: 200px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-carousel-card__item__textarea__btn a {
		font-size: 0.8666666667rem;
		line-height: 1;
	}
}
.c-carousel-card__item__textarea__btn a:nth-child(1) {
	border: 1px solid #ff8400;
	background-color: #ff8400;
	color: #ffffff;
}
.c-carousel-card__item__textarea__btn a:nth-child(1):hover {
	opacity: 1;
	background-color: #ed800c;
}
.c-carousel-card__item__textarea__btn a:nth-child(2) {
	border: 1px solid #cccccc;
	background-color: #ffffff;
}
.c-carousel-card__item__textarea__btn a:nth-child(2):hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}

/*==============================================
  COMPONENT CAROUSEL BY NUMBER
==============================================*/
.c-carouselByNumber {
	position: relative;
	padding-right: 12%;
	padding-left: 12%;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber {
		padding-right: 4.979253112%;
		padding-left: 0;
		padding-bottom: 40px;
	}
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber .swiper-wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber .swiper-wrapper::after {
		content: "";
		display: block;
		width: 31%;
	}
}
.c-carouselByNumber .swiper-button-prev {
	opacity: 0;
	pointer-events: none;
	left: 1.0666666667%;
	width: 42px;
	height: 42px;
	background: transparent url(../../image/arrow_prev_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber .swiper-button-prev {
		left: 2.0746887967%;
		width: 56px;
		height: 56px;
	}
}
.c-carouselByNumber .swiper-button-next {
	opacity: 0;
	pointer-events: none;
	right: 1.0666666667%;
	width: 42px;
	height: 42px;
	background: transparent url(../../image/arrow_next_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber .swiper-button-next {
		right: 2.0746887967%;
		width: 56px;
		height: 56px;
	}
}

.c-carouselByNumber__item {
	height: auto !important;
	border-radius: 18px 18px;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item {
		width: 31%;
	}
}
.c-carouselByNumber__item a {
	display: block;
	height: 100%;
}
.c-carouselByNumber__item a:hover {
	opacity: 1;
}
.c-carouselByNumber__item a:hover .c-carouselByNumber__item__thumb {
	-webkit-transform: scale(0.97) rotate(0.1deg);
	transform: scale(0.97) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-carouselByNumber__item a:hover .c-carouselByNumber__item__thumb img {
	display: block;
	-webkit-transform: scale(1.1) rotate(0.1deg);
	transform: scale(1.1) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-carouselByNumber__item .c-thumbnail__wrap {
	border-radius: 10px 10px 0 0;
}

.c-carouselByNumber__item__thumb {
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	border-radius: 10px 10px 0 0;
}
.c-carouselByNumber__item__thumb img {
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}

.c-carouselByNumber__item__textarea {
	padding: 20px 7.0422535211% 30px;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
}
.c-carouselByNumber__item__textarea h3, .c-carouselByNumber__item__textarea h5 {
	padding-bottom: 14px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item__textarea h3, .c-carouselByNumber__item__textarea h5 {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-carouselByNumber__item__textarea table {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.c-carouselByNumber__item__textarea table tr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	vertical-align: middle;
}
.c-carouselByNumber__item__textarea table tr + * {
	padding-top: 5px;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item__textarea table tr + * {
		padding-top: 8px;
	}
}
.c-carouselByNumber__item__textarea table th, .c-carouselByNumber__item__textarea table td {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item__textarea table th, .c-carouselByNumber__item__textarea table td {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-carouselByNumber__item__textarea table th {
	position: relative;
	width: 82px;
}
.c-carouselByNumber__item__textarea table th::before {
	content: ":";
	position: absolute;
	top: 0;
	right: 0;
}
.c-carouselByNumber__item__textarea table td {
	width: calc(100% - 82px);
	padding-left: 3.125%;
}
.c-carouselByNumber__item__textarea p {
	font-size: 0.9285714286rem;
	line-height: 1.6153846154;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.6153846154;
	}
}
.c-carouselByNumber__item__textarea span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.6153846154;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber__item__textarea span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-carouselByNumber--both {
	padding-right: 0;
	padding-left: 0;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--both {
		padding-right: 0;
	}
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--both .swiper-wrapper {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--both .swiper-wrapper::after {
		display: none;
	}
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--both .c-carouselByNumber__item {
		width: auto;
		margin: 0;
	}
}
.c-carouselByNumber--both .swiper-button-prev,
.c-carouselByNumber--both .swiper-button-next {
	opacity: 1;
	pointer-events: auto;
}

.c-carouselByNumber--sp {
	padding-right: 0;
	padding-left: 0;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--sp {
		padding-right: 4.979253112%;
		padding-bottom: 40px;
	}
}
.c-carouselByNumber--sp .swiper-button-prev,
.c-carouselByNumber--sp .swiper-button-next {
	opacity: 1;
	pointer-events: auto;
}
@media screen and (min-width: 1024px) {
	.c-carouselByNumber--sp .swiper-button-prev,
	.c-carouselByNumber--sp .swiper-button-next {
		display: none;
	}
}

/*==============================================
  COMPONENT BOX COLUMN
==============================================*/
.c-box-column {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 5.3333333333% 0;
}
@media screen and (min-width: 1024px) {
	.c-box-column {
		padding: 40px 4.979253112% 0 0;
	}
}

.c-box-column__item {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 46.8656716418%;
}
@media screen and (min-width: 1024px) {
	.c-box-column__item {
		width: 22.3799126638%;
	}
}
.c-box-column__item:nth-child(n+3) {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-box-column__item:nth-child(n+3) {
		padding-top: 0;
	}
}
.c-box-column__item a {
	display: block;
}
.c-box-column__item a:hover {
	opacity: 1;
}
.c-box-column__item a:hover .c-box-column__item__thumb {
	-webkit-transform: scale(0.97) rotate(0.1deg);
	transform: scale(0.97) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-box-column__item a:hover .c-box-column__item__thumb img {
	display: block;
	-webkit-transform: scale(1.1) rotate(0.1deg);
	transform: scale(1.1) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-box-column__item p {
	padding-top: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-box-column__item p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.c-box-column__item span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-box-column__item span {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-box-column__item__thumb {
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	border-radius: 10px;
}
.c-box-column__item__thumb img {
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}

.c-box-column--only {
	display: block;
}
@media screen and (min-width: 1024px) {
	.c-box-column--only {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 1023px) {
	.c-box-column--only .c-box-column__item {
		margin: 0 auto;
	}
}

@media screen and (min-width: 1024px) {
	.c-box-column--multiple {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1024px) {
	.c-box-column--multiple .c-box-column__item {
		margin: 0 1.9650655022%;
	}
}

@media screen and (min-width: 1024px) {
	.c-box-column--2colfull {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-box-column--2colfull .c-box-column__item {
		width: 48.2532751092%;
		margin: 0;
	}
}

@media screen and (min-width: 1024px) {
	.c-box-column--3colfull {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-box-column--3colfull .c-box-column__item {
		width: 30.8951965066%;
		margin: 0;
	}
}

/*==============================================
  COMPONENT THUMBNAIL
==============================================*/
.c-thumbnail {
	display: block;
}
.c-thumbnail:hover {
	opacity: 1;
}
.c-thumbnail:hover .c-thumbnail__wrap {
	-webkit-transform: scale(0.97) rotate(0.1deg);
	transform: scale(0.97) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}
.c-thumbnail:hover .c-thumbnail__wrap img {
	display: block;
	-webkit-transform: scale(1.1) rotate(0.1deg);
	transform: scale(1.1) rotate(0.1deg);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.c-thumbnail__wrap {
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	border-radius: 10px;
}
.c-thumbnail__wrap img {
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.6s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}

/*==============================================
  COMPONENT SCROLL HINT
==============================================*/
.scroll-hint-text {
	display: none !important;
}

/*==============================================
  COMPONENT BLOCK LAYOUT
==============================================*/
.c-blockLayout {
	padding: 0 5.3333333333% 0;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0 4.979253112% 0 0;
	}
}

.c-blockLayout__main {
	position: relative;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__main {
		width: 48.2532751092%;
	}
}

.c-blockLayout__main__comment {
	z-index: 2;
	position: absolute;
	top: -20px;
	left: 0;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__main__comment {
		top: -20px;
		left: 20px;
	}
}
.c-blockLayout__main__comment p {
	position: relative;
	display: inline-block;
	padding: 8px 16px;
	background-color: #ffffff;
	border: 2px solid #b0b0eb;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__main__comment p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-blockLayout__main__comment p::before {
	content: "";
	position: absolute;
	left: 20px;
	bottom: -8px;
	width: 12px;
	height: 6px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid #b0b0eb;
	border-left: 2px solid #b0b0eb;
	border-bottom: 2px solid #b0b0eb;
}
.c-blockLayout__main__comment p::after {
	content: "";
	position: absolute;
	left: 34px;
	bottom: -20px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid #b0b0eb;
	pointer-events: none;
}
.c-blockLayout__main__comment.-search p {
	border-color: #a5d544;
}
.c-blockLayout__main__comment.-search p::before {
	border-color: #a5d544;
}
.c-blockLayout__main__comment.-search p::after {
	border-color: #a5d544;
}
.c-blockLayout__main__comment.-know p {
	border-color: #f1917a;
}
.c-blockLayout__main__comment.-know p::before {
	border-color: #f1917a;
}
.c-blockLayout__main__comment.-know p::after {
	border-color: #f1917a;
}
.c-blockLayout__main__comment.-learn p {
	border-color: #b0b0eb;
}
.c-blockLayout__main__comment.-learn p::before {
	border-color: #b0b0eb;
}
.c-blockLayout__main__comment.-learn p::after {
	border-color: #b0b0eb;
}

.c-blockLayout__main__textarea {
	padding-top: 18px;
}
.c-blockLayout__main__textarea h3 {
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__main__textarea h3 {
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-blockLayout__main__textarea p {
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__main__textarea p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

.c-blockLayout__sub {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__sub {
		width: 48.2532751092%;
		padding-top: 0;
	}
}

.c-blockLayout__sub__item {
	width: 46.8656716418%;
	padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__sub__item {
		width: 46.3800904977%;
	}
}
.c-blockLayout__sub__item p {
	padding-top: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__sub__item p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.c-blockLayout__sub__item span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-blockLayout__sub__item span {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

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

  COMPONENT BOTTOM PAGE FORMAT
    - 下層ページフォーマット- 

==============================================*/
/*
* .c-section
*/
.c-section {
	padding-top: 50px;
}
@media screen and (min-width: 1024px) {
	.c-section {
		padding-top: 78px;
	}
}
.c-section + .c-section {
	padding-top: 70px;
}
@media screen and (min-width: 1024px) {
	.c-section + .c-section {
		padding-top: 120px;
	}
}

.c-section-frame {
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-section-frame {
		padding-right: 5.1867219917%;
		padding-left: 0;
	}
}
.c-section-frame--full {
	padding: 0 !important;
}
@media screen and (min-width: 1024px) {
	.c-section-frame--full {
		padding: 0 !important;
	}
}
.c-section-frame--sm {
	padding-right: 2.6666666667%;
	padding-left: 2.6666666667%;
}
@media screen and (min-width: 1024px) {
	.c-section-frame--sm {
		padding-right: 5.1867219917%;
		padding-left: 0;
	}
}

@media screen and (min-width: 1024px) {
	.c-section-frame__wrap {
		width: 82.7510917031%;
		margin: 0 auto;
	}
}

/*
* .c-section__fukidashi
*/
.c-section__fukidashi {
	padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi {
		padding-bottom: 80px;
	}
}

.c-section__fukidashi__wrap {
	position: relative;
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
	padding: 16px 16px;
	background-color: #ffffff;
	border: 2px solid;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__wrap {
		width: 87.9069767442%;
		margin: 0 auto 16px;
		padding: 30px 16px;
	}
}
.c-section__fukidashi__wrap::before {
	content: "";
	position: absolute;
	left: 40px;
	bottom: -17px;
	width: 34px;
	height: 17px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__wrap::before {
		left: 100px;
		bottom: -25px;
		width: 50px;
		height: 25px;
	}
}
.c-section__fukidashi__wrap::after {
	content: "";
	position: absolute;
	left: 60px;
	bottom: -40px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__wrap::after {
		left: 140px;
		bottom: -56px;
		width: 34px;
		height: 34px;
	}
}
.c-section__fukidashi__wrap h2 {
	position: relative;
	display: inline-block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__wrap h2 {
		font-size: 2.1333333333rem;
		line-height: 1.5;
	}
}
.c-section__fukidashi__wrap span {
	display: inline-block;
	position: absolute;
	top: -12px;
	left: 21px;
	padding: 6px 16px;
	color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__wrap span {
		top: -15px;
		left: 55px;
		padding: 7px 18px;
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.search .c-section__fukidashi__wrap {
	border-color: #a5d544;
}
.search .c-section__fukidashi__wrap::before {
	border-color: #a5d544;
}
.search .c-section__fukidashi__wrap::after {
	border-color: #a5d544;
}
.search .c-section__fukidashi__wrap span {
	background-color: #a5d544;
}
.know .c-section__fukidashi__wrap {
	border-color: #f1917a;
}
.know .c-section__fukidashi__wrap::before {
	border-color: #f1917a;
}
.know .c-section__fukidashi__wrap::after {
	border-color: #f1917a;
}
.know .c-section__fukidashi__wrap span {
	background-color: #f1917a;
}
.learn .c-section__fukidashi__wrap {
	border-color: #b0b0eb;
}
.learn .c-section__fukidashi__wrap::before {
	border-color: #b0b0eb;
}
.learn .c-section__fukidashi__wrap::after {
	border-color: #b0b0eb;
}
.learn .c-section__fukidashi__wrap span {
	background-color: #b0b0eb;
}

.c-section__fukidashi__image {
	width: 83.5820895522%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__image {
		width: 58.8372093023%;
	}
}
.c-section__fukidashi__image img {
	border-radius: 10px;
}

.c-section__fukidashi__profile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__profile {
		width: 41.8604651163%;
		margin: 0 auto;
		padding-top: 0;
	}
}
.c-section__fukidashi__profile img {
	width: 26.8656716418%;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__profile img {
		width: 27.7777777778%;
	}
}
.c-section__fukidashi__profile p {
	width: 68.6567164179%;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__fukidashi__profile p {
		width: 66.6666666667%;
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

/*
* .c-section__title
*/
@media screen and (min-width: 1024px) {
	.c-section__title {
		width: 74.398249453%;
		margin: 0 auto;
	}
}
.c-section__title h2 {
	text-align: center;
	position: relative;
	margin-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.7142857143rem;
	line-height: 2;
}
@media screen and (min-width: 1024px) {
	.c-section__title h2 {
		margin-bottom: 30px;
		font-size: 3.0666666667rem;
		line-height: 1.5;
	}
}
.c-section__title span {
	position: relative;
}
.c-section__title span::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: -8px;
	right: -12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #EF8F7A;
}
@media screen and (min-width: 1024px) {
	.c-section__title span::before {
		top: -14px;
		right: -20px;
		width: 54px;
		height: 54px;
	}
}
.search .c-section__title span::before {
	background-color: #A3D344;
}
.know .c-section__title span::before {
	background-color: #EF8F7A;
}
.learn .c-section__title span::before {
	background-color: #AEAEE9;
}
.c-section__title p {
	text-align: left;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__title p {
		text-align: center;
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__title small {
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__title small {
		font-size: 0.7333333333rem;
		line-height: 1.5;
	}
}

.c-section:nth-child(2n+1) .c-section__title span::before {
	right: auto;
	left: -12px;
}
@media screen and (min-width: 1024px) {
	.c-section:nth-child(2n+1) .c-section__title span::before {
		right: auto;
		left: -20px;
	}
}

/*
* .c-section__sentence
*/
@media screen and (min-width: 1024px) {
	.c-section__sentence {
		width: 74.398249453%;
		margin: 0 auto;
	}
}
.c-section__sentence + * {
	padding-top: 30px;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence + * {
		padding-top: 40px;
	}
}
.c-section__sentence h3 {
	text-align: center;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence h3 {
		padding-bottom: 24px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-section__sentence h4 {
	text-align: center;
	padding-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence h4 {
		padding-bottom: 26px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__sentence h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__sentence p {
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__sentence p + p, .c-section__sentence p + .c-section__sentence__float {
	padding-top: 36px;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence p + p, .c-section__sentence p + .c-section__sentence__float {
		padding-top: 50px;
	}
}
.c-section__sentence em {
	font-weight: bold;
	background-color: #ffff8c;
}
.c-section__sentence a {
	text-decoration: underline;
}
.c-section__sentence [data-external] {
	display: inline-block;
	padding-right: 6px;
}
.c-section__sentence [data-external]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 10.6px;
	background: transparent url(../../image/icon_external.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.c-section__sentence strong {
	font-weight: bold;
}
.c-section__sentence table {
	display: block;
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence table {
		overflow-x: visible;
		white-space: unset;
	}
}
.c-section__sentence tr:first-of-type th {
	text-align: center;
	padding: 10px 0;
}
.c-section__sentence th, .c-section__sentence td {
	display: table-cell;
	padding: 10px;
	border: 1px solid;
	vertical-align: middle;
	font-size: 0.9285714286rem;
	line-height: 1.3846153846;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence th, .c-section__sentence td {
		font-size: 0.8666666667rem;
		line-height: 1.3846153846;
	}
}
.search .c-section__sentence th, .search .c-section__sentence td {
	border-color: #A3D344;
}
.know .c-section__sentence th, .know .c-section__sentence td {
	border-color: #EF8F7A;
}
.learn .c-section__sentence th, .learn .c-section__sentence td {
	border-color: #AEAEE9;
}
.search .c-section__sentence th {
	background-color: #eaf5d5;
}
.know .c-section__sentence th {
	background-color: #fddfdb;
}
.learn .c-section__sentence th {
	background-color: #e6e6fb;
}

/*
* .c-section__carousel
*/
.c-section__carousel {
	padding-top: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel {
		padding-top: 86px;
	}
}
.c-section__carousel h3 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel h3 {
		padding-bottom: 30px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-section__carousel h4 {
	text-align: center;
	padding-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel h4 {
		padding-bottom: 26px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__carousel h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}

.c-section__carousel .c-carousel-card {
	padding-top: 20px;
}

.c-section__carousel .c-carousel-card__item {
	padding-top: 30px;
}

.c-section__carousel .c-carousel-card__item__textarea {
	padding: 20px 7.0422535211% 30px;
}
.c-section__carousel .c-carousel-card__item__textarea h5 {
	padding-bottom: 14px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel .c-carousel-card__item__textarea h5 {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-section__carousel .c-carousel-card__item__textarea p {
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel .c-carousel-card__item__textarea p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-section__carousel .c-carousel-card__item__textarea ul {
	padding-top: 16px;
}
.c-section__carousel .c-carousel-card__item__textarea li + * {
	padding-top: 12px;
}
.c-section__carousel .c-carousel-card__item__textarea li a {
	text-decoration: underline;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.3846153846;
}
@media screen and (min-width: 1024px) {
	.c-section__carousel .c-carousel-card__item__textarea li a {
		font-size: 0.8666666667rem;
		line-height: 1.3846153846;
	}
}

.c-section__sentence__caption p {
	display: inline-block;
	padding-top: 10px;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence__caption p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-section__sentence__float figure {
	float: right;
	padding-left: 10px;
	padding-bottom: 10px;
	width: 35.8208955224%;
}
@media screen and (min-width: 1024px) {
	.c-section__sentence__float figure {
		padding-left: 28px;
		padding-bottom: 18px;
		width: 34.8529411765%;
	}
}
.c-section__sentence__float img {
	border-radius: 10px;
}

/*
* .c-section__image
*/
@media screen and (min-width: 1024px) {
	.c-section__image {
		width: 82.932166302%;
		margin: 0 auto;
	}
}
.c-section__image + * {
	margin-top: 50px;
}
@media screen and (min-width: 1024px) {
	.c-section__image + * {
		margin-top: 80px;
	}
}
.c-section__image--full img {
	display: block;
	width: 112%;
	margin-left: -6%;
	border-radius: 0 !important;
}
@media screen and (min-width: 1024px) {
	.c-section__image--full img {
		width: 100%;
		margin-left: 0;
		border-radius: 10px !important;
	}
}
.c-section__image span {
	display: inline-block;
	padding-top: 10px;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__image span {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__image--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__image--m {
		width: 72.3% !important;
		margin: 0 auto;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__image__item {
		width: 47.889182058%;
	}
}
.c-section__image__item img {
	border-radius: 10px;
}
.c-section__image__item + * {
	padding-top: 30px;
}
@media screen and (min-width: 1024px) {
	.c-section__image__item + * {
		padding-top: 0;
	}
}

/*
* .c-section__block
*/
.c-section__block {
	position: relative;
	margin: 36px 0 0 0;
	padding: 24px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__block {
		width: 82.932166302%;
		margin: 40px auto 0;
		padding: 38px 4.4854881266%;
	}
}
.search .c-section__block {
	background-color: #eaf5d5;
}
.know .c-section__block {
	background-color: #fddfdb;
}
.learn .c-section__block {
	background-color: #e6e6fb;
}
@media screen and (min-width: 1024px) {
	.c-section__block--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__block--col h3, .c-section__block--col h4, .c-section__block--col h6 {
		text-align: left !important;
	}
}
.c-section__block--col2, .c-section__block--col3 {
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: transparent !important;
}
@media screen and (min-width: 1024px) {
	.c-section__block--col2, .c-section__block--col3 {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__block--middle {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__block--white {
		width: 100.2188183807%;
		margin: 60px auto 0;
		padding: 38px 5.2770448549%;
		background-color: #ffffff !important;
	}
}
.c-section__block--canvas {
	background-color: #ffffff !important;
}
@media screen and (min-width: 1024px) {
	.c-section__block--canvas {
		margin: 60px auto 0;
		padding: 38px 5.2770448549%;
	}
}
.c-section__block + .c-section__sentence {
	padding-top: 36px;
}
@media screen and (min-width: 1024px) {
	.c-section__block + .c-section__sentence {
		padding-top: 50px;
	}
}
.c-section__block h3 {
	text-align: center;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__block h3 {
		padding-bottom: 24px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-section__block h4 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-section__block h4 {
		padding-bottom: 16px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__block h5 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
	.c-section__block h5 {
		padding-bottom: 16px;
		font-size: 1.0666666667rem;
		line-height: 1.3125;
	}
}
.c-section__block h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__block h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__block p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__block p {
		font-size: 0.9333333333rem;
		line-height: 1.75;
	}
}
.c-section__block p + * {
	padding-top: 16px;
}
@media screen and (min-width: 1024px) {
	.c-section__block p + * {
		padding-top: 16px;
	}
}
.c-section__block em {
	font-weight: bold;
	background-color: #ffff8c;
}
.c-section__block a {
	text-decoration: underline;
}
.c-section__block [data-external] {
	display: inline-block;
	padding-right: 6px;
}
.c-section__block [data-external]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 10.6px;
	background: transparent url(../../image/icon_external.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.c-section__block strong {
	font-weight: bold;
}
.c-section__block ul {
	list-style: disc;
	padding-left: 1.4em;
}
.c-section__block li {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__block li {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-section__block li + * {
	padding-top: 5px;
}
@media screen and (min-width: 1024px) {
	.c-section__block li + * {
		padding-top: 10px;
	}
}
.c-section__block ul li ul {
	padding-top: 6px;
	padding-left: 2.5em;
	list-style: decimal;
}
.c-section__block ul li ul li + * {
	padding-top: 2px;
}
.c-section__block .c-btn {
	margin-top: 20px;
}
.c-section__block .c-btn a {
	width: 100%;
	text-decoration: none;
}
.c-section__block span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
}

@media screen and (min-width: 1024px) {
	.c-section__column__image {
		width: 40.6203840473%;
	}
}
.c-section__column__image img {
	border-radius: 10px;
}
.c-section__column__image span {
	display: inline-block;
	padding-top: 10px;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__column__image span {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.c-section__column__image + .c-section__column__textarea {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-section__column__image + .c-section__column__textarea {
		padding-top: 0;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__column__textarea {
		width: 54.6528803545%;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__column__detail {
		width: 54.6528803545%;
	}
}
.c-section__column__detail h3 {
	text-align: center;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__column__detail h3 {
		padding-bottom: 24px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__column__detail p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 2.5;
}
@media screen and (min-width: 1024px) {
	.c-section__column__detail p {
		font-size: 1.0666666667rem;
		line-height: 1.875;
	}
}
.c-section__column__detail p + * {
	padding-top: 16px;
}
@media screen and (min-width: 1024px) {
	.c-section__column__detail p + * {
		padding-top: 16px;
	}
}

.c-section__block__item {
	padding: 24px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
.c-section__block__item + * {
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-section__block__item + * {
		margin-top: 0;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__block__item:nth-child(n+3) {
		margin-top: 20px;
	}
}
.search .c-section__block__item {
	background-color: #eaf5d5;
}
.know .c-section__block__item {
	background-color: #fddfdb;
}
.learn .c-section__block__item {
	background-color: #e6e6fb;
}

@media screen and (min-width: 1024px) {
	.c-section__block--col2 .c-section__block__item {
		width: 47.889182058%;
		padding-right: 3.305785124%;
		padding-left: 3.305785124%;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__block--col3 .c-section__block__item {
		width: 30.4749340369%;
		padding-right: 2.5974025974%;
		padding-left: 2.5974025974%;
	}
}

/*
* .c-section__block
*   .c-sectionMatter
*/
.c-sectionMatter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-sectionMatter + * {
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid #ffffff;
}

.c-sectionMatter__number {
	position: relative;
	width: 50px;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__number {
		width: 72px;
	}
}
.c-sectionMatter__number p {
	text-align: center;
	position: absolute;
	top: 12px;
	left: 18px;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.6428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__number p {
		font-size: 0.8rem;
		line-height: 1;
	}
}
.search .c-sectionMatter__number p {
	top: 12px;
	left: 14px;
}
@media screen and (min-width: 1024px) {
	.search .c-sectionMatter__number p {
		top: 18px;
		left: 23px;
	}
}
.know .c-sectionMatter__number p {
	top: 12px;
	left: 18px;
}
@media screen and (min-width: 1024px) {
	.know .c-sectionMatter__number p {
		top: 18px;
		left: 27px;
	}
}
.learn .c-sectionMatter__number p {
	top: 11px;
	left: 10px;
}
@media screen and (min-width: 1024px) {
	.learn .c-sectionMatter__number p {
		top: 16px;
		left: 20px;
	}
}
.c-sectionMatter__number span {
	font-size: 1.0714285714rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__number span {
		font-size: 1.4666666667rem;
		line-height: 1;
	}
}

.c-sectionMatter__content {
	width: calc(100% - 66px);
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content {
		width: calc(100% - 100px);
	}
}
.c-sectionMatter__content h3, .c-sectionMatter__content h5 {
	text-align: left;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content h3, .c-sectionMatter__content h5 {
		padding-bottom: 18px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-sectionMatter__content p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-sectionMatter__content__point {
	margin-top: 16px;
	padding: 16px 8%;
	border-radius: 10px;
	background-color: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content__point {
		padding: 16px 6%;
	}
}
.c-sectionMatter__content__point h6 {
	text-align: left;
	padding-bottom: 6px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content__point h6 {
		padding-bottom: 12px;
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-sectionMatter__content__point p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__content__point p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}

.c-sectionMatter__image {
	width: 38.6440677966%;
	margin: 20px auto 0;
}
@media screen and (min-width: 1024px) {
	.c-sectionMatter__image {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		width: 16.8389955687%;
		margin: 0;
	}
}

@media screen and (min-width: 1024px) {
	.c-sectionMatter--inpic .c-sectionMatter__content {
		width: calc(100% - 230px);
	}
}

/*
* .c-section__block
*   .c-sectionOnlyweb
*/
.c-sectionOnlyweb__comment {
	z-index: 2;
	position: absolute;
	top: -30px;
	left: 10px;
}
@media screen and (min-width: 1024px) {
	.c-sectionOnlyweb__comment {
		top: -20px;
		left: 20px;
	}
}
.c-sectionOnlyweb__comment p {
	position: relative;
	display: inline-block;
	padding: 8px 16px;
	background-color: #ffffff;
	border: 2px solid;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionOnlyweb__comment p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-sectionOnlyweb__comment p::before {
	content: "";
	position: absolute;
	left: 20px;
	bottom: -8px;
	width: 12px;
	height: 6px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid;
	border-left: 2px solid;
	border-bottom: 2px solid;
}
.c-sectionOnlyweb__comment p::after {
	content: "";
	position: absolute;
	left: 34px;
	bottom: -20px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid;
	pointer-events: none;
}
.search .c-sectionOnlyweb__comment p {
	border-color: #a5d544;
}
.search .c-sectionOnlyweb__comment p::before {
	border-color: #a5d544;
}
.search .c-sectionOnlyweb__comment p::after {
	border-color: #a5d544;
}
.know .c-sectionOnlyweb__comment p {
	border-color: #f1917a;
}
.know .c-sectionOnlyweb__comment p::before {
	border-color: #f1917a;
}
.know .c-sectionOnlyweb__comment p::after {
	border-color: #f1917a;
}
.learn .c-sectionOnlyweb__comment p {
	border-color: #b0b0eb;
}
.learn .c-sectionOnlyweb__comment p::before {
	border-color: #b0b0eb;
}
.learn .c-sectionOnlyweb__comment p::after {
	border-color: #b0b0eb;
}

.c-sectionOnlyweb__inner h3, .c-sectionOnlyweb__inner h5 {
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionOnlyweb__inner h3, .c-sectionOnlyweb__inner h5 {
		padding-bottom: 16px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-sectionOnlyweb__inner p {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-sectionOnlyweb__inner p {
		padding-bottom: 16px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-sectionOnlyweb__inner em {
	background: rgb(255, 253, 182);
}

/*
* .c-section__point
*/
.c-section__point {
	margin: 36px 0 0 0;
	padding: 24px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__point {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 84.1356673961%;
		margin: 40px auto 0;
		padding: 38px 5.2770448549%;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__point--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__point--col h3, .c-section__point--col h4, .c-section__point--col h6 {
		text-align: left !important;
	}
}
.c-section__point--col2, .c-section__point--col3 {
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: transparent !important;
}
@media screen and (min-width: 1024px) {
	.c-section__point--col2, .c-section__point--col3 {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0;
	}
}
.c-section__point h3 {
	text-align: center;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__point h3 {
		padding-bottom: 24px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-section__point h4 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-section__point h4 {
		padding-bottom: 16px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__point h5 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
	.c-section__point h5 {
		padding-bottom: 16px;
		font-size: 1.0666666667rem;
		line-height: 1.3125;
	}
}
.c-section__point h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__point h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__point p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__point p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-section__point p + * {
	padding-top: 16px;
}
@media screen and (min-width: 1024px) {
	.c-section__point p + * {
		padding-top: 16px;
	}
}
.c-section__point em {
	font-weight: bold;
	background-color: #ffff8c;
}
.c-section__point a {
	text-decoration: underline;
}
.c-section__point [data-external] {
	display: inline-block;
	padding-right: 6px;
}
.c-section__point [data-external]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 10.6px;
	background: transparent url(../../image/icon_external.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.c-section__point strong {
	font-weight: bold;
}

.c-section__point__item {
	position: relative;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 5.3333333333% 24px;
}
@media screen and (min-width: 1024px) {
	.c-section__point__item {
		padding-top: 40px;
	}
}
.c-section__point__item + * {
	margin-top: 30px;
}
@media screen and (min-width: 1024px) {
	.c-section__point__item + * {
		margin-top: 0;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__point__item:nth-child(n+3) {
		margin-top: 26px;
	}
}
.c-section__point__item span {
	display: inline-block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -12px;
	padding: 6px 20px 8px;
	color: #ffffff;
	border-radius: 200px;
	white-space: nowrap;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section__point__item span {
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.search .c-section__point__item span {
	background-color: #A3D344;
}
.know .c-section__point__item span {
	background-color: #EF8F7A;
}
.learn .c-section__point__item span {
	background-color: #AEAEE9;
}
.c-section__point__item .size-l {
	top: -15px;
	padding: 10px clamp(20px, 10.6vw, 40px);
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section__point__item .size-l {
		top: -20px;
		padding: 12px clamp(80px, 7.8vw, 100px);
		font-size: 1.3333333333rem;
		line-height: 1;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__point--col2 .c-section__point__item {
		width: 47.8543563069%;
		padding-right: 3.305785124%;
		padding-left: 3.305785124%;
	}
}

@media screen and (min-width: 1024px) {
	.c-section__point--col3 .c-section__point__item {
		width: 30.5591677503%;
		padding-right: 2.5974025974%;
		padding-left: 2.5974025974%;
	}
}

/*
* .c-section__border
*/
.c-section__border {
	margin: 36px 0 0 0;
	padding: 24px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__border {
		width: 82.932166302%;
		margin: 40px auto 0;
		padding: 38px 5.2770448549%;
	}
}
.search .c-section__border {
	border: 1px solid #A3D344;
}
.know .c-section__border {
	border: 1px solid #EF8F7A;
}
.learn .c-section__border {
	border: 1px solid #AEAEE9;
}
@media screen and (min-width: 1024px) {
	.c-section__border--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__border--col h3, .c-section__border--col h4, .c-section__border--col h6 {
		text-align: left !important;
	}
}
.c-section__border--col2, .c-section__border--col3 {
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: transparent !important;
}
@media screen and (min-width: 1024px) {
	.c-section__border--col2, .c-section__border--col3 {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 0;
	}
}
.c-section__border h3 {
	text-align: center;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__border h3 {
		padding-bottom: 24px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-section__border h4 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-section__border h4 {
		padding-bottom: 16px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section__border h5 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
	.c-section__border h5 {
		padding-bottom: 16px;
		font-size: 1.0666666667rem;
		line-height: 1.3125;
	}
}
.c-section__border h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__border h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section__border p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__border p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-section__border p + * {
	padding-top: 16px;
}
@media screen and (min-width: 1024px) {
	.c-section__border p + * {
		padding-top: 16px;
	}
}
.c-section__border em {
	font-weight: bold;
	background-color: #ffff8c;
}
.c-section__border a {
	text-decoration: underline;
}
.c-section__border [data-external] {
	display: inline-block;
	padding-right: 6px;
}
.c-section__border [data-external]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 10.6px;
	background: transparent url(../../image/icon_external.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.c-section__border strong {
	font-weight: bold;
}
.c-section__border ul {
	list-style: disc;
	padding-left: 1.4em;
}
.c-section__border li {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__border li {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-section__border li + * {
	padding-top: 10px;
}
.c-section__border ul li ul {
	padding-top: 6px;
	padding-left: 2.5em;
	list-style: decimal;
}
.c-section__border ul li ul li + * {
	padding-top: 2px;
}
.c-section__border .c-btn {
	margin-top: 20px;
}
.c-section__border .c-btn a {
	width: 100%;
	text-decoration: none;
}

/*
* .c-section__border
*   .c-sectionComment
*/
.c-sectionComment {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.c-sectionComment__icon {
	width: 50px;
}
@media screen and (min-width: 1024px) {
	.c-sectionComment__icon {
		width: 80px;
		padding-top: 20px;
	}
}

.c-sectionComment__textarea {
	width: calc(100% - 64px);
}
@media screen and (min-width: 1024px) {
	.c-sectionComment__textarea {
		width: calc(100% - 104px);
	}
}
.c-sectionComment__textarea h3, .c-sectionComment__textarea h5 {
	text-align: left;
	padding-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionComment__textarea h3, .c-sectionComment__textarea h5 {
		padding-bottom: 12px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-sectionComment__textarea p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-sectionComment__textarea p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

/*
* .c-section__profile
*/
.c-section__profile {
	position: relative;
	margin: 36px 0 0 0;
	padding: 24px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
	.c-section__profile {
		width: 82.932166302%;
		margin: 40px auto 0;
		padding: 24px 0;
	}
}
.c-section__profile + .c-section__sentence {
	padding-top: 60px;
}
.c-section__profile span {
	display: inline-block;
	position: absolute;
	top: -12px;
	left: 5.9701492537%;
	padding: 6px 20px 8px;
	color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section__profile span {
		left: 20px;
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.search .c-section__profile span {
	background-color: #A3D344;
}
.know .c-section__profile span {
	background-color: #EF8F7A;
}
.learn .c-section__profile span {
	background-color: #AEAEE9;
}

.c-section__profile__head {
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
	padding-bottom: 20px;
	border-bottom: 1px solid;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__head {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		padding-right: 5.2770448549%;
		padding-left: 5.2770448549%;
	}
}
.search .c-section__profile__head {
	border-color: #eaf5d5;
}
.know .c-section__profile__head {
	border-color: #fddfdb;
}
.learn .c-section__profile__head {
	border-color: #e6e6fb;
}
.c-section__profile__head img {
	display: block;
	width: 30.5084745763%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__head img {
		width: 90px;
		margin: 0;
	}
}
.c-section__profile__head p {
	padding-top: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__head p {
		width: calc(100% - 90px);
		padding-top: 0;
		padding-left: 20px;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.c-section__profile__head strong {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__head strong {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-section__profile__body {
	padding-top: 20px;
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__body {
		padding-right: 5.2770448549%;
		padding-left: 5.2770448549%;
	}
}
.c-section__profile__body p {
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__body p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-section__profile__name {
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__name {
		padding-right: 5.2770448549%;
		padding-left: 5.2770448549%;
	}
}
.c-section__profile__name p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__name p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-section__profile__name small {
	display: block;
	padding-top: 4px;
	font-size: 0.8571428571rem;
	line-height: 1.25;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__name small {
		display: inline-block;
		padding-top: 0;
		padding-left: 1em;
		font-size: 0.8rem;
		line-height: 1.25;
	}
}
.search .c-section__profile__name small {
	color: #A3D344;
}
.know .c-section__profile__name small {
	color: #EF8F7A;
}
.learn .c-section__profile__name small {
	background-color: #AEAEE9;
}
.c-section__profile__name + .c-section__profile__textarea {
	padding-top: 6px;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__name + .c-section__profile__textarea {
		padding-top: 10px;
	}
}

.c-section__profile__textarea {
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__textarea {
		padding-right: 5.2770448549%;
		padding-left: 5.2770448549%;
	}
}
.c-section__profile__textarea p {
	font-size: 0.9285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__profile__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

/*
* .c-section-flow
*/
.c-section-flow {
	margin: 60px auto 0;
}
@media screen and (min-width: 1024px) {
	.c-section-flow {
		width: 82.932166302%;
		margin: 80px auto 0;
	}
}
.c-section-flow + * {
	margin-top: 40px;
}
@media screen and (min-width: 1024px) {
	.c-section-flow + * {
		margin-top: 80px;
	}
}

.c-section-flow__wrap {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 32px 7.1641791045% 28px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap {
		padding: 38px 5.8047493404% 30px;
	}
}
.c-section-flow__wrap span {
	display: inline-block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -10px;
	padding: 4px 20px 6px;
	color: #ffffff;
	border-radius: 200px;
	white-space: nowrap;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap span {
		top: -12px;
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.search .c-section-flow__wrap span {
	background-color: #A3D344;
}
.know .c-section-flow__wrap span {
	background-color: #EF8F7A;
}
.learn .c-section-flow__wrap span {
	background-color: #AEAEE9;
}
.c-section-flow__wrap + * {
	margin-top: 46px;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap + * {
		margin-top: 36px;
	}
}
.c-section-flow__wrap + *::before {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -32px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 10.5px 0 10.5px;
	border-color: #007bff transparent transparent transparent;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap + *::before {
		top: -30px;
	}
}
.search .c-section-flow__wrap + *::before {
	border-color: #A3D344 transparent transparent transparent;
}
.know .c-section-flow__wrap + *::before {
	border-color: #EF8F7A transparent transparent transparent;
}
.learn .c-section-flow__wrap + *::before {
	border-color: #AEAEE9 transparent transparent transparent;
}

.c-section-flow__wrap__icon {
	width: 44px;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap__icon {
		width: 56px;
	}
}

.c-section-flow__wrap__textarea {
	width: calc(100% - 60px);
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap__textarea {
		width: calc(100% - 84px);
	}
}
.c-section-flow__wrap__textarea p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section-flow__wrap__textarea p {
		top: -12px;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

/*
* .c-section-volume
*/
.c-section-volume {
	margin: 60px auto 0;
}
@media screen and (min-width: 1024px) {
	.c-section-volume {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 80px auto 0;
	}
}
.c-section-volume + * {
	margin-top: 40px;
}
@media screen and (min-width: 1024px) {
	.c-section-volume + * {
		margin-top: 80px;
	}
}

@media screen and (min-width: 1024px) {
	.c-section-volume__item {
		width: 48.2532751092%;
	}
}
.c-section-volume__item a {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 4.776119403%;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item a {
		padding: 24px 4.5248868778%;
	}
}
.c-section-volume__item span {
	display: inline-block;
	position: absolute;
	top: -10px;
	left: 10px;
	padding: 4px 20px 6px;
	color: #ffffff;
	border-radius: 200px;
	white-space: nowrap;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item span {
		top: -12px;
		left: 10px;
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.search .c-section-volume__item span {
	background-color: #A3D344;
}
.know .c-section-volume__item span {
	background-color: #EF8F7A;
}
.learn .c-section-volume__item span {
	background-color: #AEAEE9;
}
.c-section-volume__item + * {
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item + * {
		margin-top: 0;
	}
}
.c-section-volume__item:nth-child(2) {
	margin-left: 3.2751091703%;
}

.c-section-volume__item__thumb {
	width: 84px;
	border-radius: 4px;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item__thumb {
		width: 106px;
	}
}
.c-section-volume__item__thumb img {
	border-radius: 10px;
}

.c-section-volume__item__textarea {
	width: calc(100% - 100px);
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item__textarea {
		width: calc(100% - 126px);
	}
}
.c-section-volume__item__textarea h5 {
	padding-bottom: 8px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item__textarea h5 {
		padding-bottom: 10px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section-volume__item__textarea p {
	font-size: 0.7857142857rem;
	line-height: 1.5454545455;
}
@media screen and (min-width: 1024px) {
	.c-section-volume__item__textarea p {
		font-size: 0.8rem;
		line-height: 1.75;
	}
}

/*
* .c-section-interview
*/
.c-section-interview__title {
	padding-bottom: 26px;
}
.c-section-interview__title p {
	position: relative;
	padding-left: 56px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__title p {
		padding-left: 110px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-section-interview__title p::before {
	content: "";
	width: 47px;
	height: 1px;
	position: absolute;
	top: 14px;
	left: 0;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__title p::before {
		width: 100px;
		top: 16px;
	}
}
.search .c-section-interview__title p::before {
	background-color: #A3D344;
}
.know .c-section-interview__title p::before {
	background-color: #EF8F7A;
}
.learn .c-section-interview__title p::before {
	background-color: #AEAEE9;
}

.c-section-interview__wrap + * {
	padding-top: 50px;
}
.c-section-interview__wrap dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-section-interview__wrap dl + * {
	padding-top: 20px;
}
.c-section-interview__wrap dt {
	text-align: center;
	width: 50px;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__wrap dt {
		width: 68px;
	}
}
.c-section-interview__wrap span {
	padding-top: 6px;
	font-size: 0.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__wrap span {
		padding-top: 8px;
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-section-interview__wrap dd {
	width: calc(100% - 50px);
	padding-left: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__wrap dd {
		width: calc(100% - 68px);
		padding-left: 44px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-section-interview__wrap dd.-around span {
	display: block;
	padding-top: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section-interview__wrap dd.-around span {
		display: block;
		float: right;
		width: 40%;
		margin: 0 0 1rem 1rem;
	}
}
.c-section-interview__wrap dd.-around img {
	border-radius: 10px;
}
@media screen and (max-width: 1023px) {
	.c-section-interview__wrap dd.-around img {
		display: block;
		width: 70%;
		margin: 0 auto 10px;
	}
}

/*
* .c-section-navigation
*/
.c-section-navigation {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.c-section-navigation {
		padding-top: 60px;
	}
}
.c-section-navigation ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.c-section-navigation li {
	margin: 0 8px;
}
.c-section-navigation a {
	position: relative;
	display: block;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #cacaca;
	background-color: #ffffff;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.c-section-navigation a:hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}
.c-section-navigation span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.3571428571rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section-navigation span {
		font-size: 1.2666666667rem;
		line-height: 1;
	}
}
.c-section-navigation .-current a {
	color: #ffffff;
	pointer-events: none;
}
.search .c-section-navigation .-current a {
	background-color: #A3D344;
	border-color: #A3D344;
}
.know .c-section-navigation .-current a {
	background-color: #EF8F7A;
	border-color: #EF8F7A;
}
.learn .c-section-navigation .-current a {
	background-color: #AEAEE9;
	border-color: #AEAEE9;
}

/*
* .c-section__share
*/
.c-section__share {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 60px;
	padding: 14px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
@media screen and (min-width: 1024px) {
	.c-section__share {
		padding: 16px 0;
		width: 95.020746888%;
	}
}
.search .c-section__share {
	border-color: #eaf5d5;
}
.know .c-section__share {
	border-color: #fddfdb;
}
.learn .c-section__share {
	border-color: #e6e6fb;
}
.c-section__share p {
	padding-right: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section__share p {
		font-size: 1rem;
		line-height: 1;
	}
}
.c-section__share ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.c-section__share li {
	width: 30px;
}
.c-section__share li + * {
	padding-left: 16px;
}

/*
*  .c-section-category
*/
.c-section-category {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
	.c-section-category {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.c-section-category img {
	width: 14.9253731343%;
}
@media screen and (min-width: 1024px) {
	.c-section-category img {
		width: 64px;
	}
}
.c-section-category h3 {
	text-align: center;
	width: 52.8358208955%;
	padding: 10px 0;
	border-radius: 200px;
	color: #ffffff;
	background-color: #A2D244;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-section-category h3 {
		max-width: 284px;
		padding: 14px 0;
		margin: 0 20px;
		font-size: 1.3333333333rem;
		line-height: 1;
	}
}

/*
* .c-main-visual
*/
.c-main-visual {
	position: relative;
	width: 94.6666666667%;
	margin: 40px auto 0;
	padding: 60px 5.6338028169% 30px;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-main-visual {
		width: 95.020746888%;
		margin: 20px 0 0 0;
		padding: 40px 4.3668122271% 30px;
	}
}
@media screen and (min-width: 1024px) {
	.c-main-visual--internal {
		width: 95.020746888%;
		margin: 20px 0 0 0;
		padding: 20px 4.3668122271%;
	}
}

.c-main-visual__category {
	z-index: 20;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -30px;
	width: 86px;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__category {
		width: 142px;
		left: 0;
	}
}
.c-main-visual__category p {
	text-align: center;
	position: absolute;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2142857143;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__category p {
		font-size: 1.6rem;
		line-height: 1.1666666667;
	}
}
.search .c-main-visual__category p {
	top: 26px;
	left: 29px;
}
@media screen and (min-width: 1024px) {
	.search .c-main-visual__category p {
		top: 46px;
		left: 48px;
	}
}
.know .c-main-visual__category p {
	top: 26px;
	left: 35px;
}
@media screen and (min-width: 1024px) {
	.know .c-main-visual__category p {
		top: 46px;
		left: 56px;
	}
}
.learn .c-main-visual__category p {
	top: 23px;
	left: 27px;
}
@media screen and (min-width: 1024px) {
	.learn .c-main-visual__category p {
		top: 40px;
		left: 43px;
	}
}
.c-main-visual__category span {
	display: block;
	font-size: 0.5714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__category span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

@media screen and (min-width: 1024px) {
	.c-main-visual__wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media screen and (min-width: 1024px) {
	.c-main-visual__wrap__textarea {
		width: 49.7005988024%;
	}
}
.c-main-visual__wrap__textarea h1 {
	text-align: center;
	padding-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__wrap__textarea h1 {
		padding-bottom: 24px;
		font-size: 1.8666666667rem;
		line-height: 1.5;
	}
}
.search .c-main-visual__wrap__textarea h1 {
	color: #A3D344;
}
.know .c-main-visual__wrap__textarea h1 {
	color: #EF8F7A;
}
.learn .c-main-visual__wrap__textarea h1 {
	color: #AEAEE9;
}
.c-main-visual__wrap__textarea span {
	display: block;
	width: 68.152866242%;
	margin: 0 auto;
	padding-bottom: 26px;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__wrap__textarea span {
		display: none;
	}
}
.c-main-visual__wrap__textarea p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__wrap__textarea p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-main-visual__wrap__textarea img {
	border-radius: 10px;
}

.c-main-visual__wrap__image {
	display: none;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__wrap__image {
		display: block;
		width: 46.8263473054%;
	}
}
.c-main-visual__wrap__image img {
	border-radius: 10px;
}

@media screen and (min-width: 1024px) {
	.c-main-visual__content__title {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.c-main-visual__content__title h1 {
	text-align: center;
	padding-bottom: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__content__title h1 {
		width: 80.7833537332%;
		padding-left: 18.2%;
		padding-bottom: 0;
		font-size: 1.8666666667rem;
		line-height: 1.5;
	}
}
.search .c-main-visual__content__title h1 {
	color: #A3D344;
}
.know .c-main-visual__content__title h1 {
	color: #EF8F7A;
}
.learn .c-main-visual__content__title h1 {
	color: #AEAEE9;
}
.c-main-visual__content__title h1 em {
	text-align: center;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__content__title h1 em {
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-main-visual__content__title span {
	display: block;
	width: 68.152866242%;
	margin: 0 auto;
	padding-bottom: 26px;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__content__title span {
		width: 17.0134638923%;
		margin: 0 0 0 auto;
		padding-bottom: 0;
	}
}
.c-main-visual__content__title img {
	border-radius: 10px;
}

.c-main-visual__content--col .c-main-visual__content__title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.c-main-visual__content--col .c-main-visual__content__title h1 {
	width: 66.8789808917%;
	padding-bottom: 0;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__content--col .c-main-visual__content__title h1 {
		width: 80.7833537332%;
		padding-left: 18.2%;
		padding-bottom: 0;
		font-size: 1.8666666667rem;
		line-height: 1.5;
	}
}
.c-main-visual__content--col .c-main-visual__content__title span {
	width: 28.6624203822%;
	padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
	.c-main-visual__content--col .c-main-visual__content__title span {
		width: 17.0134638923%;
		margin: 0 0 0 auto;
		padding-bottom: 0;
	}
}

@media screen and (max-width: 1023px) {
	.c-main-visual--internal {
		padding-bottom: 15px;
	}
	.c-main-visual--internal .c-main-visual__content__title {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.c-main-visual--internal .c-main-visual__content__title h1 {
		text-align: left;
		width: 63.9751552795%;
		font-size: 1.1428571429rem;
		line-height: 1.5;
	}
	.c-main-visual--internal .c-main-visual__content__title span {
		width: 31.0559006211%;
		padding-bottom: 0;
	}
}

/*
* .c-list-visual
*/
@media screen and (min-width: 1024px) {
	.c-list-visual__list {
		padding-right: 5.1867219917% !important;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
.c-list-visual__list ul {
	padding: 0 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list li {
		width: 22.4288840263%;
	}
}
.c-list-visual__list li + * {
	margin-top: 10px;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list li + * {
		margin-top: 0;
	}
}
.c-list-visual__list a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 12px 4.4776119403%;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list a {
		position: relative;
		display: block;
		padding: 26px 8.7804878049%;
	}
}
.search .c-list-visual__list a {
	background-color: #A3D344;
}
.know .c-list-visual__list a {
	background-color: #EF8F7A;
}
.learn .c-list-visual__list a {
	background-color: #AEAEE9;
}

.c-list-visual__title h2 {
	text-align: center;
	padding-bottom: 30px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__title h2 {
		padding-bottom: 30px;
		font-size: 1.7333333333rem;
		line-height: 1.4615384615;
	}
}
.c-list-visual__title p {
	text-align: center;
	padding: 0 5.3333333333% 30px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__title p {
		padding: 0 0 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-list-visual__title span {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__title span {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}

.c-list-visual__list__icon {
	width: 56px;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__icon {
		display: none;
	}
}

.c-list-visual__list__textarea {
	width: calc(100% - 56px);
	padding-left: 18px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__textarea {
		width: 100%;
		padding-left: 0;
	}
}
.c-list-visual__list__textarea h3 {
	padding-bottom: 4px;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.4;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__textarea h3 {
		text-align: center;
		padding-bottom: 16px;
		font-size: 1.0666666667rem;
		line-height: 1.3125;
	}
}
.c-list-visual__list__textarea h3 br {
	display: none;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__textarea h3 br {
		display: block;
	}
}
.c-list-visual__list__textarea span {
	display: none;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__textarea span {
		display: block;
		width: 76px;
		margin: 0 auto;
		padding-bottom: 16px;
	}
}
.c-list-visual__list__textarea p {
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-list-visual__list__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.svg-arrow {
	width: 18px;
}
@media screen and (min-width: 1024px) {
	.svg-arrow {
		position: absolute;
		width: 21px;
		right: 10px;
		bottom: 10px;
	}
}
.svg-arrow-1 {
	fill: #fff;
}
.svg-arrow-2, .svg-arrow-3 {
	fill: none;
	stroke-linecap: round;
	stroke-width: 1.2px;
}
.search .svg-arrow-2, .search .svg-arrow-3 {
	stroke: #A3D344;
}
.know .svg-arrow-2, .know .svg-arrow-3 {
	stroke: #EF8F7A;
}
.learn .svg-arrow-2, .learn .svg-arrow-3 {
	stroke: #AEAEE9;
}
.svg-arrow-2 {
	stroke-miterlimit: 10;
}
.svg-arrow-3 {
	stroke-linejoin: round;
}

/*
* .c-internal-navi
*/
.c-internal-navi {
	z-index: 20;
	position: -webkit-sticky;
	position: sticky;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	top: 35px;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 94.6666666667%;
	margin: 20px auto 0;
	border-top: 1px solid #f1917a;
	border-bottom: 1px solid #f1917a;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-internal-navi {
		top: 50px;
		width: 94.8132780083%;
		margin: 40px 0 0 0;
		font-size: 1rem;
		line-height: 1.5;
	}
}
.c-internal-navi::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 1px;
	height: 80%;
}
.c-internal-navi::after {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: -3%;
	width: 106%;
	height: calc(100% - 2px);
}
.search .c-internal-navi {
	background-color: #f3f8e8;
	border-top: 1px solid #eaf5d5;
	border-bottom: 1px solid #eaf5d5;
}
.search .c-internal-navi::before {
	background-color: #eaf5d5;
}
.search .c-internal-navi::after {
	background-color: #f3f8e8;
}
.know .c-internal-navi {
	background-color: #faf1f0;
	border-top: 1px solid #fddfdb;
	border-bottom: 1px solid #fddfdb;
}
.know .c-internal-navi::before {
	background-color: #fddfdb;
}
.know .c-internal-navi::after {
	background-color: #faf1f0;
}
.learn .c-internal-navi {
	background-color: #f3f3fa;
	border-top: 1px solid #e6e6fb;
	border-bottom: 1px solid #e6e6fb;
}
.learn .c-internal-navi::before {
	background-color: #e6e6fb;
}
.learn .c-internal-navi::after {
	background-color: #f3f3fa;
}

.c-internal-navi__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.c-internal-navi__item a {
	position: relative;
	display: block;
	width: 100%;
	padding: 10px 26px;
}
@media screen and (min-width: 1024px) {
	.c-internal-navi__item a {
		padding: 10px 33px;
	}
}
.c-internal-navi__item svg {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.c-internal-navi__item--prev a svg {
	left: 0;
}
.c-internal-navi__item--next a {
	text-align: right;
}
@media screen and (max-width: 1023px) {
	.c-internal-navi__item--next a {
		padding: 10px 26px 10px 0;
	}
}
.c-internal-navi__item--next a svg {
	right: 0;
}

.c-internal-navi--comingsoon {
	position: relative;
}
.c-internal-navi--comingsoon .c-internal-navi__item a {
	pointer-events: none;
	opacity: 0.4;
}

.c-internal-navi__fukidashi {
	text-align: center;
	position: absolute;
	top: -40px;
	right: 0;
	padding: 4px 20px;
	border: 2px solid;
	border-radius: 100px;
	background-color: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-internal-navi__fukidashi {
		top: -32px;
		padding: 4px 20px;
	}
}
.c-internal-navi__fukidashi::before {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 10px solid #FB6F08;
	border-bottom: 0;
}
.c-internal-navi__fukidashi::after {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 8px solid #ffffff;
	border-bottom: 0;
}
.c-internal-navi__fukidashi a {
	display: inline-block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-internal-navi__fukidashi a {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.search .c-internal-navi__fukidashi {
	border-color: #a5d544;
}
.know .c-internal-navi__fukidashi {
	border-color: #FB6F08;
}
.learn .c-internal-navi__fukidashi {
	border-color: #b0b0eb;
}

/*
* .c-index
*/
.c-index {
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-index {
		width: 82.8227571116%;
		margin: 0 auto;
	}
}
.search .c-index {
	background-color: #eaf5d5;
	border: 1px solid #A3D344;
}
.know .c-index {
	background-color: #fddfdb;
	border: 1px solid #EF8F7A;
}
.learn .c-index {
	background-color: #e6e6fb;
	border: 1px solid #AEAEE9;
}

.c-index__wrap {
	padding: 26px 0;
	margin-left: 7.7611940299%;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap {
		padding: 36px 0;
		margin-left: 4.7556142668%;
	}
}
.c-index__wrap ul, .c-index__wrap ol {
	list-style-type: decimal;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap ul, .c-index__wrap ol {
		padding: 0 4.7556142668%;
	}
}
.c-index__wrap ul + *, .c-index__wrap ol + * {
	margin-top: 12px;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap ul + *, .c-index__wrap ol + * {
		margin-top: 16px;
	}
}
.c-index__wrap ul {
	list-style: none;
}
.c-index__wrap li {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap li {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-index__wrap li + * {
	margin-top: 12px;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap li + * {
		margin-top: 16px;
	}
}
.c-index__wrap ol li ol {
	list-style-type: disc;
	margin-top: 12px;
}
@media screen and (min-width: 1024px) {
	.c-index__wrap ol li ol {
		margin-top: 16px;
	}
}
.c-index__wrap a {
	text-decoration: underline;
}

.c-index__title {
	padding: 14px 0;
	border-radius: 9px 9px 0 0;
}
@media screen and (min-width: 1024px) {
	.c-index__title {
		padding: 17px 0;
	}
}
.search .c-index__title {
	background-color: #A3D344;
}
.know .c-index__title {
	background-color: #EF8F7A;
}
.learn .c-index__title {
	background-color: #AEAEE9;
}
.c-index__title p {
	text-align: center;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-index__title p {
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}

/*
* .c-defaultTextCode
*/
.c-defaultTextCode h3 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode h3 {
		padding-bottom: 30px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-defaultTextCode h4 {
	text-align: center;
	padding-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.875;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode h4 {
		padding-bottom: 26px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-defaultTextCode h5 {
	text-align: left;
	padding-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode h5 {
		padding-bottom: 20px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-defaultTextCode h6 {
	text-align: center;
	padding-bottom: 28px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode h6 {
		padding-bottom: 30px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-defaultTextCode p {
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.c-defaultTextCode p + p, .c-defaultTextCode p + .c-section__sentence__float {
	padding-top: 36px;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode p + p, .c-defaultTextCode p + .c-section__sentence__float {
		padding-top: 50px;
	}
}
.c-defaultTextCode em {
	font-weight: bold;
	background-color: #ffff8c;
}
.c-defaultTextCode a {
	text-decoration: underline;
}
.c-defaultTextCode [data-external] {
	display: inline-block;
	padding-right: 6px;
}
.c-defaultTextCode [data-external]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 10.6px;
	background: transparent url(../../image/icon_external.svg) no-repeat scroll center center/cover;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}
.c-defaultTextCode strong {
	font-weight: bold;
}
.c-defaultTextCode table {
	display: block;
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
	overflow-x: scroll;
	white-space: nowrap;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode table {
		overflow-x: visible;
		white-space: unset;
	}
}
.c-defaultTextCode tr:first-of-type th {
	text-align: center;
	padding: 10px 0;
}
.c-defaultTextCode th, .c-defaultTextCode td {
	display: table-cell;
	padding: 10px;
	border: 1px solid;
	vertical-align: middle;
	font-size: 0.9285714286rem;
	line-height: 1.3846153846;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode th, .c-defaultTextCode td {
		font-size: 0.8666666667rem;
		line-height: 1.3846153846;
	}
}
.search .c-defaultTextCode th, .search .c-defaultTextCode td {
	border-color: #A3D344;
}
.know .c-defaultTextCode th, .know .c-defaultTextCode td {
	border-color: #EF8F7A;
}
.learn .c-defaultTextCode th, .learn .c-defaultTextCode td {
	border-color: #AEAEE9;
}
.search .c-defaultTextCode th {
	background-color: #eaf5d5;
}
.know .c-defaultTextCode th {
	background-color: #fddfdb;
}
.learn .c-defaultTextCode th {
	background-color: #e6e6fb;
}
.c-defaultTextCode ol {
	counter-reset: counter;
	list-style: none;
	padding-left: 1.5em;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode ol {
		padding-left: 1.5em;
	}
}
.c-defaultTextCode ol li {
	position: relative;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode ol li {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-defaultTextCode ol li + * {
	margin-top: 14px;
}
.c-defaultTextCode ol li::before {
	content: counter(counter);
	counter-increment: counter;
	border: 1px solid #333333;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 16px;
	width: 16px;
	font-size: 85%;
	line-height: 1;
	position: absolute;
	top: 5px;
	left: -22px;
}
@media screen and (min-width: 1024px) {
	.c-defaultTextCode ol li::before {
		top: 7px;
		left: -22px;
	}
}

/*
* .c-seminarList
*/
.c-seminarList {
	position: relative;
	margin-bottom: 20px;
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}
@media screen and (min-width: 1024px) {
	.c-seminarList {
		padding-right: 4.979253112%;
		padding-left: 0;
	}
}
.c-seminarList::before {
	content: "";
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 95.020746888%;
	height: 120px;
	background: -webkit-gradient(linear, left bottom, left top, from(#f4f9e1), to(rgba(245, 250, 234, 0)));
	background: linear-gradient(0deg, #f4f9e1 0%, rgba(245, 250, 234, 0) 100%);
}
.c-seminarList--disable::before {
	display: none;
}
.c-seminarList--hide::before {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(244, 249, 233, 0.8);
	border: 2px dotted #000000;
}
.c-seminarList--hide::after {
	content: "日程・詳細は夏頃公開！";
	z-index: 3;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-seminarList--hide::after {
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}

.c-seminarList__item {
	position: relative;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 14px 0;
	}
}
.c-seminarList__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item::before {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		width: 3px;
		height: 78%;
		border-radius: 0 10px 10px 0;
	}
}
.home .c-seminarList__item::before {
	background-color: #c6e548;
}
.search .c-seminarList__item::before {
	background-color: #c6e548;
}
.know .c-seminarList__item::before {
	background-color: #EF8F7A;
}
.learn .c-seminarList__item::before {
	background-color: #AEAEE9;
}
.c-seminarList__item + * {
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item + * {
		margin-top: 10px;
	}
}

.c-seminarList__item__date {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 5.3731343284% 12px;
	border-bottom: 1px solid #f5faea;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__date {
		display: inline-block;
		width: 120px;
		padding: 0 0 0 30px;
		border-bottom: none;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-box-flex: 0;
		-webkit-flex: none;
		-ms-flex: none;
		flex: none;
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
	}
}
.c-seminarList__item__date br {
	display: none;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__date br {
		display: block;
	}
}
.c-seminarList__item__date span {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__date span {
		font-size: 0.8rem;
		line-height: 1.75;
	}
}
.c-seminarList__item__date p {
	padding-left: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.7142857143rem;
	line-height: 0.875;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__date p {
		padding-left: 0;
		font-size: 1.6rem;
		line-height: 0.875;
	}
}
.c-seminarList__item__date small {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__date small {
		font-size: 0.6666666667rem;
		line-height: 1.5;
	}
}

.c-seminarList__item__content {
	padding: 10px 5.3731343284%;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__content {
		width: auto;
		padding-left: 20px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		border-left: 1px solid #f5faea;
	}
}
.c-seminarList__item__content h3 {
	padding-bottom: 14px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__content h3 {
		padding-bottom: 12px;
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-seminarList__item__content p {
	padding-bottom: 10px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__content p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-seminarList__item__content ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-seminarList__item__content li {
	position: relative;
	margin-right: 16px;
	padding-left: 18px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__content li {
		margin-bottom: 4px;
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-seminarList__item__content li:nth-child(1)::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 14px;
	height: 14px;
	background: transparent url(../../image/icon_time.svg) no-repeat scroll center center/cover;
}
.c-seminarList__item__content li:nth-child(2)::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 2px;
	width: 10px;
	height: 14px;
	background: transparent url(../../image/icon_current.svg) no-repeat scroll center center/cover;
}

.c-seminarList__item__btn {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: auto;
	margin: 0 auto;
	padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__btn {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		width: 275px;
		margin: 0 0 0 auto;
		padding-right: 20px;
		padding-bottom: 0;
	}
}
.c-seminarList__item__btn a {
	display: block;
	width: 100px;
	margin: 0 2px;
	padding: 12px 0;
	color: #ffffff;
	background-color: #FF8400;
	border-radius: 200px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__btn a {
		width: 124px;
		margin: 0;
		padding: 16px 0;
		font-size: 0.9333333333rem;
		line-height: 1;
	}
}
.c-seminarList__item__btn a:hover {
	opacity: 1;
	background-color: #ed800c;
}
.c-seminarList__item__btn [data-state=detail] {
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #CCCCCC;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__item__btn [data-state=detail] {
		margin-right: 6px;
	}
}
.c-seminarList__item__btn [data-state=detail]:hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}

.c-seminarList__more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 20px;
	cursor: pointer;
}
.c-seminarList__more p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.7142857143;
}
@media screen and (min-width: 1024px) {
	.c-seminarList__more p {
		font-size: 0.9333333333rem;
		line-height: 1.7142857143;
	}
}

.c-seminarList__hide {
	display: none;
}

.c-seminarList__more__icon {
	width: 26px;
	padding-left: 10px;
}

/*
* .c-movie-block
*/
.c-movie-block {
	position: relative;
	width: 89.3333333333%;
	padding: 30px 5.9701492537% 20px;
	margin: 0 auto 20px;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-movie-block {
		width: 95.020746888%;
		margin: 0 0 20px;
		padding: 40px 4.3668122271%;
	}
}

.c-movie-block__title {
	display: inline-block;
	position: absolute;
	top: -14px;
	left: 20px;
	padding: 2px 20px 4px;
	border-radius: 200px;
}
.home .c-movie-block__title {
	background-color: #EF8F7A;
}
.search .c-movie-block__title {
	background-color: #A3D344;
}
.know .c-movie-block__title {
	background-color: #EF8F7A;
}
.learn .c-movie-block__title {
	background-color: #AEAEE9;
}
.c-movie-block__title p {
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__title p {
		font-size: 1.0666666667rem;
		line-height: 2;
	}
}

@media screen and (min-width: 1024px) {
	.c-movie-block__wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.c-movie-block__wrap__video {
	position: relative;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__video {
		width: 48.0861244019%;
	}
}
.c-movie-block__wrap__video span {
	position: relative;
	display: block;
}
.c-movie-block__wrap__video span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: transparent url(../../image/icon_play.svg) no-repeat scroll center center/cover;
}
.c-movie-block__wrap__video img {
	border-radius: 10px;
}

.c-movie-block__wrap__textarea {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__textarea {
		width: 47.1291866029%;
		padding-top: 0;
	}
}
.c-movie-block__wrap__textarea h3 {
	margin-bottom: 12px;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__textarea h3 {
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.home .c-movie-block__wrap__textarea h3 {
	border-bottom: 1px dashed #EF8F7A;
}
.search .c-movie-block__wrap__textarea h3 {
	border-bottom: 1px dashed #A3D344;
}
.know .c-movie-block__wrap__textarea h3 {
	border-bottom: 1px dashed #EF8F7A;
}
.learn .c-movie-block__wrap__textarea h3 {
	border-bottom: 1px dashed #AEAEE9;
}
.c-movie-block__wrap__textarea span {
	display: block;
	padding-bottom: 6px;
	font-size: 0.9285714286rem;
	line-height: 1.2;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__textarea span {
		font-size: 0.8666666667rem;
		line-height: 1.2;
	}
}
.c-movie-block__wrap__textarea h4 {
	padding-bottom: 24px;
	font-size: 0.8571428571rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__textarea h4 {
		padding-bottom: 20px;
		font-size: 0.8rem;
		line-height: 1.75;
	}
}
.c-movie-block__wrap__textarea p {
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-movie-block__wrap__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.7307692308;
	}
}

/*
* .c-curtain
*/
.c-curtain {
	opacity: 0;
	pointer-events: none;
	z-index: 121;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.c-curtain {
		display: none;
	}
}
.c-curtain.is-open {
	opacity: 1;
	pointer-events: auto;
}

/*
* .c-navigation
*/
.c-navigation {
	padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
	.c-navigation {
		position: relative;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		width: 92.3595505618%;
		margin: 0 auto;
		padding-bottom: 10px;
	}
}
@media screen and (min-width: 1024px) {
	.c-navigation--top {
		margin-top: 40px;
	}
}

.c-navigation__result {
	text-align: center;
}
@media screen and (min-width: 1024px) {
	.c-navigation__result {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transform: translateY(-62%);
		transform: translateY(-62%);
		left: 0;
	}
}
.c-navigation__result p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__result p {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-navigation__result span {
	display: inline-block;
	padding: 0 4px;
	color: #a5d544;
	font-size: 2.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__result span {
		font-size: 2rem;
		line-height: 1.5;
	}
}
.search .c-navigation__result span {
	color: #a5d544;
}
.know .c-navigation__result span {
	color: #f1917a;
}

@media screen and (min-width: 1024px) {
	.c-navigation__ul {
		margin: 0 auto;
	}
}
.c-navigation__ul ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.c-navigation__ul li {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
}
.c-navigation__ul li:nth-child(2) {
	padding: 0 20px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__ul li:nth-child(2) {
		padding: 0 28px;
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-navigation__ul li:nth-child(2) span {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__ul li:nth-child(2) span {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-navigation__ul a {
	text-decoration: underline;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__ul a {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-navigation__ul a:hover {
	text-decoration: none;
}
.c-navigation__ul span {
	display: inline-block;
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	font-size: 1.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-navigation__ul span {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}
.c-navigation__ul .-noevent a,
.c-navigation__ul .-noevent span {
	pointer-events: none;
	color: rgba(0, 0, 0, 0.2);
}

/*
* .c-searchBox
*/
.c-searchBox {
	padding: 20px 2.9850746269%;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-searchBox {
		width: 92.3595505618%;
		margin: 0 auto;
		padding: 40px 3.6496350365% 30px;
	}
}
.c-searchBox h3 {
	text-align: center;
	padding-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox h3 {
		padding-bottom: 26px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-searchBox span {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox span {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

.c-searchBox--detail {
	opacity: 0;
	pointer-events: none;
	z-index: 122;
	position: absolute;
	top: 30px;
	left: 2.6666666667%;
	width: 94.6666666667%;
	margin-top: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.c-searchBox--detail {
		opacity: 1;
		pointer-events: auto;
		position: relative;
		top: auto;
		left: auto;
		width: 92.3595505618%;
		height: 240px;
		margin-top: 30px;
		padding: 40px 3.6496350365% 100px;
		overflow: hidden;
		-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
		transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	}
}
.c-searchBox--detail.is-open {
	opacity: 1;
	pointer-events: auto;
}
.c-searchBox--detail.is-active {
	height: auto;
}

.c-searchBox__text {
	text-align: center;
	padding-bottom: 18px;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__text {
		padding-bottom: 26px;
	}
}
.c-searchBox__text p {
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__text p {
		font-size: 0.9333333333rem;
		line-height: 2;
	}
}

.c-searchBox__input {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.c-searchBox__input input {
	padding: 8px 12px;
	border: 1px solid #cbcbcb;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 72.0634920635%;
	font-size: 1rem;
	line-height: 2;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__input input {
		width: 79.1556728232%;
		font-size: 0.9333333333rem;
		line-height: 2;
	}
}
.c-searchBox__input input::-webkit-input-placeholder {
	color: #cccccc;
}
.c-searchBox__input input::-moz-placeholder {
	color: #cccccc;
}
.c-searchBox__input input:-ms-input-placeholder {
	color: #cccccc;
}
.c-searchBox__input input::-ms-input-placeholder {
	color: #cccccc;
}
.c-searchBox__input input::placeholder {
	color: #cccccc;
}
.c-searchBox__input button {
	border: none;
	background-color: #ff8300;
	border-radius: 200px;
	color: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 24.7619047619%;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__input button {
		width: 16.7546174142%;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-searchBox__title {
	padding-bottom: 14px;
}
.c-searchBox__title p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__title p {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

.c-searchBox__close {
	position: absolute;
	top: -22px;
	right: 2px;
	width: 45px;
	height: 45px;
	background-color: #ffffff;
	border-radius: 50%;
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1024px) {
	.c-searchBox__close {
		display: none;
		pointer-events: none;
	}
}
.c-searchBox__close::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	width: 16px;
	height: 2px;
	border-radius: 200px;
	background-color: #707070;
}
.c-searchBox__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 16px;
	height: 2px;
	border-radius: 200px;
	background-color: #707070;
}

.c-searchBox__table {
	margin-bottom: 30px;
}
.c-searchBox__table table {
	display: table;
	width: 100%;
	border-collapse: collapse;
}
.c-searchBox__table table tr {
	display: block;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table table tr {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin-top: 0;
	}
}
.c-searchBox__table table th, .c-searchBox__table table td {
	display: block;
	padding: 14px 3.003003003%;
	border: 1px solid #a5d544;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table table th, .c-searchBox__table table td {
		display: inline-block;
		padding: 14px 1.4598540146% 8px;
	}
}
.c-searchBox__table table th {
	width: 100%;
	border-bottom: none;
	background-color: #ecf7d7;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table table th {
		width: 132px;
		border: 1px solid #a5d544;
		border-top: none;
		border-right: none;
	}
}
.c-searchBox__table table td {
	width: 100%;
	border-top: none;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table table td {
		width: calc(100% - 132px);
		border: 1px solid #a5d544;
		border-top: none;
	}
}
.c-searchBox__table table tr:first-of-type th {
	border-top: 1px solid #a5d544;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table table tr:first-of-type td {
		border-top: 1px solid #a5d544;
	}
}
.c-searchBox__table table th label {
	display: block;
	position: relative;
}

.c-searchBox__list {
	display: block;
	margin-bottom: 30px;
	padding: 14px 3.003003003%;
	border-top: 1px solid #a5d544;
	border-bottom: 1px solid #a5d544;
	background-color: #ecf7d7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__list {
		padding: 14px 1.703163017% 8px;
	}
}

.c-searchBox__table ul,
.c-searchBox__list ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-searchBox__table li,
.c-searchBox__list li {
	position: relative;
	width: 50%;
}
.c-searchBox__table li:nth-child(n+3),
.c-searchBox__list li:nth-child(n+3) {
	margin-top: 8px;
}
.c-searchBox__table span,
.c-searchBox__list span {
	display: inline-block;
	padding-left: 26px;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	font-size: 0.9285714286rem;
	line-height: 1.3846153846;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table span,
	.c-searchBox__list span {
		padding-left: 24px;
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
		font-size: 0.9333333333rem;
		line-height: 2;
	}
}
.c-searchBox__table label,
.c-searchBox__list label {
	cursor: pointer;
	overflow: hidden;
}
.c-searchBox__table label::before,
.c-searchBox__list label::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	border: 1px solid #cbcbcb;
	background-color: #ffffff;
}
.c-searchBox__table label::after,
.c-searchBox__list label::after {
	z-index: 1;
	content: "";
	position: absolute;
	top: 9px;
	left: 6px;
	display: block;
	margin-top: -8px;
	width: 4px;
	height: 10px;
	border-right: 3px solid #08b904;
	border-bottom: 3px solid #08b904;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
	.c-searchBox__table label::after,
	.c-searchBox__list label::after {
		top: 8px;
		left: 6px;
	}
}
.c-searchBox__table label input[type=checkbox],
.c-searchBox__list label input[type=checkbox] {
	z-index: 2;
	position: absolute;
	top: -2px;
	left: -44px;
	width: 16px;
	height: 16px;
	display: block;
	-webkit-box-shadow: 41px 0 #ffffff;
	box-shadow: 41px 0 #ffffff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.c-searchBox__table label input[type=checkbox]:checked,
.c-searchBox__list label input[type=checkbox]:checked {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.c-searchBox__result {
	text-align: center;
}
.c-searchBox__result p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__result p {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-searchBox__result span {
	display: inline-block;
	padding: 0 3px;
	color: #a5d544;
	font-size: 2.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__result span {
		font-size: 2rem;
		line-height: 1.5;
	}
}

@media screen and (min-width: 1024px) {
	.c-searchBox__button {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.c-searchBox__button__clear {
	text-align: center;
	width: 122px;
	margin: 20px auto 0;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__button__clear {
		width: 16.0949868074%;
		margin: 20px 0 0;
		padding: 0 2.6385224274% 0 7.9155672823%;
	}
}
.c-searchBox__button__clear a, .c-searchBox__button__clear span {
	position: relative;
	display: block;
	padding: 0.5em 10px 0.5em 0;
	border: 1px solid #cbcbcb;
	border-radius: 200px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__button__clear a, .c-searchBox__button__clear span {
		font-size: 0.8rem;
		line-height: 1.75;
	}
}
.c-searchBox__button__clear a::before, .c-searchBox__button__clear span::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	-webkit-transform: translate(0, -50%) rotate(45deg);
	transform: translate(0, -50%) rotate(45deg);
	width: 12px;
	height: 1px;
	background-color: #000000;
	border-radius: 200px;
}
.c-searchBox__button__clear a::after, .c-searchBox__button__clear span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	-webkit-transform: translate(0, -50%) rotate(-45deg);
	transform: translate(0, -50%) rotate(-45deg);
	width: 12px;
	height: 1px;
	background-color: #000000;
	border-radius: 200px;
}
.c-searchBox__button__clear a:hover, .c-searchBox__button__clear span:hover {
	opacity: 1;
	background-color: #ededed;
	border-color: #ededed;
}

.c-searchBox__button__retrieval {
	text-align: center;
	width: 100%;
	margin: 20px auto 0;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__button__retrieval {
		width: 45.9102902375%;
		margin: 20px 0 0;
	}
}
.c-searchBox__button__retrieval a {
	display: block;
	padding: 0.75em 0;
	color: #ffffff;
	background-color: #ff8300;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2857142857rem;
	line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__button__retrieval a {
		font-size: 1.2rem;
		line-height: 1.3333333333;
	}
}

.c-searchBox__toggle {
	display: none;
	text-align: center;
	z-index: 5;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(102, 102, 102, 0.9);
	border-radius: 0 0 10px 10px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__toggle {
		display: block;
		cursor: pointer;
	}
}
.c-searchBox__toggle:hover {
	background-color: #666666;
}
.c-searchBox__toggle span {
	position: relative;
	display: inline-block;
	padding: 1.25em 0;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-searchBox__toggle span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-searchBox__toggle span::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -18px;
	width: 11.5px;
	height: 6.5px;
	background: transparent url(../../image/arrow_toggle.svg) no-repeat scroll center center/cover;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.c-searchBox__toggle.is-active span::before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

/*
* .c-retrieval
*/
.c-retrieval {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #a5d544;
	padding: 1em 0;
	border-radius: 200px;
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-retrieval {
		display: none;
	}
}
.c-retrieval p {
	padding-right: 10px;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.5;
}
.c-retrieval img {
	width: 24px;
}

/*
* .c-result
*/
.c-result {
	position: relative;
	margin-bottom: 20px;
	padding: 14px 0;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-result {
		width: 92.3595505618%;
		margin: 0 auto 30px;
		padding: 30px 0;
	}
}
.c-result--hidden {
	height: 550px;
	overflow: hidden;
}

.search .c-result--special {
	border: 2px solid #a5d544;
	background-color: #f5ffde;
}
.know .c-result--special {
	border: 2px solid #f1917a;
	background-color: #ffebe8;
}

.c-result--hidden {
	height: 550px;
	overflow: hidden;
}
@media screen and (min-width: 1024px) {
	.c-result--hidden {
		height: auto;
		overflow: visible;
	}
}

.c-result-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.c-result-wrap {
	padding: 0 3.9436619718%;
}
@media screen and (min-width: 1024px) {
	.c-result-wrap {
		padding: 0 3.6496350365%;
	}
}

.c-result__main {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.c-result__main__thumb {
	width: 33.6391437309%;
}
@media screen and (min-width: 1024px) {
	.c-result__main__thumb {
		width: 27.1523178808%;
	}
}
.c-result__main__thumb img {
	border-radius: 10px;
}
.c-result__main__thumb p {
	text-align: center;
	padding-top: 2px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__main__thumb p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-result__main__thumb small {
	font-size: 0.8571428571rem;
	line-height: 1.25;
}
@media screen and (min-width: 1024px) {
	.c-result__main__thumb small {
		font-size: 0.8rem;
		line-height: 1.25;
	}
}
.search .c-result__main__thumb small {
	color: #EF8F7A;
}
.know .c-result__main__thumb small {
	color: #EF8F7A;
}
.learn .c-result__main__thumb small {
	color: #EF8F7A;
}

.c-result__main__textarea {
	width: 63.9143730887%;
}
@media screen and (min-width: 1024px) {
	.c-result__main__textarea {
		width: 68.8741721854%;
	}
}
.c-result__main__textarea h2 {
	display: inline-block;
	margin-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__main__textarea h2 {
		margin-bottom: 18px;
		font-size: 1.4666666667rem;
		line-height: 1.5;
	}
}
.c-result__main__textarea h2 a {
	border-bottom: 1px solid #000000;
}
.c-result__main__textarea h2 a:hover {
	border-bottom: none;
}
.c-result__main__textarea h3 {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__main__textarea h3 {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-result__main__textarea p {
	display: none;
	padding-top: 4px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__main__textarea p {
		display: block;
		padding-bottom: 8px;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-result__main__textarea a, .c-result__main__textarea em {
	cursor: pointer;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
}

.c-result__main__category {
	width: 100%;
	margin-top: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-result__main__category {
		width: 68.8741721854%;
		margin-top: 16px;
		margin-left: auto;
	}
}
.c-result__main__category ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
	.c-result__main__category ul {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}
.c-result__main__category li {
	position: relative;
	width: 48.3180428135%;
}
@media screen and (min-width: 1024px) {
	.c-result__main__category li {
		min-width: 186px;
		padding-right: 6px;
		width: 37.3076923077%;
	}
}
.c-result__main__category a {
	display: block;
}
.c-result__main__category span {
	z-index: 1;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 46px;
}
@media screen and (min-width: 1024px) {
	.c-result__main__category span {
		width: 36px;
	}
}
.c-result__main__category p {
	z-index: 0;
	position: relative;
	text-align: center;
	padding: 0.25em 0 0.25em 24%;
	background-color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (max-width: 1023px) {
	.c-result__main__category p {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1024px) {
	.c-result__main__category p {
		padding: 0.35em 0 0.35em 13%;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-result__main__category p br {
		display: none;
	}
}
.c-result__main__category [data-type=mulch] p {
	border: 1px solid #a3d344;
}
.c-result__main__category [data-type=interview] p {
	border: 1px solid #f1917a;
}
.c-result__main__category [data-type=web] p {
	border: 1px solid #a3d344;
}
.c-result__main__category .is-arrange p {
	padding: 0.85em 0 0.85em 24%;
}
@media screen and (min-width: 1024px) {
	.c-result__main__category .is-arrange p {
		padding: 0.35em 0 0.35em 13%;
	}
}

.c-result__buttons {
	margin-top: 14px;
}
@media screen and (min-width: 1024px) {
	.c-result__buttons {
		margin-top: 30px;
	}
}
.c-result__buttons ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 104%;
	margin-left: -2%;
}
@media screen and (min-width: 1024px) {
	.c-result__buttons ul {
		width: 102%;
		margin-left: -1%;
	}
}
.c-result__buttons li {
	margin: 0 0.4%;
	width: 23.2415902141%;
}
@media screen and (min-width: 1024px) {
	.c-result__buttons li {
		width: 24.0157480315%;
	}
}
.c-result__buttons a {
	text-align: center;
	display: block;
	padding: 1em 0;
	border-radius: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__buttons a {
		border-radius: 200px;
		font-size: 1rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-result__buttons br {
		display: none;
	}
}
.c-result__buttons [data-button] a {
	background-color: #ffffff;
	border: 1px solid #cbcbcb;
}
.c-result__buttons [data-button=application] a {
	color: #ffffff;
	background-color: #ff8400;
	border: none;
}
.c-result__buttons [data-button=internship] a {
	padding: 1em 0;
	color: #ffffff;
	background-color: #ff8400;
	border: none;
	font-size: 0.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__buttons [data-button=internship] a {
		padding: 0.5em 0;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-result__buttons [data-button=internship] a br {
		display: block;
	}
}
.c-result__buttons [data-button=reserve] a {
	color: #006bcd;
	border-color: #006bcd;
}

.c-result__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 12px;
}
@media screen and (min-width: 1024px) {
	.c-result__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}
.c-result__list dl {
	margin-bottom: 6px;
	padding-right: 10px;
}
@media screen and (min-width: 1024px) {
	.c-result__list dl {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 8px;
		padding-right: 20px;
	}
}
.c-result__list dt {
	position: relative;
	display: inline-block;
	margin-right: 12px;
	padding: 3px 4px 2px;
	background-color: #f0f0f0;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 700;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__list dt {
		white-space: nowrap;
		font-size: 0.7333333333rem;
		line-height: 1.5;
	}
}
.c-result__list dt::before {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 8px;
	border-color: transparent transparent transparent #f0f0f0;
}
.c-result__list dd {
	display: inline;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__list dd {
		display: inline-block;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-result__tags {
	margin-top: 6px;
}
@media screen and (min-width: 1024px) {
	.c-result__tags {
		margin-top: 4px;
	}
}
.c-result__tags ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.c-result__tags li {
	width: 32.1100917431%;
}
@media screen and (min-width: 1024px) {
	.c-result__tags li {
		width: 16.1162483487%;
	}
}
.c-result__tags li:nth-child(n+4) {
	margin-top: 3px;
}
@media screen and (min-width: 1024px) {
	.c-result__tags li:nth-child(n+4) {
		margin-top: 0;
	}
}
.c-result__tags [data-state=off] {
	position: relative;
}
.c-result__tags [data-state=off]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.85);
}

.c-resultInfo {
	position: relative;
	margin-top: 20px;
	padding: 20px 2.8571428571% 20px;
	background-color: #ffffff;
	border-top: 1px solid #dcefbf;
	border-radius: 0 0 10px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo {
		width: 92.4574209246%;
		margin: 30px auto 0;
		padding: 36px 4.7493403694% 20px;
		border: 1px solid #dcefbf;
		border-radius: 10px;
	}
}
.c-resultInfo h3 {
	padding-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo h3 {
		padding-bottom: 14px;
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.search .c-resultInfo {
	border-top: 1px solid #dcefbf;
}
@media screen and (min-width: 1024px) {
	.search .c-resultInfo {
		border: 1px solid #dcefbf;
	}
}
.know .c-resultInfo {
	border-top: 1px solid #ffebe8;
}
@media screen and (min-width: 1024px) {
	.know .c-resultInfo {
		border: 1px solid #ffebe8;
	}
}

.c-resultInfo__title {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -12px;
	padding: 1px 20px;
	background-color: #a5d544;
	border-radius: 200px;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__title {
		left: 20px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.c-resultInfo__title p {
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__title p {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.search .c-resultInfo__title {
	background-color: #a5d544;
}
.know .c-resultInfo__title {
	background-color: #f1917a;
}

.c-resultInfo__column img {
	display: block;
	float: right;
	width: 110px;
	margin: 0 0 6px 6px;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__column img {
		width: 188px;
		margin: 0 0 12px 12px;
	}
}
.c-resultInfo__column p {
	font-size: 0.7857142857rem;
	line-height: 1.9090909091;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__column p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-resultInfo__comment {
	position: relative;
	width: 100%;
	height: 120px;
	margin-top: 14px;
	padding: 10px 3.6697247706% 60px;
	background-color: #f0f0f0;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	clear: both;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__comment {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		height: 120px;
		margin-top: 26px;
		padding: 10px 1.7441860465% 60px;
	}
}
.c-resultInfo__comment span {
	position: relative;
	display: inline-block;
	margin-bottom: 6px;
	padding: 3px 6px;
	background-color: #ffffff;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 700;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__comment span {
		font-size: 0.7333333333rem;
		line-height: 1.5;
	}
}
.c-resultInfo__comment span::before {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 0 10px 8px;
	border-color: transparent transparent transparent #ffffff;
}
.c-resultInfo__comment p {
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__comment p {
		width: calc(100% - 90px);
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
.c-resultInfo__comment.is-active {
	height: auto;
	overflow: visible;
}

.c-resultInfo__comment__toggle {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	padding: 20px 0;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(240, 240, 240)), to(rgba(240, 240, 240, 0)));
	background: linear-gradient(0deg, rgb(240, 240, 240) 35%, rgba(240, 240, 240, 0) 100%);
	border-radius: 0 0 10px 10px;
}
.c-resultInfo__comment__toggle p {
	width: auto;
	margin-right: 8px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-resultInfo__comment__toggle p {
		font-size: 0.9333333333rem;
		line-height: 1.75;
	}
}
.c-resultInfo__comment__toggle img {
	width: 26px;
}
.c-resultInfo__comment__toggle.is-active {
	background: transparent;
}

.c-result__toggle {
	text-align: center;
	z-index: 5;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(102, 102, 102, 0.9);
	border-radius: 0 0 6px 6px;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
@media screen and (min-width: 1024px) {
	.c-result__toggle {
		display: none;
		cursor: pointer;
	}
}
.c-result__toggle:hover {
	background-color: #666666;
}
.c-result__toggle span {
	position: relative;
	display: inline-block;
	padding: 1.25em 0;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-result__toggle span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-result__toggle span::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -18px;
	width: 11.5px;
	height: 6.5px;
	background: transparent url(../../image/arrow_toggle.svg) no-repeat scroll center center/cover;
	-webkit-transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.4s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.c-result__toggle.is-active span::before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

/*
* .c-resultGroup
*/
.c-resultGroup {
	margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap {
		width: calc(100% - 230px);
	}
}

.c-resultGroup__side {
	display: none;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side {
		display: block;
		width: 190px;
	}
}

.c-resultGroup__wrap__title h2 {
	display: inline-block;
	margin-bottom: 18px;
	border-bottom: 1px solid #333333;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.2;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__title h2 {
		margin-bottom: 20px;
		font-size: 1.4666666667rem;
		line-height: 1.2;
	}
}

.c-resultGroup__wrap__tags {
	margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__tags {
		margin-bottom: 10px;
	}
}
.c-resultGroup__wrap__tags ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-resultGroup__wrap__tags li {
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 2px 8px;
	background-color: #f0f0f0;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.6153846154;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__tags li {
		margin: 0 10px 10px 0;
		font-size: 0.8666666667rem;
		line-height: 1.8461538462;
	}
}

.c-resultGroup__wrap__list {
	margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__list {
		margin-bottom: 10px;
	}
}
.c-resultGroup__wrap__list ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.c-resultGroup__wrap__list li {
	position: relative;
	margin: 0 20px 8px 0;
	padding-left: 20px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__list li {
		font-size: 0.9333333333rem;
		line-height: 1;
	}
}
.c-resultGroup__wrap__list li::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 16px;
	height: 16px;
	background: transparent url(../../image/btn_01.svg) no-repeat scroll center center/cover;
}
.c-resultGroup__wrap__list a {
	display: inline-block;
	border-bottom: 1px solid #333333;
}

.c-resultGroup__wrap__text h3 {
	padding-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__text h3 {
		padding-bottom: 12px;
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.c-resultGroup__wrap__text p {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__text p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-resultGroup__wrap__text img {
	display: block;
	width: 110px;
	float: right;
	margin: 0 0 6px 6px;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__wrap__text img {
		display: none;
	}
}

.c-resultGroup__side__thumb img {
	border-radius: 10px;
}

.c-resultGroup__side__title {
	text-align: center;
	margin-top: 4px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__title {
		margin-top: 10px;
	}
}
.c-resultGroup__side__title p {
	padding: 20px 0;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.1666666667;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__title p {
		font-size: 0.8rem;
		line-height: 1.1666666667;
	}
}
.c-resultGroup__side__title span {
	position: relative;
}
.c-resultGroup__side__title span::before {
	content: "";
	position: absolute;
	top: -4px;
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
	left: -12px;
	width: 1px;
	height: 28px;
	background-color: #333333;
}
.c-resultGroup__side__title span::after {
	content: "";
	position: absolute;
	top: -4px;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
	right: -12px;
	width: 1px;
	height: 28px;
	background-color: #333333;
}

.c-resultGroup__side__category {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.c-resultGroup__side__category ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category ul {
		display: block;
	}
}
.c-resultGroup__side__category li {
	position: relative;
	width: 48.3180428135%;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category li {
		width: 100%;
	}
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category li:nth-child(n+2) {
		margin-top: 12px;
	}
}
.c-resultGroup__side__category a {
	display: block;
}
.c-resultGroup__side__category span {
	z-index: 1;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 46px;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category span {
		width: 36px;
	}
}
.c-resultGroup__side__category p {
	z-index: 0;
	position: relative;
	text-align: center;
	padding: 0.25em 0 0.25em 24%;
	background-color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (max-width: 1023px) {
	.c-resultGroup__side__category p {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category p {
		padding: 0.35em 0 0.35em 13%;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category p br {
		display: none;
	}
}
.c-resultGroup__side__category [data-type=mulch] p {
	border: 1px solid #a3d344;
}
.c-resultGroup__side__category [data-type=interview] p {
	border: 1px solid #f1917a;
}
.c-resultGroup__side__category [data-type=web] p {
	border: 1px solid #a3d344;
}
.c-resultGroup__side__category .is-arrange p {
	padding: 0.85em 0 0.85em 24%;
}
@media screen and (min-width: 1024px) {
	.c-resultGroup__side__category .is-arrange p {
		padding: 0.35em 0 0.35em 13%;
	}
}

/*
* .c-detailWrap
*/
.c-detailWrap {
	position: relative;
	margin-top: 40px;
	padding: 46px 3.9436619718% 16px;
	background-color: #ffffff;
	border-radius: 10px 10px 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap {
		margin-top: 70px;
		padding: 40px 4.3668122271% 16px;
	}
}

.c-detailWrap--sub {
	margin-top: 20px;
	padding: 20px 3.9436619718% 16px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap--sub {
		margin-top: 40px;
		padding: 40px 4.3668122271% 30px;
	}
}

.c-detailWrap__type {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: absolute;
	top: -40px;
	left: 0;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type {
		top: -60px;
		left: -20px;
	}
}

.c-detailWrap__type__main {
	z-index: 1;
	position: relative;
	width: 82px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type__main {
		width: 106px;
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
.c-detailWrap__type__main p {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type__main p {
		font-size: 1.1333333333rem;
		line-height: 1.5;
	}
}
.c-detailWrap__type__main span {
	display: block;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type__main span {
		font-size: 0.6rem;
		line-height: 1.5;
	}
}
.know .c-detailWrap__type__main p {
	top: 40px;
	left: 44px;
}
@media screen and (min-width: 1024px) {
	.know .c-detailWrap__type__main p {
		top: 50px;
		left: 58px;
	}
}

.c-detailWrap__type__sub {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(100% - 82px);
	padding: 8px 38px;
	background-color: #ffffff;
	border-radius: 200px;
	-webkit-transform: translateX(-30px);
	transform: translateX(-30px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type__sub {
		width: calc(100% - 106px);
	}
}
.c-detailWrap__type__sub img {
	width: 24px;
}
.c-detailWrap__type__sub p {
	padding-left: 6px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__type__sub p {
		font-size: 1rem;
		line-height: 1.5;
	}
}
.search .c-detailWrap__type__sub p {
	color: #a5d544;
}

.c-detailWrap__title h1 {
	padding-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.4285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__title h1 {
		font-size: 1.4666666667rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__title ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
.c-detailWrap__title li {
	position: relative;
	padding-left: 16px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__title li {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-detailWrap__title li + * {
	margin-top: 4px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__title li + * {
		margin-top: 0;
		margin-left: 20px;
	}
}
.c-detailWrap__title li:nth-child(1)::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	width: 10px;
	height: 14px;
	background: transparent url(../../image/_search/works/icon_access.png) no-repeat scroll center center/cover;
}
.c-detailWrap__title li:nth-child(2)::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 13px;
	height: 13px;
	background: transparent url(../../image/_search/works/icon_tel.png) no-repeat scroll center center/cover;
}

.c-detailWrap__category {
	width: 100%;
	margin-top: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category {
		margin-top: 20px;
		margin-left: auto;
	}
}
.c-detailWrap__category ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category ul {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}
.c-detailWrap__category li {
	position: relative;
	width: 48.3180428135%;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category li {
		min-width: 195px;
		padding-right: 6px;
		width: 23.8386308068%;
	}
}
.c-detailWrap__category a {
	display: block;
}
.c-detailWrap__category span {
	z-index: 1;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 46px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category span {
		width: 36px;
	}
}
.c-detailWrap__category p {
	z-index: 0;
	position: relative;
	text-align: center;
	padding: 0.25em 0 0.25em 24%;
	background-color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (max-width: 1023px) {
	.c-detailWrap__category p {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category p {
		padding: 0.35em 0 0.35em 13%;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category p br {
		display: none;
	}
}
.c-detailWrap__category [data-type=mulch] p {
	border: 1px solid #a3d344;
}
.c-detailWrap__category [data-type=interview] p {
	border: 1px solid #f1917a;
}
.c-detailWrap__category [data-type=web] p {
	border: 1px solid #a3d344;
}
.c-detailWrap__category .is-arrange p {
	padding: 0.85em 0 0.85em 24%;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__category .is-arrange p {
		padding: 0.35em 0 0.35em 13%;
	}
}

.c-detailWrap__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 20px;
	}
}
.c-detailWrap__list dl {
	margin-bottom: 6px;
	padding-right: 10px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__list dl {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 8px;
		padding-right: 20px;
	}
}
.c-detailWrap__list dt {
	position: relative;
	display: inline-block;
	margin-right: 12px;
	padding: 3px 4px 2px;
	background-color: #f0f0f0;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 700;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__list dt {
		white-space: nowrap;
		font-size: 0.7333333333rem;
		line-height: 1.5;
	}
}
.c-detailWrap__list dt::before {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 8px;
	border-color: transparent transparent transparent #f0f0f0;
}
.c-detailWrap__list dd {
	display: inline;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__list dd {
		display: inline-block;
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-detailWrap__tags {
	margin-top: 6px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__tags {
		margin-top: 6px;
	}
}
.c-detailWrap__tags ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.c-detailWrap__tags li {
	width: 32.1100917431%;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__tags li {
		width: 16.1162483487%;
	}
}
.c-detailWrap__tags li:nth-child(n+4) {
	margin-top: 3px;
}
@media screen and (min-width: 1024px) {
	.c-detailWrap__tags li:nth-child(n+4) {
		margin-top: 0;
	}
}
.c-detailWrap__tags [data-state=off] {
	position: relative;
}
.c-detailWrap__tags [data-state=off]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.85);
}

/*
* .c-detailButton
*/
.c-detailButton {
	width: 94.6666666667%;
	margin: 0 auto;
	padding: 14px 3.9436619718%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 1024px) {
	.c-detailButton {
		width: 95.020746888%;
		margin: 0;
		padding: 16px 4.3668122271%;
	}
}
.search .c-detailButton {
	background-color: #ecf7d7;
}
.know .c-detailButton {
	background-color: #ffebe8;
}
.learn .c-detailButton {
	background-color: #efeffa;
}
.c-detailButton ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 104%;
	margin-left: -2%;
}
@media screen and (min-width: 1024px) {
	.c-detailButton ul {
		width: 102%;
		margin-left: -1%;
	}
}
.c-detailButton li {
	margin: 0 0.4%;
	width: 23.2415902141%;
}
@media screen and (min-width: 1024px) {
	.c-detailButton li {
		width: 24.0157480315%;
	}
}
.c-detailButton a {
	text-align: center;
	display: block;
	padding: 1em 0;
	border-radius: 10px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailButton a {
		border-radius: 200px;
		font-size: 1rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-detailButton br {
		display: none;
	}
}
.c-detailButton [data-button] a {
	background-color: #ffffff;
	border: 1px solid #cbcbcb;
}
.c-detailButton [data-button=application] a {
	color: #ffffff;
	background-color: #ff8400;
	border: none;
}
.c-detailButton [data-button=internship] a {
	padding: 0.85em 0;
	color: #ffffff;
	background-color: #ff8400;
	border: none;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailButton [data-button=internship] a {
		padding: 0.5em 0;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
@media screen and (min-width: 1024px) {
	.c-detailButton [data-button=internship] a br {
		display: block;
	}
}
.c-detailButton [data-button=reserve] a {
	color: #006bcd;
	border-color: #006bcd;
}

.c-detailButton--sticky {
	z-index: 20;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}
@media screen and (min-width: 1024px) {
	.c-detailButton--sticky {
		top: 0;
	}
}

/*
* .c-detailContent
*/
.c-detailContent {
	position: relative;
	padding: 30px 0;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent {
		width: 89.7379912664%;
		margin: 0 auto 0;
		padding: 60px 0;
	}
}

.c-detailContent__title {
	padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__title {
		padding-bottom: 30px;
	}
}
.c-detailContent__title h2 {
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__title h2 {
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}

.c-detailContent__image {
	width: 90.1408450704%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__image {
		width: 48.6618004866%;
	}
}
.c-detailContent__image img {
	border-radius: 10px;
}

.c-detailContent__profile {
	position: relative;
	width: 90.1408450704%;
	margin: 30px auto 0;
	padding: 20px 6.25%;
	background-color: #f0f0f0;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__profile {
		margin: 30px auto 0;
		padding: 34px 3.9215686275%;
		width: 80.6569343066%;
	}
}
.c-detailContent__profile em {
	display: inline-block;
	position: absolute;
	top: -10px;
	left: 10px;
	padding: 4px 14px 6px;
	color: #ffffff;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__profile em {
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}
.know .c-detailContent__profile em {
	background-color: #f4a38b;
}

@media screen and (min-width: 1024px) {
	.c-detailContent__profile__column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.c-detailContent__profile__column img {
	display: block;
	width: 69px;
	margin: 0 auto 10px;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__profile__column img {
		width: 69px;
		margin: 0 auto;
	}
}
.c-detailContent__profile__column p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__profile__column p {
		width: calc(100% - 100px);
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.c-detailContent__list {
	position: relative;
}
.c-detailContent__list ol {
	padding-right: 5.6338028169%;
	padding-left: 80px;
	list-style-type: none;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list ol {
		padding-right: 13.3819951338%;
		padding-left: 110px;
	}
}
.c-detailContent__list li {
	position: relative;
	padding: 10px 0 10px 26px;
	border-bottom: 1px solid #ecf7d7;
	counter-increment: number;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list li {
		padding: 10px 0 10px 32px;
		font-size: 1.0666666667rem;
		line-height: 1.875;
	}
}
.c-detailContent__list li::before {
	z-index: 1;
	content: counter(number);
	position: absolute;
	top: 13px;
	left: 8px;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list li::before {
		top: 14px;
		left: 10px;
		font-size: 1rem;
		line-height: 1.5;
	}
}
.c-detailContent__list li::after {
	z-index: 0;
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 22px;
	height: 22px;
	background-color: #a5d544;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list li::after {
		top: 12px;
		width: 28px;
		height: 28px;
	}
}

.c-detailContent__list__icon {
	position: absolute;
	top: 0;
	left: -3.2%;
	width: 80px;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list__icon {
		width: 137px;
		left: -46px;
	}
}
.c-detailContent__list__icon p {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.5714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list__icon p {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.c-detailContent__list__icon span {
	display: block;
	font-size: 0.75rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__list__icon span {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

.c-detailContent-carousel,
.c-detailContent-thumbnail {
	overflow: hidden;
}

.c-detailContent-carousel {
	position: relative;
	margin-top: 10px;
	margin-bottom: 20px;
	padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-carousel {
		margin-top: 40px;
		margin-bottom: 40px;
		padding-bottom: 30px;
	}
}
.c-detailContent-carousel .swiper-pagination {
	bottom: 0 !important;
}
.c-detailContent-carousel .swiper-pagination-bullet {
	opacity: 1 !important;
	margin: 0 6px !important;
	background-color: #9C9C9C !important;
}
.c-detailContent-carousel .swiper-pagination-bullet-active {
	position: relative;
	background-color: #3dc2ff !important;
}
.c-detailContent-carousel .swiper-button-next {
	display: block;
	width: 42px;
	height: 42px;
	top: 34% !important;
	right: 1.0373443983%;
	background: transparent url(../../image/arrow_next_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-carousel .swiper-button-next {
		width: 56px;
		height: 56px;
		top: 38% !important;
	}
}
.c-detailContent-carousel .swiper-button-prev {
	display: block;
	width: 42px;
	height: 42px;
	top: 34% !important;
	left: 1.0373443983%;
	background: transparent url(../../image/arrow_prev_02.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-carousel .swiper-button-prev {
		width: 56px;
		height: 56px;
		top: 38% !important;
	}
}
.c-detailContent-carousel p {
	padding-top: 8px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-carousel p {
		font-size: 0.8666666667rem;
		line-height: 1.6923076923;
	}
}

.c-detailContent-carousel__item p {
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0.4s;
	transition: opacity 0.8s ease 0.4s;
}
.c-detailContent-carousel__item.swiper-slide-active p {
	opacity: 1;
}

.c-detailContent-thumbnail {
	margin-bottom: 30px;
	padding-left: 2.8169014085%;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-thumbnail {
		width: 78.3454987835%;
		margin: 0 auto 40px;
		padding-left: 0;
	}
}
.c-detailContent-thumbnail p {
	padding-top: 8px;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent-thumbnail p {
		font-size: 0.8666666667rem;
		line-height: 1.6923076923;
	}
}
.c-detailContent-thumbnail .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.c-detailContent-carousel__item__thumb,
.c-detailContent-thumbnail__item__thumb {
	border-radius: 10px;
}
.c-detailContent-carousel__item__thumb img,
.c-detailContent-thumbnail__item__thumb img {
	border-radius: 10px;
}

@media screen and (min-width: 1024px) {
	.c-detailContent-carousel__item__thumb.-resize {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 71.3333333333%;
		background-color: #ecf7d7;
	}
	.c-detailContent-carousel__item__thumb.-resize img {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: auto;
		height: auto;
	}
}

.c-detailContent__text {
	padding: 0 2.6666666667%;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__text {
		width: 78.3454987835%;
		margin: 0 auto;
	}
}
.c-detailContent__text p {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__text p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-detailContent__popup {
	position: relative;
	margin-top: 20px;
	padding: 20px 0;
	border-top: 1px solid #dcefbf;
	border-bottom: 1px solid #dcefbf;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__popup {
		width: 78.3454987835%;
		margin: 40px auto 0;
		padding: 40px 4.0372670807%;
		border: 1px solid #dcefbf;
		border-radius: 10px;
	}
}

.c-detailContent__popup__title {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -12px;
	padding: 1px 20px;
	background-color: #a5d544;
	border-radius: 200px;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__popup__title {
		padding: 1px 30px;
	}
}
.c-detailContent__popup__title p {
	white-space: nowrap;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__popup__title p {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}

.c-detailContent__popup__video {
	position: relative;
	width: 94.3661971831%;
	margin: 0 auto;
	padding-bottom: 53%;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__popup__video {
		width: 100%;
		padding-bottom: 56.3%;
	}
}
.c-detailContent__popup__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border-radius: 10px;
}
.c-detailContent__popup__video iframe .theo-player-wrapper {
	background-color: #ffffff !important;
}

.c-detailContent__message {
	position: relative;
	width: 94.6666666667%;
	margin: 40px auto 0;
	padding: 50px 3.3802816901% 16px;
	background-color: #ecf7d7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message {
		width: 78.3454987835%;
		margin: 60px auto 0;
		padding: 50px 6.2111801242%;
		border: 1px solid #dcefbf;
		border-radius: 10px;
	}
}
.c-detailContent__message p {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}

.c-detailContent__message__fukidashi {
	display: inline-block;
	position: absolute;
	top: -20px;
	left: 20px;
	text-align: center;
	margin-bottom: 10px;
	padding: 8px 16px;
	background-color: #ffffff;
	border: 2px solid;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message__fukidashi {
		margin: 0 auto 10px;
		padding: 8px 16px;
	}
}
.c-detailContent__message__fukidashi::before {
	content: "";
	position: absolute;
	left: 30px;
	bottom: -10px;
	width: 20px;
	height: 10px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message__fukidashi::before {
		left: 30px;
		bottom: -10px;
		width: 20px;
		height: 10px;
	}
}
.c-detailContent__message__fukidashi::after {
	content: "";
	position: absolute;
	left: 50px;
	bottom: -20px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message__fukidashi::after {
		left: 50px;
		bottom: -20px;
		width: 14px;
		height: 14px;
	}
}
.c-detailContent__message__fukidashi span {
	position: relative;
	display: inline-block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__message__fukidashi span {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.search .c-detailContent__message__fukidashi {
	border-color: #a5d544;
}
.search .c-detailContent__message__fukidashi::before {
	border-color: #a5d544;
}
.search .c-detailContent__message__fukidashi::after {
	border-color: #a5d544;
}

.c-detailContent__address {
	width: 94.6666666667%;
	height: 190px;
	margin: 20px auto 0;
	padding: 20px 3.3802816901% 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: scroll;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__address {
		width: 78.3454987835%;
		margin: 40px auto 0;
		padding: 20px 6.2111801242%;
		border-radius: 10px;
	}
}
.c-detailContent__address p {
	text-align: center;
	margin-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__address p {
		margin-bottom: 14px;
		font-size: 1.2rem;
		line-height: 1.5;
	}
}
.c-detailContent__address span {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-detailContent__address span {
		font-size: 1rem;
		line-height: 1.75;
	}
}

/*
* .c-banner
*/
.c-banner {
	position: relative;
	margin-top: 40px;
	padding: 20px 5.9701492537%;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.c-banner {
		width: 61.5571776156%;
		margin: 60px auto 0;
		padding: 20px 3.162055336%;
	}
}
.c-banner--search {
	background-color: #a5d544;
}
.c-banner--know {
	background-color: #f1917a;
}
.c-banner--learn {
	background-color: #b0b0eb;
}
.c-banner a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.c-banner::before {
	content: "";
	z-index: 1;
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 21px;
	height: 21px;
	background: transparent url(../../image/btn_04.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-banner::before {
		right: 20px;
		bottom: 20px;
	}
}

.c-banner__thumb {
	width: 34.9206349206%;
}
@media screen and (min-width: 1024px) {
	.c-banner__thumb {
		width: 43.7768240343%;
	}
}
.c-banner__thumb img {
	border-radius: 10px;
}

.c-banner__textarea {
	width: 60.3174603175%;
}
@media screen and (min-width: 1024px) {
	.c-banner__textarea {
		width: 51.9313304721%;
	}
}
.c-banner__textarea h3 {
	padding-bottom: 12px;
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-banner__textarea h3 {
		padding-bottom: 20px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-banner__textarea p {
	color: #ffffff;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-banner__textarea p {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.c-pageLink {
	position: relative;
	margin-top: 40px;
	padding: 30px 0;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
	.c-pageLink {
		width: 61.5571776156%;
		margin: 60px auto 0;
		padding: 40px 0;
	}
}
.c-pageLink h3 {
	text-align: center;
	padding-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-pageLink h3 {
		padding-bottom: 20px;
		font-size: 1.7333333333rem;
		line-height: 1.5;
	}
}
.c-pageLink p {
	text-align: center;
	padding-bottom: 16px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-pageLink p {
		padding-bottom: 20px;
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-pageLink__category {
	z-index: 20;
	position: absolute;
	top: -30px;
	left: -5.3333333333%;
	width: 86px;
}
@media screen and (min-width: 1024px) {
	.c-pageLink__category {
		width: 106px;
		left: -30px;
	}
}
.c-pageLink__category p {
	text-align: center;
	position: absolute;
	color: #ffffff;
	top: 25px;
	left: 27px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.2;
}
@media screen and (min-width: 1024px) {
	.c-pageLink__category p {
		top: 36px;
		left: 36px;
		font-size: 1.1833333333rem;
		line-height: 1.2;
	}
}
.c-pageLink__category span {
	display: block;
	font-size: 0.6428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-pageLink__category span {
		font-size: 0.6rem;
		line-height: 1.5;
	}
}

/*
* .c-lockWrap
*/
.c-lockWrap {
	position: relative;
	overflow: hidden;
}

.c-lockWrap__on {
	z-index: 1;
	position: relative;
	padding: 50px 0;
	border: 2px dotted #000000;
	background: -webkit-gradient(linear, left bottom, left top, from(rgb(252, 245, 244)), to(rgba(252, 245, 244, 0.7)));
	background: linear-gradient(0deg, rgb(252, 245, 244) 0%, rgba(252, 245, 244, 0.7) 100%);
}
@media screen and (min-width: 1024px) {
	.c-lockWrap__on {
		padding: 96px 0;
	}
}
.c-lockWrap__on h3 {
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-lockWrap__on h3 {
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}

.c-lockWrap__on__signin a {
	text-align: center;
	display: block;
	width: 88.0597014925%;
	margin: 20px auto;
	padding: 14px 0;
	color: #ffffff;
	background-color: #FB6F08;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-lockWrap__on__signin a {
		width: min(420px, 34.3vw);
		margin: 28px auto;
		padding: 16px 0;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}

.c-lockWrap__on__login {
	text-align: center;
}
.c-lockWrap__on__login a {
	text-decoration: underline;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 2.1428571429;
}
@media screen and (min-width: 1024px) {
	.c-lockWrap__on__login a {
		font-size: 1.0666666667rem;
		line-height: 1.875;
	}
}

.c-lockWrap__close {
	position: absolute;
	top: 0;
	left: 0;
}

/*
* .c-reserve
*/
.c-reserve {
	position: relative;
	margin: 20px 0 0 0;
	padding: 24px 5.3333333333%;
	background-color: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.c-reserve {
		width: 100.2188183807%;
		margin: 20px auto 0;
		padding: 38px 5.2770448549%;
	}
}

@media screen and (min-width: 1024px) {
	.c-reserve__inner {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.c-reserve__inner + * {
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner + * {
		margin-top: 30px;
		padding-top: 30px;
	}
}
.c-reserve__inner + *::before {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 0;
	width: 100%;
	height: 1px;
}
.search .c-reserve__inner + *::before {
	background-color: #eaf5d5;
}
.know .c-reserve__inner + *::before {
	background-color: #fddfdb;
}
.learn .c-reserve__inner + *::before {
	background-color: #e6e6fb;
}

.c-reserve__inner__image {
	width: 87.3015873016%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner__image {
		width: 40.6203840473%;
		margin: 0;
	}
}
.c-reserve__inner__image img {
	border-radius: 10px;
}

@media screen and (min-width: 1024px) {
	.c-reserve__inner__detail {
		width: 54.6528803545%;
	}
}
.c-reserve__inner__detail *:not(a) {
	width: 87.3015873016%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner__detail *:not(a) {
		width: auto;
		margin: 0;
	}
}
.c-reserve__inner__detail h3 {
	padding-top: 8px;
	padding-bottom: 2px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner__detail h3 {
		padding-bottom: 16px;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.c-reserve__inner__detail p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 2.5;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner__detail p {
		font-size: 1.0666666667rem;
		line-height: 1.875;
	}
}
.c-reserve__inner__detail a {
	text-align: center;
	display: block;
	margin-top: 10px;
	padding: 1em 0;
	background-color: #FF8300;
	color: #ffffff;
	text-decoration: none;
	border-radius: 200px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.c-reserve__inner__detail a {
		max-width: 200px;
		margin-top: 26px;
		font-size: 0.9333333333rem;
		line-height: 1;
	}
}

/*==============================================
  PLUG IN
==============================================*/
.lity-close {
	position: absolute;
	top: -36px;
	right: 10px;
	width: 24px;
	height: 24px;
	background: transparent url(../../image/icon_close.svg) no-repeat scroll center center/cover;
	font-family: none !important;
	font-size: 0 !important;
	-webkit-transition: opacity 0.4s ease 0s;
	transition: opacity 0.4s ease 0s;
}
@media screen and (min-width: 1024px) {
	.lity-close {
		top: -40px;
		right: -40px;
		width: 28px;
		height: 28px;
	}
}
.lity-close:hover {
	opacity: 0.4;
	position: absolute;
	top: -40px;
	right: -40px;
	background: transparent url(../../image/icon_close.svg) no-repeat scroll center center/cover;
}

/*==============================================
  BROWSER HACK
==============================================*/
_::-webkit-full-page-media, _:future, :root .c-searchBox__table label input[type=checkbox],
:root .c-searchBox__list label input[type=checkbox] {
	top: -2px;
	left: -41px;
	-webkit-box-shadow: 40px 0 #ffffff;
	box-shadow: 40px 0 #ffffff;
}

_::-webkit-full-page-media, _:future, :root .c-searchBox__table input[type=checkbox]:checked,
:root .c-searchBox__list input[type=checkbox]:checked {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.c-videoWrap {
	position: relative;
	display: block;
}
.c-videoWrap::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	background: transparent url(../../image/icon_play.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.c-videoWrap::before {
		width: 60px;
		height: 60px;
	}
}

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

  UTILITY

==============================================*/
.u-hidden {
	display: none;
}

@media screen and (max-width: 768px) {
	.u-hidden-sp {
		display: none !important;
	}
}

@media screen and (min-width: 769px) {
	.u-hidden-pc {
		display: none !important;
	}
}

.u-left {
	text-align: left !important;
}

.u-center {
	text-align: center !important;
}

.u-right {
	text-align: right !important;
}

.u-red {
	color: red;
}

.u-bg-red {
	background-color: red;
}

.u-bg-stand {
	background-color: #F4BDB5 !important;
}

/* 
* 余白打ち消しクラス
*/
.u-no-radius {
	border-radius: 0 !important;
}

.u-no-margin {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.u-no-margin-top {
	margin-top: 0 !important;
}

.u-no-margin-bottom {
	margin-bottom: 0 !important;
}

.u-no-padding {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.u-no-padding-top {
	padding-top: 0 !important;
}

.u-no-padding-bottom {
	padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
	padding-top: 10px;
}
.-padding-t.-x2 {
	padding-top: 20px;
}
.-padding-t.-x4 {
	padding-top: 40px;
}
.-padding-t.-x6 {
	padding-top: 60px;
}
.-padding-t.-x8 {
	padding-top: 80px;
}

.-padding-b {
	padding-bottom: 10px;
}
.-padding-b.-x2 {
	padding-bottom: 20px;
}
.-padding-b.-x4 {
	padding-bottom: 40px;
}
.-padding-b.-x6 {
	padding-bottom: 60px;
}
.-padding-b.-x8 {
	padding-bottom: 80px;
}

.-margin-t {
	margin-top: 10px;
}
.-margin-t.-x2 {
	margin-top: 20px;
}
.-margin-t.-x4 {
	margin-top: 40px;
}
.-margin-t.-x6 {
	margin-top: 60px;
}
.-margin-t.-x8 {
	margin-top: 80px;
}

.-margin-b {
	margin-bottom: 10px;
}
.-margin-b.-x2 {
	margin-bottom: 20px;
}
.-margin-b.-x4 {
	margin-bottom: 40px;
}
.-margin-b.-x6 {
	margin-bottom: 60px;
}
.-margin-b.-x8 {
	margin-bottom: 80px;
}

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

  THEME LEARN

==============================================*/
.learn {
	background-color: #f3f3fa;
}

/*
* .t-main-wrap
*/
/*
* .t-learn-wrap
*/
.t-learn-wrap .c-title-wrap__category {
	-webkit-transform: translateY(10px, -10px);
	transform: translateY(10px, -10px);
}
@media screen and (min-width: 1024px) {
	.t-learn-wrap .c-title-wrap__category {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/*
* learn 学ぶ 共通設定
*/
.t-learn-caption {
	text-align: right;
}
@media screen and (min-width: 1024px) {
	.t-learn-caption {
		width: 82.932166302%;
		margin: 0 auto;
	}
}

@media screen and (min-width: 1024px) {
	.t-learn-col-center {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

/*
* zadankai 保護者のホンネ座談会
*/
.c-section__sentence {
	padding-top: 2em;
}

.t-zadankai-profile {
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile {
		padding-right: 0;
		padding-left: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.t-zadankai-profile__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 20px 0;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__item {
		display: block;
		width: 200px;
		margin: 10px 10px;
	}
}

.t-zadankai-profile__thumb {
	position: relative;
	width: 88px;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__thumb {
		width: 108px;
		margin: 0 auto;
	}
}
.t-zadankai-profile__thumb p {
	display: inline-block;
	position: absolute;
	bottom: 10%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0 8px;
	background-color: #ffffff;
	border-radius: 10px;
	font-size: 0.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__thumb p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-zadankai-profile__thumb small {
	font-size: 0.5714285714rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__thumb small {
		font-size: 0.6rem;
		line-height: 1.5;
	}
}

.t-zadankai-profile__detail {
	font-size: 0.8571428571rem;
	line-height: 1.5;
	margin-left: 1rem;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__detail {
		font-size: 0.8rem;
		line-height: 1.5;
		margin-left: 0;
		margin-top: 0.75rem;
	}
}

.t-zadankai-profile__comment {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	font-size: 0.8571428571rem;
	line-height: 1.5;
	color: #fff;
	padding: 0.5em 1em;
	background-color: #AEAEE9;
	border-radius: 8px;
	margin-top: 0.75rem;
	position: relative;
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__comment {
		font-size: 0.8rem;
		line-height: 1.5;
	}
}
.t-zadankai-profile__comment::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: #AEAEE9;
	position: absolute;
	top: -5px;
	left: 35px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
	.t-zadankai-profile__comment::before {
		left: calc(50% - 5px);
	}
}

/*
* male 男性保育士インタビュー
*/
.t-male-profile-head {
	padding-bottom: 0;
	border-bottom: none;
}

.t-male-figure-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.t-male-figure-text span:first-child {
	display: block;
	width: 100px;
	margin-right: 1.25rem;
}
@media screen and (min-width: 1024px) {
	.t-male-figure-text {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.t-male-figure-text span:first-child {
		width: 125px;
	}
}

.t-male-message-thumb {
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-male-message-thumb {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

/*
* candidate 理想の園と出会うコツ
*/
.t-candidate-volume {
	margin-top: 0;
}
@media screen and (min-width: 1024px) {
	.t-candidate-volume {
		margin-top: 15px;
	}
}
@media screen and (min-width: 1024px) {
	.learn-candidate-index .t-candidate-volume, .learn-candidate-01_24 .t-candidate-volume, .learn-candidate-02_24 .t-candidate-volume, .learn-candidate-03_24 .t-candidate-volume {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
span.t-candidate-volume_note {
    font-size: 0.8rem;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: right;
    display: block;
    margin: 0 5px 25px 0;
}
@media screen and (min-width: 1024px) {
    span.t-candidate-volume_note {
        margin: 0 85px 25px auto;
    }
}
.t-candidate-volume__item:nth-child(2) {
	margin-left: 0;
}
@media screen and (min-width: 1024px) {
	.t-candidate-volume__item {
		margin-bottom: 30px;
	}
	.t-candidate-volume__item a {
		height: 100%;
	}
	.t-candidate-volume__item:nth-child(2n) {
		margin-left: 3.2751091703%;
	}
}

.t-candidate-main {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	position: relative;
}

.t-candidate-main__deco {
	width: 121px;
	position: absolute;
	top: 10px;
	left: 5%;
}
@media screen and (min-width: 1024px) {
	.t-candidate-main__deco {
		width: 147px;
		top: 60px;
		left: 3%;
	}
}

.t-candidate-main__txtGroup {
	margin: 15px 0;
	position: relative;
}
@media screen and (min-width: 1024px) {
	.t-candidate-main__txtGroup {
		margin: 0;
		position: absolute;
		top: 50%;
		left: 6%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.t-candidate-main__vol {
	display: inline-block;
	padding: 4px 20px 6px;
	background-color: #fff;
	border-radius: 200px;
	white-space: nowrap;
	font-size: 0.8571428571rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-candidate-main__vol {
		font-size: 1.0666666667rem;
		line-height: 1;
	}
}

.t-candidate-main__ttl {
	color: #fff;
	margin-top: 0.3em;
	font-size: 1.7142857143rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-candidate-main__ttl {
		font-size: 2.1333333333rem;
		line-height: 1.5;
	}
}

.t-candidate-main__figure {
	width: 80%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.t-candidate-main__figure {
		width: 50%;
		margin: 0 0 0 auto;
	}
}

.t-candidate-profile__head {
	padding-bottom: 0;
	border-bottom: none;
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
	.t-candidate-profile__head p {
		padding-top: 10px;
		padding-left: 0;
		padding-bottom: 0;
	}
}

.t-candidate-profile__body {
	padding-top: 0.5em;
}

.t-candidate-section__sentence {
	padding-top: 2em;
}
@media screen and (min-width: 1024px) {
	.t-candidate-section__sentence {
		padding-top: 6em;
	}
}
.t-candidate-section__sentence p small {
	font-size: 0.9285714286rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-candidate-section__sentence p small {
		font-size: 0.8666666667rem;
		line-height: 1.5;
	}
}

.t-candidate-Onlyweb {
	margin-top: 60px;
}
@media screen and (min-width: 1024px) {
	.t-candidate-Onlyweb {
		margin-top: 70px;
	}
}

.t-candidate-interview-list {
	margin-top: 40px;
}
@media screen and (min-width: 1024px) {
	.t-candidate-interview-list {
		margin-top: 70px;
	}
}

/*
* Volページ Vol.01 個別設定
*/
.learn-candidate-01_24 .t-candidate-main {
	background-color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-main__vol {
	color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-profile span {
	background-color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-Onlyweb {
	background-color: #F2E2E7;
}
.learn-candidate-01_24 .t-candidate-Onlyweb-comment p {
	border-color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-Onlyweb-comment p::before {
	border-color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-Onlyweb-comment p::after {
	border-color: #E8ABBC;
}
.learn-candidate-01_24 .t-candidate-section-border {
	border: 2px solid #E8ABBC;
}

/*
* Volページ Vol.02 個別設定
*/
.learn-candidate-02_24 .t-candidate-main {
	background-color: #93D2D3;
}
.learn-candidate-02_24 .t-candidate-main__vol {
	color: #93D2D3;
}
.learn-candidate-02_24 .t-candidate-profile span {
	background-color: #93D2D3;
}
.learn-candidate-02_24 .t-candidate-Onlyweb {
	background-color: #DAEFEE;
}
.learn-candidate-02_24 .t-candidate-Onlyweb-comment p {
	border-color: #A6D3A2;
}
.learn-candidate-02_24 .t-candidate-Onlyweb-comment p::before {
	border-color: #A6D3A2;
}
.learn-candidate-02_24 .t-candidate-Onlyweb-comment p::after {
	border-color: #A6D3A2;
}
.learn-candidate-02_24 .t-candidate-section-border {
	border: 2px solid #A6D3A2;
}

/*
* Volページ Vol.03 個別設定
*/
.learn-candidate-03_24 .t-candidate-main {
	background-color: #f7c663;
}
.learn-candidate-03_24 .t-candidate-main__vol {
	color: #f7c663;
}
.learn-candidate-03_24 .t-candidate-profile span {
	background-color: #f7c663;
}
.learn-candidate-03_24 .t-candidate-Onlyweb {
	background-color: #f8f2e2;
}
.learn-candidate-03_24 .t-candidate-Onlyweb-comment p {
	border-color: #f8d880;
}
.learn-candidate-03_24 .t-candidate-Onlyweb-comment p::before {
	border-color: #f8d880;
}
.learn-candidate-03_24 .t-candidate-Onlyweb-comment p::after {
	border-color: #f8d880;
}
.learn-candidate-03_24 .t-candidate-section-border {
	border: 2px solid #f8d880;
}

/*
* .t-response
*/
.t-response-wrap + * {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.t-response-wrap + * {
		padding-top: 60px;
	}
}

.t-response__textarea {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea {
		padding-top: 30px;
	}
}
.t-response__textarea p {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.t-response__textarea ul {
	list-style: none;
	margin: 16px 0;
	padding: 0;
}
.t-response__textarea li {
	position: relative;
	padding-left: 30px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea li {
		padding-left: 38px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.t-response__textarea li::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 25px;
	height: 19px;
	background: transparent url(../../image/_learn/young_surv/icon_fukidashi_01.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea li::before {
		width: 31px;
		height: 23px;
	}
}
.t-response__textarea li + * {
	margin-top: 8px;
	padding-top: 0;
}
.t-response__textarea span {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.8571428571rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea span {
		font-size: 0.9333333333rem;
		line-height: 2;
	}
}
.t-response__textarea .-good li::before {
	background: transparent url(../../image/_learn/young_surv/icon_fukidashi_02.svg) no-repeat scroll center center/cover;
}
.t-response__textarea .-bad li::before {
	background: transparent url(../../image/_learn/young_surv/icon_fukidashi_03.svg) no-repeat scroll center center/cover;
}

.t-response__graph--good {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.t-response__graph--good {
		width: 78.313253012%;
		margin: 0 auto;
		padding-top: 30px;
	}
}

.t-response__graph--bad {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.t-response__graph--bad {
		width: 84.0361445783%;
		margin: 0 auto;
		padding-top: 30px;
	}
}

.t-response__percentage {
	padding: 16px 0;
	border: 1px solid #cccccc;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.t-response__percentage__set {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.t-response__percentage__set p {
	padding: 0 6px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.0714285714rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage__set p {
		font-size: 1.2666666667rem;
		line-height: 1;
	}
}
.t-response__percentage__set span {
	padding: 0;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage__set span {
		font-size: 2rem;
		line-height: 1;
	}
}
.t-response__percentage__set strong {
	padding: 0;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 900;
	font-size: 2.8571428571rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage__set strong {
		font-size: 3.3333333333rem;
		line-height: 1;
	}
}
.t-response__percentage__set em {
	padding: 0;
	background-color: transparent;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 900;
	font-size: 1.7142857143rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage__set em {
		font-size: 2rem;
		line-height: 1;
	}
}

.t-response__percentage__icon {
	padding-top: 12px;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage__icon {
		padding-top: 0;
		padding-left: 16px;
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}
}

.t-response__percentage--good .t-response__percentage__set span, .t-response__percentage--good .t-response__percentage__set strong {
	color: #e387ff;
}
.t-response__percentage--good .t-response__percentage__icon {
	width: 71.6216216216%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage--good .t-response__percentage__icon {
		width: 30.421686747%;
		max-width: 202px;
		margin: 0;
	}
}

.t-response__percentage--bad .t-response__percentage__set span, .t-response__percentage--bad .t-response__percentage__set strong {
	color: #7d88db;
}
.t-response__percentage--bad .t-response__percentage__icon {
	width: 28.3783783784%;
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.t-response__percentage--bad .t-response__percentage__icon {
		width: 12.6506024096%;
		max-width: 84px;
		margin: 0;
	}
}

.t-response__textarea__fukidashi {
	display: inline-block;
	position: relative;
	text-align: center;
	margin-bottom: 10px;
	padding: 8px 16px;
	background-color: #ffffff;
	border: 2px solid;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea__fukidashi {
		margin: 0 auto 10px;
		padding: 8px 16px;
	}
}
.t-response__textarea__fukidashi::before {
	content: "";
	position: absolute;
	left: 30px;
	bottom: -10px;
	width: 20px;
	height: 10px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea__fukidashi::before {
		left: 30px;
		bottom: -10px;
		width: 20px;
		height: 10px;
	}
}
.t-response__textarea__fukidashi::after {
	content: "";
	position: absolute;
	left: 50px;
	bottom: -20px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea__fukidashi::after {
		left: 50px;
		bottom: -20px;
		width: 14px;
		height: 14px;
	}
}
.t-response__textarea__fukidashi p {
	position: relative;
	display: inline-block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-response__textarea__fukidashi p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-response__textarea__fukidashi.-good {
	border-color: #e387ff;
}
.t-response__textarea__fukidashi.-good::before {
	border-color: #e387ff;
}
.t-response__textarea__fukidashi.-good::after {
	border-color: #e387ff;
}
.t-response__textarea__fukidashi.-bad {
	border-color: #7d88db;
}
.t-response__textarea__fukidashi.-bad::before {
	border-color: #7d88db;
}
.t-response__textarea__fukidashi.-bad::after {
	border-color: #7d88db;
}

@media screen and (min-width: 1024px) {
	.t-response__image {
		width: 91.4156626506%;
	}
}

/*
* .t-faq
*/
.t-faq {
	position: relative;
	margin: 20px 0 0 0;
	border-radius: 10px;
	background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
	.t-faq {
		width: 82.932166302%;
		margin: 40px auto 0;
	}
}

.t-faq__button,
.t-faq__inner {
	position: relative;
	padding: 15px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__button,
	.t-faq__inner {
		padding: 24px 4.4854881266%;
	}
}

.t-faq__button {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 18px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
@media screen and (min-width: 1024px) {
	.t-faq__button {
		padding: 24px 4.4854881266%;
	}
}
.t-faq__button::before {
	content: "";
	z-index: -1;
	position: absolute;
	right: -6px;
	bottom: -6px;
	width: 100%;
	height: 100%;
	background-color: #AFAFEA;
	border-radius: 10px;
	-webkit-transition: all 0.2s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: all 0.2s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
}
.t-faq__button:hover::before {
	right: 0;
	bottom: 0;
}
.t-faq__button span {
	width: 40px;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	color: #AFAFEA;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 2.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__button span {
		width: 56px;
		font-size: 3.2rem;
		line-height: 1.5;
	}
}
.t-faq__button h2 {
	text-align: left;
	width: calc(100% - 40px - 18px);
	padding-right: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__button h2 {
		text-align: center;
		width: calc(100% - 56px - 28px);
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
@media screen and (max-width: 1023px) {
	.t-faq__button h2 br {
		display: none;
	}
}
.t-faq__button img {
	display: block;
	width: 18px;
	margin-left: auto;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: -webkit-transform 0.3s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.3s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	transition: transform 0.3s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s, -webkit-transform 0.3s cubic-bezier(0.28, 0.19, 0.35, 0.87) 0s;
	pointer-events: none;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
	.t-faq__button img {
		width: 28px;
	}
}
.t-faq__button.is-active {
	border-bottom: 2px solid #F2F2F9;
}
.t-faq__button.is-active::before {
	right: 0;
	bottom: 0;
}
.t-faq__button.is-active:hover {
	opacity: 1;
}
.t-faq__button.is-active img {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.t-faq__inner {
	display: none;
	padding: 32px 5.3333333333%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner {
		padding: 54px 7.1240105541%;
	}
}

.t-faq__inner__image + .t-faq__inner__textarea {
	padding-top: 16px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__image + .t-faq__inner__textarea {
		padding-top: 36px;
	}
}

.t-faq__inner__list ul {
	list-style: none;
	padding: 0;
}
.t-faq__inner__list li {
	position: relative;
	padding-left: 30px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__list li {
		padding-left: 38px;
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.t-faq__inner__list li::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 25px;
	height: 19px;
	background: transparent url(../../image/_learn/young_surv/icon_fukidashi_01.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__list li::before {
		width: 31px;
		height: 23px;
	}
}
.t-faq__inner__list li + * {
	margin-top: 8px;
	padding-top: 0;
}
.t-faq__inner__list em {
	background-color: #FFFCB5;
}
.t-faq__inner__list + .t-faq__inner__textarea {
	padding-top: 18px;
}

.t-faq__inner__textarea p {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__textarea p {
		font-size: 1.0666666667rem;
		line-height: 1.75;
	}
}
.t-faq__inner__textarea + * {
	padding-top: 28px;
}

@media screen and (min-width: 1024px) {
	.t-faq__inner__definition dl {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.t-faq__inner__definition dl + * {
	padding-top: 18px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition dl + * {
		padding-top: 18px;
	}
}
.t-faq__inner__definition dt {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 16px 0 8px;
	color: #ffffff;
	background-color: #AFAFEA;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2857142857;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition dt {
		width: 170px;
		padding: 0;
		font-size: 1.3333333333rem;
		line-height: 1.5;
	}
}
.t-faq__inner__definition dd {
	position: relative;
	background-color: #EDEDF7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition dd {
		width: calc(100% - 170px);
		padding-left: 40px;
	}
}
.t-faq__inner__definition dd::before {
	content: "";
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50%, #AFAFEA)) no-repeat top left/50% 100%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, transparent), color-stop(50%, #AFAFEA)) no-repeat bottom right/50% 100%;
	background: linear-gradient(to top right, transparent 50%, #AFAFEA 50%) no-repeat top left/50% 100%, linear-gradient(to top left, transparent 50%, #AFAFEA 50%) no-repeat bottom right/50% 100%;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition dd::before {
		top: 0;
		left: 0;
		width: 20px;
		height: 100%;
		background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, transparent), color-stop(50%, #AFAFEA)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, transparent), color-stop(50%, #AFAFEA)) no-repeat bottom left/100% 50%;
		background: linear-gradient(to bottom left, transparent 50%, #AFAFEA 50%) no-repeat top left/100% 50%, linear-gradient(to top left, transparent 50%, #AFAFEA 50%) no-repeat bottom left/100% 50%;
	}
}
.t-faq__inner__definition ul {
	padding: 28px 20px 14px 36px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition ul {
		padding: 28px 20px 28px 20px;
	}
}
.t-faq__inner__definition li {
	list-style: disc;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition li {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.t-faq__inner__definition li + * {
	padding-top: 14px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__definition li + * {
		padding-top: 16px;
	}
}
.t-faq__inner__definition + * {
	padding-top: 28px;
}

.t-faq__inner__column {
	padding: 14px 4.8780487805%;
	background-color: #EDEDF7;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		padding: 18px 3.0165912519%;
	}
}
.t-faq__inner__column + * {
	margin-top: 10px;
}
.t-faq__inner__column span {
	display: block;
	width: 40px;
	margin: 4px auto 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column span {
		width: 84px;
		margin: 0;
		padding-right: 20px;
	}
}
.t-faq__inner__column p {
	width: 100%;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column p {
		width: calc(100% - 84px);
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-faq__inner__column em {
	background-color: #FFFCB5;
}
.t-faq__inner__column small {
	display: inline-block;
	padding-top: 4px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.7142857143rem;
	line-height: 1.68;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column small {
		padding-top: 10px;
		font-size: 0.8rem;
		line-height: 1.75;
	}
}
.t-faq__inner__column + .t-faq__inner__textarea {
	padding-top: 18px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column + .t-faq__inner__textarea {
		padding-top: 28px;
	}
}

@media screen and (min-width: 1024px) {
	.t-faq__inner__column--reverse {
		-webkit-box-orient: unset;
		-webkit-box-direction: unset;
		-webkit-flex-direction: unset;
		-ms-flex-direction: unset;
		flex-direction: unset;
	}
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column--reverse span {
		width: 84px;
		margin: 0;
		padding-right: 0;
		padding-left: 20px;
	}
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__column--reverse p {
		width: calc(100% - 84px);
	}
}

.t-faq__inner__grid {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__grid {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		gap: 10px;
	}
}
.t-faq__inner__grid span {
	display: block;
	margin-bottom: 10px;
	padding: 16px 7.6388888889%;
	border: 1px solid #6B69E9;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__grid span {
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		padding: 18px 7.3394495413%;
	}
}
.t-faq__inner__grid p {
	color: #6B69E9;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__grid p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-faq__inner__grid span:nth-of-type(1) p {
	font-size: 1.0714285714rem;
	line-height: 1.7333333333;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__grid span:nth-of-type(1) p {
		font-size: 1.2rem;
		line-height: 1.6666666667;
	}
}
.t-faq__inner__grid small {
	display: inline-block;
	padding-top: 4px;
	color: #6B69E9;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	font-size: 0.7142857143rem;
	line-height: 1.8;
}
@media screen and (min-width: 1024px) {
	.t-faq__inner__grid small {
		padding-top: 10px;
		font-size: 0.8rem;
		line-height: 1.75;
	}
}

@media all and (-ms-high-contrast: none) {
	.t-faq__inner__grid {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media screen and (-ms-high-contrast: none) and (min-width: 1024px) {
	.t-faq__inner__grid span {
		width: 49.2469879518%;
	}
}
/*
* ページごと余白調整
*/
.learn-male .c-section:first-of-type {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section:first-of-type {
		padding-top: 60px;
	}
}
.learn-male .c-section__sentence {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section__sentence {
		padding-top: 60px;
	}
}
.learn-male .c-section__profile {
	margin-top: 30px;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section__profile {
		margin-top: 40px;
	}
}
.learn-male .c-section__block {
	margin-top: 30px;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section__block {
		margin-top: 50px;
	}
}
.learn-male .c-section-interview__title {
	padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section-interview__title {
		padding-bottom: 0;
	}
}
.learn-male .c-section-interview__wrap {
	padding-top: 20px;
}
@media screen and (min-width: 1024px) {
	.learn-male .c-section-interview__wrap {
		padding-top: 30px;
	}
}

.learn-interview-01 {
	/* style */
}
.learn-interview-01 .c-section__sentence:nth-child(2) {
	padding-top: 10px;
}
@media screen and (min-width: 1024px) {
	.learn-interview-01 .c-section__sentence:nth-child(2) {
		padding-top: 0;
	}
}
.learn-interview-01 .c-section__sentence {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.learn-interview-01 .c-section__sentence {
		padding-top: 90px;
	}
}

.learn-interview-2 {
	/* style */
}
.learn-interview-2 .c-section__sentence:nth-child(2) {
	padding-top: 10px;
}
@media screen and (min-width: 1024px) {
	.learn-interview-2 .c-section__sentence:nth-child(2) {
		padding-top: 0;
	}
}
.learn-interview-2 .c-section__sentence {
	padding-top: 40px;
}
@media screen and (min-width: 1024px) {
	.learn-interview-2 .c-section__sentence {
		padding-top: 90px;
	}
}

@media screen and (min-width: 1024px) {
	.learn-candidate-03 .c-section__image__item,
	.learn-candidate-04 .c-section__image__item,
	.learn-candidate-05 .c-section__image__item {
		width: 59.3667546174%;
	}
}

@media screen and (min-width: 1024px) {
	.learn-zadankai .c-section__profile {
		width: 100%;
	}
}
@media screen and (min-width: 1024px) {
	.learn-zadankai .t-zadankai-profile__item {
		width: 16.4113785558%;
	}
}
@media screen and (max-width: 1023px) {
	.learn-zadankai .c-section__image__item {
		width: 60%;
		margin: 0 auto;
	}
}

.learn-thanks .c-section-flow__wrap {
	display: block;
}
@media screen and (min-width: 1024px) {
	.learn-thanks .c-section-flow__wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.learn-thanks .c-section-flow__wrap__icon {
	width: 44px;
	margin: 0 auto 10px;
}
@media screen and (min-width: 1024px) {
	.learn-thanks .c-section-flow__wrap__icon {
		width: 56px;
		margin: 0;
	}
}
.learn-thanks .c-section-flow__wrap__textarea {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.learn-thanks .c-section-flow__wrap__textarea {
		width: calc(100% - 84px);
	}
}

.learn-men_surv-index .-margin-t {
	margin-top: 56px;
}
@media screen and (min-width: 1024px) {
	.learn-men_surv-index .-margin-t {
		margin-top: 104px;
	}
}
.learn-men_surv-index .c-box-column {
	padding-right: 0;
}
.learn-men_surv-index .c-box-column__item {
	width: 46.8656716418%;
}
@media screen and (min-width: 1024px) {
	.learn-men_surv-index .c-box-column__item {
		width: 28.729281768%;
	}
}

/*
* experience 先輩保育士さんの就活体験記
*/
.c-section-learn-experience {
	padding-top: 28px;
}
@media screen and (min-width: 1024px) {
	.c-section-learn-experience {
		padding-top: 65px;
	}
}

.c-section__experience {
	margin-top: 0;
	margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	.c-section__experience {
		margin-bottom: 40px;
	}
}
.c-section__experience:last-child {
	margin-bottom: 0;
}
.c-section__experience .c-section__profile__head {
	border: none;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-bottom: 0;
}
.c-section__experience .c-section__profile__head img {
	margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head img {
		margin-bottom: auto;
	}
}
.c-section__experience .c-section__profile__head h5 {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	text-decoration: underline;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head h5 {
		font-size: 0.9333333333rem;
		line-height: 1.5;
		padding-bottom: 10px;
		padding-left: 20px;
	}
}
.c-section__experience .c-section__profile__head p {
	padding-top: 0;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
		width: 100%;
		overflow-wrap: anywhere;
	}
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head p br {
		display: none;
	}
}
.c-section__experience .c-section__profile__head .c-section__experience__text {
	position: relative;
	padding-top: 6px;
	overflow-wrap: anywhere;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head .c-section__experience__text {
		font-size: 0.9333333333rem;
		line-height: 1.5;
		padding-top: 16px;
	}
}
.c-section__experience .c-section__profile__head .c-section__experience__text:after {
	content: "続きを見る";
	background: -webkit-gradient(linear, left top, right top, color-stop(35%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(90deg, rgb(255, 255, 255) 35%, rgba(255, 255, 255, 0) 100%);
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.75;
}
@media screen and (min-width: 1024px) {
	.c-section__experience .c-section__profile__head .c-section__experience__text:after {
		font-size: 0.9333333333rem;
		line-height: 1.75;
	}
}
.c-section__experience a {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.c-section__experience a:hover h5 {
	text-decoration: none;
}

.learn-experience-index .t-searchArea {
	margin: 0 auto 50px;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .t-searchArea {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 74.398249453%;
		margin: 40px auto 45px;
	}
}
.learn-experience-index .t-searchArea__title {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.learn-experience-index .t-searchArea__title h2 {
	display: inline-block;
	position: relative;
	padding: 16px 0 25px;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2857142857rem;
	line-height: 1.1666666667;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .t-searchArea__title h2 {
		margin-right: 10px;
		padding: 0px;
		font-size: 1.3333333333rem;
		line-height: 1.2;
	}
}
.learn-experience-index .t-searchArea__title h2::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: -40px;
	width: 46px;
	height: 46px;
	background-color: #AEAEE9;
	border-radius: 50%;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .t-searchArea__title h2::before {
		top: -40px;
		width: 60px;
		height: 60px;
	}
}
.learn-experience-index .t-searchArea__box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: scroll;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .t-searchArea__box {
		overflow: auto;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.learn-experience-index .t-searchArea__box a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border: solid 1px #AEAEE9;
	border-radius: 30px;
	background-color: #fff;
	margin-right: 10px;
}
.learn-experience-index .t-searchArea__box a:last-child {
	margin-right: 0;
}
.learn-experience-index .t-searchArea__box a.is-active {
	background-color: #AEAEE9;
	pointer-events: none;
}
.learn-experience-index .t-searchArea__box a.is-active p {
	color: #fff;
}
.learn-experience-index .t-searchArea__box a p {
	color: #AEAEE9;
	padding: 10px 14px;
	white-space: nowrap;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .t-searchArea__box a p {
		font-size: 0.9333333333rem;
		line-height: 1;
	}
}
.learn-experience-index .c-main-visual {
	position: relative;
	width: 94.6666666667%;
	margin: 40px auto 0;
	padding: 50px 10px 16px;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .c-main-visual {
		width: 95.020746888%;
		margin: 20px 0 0 0;
		padding: 40px 4.3668122271% 30px;
	}
}
.learn-experience-index .c-main-visual__content__title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.learn-experience-index .c-main-visual__content__title h1 {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.1428571429rem;
	line-height: 1.5;
	padding-bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .c-main-visual__content__title h1 {
		text-align: center;
		width: 80.7833537332%;
		padding-left: 18.2%;
		padding-bottom: 0;
		font-size: 1.8666666667rem;
		line-height: 1.5;
	}
}
.learn-experience-index .c-main-visual__content__title span {
	display: block;
	width: 31.847133758%;
	margin: 0;
	padding-bottom: 0;
	border-radius: 10px;
}
@media screen and (min-width: 1024px) {
	.learn-experience-index .c-main-visual__content__title span {
		width: 17.0134638923%;
		margin: 0 0 0 auto;
		padding-bottom: 0;
	}
}

.t-experience-page .t-experience-page__wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.t-experience-page .t-experience-page__wrap &gt; img {
	position: absolute;
	width: 16.9014084507%;
	height: auto;
	top: 20px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page .t-experience-page__wrap &gt; img {
		position: relative;
		width: 18.0722891566%;
		height: 100%;
		top: 0;
	}
}

.t-experience-page__profile {
	width: 100%;
}
.t-experience-page__profile p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 500;
	padding-top: 6px;
	padding-left: 21.53%;
	padding-bottom: 10px;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__profile p {
		font-size: 1rem;
		line-height: 1.3333333333;
		padding-top: 0;
		padding-left: 16px;
	}
}
.t-experience-page__profile p span {
	display: block;
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__profile p span {
		font-size: 0.9333333333rem;
		line-height: 1.4285714286;
	}
}
.t-experience-page__profile strong {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	text-decoration: underline;
	font-size: 1.2857142857rem;
	line-height: 1.1666666667;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__profile strong {
		font-size: 1.2rem;
		line-height: 1.1666666667;
		padding-left: 16px;
	}
}

.t-experience-page__category {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 20px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category {
		padding-left: 16px;
		-webkit-box-pack: unset;
		-webkit-justify-content: unset;
		-ms-flex-pack: unset;
		justify-content: unset;
	}
}
.t-experience-page__category a {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-decoration: none;
	margin-bottom: 12px;
	width: 48.6153846154%;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category a {
		width: auto;
	}
}
.t-experience-page__category a:nth-child(3) {
	margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category a:nth-child(3) {
		margin-bottom: 12px;
	}
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category a.t-category-company {
		margin-right: 10px;
	}
}
.t-experience-page__category a.t-category-company .t-experience-page__category__icon {
	background-color: #CBCBCB;
}
.t-experience-page__category a.t-category-company .t-experience-page__category__icon img {
	width: 13px;
}
.t-experience-page__category a.t-category-company .t-experience-page__category__text {
	border-color: #CBCBCB;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category a.t-category-interview {
		margin-right: 10px;
	}
}
.t-experience-page__category a.t-category-interview .t-experience-page__category__icon {
	background-color: #F1917A;
}
.t-experience-page__category a.t-category-interview .t-experience-page__category__icon img {
	width: 19px;
}
.t-experience-page__category a.t-category-interview .t-experience-page__category__text {
	border-color: #F1917A;
}
.t-experience-page__category a.t-category-web .t-experience-page__category__icon {
	background-color: #A3D344;
}
.t-experience-page__category a.t-category-web .t-experience-page__category__icon img {
	width: 22px;
}
.t-experience-page__category a.t-category-web .t-experience-page__category__text {
	border-color: #A3D344;
}
.t-experience-page__category .t-experience-page__category__icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category .t-experience-page__category__icon {
		width: 36px;
		height: 36px;
	}
}
.t-experience-page__category .t-experience-page__category__icon img {
	margin: auto;
}
.t-experience-page__category .t-experience-page__category__text {
	border-radius: 20px;
	border: solid 1px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 38px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category .t-experience-page__category__text {
		width: auto;
		height: auto;
	}
}
.t-experience-page__category .t-experience-page__category__text p {
	white-space: nowrap;
	padding: 0;
	margin-left: 20%;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.8571428571rem;
	line-height: 1.25;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__category .t-experience-page__category__text p {
		font-size: 0.8666666667rem;
		line-height: 1.6923076923;
		padding: 3px 16px 3px 40px;
		margin: 0;
	}
}

.t-experience-page__table {
	margin-top: 20px;
}
.t-experience-page__table table {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__table table tr {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}
.t-experience-page__table table tr:last-child th {
	border-bottom: solid 1px #F3F3FA;
}
.t-experience-page__table table th {
	background-color: #F3F3FA;
	border: solid 1px #F3F3FA;
	padding: 12px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__table table th {
		font-size: 0.8666666667rem;
		line-height: 1.5384615385;
		width: 18.0722891566%;
		border-bottom: solid 1px #fff;
	}
}
.t-experience-page__table table td {
	border: solid 1px #F3F3FA;
	padding: 12px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__table table td {
		font-size: 0.8666666667rem;
		line-height: 1.5384615385;
		width: 81.9277108434%;
		border-right: none;
		border-left: none;
	}
}
.t-experience-page__table table td ul {
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
}
.t-experience-page__table table td ul li {
	padding: 0;
	margin-right: 30px;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__table table td ul li {
		font-size: 0.8666666667rem;
		line-height: 1.5384615385;
		margin-right: 26px;
	}
}
.t-experience-page__table table td ul li:last-child {
	margin-right: 0;
}

.t-experience-page__flow {
	margin-top: 20px;
}
.t-experience-page__flow .c-section__fukidashi__wrap {
	position: relative;
	text-align: center;
	width: 160px;
	margin-bottom: 10px;
	padding: 10px 14px;
	background-color: #ffffff;
	border: 2px solid #AEAEE9;
	border-radius: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .c-section__fukidashi__wrap {
		width: 200px;
		margin: 0;
		padding: 12px 16px;
	}
}
.t-experience-page__flow .c-section__fukidashi__wrap::before {
	content: "";
	position: absolute;
	left: 26px;
	bottom: -7px;
	width: 14px;
	height: 7px;
	border-radius: 0 0 50% 50%/0 0 100% 100%;
	background-color: #ffffff;
	border-right: 2px solid;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-color: #AEAEE9;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .c-section__fukidashi__wrap::before {
		left: 30px;
		bottom: -10px;
		width: 20px;
		height: 10px;
	}
}
.t-experience-page__flow .c-section__fukidashi__wrap::after {
	content: "";
	position: absolute;
	left: 40px;
	bottom: -14px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-color: #AEAEE9;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .c-section__fukidashi__wrap::after {
		left: 52px;
		bottom: -18px;
		width: 12px;
		height: 12px;
	}
}
.t-experience-page__flow .c-section__fukidashi__wrap h2 {
	position: relative;
	display: inline-block;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 0.7857142857rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .c-section__fukidashi__wrap h2 {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap {
	margin-top: 40px;
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item {
	position: relative;
	background-color: #F5F5FC;
	border-radius: 10px;
	padding: 26px 4.644% 20px;
	margin-top: 22px;
	margin-left: 14px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item {
		padding: 40px 4.644% 24px;
		margin-top: 34px;
		margin-left: 16px;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:first-child {
	margin-top: 0;
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:last-child:after {
	display: none;
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:before {
	content: "";
	position: absolute;
	top: -6px;
	left: -20px;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	background-color: #B0B0EB;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:before {
		width: 16px;
		height: 16px;
		top: -4px;
		left: -23px;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:after {
	content: "";
	position: absolute;
	top: 0;
	left: -14px;
	height: calc(100% + 22px);
	width: 1px;
	border-left: dotted 1px #B0B0EB;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item:after {
		height: calc(100% + 34px);
		left: -16px;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	top: -12px;
	left: 0;
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span {
	font-size: 0.8571428571rem;
	line-height: 1.5;
	white-space: nowrap;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span {
		font-size: 1.0666666667rem;
		line-height: 1.5;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span:nth-child(1) {
	color: #fff;
	background-color: #B0B0EB;
	border: solid 1px #B0B0EB;
	border-radius: 30px 0 0 30px;
	padding: 4px 4px 4px 10px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span:nth-child(1) {
		padding: 4px 10px 4px 16px;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span:nth-child(2) {
	color: #B0B0EB;
	background-color: #fff;
	border: solid 1px #B0B0EB;
	border-radius: 0 30px 30px 0;
	padding: 4px 10px 4px 4px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item .t-experience-page__flow__title span:nth-child(2) {
		padding: 4px 16px 4px 10px;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item ul {
	list-style: none;
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item ul li {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	font-weight: 500;
	font-size: 0.9285714286rem;
	line-height: 1.5384615385;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item ul li {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}
.t-experience-page__flow .t-experience-page__flow__wrap .t-experience-page__flow__item ul li:before {
	position: relative;
	top: -4px;
	left: -18px;
	display: inline-block;
	width: 2px;
	height: 2px;
	content: "";
	border-radius: 100%;
	background: #000;
}

.t-experience-page__faq {
	margin-top: 40px;
	border-radius: 10px;
	border: solid 1px #B0B0EB;
	padding: 20px 16px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__faq {
		margin-top: 60px;
		padding: 40px 30px 30px;
	}
}
.t-experience-page__faq .t-experience-page__faq__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 24px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__faq .t-experience-page__faq__item {
		margin-top: 50px;
	}
}
.t-experience-page__faq .t-experience-page__faq__item:first-child {
	margin-top: 0;
}

.t-objectBlock__learn {
	position: relative;
	width: 51px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (min-width: 1024px) {
	.t-objectBlock__learn {
		width: 64px;
	}
}
.t-objectBlock__learn img {
	position: absolute;
	width: 51px;
	top: -10px;
}
@media screen and (min-width: 1024px) {
	.t-objectBlock__learn img {
		width: 64px;
		top: -12px;
	}
}
.t-objectBlock__learn p {
	z-index: 1;
	color: #fff;
	margin: 0 auto;
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	font-size: 1.2142857143rem;
	line-height: 1;
}
@media screen and (min-width: 1024px) {
	.t-objectBlock__learn p {
		font-size: 1.4666666667rem;
		line-height: 1;
	}
}

.t-experience-page__faq__block {
	width: calc(100% - 51px);
	margin-left: 10px;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__faq__block {
		width: calc(100% - 64px);
		margin-left: 6px;
	}
}
.t-experience-page__faq__block h3 {
	text-align: left;
	font-size: 1.1428571429rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__faq__block h3 {
		font-size: 1.3333333333rem;
		line-height: 1.5;
		padding-bottom: 16px;
	}
}
.t-experience-page__faq__block p {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 1024px) {
	.t-experience-page__faq__block p {
		font-size: 0.9333333333rem;
		line-height: 1.5;
	}
}

.c-experience__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50px;
	border: solid 1px #CACACA;
	background-color: #fff;
	width: 280px;
	margin: 40px auto auto;
}
.c-experience__button p {
	font-family: "Zen Maru Gothic", sans-serif;;
	font-weight: 700;
	padding: 10px 0;
	font-size: 1rem;
	line-height: 1.7142857143;
}
@media screen and (min-width: 1024px) {
	.c-experience__button p {
		font-size: 0.9333333333rem;
		line-height: 1.7142857143;
	}
}


.text-small {
	font-size: 0.7142857143rem;
	line-height: 1.5;
}

@media screen and (min-width: 1024px) {
	.text-small {
		font-size: 0.8rem;
		line-height: 1.75;
	}
}</pre></body></html>