.-x-richtext ul, .-x-richtext ol {
	list-style-position: inside;
}
[data-legal]{
	position:relative;
	--legal-offset-h:attr(data-legal-offset-h px);
	--legal-offset-v:attr(data-legal-offset-v px);
}
[data-legal][data-legal-safe="1"]::after{
	position: absolute;
	opacity: 0.5;
	color: black;
	content: "墨";
	font-size: 16px;
	display: block;
	height: 24px;
	padding-top: 0px;
	background-image: url(/_lib/lc.png);
	background-size: auto 20px;
	background-repeat: no-repeat;
	padding-left: 50px;
	background-position: left top;
}
[data-legal][data-legal-safe="1"]:hover::after {
    position: absolute;
    opacity: 0.5;
    color: black;
    content: attr(data-legal-check-at);
    white-space:nowrap;
    font-size: 11px;
    display: block;
    height: 24px;
    background-image: url(/_lib/lc.png);
    background-size: auto 20px;
    background-repeat: no-repeat;
    padding-top: 15px;
    padding-left: 0px;
    background-position: left top;
}

[data-legal-position="left-top"]::after{
	left:var(--legal-offset-h);
	top:var(--legal-offset-v);
}
[data-legal-position="left-bottom"]::after{
	left:var(--legal-offset-h);
	bottom:var(--legal-offset-v);
}
[data-legal-position="right-top"]::after{
	right:var(--legal-offset-h);
	top:var(--legal-offset-v);
}
[data-legal-position="right-bottom"]::after{
	right:var(--legal-offset-h);
	bottom:var(--legal-offset-v);
}
/*common_css*/
/* -------------------------------------
Browser：IE11 over
-------------------------------------
01: CSSをReset
02: /css/default.cssを変更
03: Default
-------------------------------------*/

/** ================================================================================
		01.Reset
================================================================================ **/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
dt,
th {
	font-weight: normal;
	line-height: 1.3;
}
ul,
ol {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #cccccc;
}
img {
	line-height: 1;
	vertical-align: top;
	border: none;
}
b,
em,
i,
strong,
address {
	font-style: normal;
}

/** ================================================================================
		02./css/default.cssを変更
================================================================================ **/
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: none;
}

/** ================================================================================
		03.Default
================================================================================ **/
html {
	overflow: auto;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
	Meiryo, "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow: hidden;
	margin: 0 auto;
	color: #1e1e1e;
	background: #ffffff;

	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

p a {
	text-decoration: underline;
}
p a:hover {
	text-decoration: none;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}
a:hover {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

/*
a:hover img{
	opacity: 0.8;
	-ms-filter: alpha(opacity=80);
	filter: alpha(opacity=80);
}
*/

/**PC電話ボタン無効**/
a[href^="tel"] {
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	a[href^="tel"] {
		pointer-events: auto;
	}
}

hr {
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #666666;
}

figure img {
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 15px;
		min-width: 100%;
	}
	/**post制御**/
	p {
		word-break: break-all;
	}
	table {
		width: 100%;
		word-break: break-all;
	}
	img {
		max-width: 100%;
		height: auto;
	}
	/**post制御**/
}

/* -------------------------------------
ベーススタイル設定

1.clearfix,clear
2.font
3.float
4.text-align
5.margin
6.padding
-------------------------------------*/

/*1. clearfix,clear */

/* For modern browsers */
.cf:before,
.cf:after {
	display: block;
	overflow: hidden;
	content: "";
}

.cf:after {
	clear: both;
}

.clear {
	clear: both;
}

/*2. font 必要なら追加　優先順位：高*/
body .fw-b {
	font-weight: bold;
}
body .fz14 {
	font-size: 0.87rem; /*13*/
}
body .fz15 {
	font-size: 0.94rem; /*14*/
}
body .fz16 {
	font-size: 16px; /*16*/
}
body .fz17 {
	font-size: 17px; /*16*/
}
body .fz18 {
	font-size: 18px; /*16*/
}
body .fz20 {
	font-size: 20px; /*16*/
}
body .fz22 {
	font-size: 22px; /*16*/
}
body .fz24 {
	font-size: 24px; /*18*/
}
body .fz26 {
	font-size: 26px; /*20*/
}
body .fz28 {
	font-size: 28px; /*20*/
}
body .fz30 {
	font-size: 30px; /*28*/
}
body .fz32 {
	font-size: 32px; /*28*/
}
body .fz35 {
	font-size: 35px; /*28*/
}
body .fz40 {
	font-size: 40px; /*36*/
}
body .fz44 {
	font-size: 44px; /*36*/
}
body .fz46 {
	font-size: 46px; /*40*/
}
body .fz50 {
	font-size: 50px; /*40*/
}
body .fz54 {
	font-size: 54px; /*42*/
}
body .fz60 {
	font-size: 60px; /*42*/
}
body .fz70 {
	font-size: 70px; /*42*/
}

@media screen and (max-width: 768px) {
	body .fz16 {
		font-size: 15px; /*16*/
	}
	body .fz17 {
		font-size: 15px; /*16*/
	}
	body .fz18 {
		font-size: 16px; /*16*/
	}
	body .fz20 {
		font-size: 16px; /*16*/
	}
	body .fz22 {
		font-size: 16px; /*16*/
	}
	body .fz24 {
		font-size: 18px; /*18*/
	}
	body .fz26 {
		font-size: 22px; /*20*/
	}
	body .fz28 {
		font-size: 24px; /*20*/
	}
	body .fz30 {
		font-size: 26px; /*28*/
	}
	body .fz32 {
		font-size: 28px; /*28*/
	}
	body .fz35 {
		font-size: 30px; /*28*/
	}
	body .fz40 {
		font-size: 36px; /*36*/
	}
	body .fz44 {
		font-size: 36px; /*36*/
	}
	body .fz46 {
		font-size: 40px; /*40*/
	}
	body .fz50 {
		font-size: 42px; /*40*/
	}
	body .fz54 {
		font-size: 42px; /*42*/
	}
	body .fz60 {
		font-size: 46px; /*42*/
	}
	body .fz70 {
		font-size: 48px; /*42*/
	}
}

@media screen and (max-width: 768px) {
	body .fz26 {
		font-size: 5vw;
	}
	body .fz28 {
		font-size: 5vw;
	}
	body .fz30 {
		font-size: 5vw;
	}
	body .fz32 {
		font-size: 6vw;
	}
	body .fz35 {
		font-size: 5.8vw;
	}
	body .fz40 {
		font-size: 7vw;
	}
	body .fz44 {
		font-size: 7vw;
	}
	body .fz46 {
		font-size: 7vw;
	}
	body .fz50 {
		font-size: 7vw;
	}
	body .fz54 {
		font-size: 7vw;
	}
	body .fz60 {
		font-size: 8.8vw;
	}
	body .fz70 {
		font-size: 8.8vw;
	}
}

/*3. float */
.f_L {
	display: inline;
	float: left;
}
.f_R {
	display: inline;
	float: right;
}

/*4. text-align 優先順位：高 */
body .t_R {
	text-align: right;
}
body .t_L {
	text-align: left;
}
body .t_C {
	text-align: center;
}
body .t_CL {
	text-align: center;
}
body .t_CR {
	text-align: center;
}
@media screen and (max-width:768px) {
	body .t_CL {
		text-align: left;
	}
	body .t_CR {
		text-align: right;
	}
}

/*5. margin 必要なら追加　優先順位：高 */
/*5. margin 30以上は1/2 */
body .m0 {
	margin: 0;
}
body .mb0 {
	margin-bottom: 0;
}
body .mb5 {
	margin-bottom: 5px;
}
body .mb10 {
	margin-bottom: 10px;
}
body .mb15 {
	margin-bottom: 15px;
}
body .mb20 {
	margin-bottom: 20px;
}
body .mb30 {
	margin-bottom: 30px;
}
body .mb40 {
	margin-bottom: 40px;
}
body .mb50 {
	margin-bottom: 50px;
}
body .mb70 {
	margin-bottom: 70px;
}
body .mb80 {
	margin-bottom: 80px;
}
body .mb100 {
	margin-bottom: 100px;
}
body .mb150 {
	margin-bottom: 150px;
}
body .mt0 {
	margin-top: 0;
}
body .mt5 {
	margin-top: 5px;
}
body .mt10 {
	margin-top: 10px;
}
body .mt15 {
	margin-top: 15px;
}
body .mt20 {
	margin-top: 20px;
}
body .mt30 {
	margin-top: 30px;
}
body .mt40 {
	margin-top: 40px;
}
body .mt50 {
	margin-top: 50px;
}
body .mt70 {
	margin-top: 70px;
}
body .mt80 {
	margin-top: 80px;
}
body .mt100 {
	margin-top: 100px;
}
body .mt150 {
	margin-top: 150px;
}
body .ml0 {
	margin-left: 0;
}
body .ml5 {
	margin-left: 5px;
}
body .ml10 {
	margin-left: 10px;
}
body .ml15 {
	margin-left: 15px;
}
body .ml20 {
	margin-left: 20px;
}
body .ml30 {
	margin-left: 30px;
}
body .mr0 {
	margin-right: 0;
}
body .mr5 {
	margin-right: 5px;
}
body .mr10 {
	margin-right: 10px;
}
body .mr15 {
	margin-right: 15px;
}
body .mr20 {
	margin-right: 20px;
}
body .mr30 {
	margin-right: 30px;
}

@media screen and (max-width: 768px) {
	/*5. margin 30以上は1/2 */
	body .mb20 {
		margin-bottom: 15px;
	}
	body .mb30 {
		margin-bottom: 20px;
	}
	body .mb40 {
		margin-bottom: 20px;
	}
	body .mb50 {
		margin-bottom: 25px;
	}
	body .mb70 {
		margin-bottom: 35px;
	}
	body .mb80 {
		margin-bottom: 40px;
	}
	body .mb100 {
		margin-bottom: 50px;
	}
	body .mb150 {
		margin-bottom: 75px;
	}
	body .mt20 {
		margin-top: 15px;
	}
	body .mt30 {
		margin-top: 20px;
	}
	body .mt40 {
		margin-top: 20px;
	}
	body .mt50 {
		margin-top: 25px;
	}
	body .mt70 {
		margin-top: 35px;
	}
	body .mt80 {
		margin-top: 40px;
	}
	body .mt100 {
		margin-top: 50px;
	}
	body .mt150 {
		margin-top: 75px;
	}
}

/*6. padding 優先順位:高*/
body .p0 {
	padding: 0;
}
body .plr5 {
	padding: 0 5px;
}
body .plr10 {
	padding: 0 10px;
}
body .plr15 {
	padding: 0 15px;
}
body .plr20 {
	padding: 0 20px;
}
body .ptb10 {
	padding: 10px 0;
}
body .ptb20 {
	padding: 20px 0;
}
body .pall10 {
	padding: 10px;
}
body .pall20 {
	padding: 20px;
}
body .p0 {
	padding: 0;
}
body .pb0 {
	padding-bottom: 0;
}
body .pb5 {
	padding-bottom: 5px;
}
body .pb10 {
	padding-bottom: 10px;
}
body .pb15 {
	padding-bottom: 15px;
}
body .pb20 {
	padding-bottom: 20px;
}
body .pb30 {
	padding-bottom: 30px;
}
body .pb40 {
	padding-bottom: 40px;
}
body .pb50 {
	padding-bottom: 50px;
}
body .pb70 {
	padding-bottom: 70px;
}
body .pb80 {
	padding-bottom: 80px;
}
body .pb100 {
	padding-bottom: 100px;
}
body .pb150 {
	padding-bottom: 150px;
}
body .pt0 {
	padding-top: 0;
}
body .pt5 {
	padding-top: 5px;
}
body .pt10 {
	padding-top: 10px;
}
body .pt15 {
	padding-top: 15px;
}
body .pt20 {
	padding-top: 20px;
}
body .pt30 {
	padding-top: 30px;
}
body .pt40 {
	padding-top: 40px;
}
body .pt50 {
	padding-top: 50px;
}
body .pt70 {
	padding-top: 70px;
}
body .pt80 {
	padding-top: 80px;
}
body .pt100 {
	padding-top: 100px;
}
body .pt150 {
	padding-top: 150px;
}
body .pl0 {
	padding-left: 0;
}
body .pl5 {
	padding-left: 5px;
}
body .pl10 {
	padding-left: 10px;
}
body .pl15 {
	padding-left: 15px;
}
body .pl20 {
	padding-left: 20px;
}
body .pl30 {
	padding-left: 30px;
}
body .pr0 {
	padding-right: 0;
}
body .pr5 {
	padding-right: 5px;
}
body .pr10 {
	padding-right: 10px;
}
body .pr15 {
	padding-right: 15px;
}
body .pr20 {
	padding-right: 20px;
}
body .pr30 {
	padding-right: 30px;
}

@media screen and (max-width: 768px) {
	body .pb20 {
		padding-bottom: 15px;
	}
	body .pb30 {
		padding-bottom: 20px;
	}
	body .pb40 {
		padding-bottom: 20px;
	}
	body .pb50 {
		padding-bottom: 25px;
	}
	body .pb70 {
		padding-bottom: 35px;
	}
	body .pb80 {
		padding-bottom: 40px;
	}
	body .pb100 {
		padding-bottom: 50px;
	}
	body .pb150 {
		padding-bottom: 75px;
	}
	body .pt20 {
		padding-top: 15px;
	}
	body .pt30 {
		padding-top: 20px;
	}
	body .pt40 {
		padding-top: 20px;
	}
	body .pt50 {
		padding-top: 25px;
	}
	body .pt70 {
		padding-top: 35px;
	}
	body .pt80 {
		padding-top: 40px;
	}
	body .pt100 {
		padding-top: 50px;
	}
	body .pt150 {
		padding-top: 75px;
	}
}

/* -------------------------------------
幅
-------------------------------------*/
body .w100p,
body .w1100,
body .w1000,
body .w980,
body .w900,
body .w800,
body .w700,
body .w650,
body .w600 {
	margin-right: auto;
	margin-left: auto;
}
body .w100p {
	width: 100%;
}
body .w1100 {
	width: 1100px;
}
body .w1000 {
	width: 1000px;
}
body .w980 {
	width: 980px;
}
body .w900 {
	width: 900px;
}
body .w800 {
	width: 800px;
}
body .w700 {
	width: 700px;
}
body .w650 {
	width: 650px;
}
body .w600 {
	width: 600px;
}

@media screen and (max-width: 768px) {
	body .w100p,
	body .w1100,
	body .w1000,
	body .w980,
	body .w900,
	body .w800,
	body .w700,
	body .w650,
	body .w600 {
		margin-right: auto;
		margin-left: auto;
	}
	body .w100p {
		width: 100%;
	}
	body .w1100 {
		width: 100%;
	}
	body .w1000 {
		width: 100%;
	}
	body .w980 {
		width: 100%;
	}
	body .w900 {
		width: 100%;
	}
	body .w800 {
		width: 100%;
	}
	body .w700 {
		width: 100%;
	}
	body .w650 {
		width: 100%;
	}
	body .w600 {
		width: 100%;
	}
	body .w100p > *,
	body .w1100 > *,
	body .w1000 > *,
	body .w980 > *,
	body .w900 > *,
	body .w800 > *,
	body .w700 > *,
	body .w650 > *,
	body .w600 > * {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
	body .w100p > .max,
	body .w100p.max,
	body .w1100 > .max,
	body .w1100.max,
	body .w1000 > .max,
	body .w1000.max,
	body .w980 > .max,
	body .w980.max,
	body .w900 > .max,
	body .w900.max,
	body .w800 > .max,
	body .w800.max,
	body .w700 > .max,
	body .w700.max,
	body .w650 > .max,
	body .w650.max,
	body .w600 > .max,
	body .w600.max {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
	}
}

body .calc980 {
	padding-right: calc((100% - 980px) / 2);
	padding-left: calc((100% - 980px) / 2);
}

@media screen and (max-width: 768px) {
	body .calc980 {
		padding-right: 0;
		padding-left: 0;
	}
	body .calc980 > .max {
		width: 100%;
	}
	body .calc980 > * {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
}

/* -------------------------------------
文字装飾
-------------------------------------*/
/**黄色マーカー**/
b.liner {
	background: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(40%, transparent),
	color-stop(0%, #fff552)
	);
	background: linear-gradient(transparent 40%, #fff552 0%);
}

/* -------------------------------------
改行
-------------------------------------*/
.pc {
}
.sp {
	display: none;
}
.ib {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* -------------------------------------
写真のエフェクト
-------------------------------------*/
/**4辺ぼかし：親要素にかける**/
.blur_w {
	position: relative;
	display: inline-block;
}
.blur_w:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0);
	-webkit-box-shadow: inset 0 0 40px #ffffff, inset 0 0 40px #ffffff,
	inset 0 0 40px #ffffff, inset 0 0 40px #ffffff;
	box-shadow: inset 0 0 40px #ffffff, inset 0 0 40px #ffffff, inset 0 0 40px #ffffff,
	inset 0 0 40px #ffffff;
}

/**角丸：画像に直接かけれる**/
.radius {
	/*	border-radius: 15px;*/
	border-radius: 10px;
}

/**hover時画像拡大**/
.scale {
	overflow: hidden;
}
.scale img {
	-webkit-transition: -webkit-transform 0.3s linear;
	transition: -webkit-transform 0.3s linear;
	transition: transform 0.3s linear;
	transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
a:hover .scale img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/**-------------------------------------
地図 動画 iframe
-------------------------------------**/
iframe {
	width: 100%;
}
.youtube {
	position: relative;
	width: 100%;
	height: 0;
	margin: 30px auto 20px;
	padding-bottom: 56.25%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pdf_wrap {
	width: 800px;
	height: 500px;
	margin: 30px auto;
}
.pdf_wrap iframe {
	display: block;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.youtube {
		margin: 20px auto 10px;
	}
	.pdf_wrap {
		width: 90%;
		height: 60vw;
	}
}

/* -------------------------------------
吹き出し
-------------------------------------*/
/**塗りつぶし（下）**/
.balloon1_B {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	background: #e0edff;
}
.balloon1_B:before {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	content: "";
	border-width: 10px 5px;
	border-style: solid;
	border-color: #e0edff transparent transparent transparent;
}
/**塗りつぶし（上）**/
.balloon1_T {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	background: #e0edff;
}
.balloon1_T:before {
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -5px;
	content: "";
	border-width: 10px 5px;
	border-style: solid;
	border-color: transparent transparent #e0edff transparent;
}
/**塗りつぶし（左）**/
.balloon1_L {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0 1.5em 15px;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	background: #e0edff;
}
.balloon1_L:before {
	position: absolute;
	top: 50%;
	left: -20px;
	margin-top: -5px;
	content: "";
	border-width: 5px 10px;
	border-style: solid;
	border-color: transparent #e0edff transparent transparent;
}
/**塗りつぶし（右）**/
.balloon1_R {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 15px 1.5em 0;
	padding: 7px 10px;
	color: #555555;
	background: #e0edff;
}
.balloon1_R:before {
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -5px;
	content: "";
	border-width: 5px 10px;
	border-style: solid;
	border-color: transparent transparent transparent #e0edff;
}

/**線（下）**/
.balloon2_B {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	border: solid 1px #555555;
	background: #ffffff;
}
.balloon2_B:before {
	position: absolute;
	z-index: 2;
	bottom: -18px;
	left: 50%;
	margin-left: -6px;
	content: "";
	border-width: 9px 6px;
	border-style: solid;
	border-color: #ffffff transparent transparent transparent;
}
.balloon2_B:after {
	position: absolute;
	z-index: 1;
	bottom: -20px;
	left: 50%;
	margin-left: -7px;
	content: "";
	border-width: 10px 7px;
	border-style: solid;
	border-color: #555555 transparent transparent transparent;
}
/**線（上）**/
.balloon2_T {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	border: solid 1px #555555;
	background: #ffffff;
}
.balloon2_T:before {
	position: absolute;
	z-index: 2;
	top: -18px;
	left: 50%;
	margin-left: -6px;
	content: "";
	border-width: 9px 6px;
	border-style: solid;
	border-color: transparent transparent #ffffff transparent;
}
.balloon2_T:after {
	position: absolute;
	z-index: 1;
	top: -20px;
	left: 50%;
	margin-left: -7px;
	content: "";
	border-width: 10px 7px;
	border-style: solid;
	border-color: transparent transparent #555555 transparent;
}
/**線（左）**/
.balloon2_L {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 0 1.5em 15px;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	border: solid 1px #555555;
	background: #ffffff;
}
.balloon2_L:before {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: -18px;
	margin-top: -6px;
	content: "";
	border-width: 6px 9px;
	border-style: solid;
	border-color: transparent #ffffff transparent transparent;
}
.balloon2_L:after {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: -20px;
	margin-top: -7px;
	content: "";
	border-width: 7px 10px;
	border-style: solid;
	border-color: transparent #555555 transparent transparent;
}
/**線（右）**/
.balloon2_R {
	font-size: 16px;
	position: relative;
	display: inline-block;
	min-width: 120px;
	max-width: 100%;
	margin: 1.5em 15px 1.5em 0;
	padding: 7px 10px;
	text-align: center;
	color: #555555;
	border: solid 1px #555555;
	background: #ffffff;
}
.balloon2_R:before {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: -18px;
	margin-top: -6px;
	content: "";
	border-width: 6px 9px;
	border-style: solid;
	border-color: transparent transparent transparent #ffffff;
}
.balloon2_R:after {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: -20px;
	margin-top: -7px;
	content: "";
	border-width: 7px 10px;
	border-style: solid;
	border-color: transparent transparent transparent #555555;
}

/* -------------------------------------
横並びボックスの数
-------------------------------------*/
/**２つ並び**/
.box2C {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.box2C > * {
	width: 48%;
}
.box2C:after {
	display: block;
	width: 48%;
	content: "";
}

/**3つ並び**/
.box3C {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.box3C > * {
	width: 32%;
}
.box3C:after {
	display: block;
	width: 32%;
	content: "";
}

/**4つ並び**/
.box4C {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.box4C > * {
	width: 24.5%;
}
.box4C:after,
.box4C:before {
	display: block;
	width: 24.5%;
	content: "";
}
.box4C:before {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

@media screen and (max-width: 768px) {
	/* -------------------------------------
横並びボックスの数
-------------------------------------*/
	/**２つ並び**/
	.box2C {
		width: 100%;
	}
	.box2C.box1C_sp {
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.box2C.box2C_sp {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}
	.box2C.box1C_sp > * {
		width: 100%;
	}
	.box2C.box1C_sp:after {
		display: none;
	}
	.box2C.box2C_sp > *,
	.box2C.box2C_sp::after {
		width: 48%;
	}
	.box2C.box2C_sp.sp1c > *,
	.box2C.box2C_sp.sp1c::after {
		/*		min-width: 300px;*/
	}

	/**3つ並び**/
	.box3C {
		width: 100%;
	}
	.box3C.box1C_sp {
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.box3C.box2C_sp {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}
	.box3C.box3C_sp {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}
	.box3C.box1C_sp > * {
		width: 100%;
	}
	.box3C.box1C_sp:after {
		display: none;
	}
	.box3C.box2C_sp > *,
	.box3C.box2C_sp::after {
		width: 48%;
	}
	.box3C.box3C_sp > *,
	.box3C.box3C_sp::after {
		width: 31%;
	}

	/**4つ並び**/
	.box4C {
		width: 100%;
	}
	.box4C.box1C_sp {
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.box4C.box2C_sp {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
	}
	.box4C.box1C_sp > * {
		width: 100%;
	}
	.box4C.box2C_sp > * {
		width: 48%;
	}
	.box4C:after,
	.box4C:before {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	/* -------------------------------------
横並びボックスの数
-------------------------------------*/
	.sp1c {
		-ms-flex-flow: column;
		flex-flow: column !important;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.sp1c > *,
	.sp1c::after {
		width: 100% !important;
		margin-right: auto;
		margin-left: auto;
	}
}

/* -------------------------------------
配置
-------------------------------------*/
.h-text-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.h-text-img.right {
	-ms-flex-flow: row;
	flex-flow: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
}
.h-text-img.left {
	-ms-flex-flow: row-reverse;
	flex-flow: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
}
.h-text-img.center_t {
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
}
.h-text-img.center_b {
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
}
.h-text-img figure {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}
.h-text-img.right figure {
	margin-left: 30px;
}
.h-text-img.left figure {
	margin-right: 30px;
}
.h-text-img.center_t figure {
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.h-text-img.center_b figure {
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}
.h-text-img .text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.pdf {
	width: 100%;
	margin: 30px auto;
	text-align: center;
}
figure.w50p {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.h-text-img.right figure,
	.h-text-img.left figure {
		margin: 0 16px;
	}
	.h-text-img.right .text,
	.h-text-img.left .text {
		margin: 0 16px;
	}
	.h-text-img.center_t {
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.h-text-img.right.top,
	.h-text-img.left.top,
	.h-text-img.center_t.top,
	.h-text-img.center_b.top {
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
	}
	.pdf {
		margin: 20px auto;
	}
}

@media screen and (max-width: 768px) {
	.h-text-img.right,
	.h-text-img.left,
	.h-text-img.center_t,
	.h-text-img.center_b {
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	}
	.h-text-img.right.sp-top,
	.h-text-img.left.sp-top {
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
	}
	.h-text-img.right figure,
	.h-text-img.left figure,
	.h-text-img.center_t figure,
	.h-text-img.center_b figure {
		margin: 15px auto;
	}
	.h-text-img.right .text,
	.h-text-img.left .text {
		min-width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}

/* -------------------------------------
テーブル
-------------------------------------*/
/*外枠なし th＝25%*/
.tableA table,
table.tableA {
	width: 100%;
	margin: 30px auto;
}
.tableA th,
.tableA td {
	padding: 15px 20px;
	text-align: left;
	vertical-align: top;
	/*	border: 1px dotted #666;*/
	border-top: 1px dotted #666666;
	border-bottom: 1px dotted #666666;
}
.tableA th {
	width: 25%;
	border-left: none;
	/*	vertical-align:middle;*/
	background: #eaedd4;
}
.tableA td {
	border-right: none;
}

@media screen and (max-width: 768px) {
	/*外枠なし th＝25%*/
	/*th＝25%*/
	.tableA table,
	.tableA tbody,
	.tableA tr,
	.tableA th,
	.tableA td {
		font-size: 0.85rem;
	}
	.tableA th,
	.tableA td {
		padding: 10px;
	}

	/*th＝100%*/
	.tableA.th100p_sp table,
	.tableA.th100p_sp tbody,
	.tableA.th100p_sp tr,
	.tableA.th100p_sp th,
	.tableA.th100p_sp td {
		display: block;
		border: none;
	}
	.tableA.th100p_sp table,
	table.tableA.th100p_sp {
		border-bottom: 1px dotted #666666;
	}
	.tableA.th100p_sp th,
	.tableA.th100p_sp td {
		padding: 10px 10px 14px;
		/*		border: 1px dotted #666;*/
		border-bottom: none;
	}
	.tableA.th100p_sp th {
		font-size: 0.9em;
		width: 100%;
		padding: 8px 10px;
	}
}

/**------------------------------ 
カテゴリボタン
 ------------------------------**/

.catBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 50px 0 50px -15px;
}
.catBtn a {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	display: block;
	width: 24%;
	margin: 0 1% 15px;
	padding: 15px 10px;
	text-align: center;
	color: var(--black);
	border: 1px solid var(--black);
	/*flex: 1;*/
	border-radius: 50px;
}

.catBtn a:hover {
	color: var(--white);
	background: var(--black);
}


@media screen and (max-width:768px) {
	.catBtn {
		flex-wrap: wrap;
		margin-left: 0;
	}
	.catBtn a {
		font-size: 0.9rem;
		flex: 1;
		width: auto;
		margin: 5px 1%;
		padding: 10px;
		white-space: nowrap;
	}
}

/**------------------------------ 
ページャー
 ------------------------------**/

.pagenation {
	margin: 80px auto 30px;
	text-align: center;
}

.pagenation span {
	line-height: 38px;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 5px;
	text-align: center;
	color: var(--black);
	border: 1px solid var(--black);
	background: var(--white);
}
.pagenation span.page {
	color: var(--white);
	background: var(--black);
}
.pagenation span a {
	display: block;
	width: 100%;
	height: 100%;
	color: var(--black);
	background: var(--white);
}.pagenation span a:hover {
	color: var(--white);
	background: var(--black);
}


@media screen and (max-width: 768px) {
	.pagenation span {
		line-height: 27px;
		width: 30px;
		height: 30px;
		margin: 3px;
	}
}


/* -------------------------------------
パンくず
-------------------------------------*/
#breadcrumb {
  margin: 0;
  width: 100%;
  font-size: 14px;
  padding: 8px 0;
}
/*家アイコン*/
#breadcrumb >* {
  max-width: 980px;
  margin: 0 auto;
}
#breadcrumb >*:before {
  display: inline-block;
  content: "\e88a";
  vertical-align: middle;
  font-size: 14px;
  font-family: "Material Icons";
}
#breadcrumb >* li {
  display: inline-block;
  padding: 0 5px;
}
#breadcrumb >* li + li:before {
  content: "> ";
  display: inline-block;
  margin: 0 10px 0 0;
}
#breadcrumb a {
  text-decoration: underline;
}
#breadcrumb a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #breadcrumb {
    margin: 0;
    font-size: 12px;
  }
  #breadcrumb >* {
    padding: 0 2%;
  }
}[data-lib="87"]{
	border: none;
    font-size: inherit;
    outline: none;
    padding: 0;
	cursor:pointer;
}/*widget:67615a3f-8f6e-47b5-86c3-a66d6bfae605*/
/*widget:80c8fb40-3ef0-47fc-a742-9ae0c0638a19*/
/*widget:d4cfdb67-409f-4dce-93d4-368163f80d94*/
/*widget:171a29ec-4b6e-4887-a3d6-38f3387952c3*/
/*widget:ffffeabb-3965-4ab3-8908-745dd091fc34*/
/*widget:f0db65ae-e2d2-4118-a9c7-fb9c6f2921b9*/
/*widget:63bd9e76-2573-44e7-a6de-32b6b664ecc4*/
/*widget:60fea956-1669-422e-a51b-dc4c8b77ec4e*/
[data-lib="309"] .fixnum{margin-bottom: 30px;}[data-lib="309"] figure{border: 1px solid #f1f1f1;
	padding: 20px;
	text-align: center;
	width: 100%;
	margin: 30px 0;}[data-lib="309"] figure img{display: block;
	margin: 0 auto;}[data-lib="309"] .youtube{width: 90%;
	margin: 20px auto;}[data-lib="309"] .richtext{margin: 50px 5%;}[data-lib="309"] .fixnum h3{font-weight: bold;
	font-size: 1.3em;
	text-align: left;
	border-bottom: 1px solid #000;
	padding: 20px;
	margin: 20px auto;}[data-lib="309"] .container{width: 768px;}@media screen and (max-width: 768px){[data-lib="309"] section{width: 90%;
	padding: 20px 0 50px;}[data-lib="309"]{padding: 0;}[data-lib="309"] figure{border: 1px solid #f1f1f1;
	padding: 8px;
	text-align: center;}[data-lib="309"] h2{font-size: 1.3em;}[data-lib="309"] .entry-content{padding: 15px;
	margin: 20px auto;
	width:100%;}[data-lib="309"] .entry-content dt{margin: 0 auto 10px;}[data-lib="309"] .richtext{margin: 20px auto;}[data-lib="309"] .youtube{width: 100%;}[data-lib="309"] .fixnum h3{font-size: 1.2em;
	padding: 10px 0;}}/*layout:2*//*layout:1*//********
看護学校オンライン個別指導ライト
********/

@charset "utf-8";
/* CSS Document */

/* -------------------------------------
Browser：IE11 over
-------------------------------------
基本装飾 -サイトにより変更-
-------------------------------------*/

:root {
	--black: #3c3c3c;
	--blue: #1ca5ef;
	--blue2: #8dd2f7;
	--blue3: #e7f4f2;
	--bodybg: #faf7f3;
	--bodybg2: #e8f4f6;
	--calc1100: calc((100% - 1100px) / 2);
	--gray: #9d9d9d;
	--green: #2ea875;
	--green2: #009b4a;
	--green3: #96d3ba;
	--green4: #badc26;
	--green5: #e3f28c;
	--josefin: "Josefin foSans", sans-serif;
	--notosans: "Noto Sans JP", sans-serif;
	--roboto: "Roboto", sans-serif;
	--white: #ffffff;
	--yellow: #fff836;
	--yellow2: #fcf280;
	--yellow3: #fbbc04;
}
body {
	font-family: var(--notosans);
	min-width: 1100px;
	padding-top: 105px;
}
.text p {
	text-align: justify;
	word-break: break-all;
}
@media screen and (max-width:768px) {
	:root {
		--calc1100: 5%;
	}
	body {
		min-width: 100%;
		padding-top: 0;
	}
}
/**================================================================================
基本装飾
================================================================================**/

.form table {
	width: 100%;
	margin: 30px auto;
	border-collapse: collapse;
	background: var(--white);
}

.form th,
.form td {
	padding: 25px 20px 25px 40px;
	text-align: left;
	vertical-align: top;
	border-bottom: 5px solid var(--bodybg);
}
.form th {
	font-weight: bold;
	position: relative;
	width: 23%;
	vertical-align: top;
	color: var(--green2);
}
.form .require {
	font-size: 11px;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 25px;
	right: 10px;
	display: inline-block;
	width: 3em;
	height: 2em;
	margin: 0;
	text-align: center;
	color: #ffffff;
	border-radius: 3px;
	background: #cc0000;
}
.form label {
	display: block;
	padding: 8px 15px 8px 5px;
	padding-left: 2.5em;
	text-indent: -1.5em;
}
.form p {
	margin-top: 15px;
}

@media screen and (max-width: 768px) {
	.form table,
	.form tbody,
	.form tr,
	.form th,
	.form td {
		display: block;
	}

	.form table {
	}

	.form th,
	.form td {
		padding: 10px;
	}

	.form th {
		font-size: 1.1rem;
		width: 100%;
	}
	.form .require {
		top: 10px;
	}
}

/**-------------------------------------
必須アイコンの位置
-------------------------------------**/
.require {
	top: 0;
	right: 0.5em;
	bottom: 0;
	margin: auto 5px;
}
/**================================================================================
サイトで必ず異なる
================================================================================**/
/**------------------------------ 
パンくず
 ------------------------------**/
#breadcrumb {
	background: var(--green);
	color: var(--white);
	background: linear-gradient(to left, var(--green4) 0%,var(--green4) 28%,var(--green) 28%,var(--green) 100%);
}
#breadcrumb > * {
	max-width: 1100px;
}

@media screen and (max-width:768px) {
#breadcrumb {
	background: linear-gradient(to left, var(--green4) 0%,var(--green4) 30%,var(--green) 30%,var(--green) 100%);
}
}


/**-------------------------------------
アイコン
-------------------------------------**/
.cat {
	display: inline-block;
	padding: 3px 10px;
}
.futi {
	color: transparent;

	-webkit-text-stroke-color: #ffffff;
	-webkit-text-stroke-width: 1px;
}
/**-------------------------------------
見出し
-------------------------------------**/
.title {
	position: relative;
	padding: 40px 0 0 calc( var(--calc1100) - 60px );
	background: var(--green);
}
.title:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: calc( var(--calc1100) - 60px );
	height: 150%;
	content: "";
	border-radius: 0 0 50px 0;
	background: var(--green);
}
.title:after {
	font-family: var(--josefin);
	font-size: 1.3rem;
	font-style: italic;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	width: 28%;
	height: 100px;
	content: "";
	border-radius: 0 0 0 50px;
	background: var(--green4);
}
.title h1 {
	font-size: 2.2rem;
	font-weight: 700;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-flow: column;
	padding: 60px 60px 40px;
	color: var(--green2);
	border-radius: 50px 0 0 0 ;
	background: var(--white);
}
.title h1 small {
	font-family: var(--josefin);
	font-size: 1.1rem;
	font-weight: normal;
	display: inline-block;
	margin: 0 0 5px -20px;
	padding: 5px 20px;
	color: var(--green4);
	border-radius: 50px;
}.title h1 small:before {
	font-weight: normal;
	display: inline-block;
	width: 60px;
	height: 1px;
	margin-right: 15px;
	content: "";
	vertical-align: middle;
	background: var(--green4);
}
@media screen and (max-width:768px) {
	.title {
		padding: 20px 0 0 var(--calc1100);
	}
	.title:before {
		width: var(--calc1100);
		height: 130%;
	}
	.title:after {
		top: 0;
		width: 30%;
		height: 60px;
		padding: 0;
		border-radius: 0 0 0 40px;
	}
	.title h1 {
		font-size: 1.7rem;
		padding: 30px 30px 15px;
	}
}
:root {
	--titAfz: 2.25rem;
	--titAmt: auto;
	--titAmb: 30px;
	--titAc: var(--green2);
}
.titA {
	font-size: var(--titAfz);
	font-weight: 700;
	margin-top: var(--titAmt);
	margin-bottom: var(--titAmb);
	color: var(--titAc);
}
.titA small {
	font-family: var(--josefin);
	font-size: 1.1rem;
	font-weight: normal;
	display: block;
	margin-bottom: 15px;
	color: var(--green4);
}
.titA small:before {
	font-weight: normal;
	display: inline-block;
	width: 60px;
	height: 1px;
	margin-right: 15px;
	content: "";
	vertical-align: middle;
	background: var(--green4);
}
:root {
	--titBfz: 2rem;
	--titBmt: auto;
	--titBmb: 30px;
	--titBc: var(--green2);
}
.titB {
	font-size: var(--titBfz);
	font-weight: 700;
	margin-top: var(--titBmt);
	margin-bottom: var(--titBmb);
	color: var(--titBc);
}
:root {
	--titCfz: 2rem;
	--titCmt: auto;
	--titCmb: 30px;
	--titCbg: var(--green);
	--titCc: var(--yellow);
}
.titC {
	font-size: var(--titCfz);
	font-weight: 700;
	margin-top: var(--titCmt);
	margin-bottom: var(--titCmb);
	padding: 15px 0;
	text-align: center;
	color: var(--titCc);
	border-radius: 50px;
	background: var(--titCbg);
}
:root {
	--titDfz: 2rem;
	--titDmt: auto;
	--titDmb: 30px;
}
.titD {
	font-size: var(--titDfz);
	font-weight: 700;
	display: flex;
	align-items: center;
	margin-top: var(--titDmt);
	margin-bottom: var(--titDmb);
	color: var(--green2);
}
.titD:before {
	font-weight: normal;
	display: inline-block;
	width: 60px;
	height: 10px;
	margin: 0 15px;
	content: "";
	vertical-align: middle;
	background: url(/common/images/dot_green.png) repeat center / 8px;
}
@media screen and (max-width:768px) {
	:root {
		--titAfz: 1.4rem;
		--titBfz: 1.3rem;
		--titCfz: 1.3rem;
		--titDfz: 1.4rem;
	}
	.titD:before {
		width: 35px;
		margin: 0 10px;
	}
}
/**-------------------------------------
ボタン
--btnA:ボタンのサイズ
-------------------------------------**/

/**矢印SVGの色**/
svg {
	width: 30px;
	height: 20px;
	margin: 0 0 0 10px;
	padding: 0;
	vertical-align: middle;

	fill: var(--green2);
}
:root {
	--btnAw: 360px;
	--btnAc: var(--green2);
	--btnAbg: var(--white);
	--btnAmt: auto;
	--btnAmb: auto;
}
.btnA {
	font-size: 1em;
	font-weight: 700;
	position: relative;
	display: block;
	width: var(--btnAw);
	margin-top: var(--btnAmt);
	margin-bottom: var(--btnAmb);
	padding: 20px;
	cursor: pointer;
	text-align: center;
	border-radius: 50px;
}
.btnA.t_C {
	margin-right: auto;
	margin-left: auto;
}
.btnA {
	color: var(--btnAc);
	border: 2px solid var(--btnAc);
	background: var(--btnAbg);
}
.btnA svg {
	fill: var(--btnAc);
}
.btnA:hover,
a:hover .btnA {
	color: var(--btnAbg);
	border: 2px solid var(--btnAbg);
	background: var(--btnAc);
}
.btnA:hover svg,
a:hover .btnA svg {
	fill: var(--btnAbg);
}
:root {
	--btnBw: auto;
	--btnBc: var(--green2);
	--btnBh: var(--green4);
	--btnBmt: auto;
	--btnBmb: auto;
}
.btnB {
	font-weight: 700;
	display: block;
	width: var(--btnBw);
	margin-top: var(--btnBmt);
	margin-bottom: var(--btnBmb);
	color: var(--btnBc);
}
.btnB svg {
	fill: var(--btnBc);
}
.btnB:hover {
	color: var(--btnBh);
}
.btnB:hover svg {
	fill: var(--btnBh);
}
:root {
	--btnCw: auto;
	--btnCc: var(--white);
	--btnCbg: var(--green);
	--btnCh: var(--white);
	--btnChbg: var(--green2);
	--btnCmt: auto;
	--btnCmb: auto;
}
.btnC {
	font-size: 1.1rem;
	font-weight: 700;
	display: block;
	width: var(--btnCw);
	margin-top: var(--btnCmt);
	margin-bottom: var(--btnCmb);
	padding: 20px;
	text-align: center;
	color: var(--btnCc);
	background: var(--btnCbg);
}
.btnC svg {
	fill: var(--btnCc);
}
.btnC:hover,
a:hover .btnC {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--btnCh);
	background: var(--btnChbg);
}.btnC:hover svg,
a:hover .btnC svg {
	fill: var(--btnCh);
}
@media screen and (max-width: 768px) {
	:root {
		--btnAw: clamp(100%, 100%, 90vw);
	}
	.btnA {
		padding: 15px;
	}
	.btnB {
		padding: 15px;
	}
	.btnC {
		padding: 15px;
	}
}
/**------------------------------ 
セクション
 ------------------------------**/
.sec-bg01 {
	padding: 1px 0;
	background: var(--bodybg);
}
.sec-bg02 {
	padding: 1px 0;
	background: var(--bodybg2);
}
.sec-bg03 {
	margin-left: var(--calc1100);
	padding: 60px var(--calc1100) 60px 60px;
	border-radius: 50px 0 0 50px;
	background: var(--white);
}
.sec-inner01 {
	display: flex;
	justify-content: space-between;
}
.sec-inner01 .innerL {
	flex: none;
	width: 36%;
}
.sec-inner01 .innerR {
	flex: 1;
}
@media screen and (max-width:768px) {
	.sec-bg03 {
		padding: 30px var(--calc1100) 30px 20px;
		border-radius: 30px 0 0 30px;
	}
	.sec-inner01 {
		flex-flow: column;
	}
	.sec-inner01 .innerL {
		width: 100%;
	}
	.sec-inner01 .innerR {
		flex: 1;
	}
}
/**------------------------------ 
飾り
 ------------------------------**/
.keisen p {
	font-weight: 700;
	padding: 15px 0;
	border-bottom: 1px dotted var(--green2);
}
@media screen and (max-width:768px) {
	.keisen p {
		padding: 8px 0;
		letter-spacing: 0.03em;
	}
}
/**------------------------------ 
h-text-img
 ------------------------------**/

/**------------------------------ 
boxA
--boxAfig：画像の幅
 ------------------------------**/
:root {
	--boxAai: flex-end;
	--boxAprl: var(--calc1100);
	--boxAmt: 0;
	--boxAmb: 0;
	/**fig**/
	--boxAfig: 50%;
	--boxAfigm: 80px;
}
.right.boxA,
.left.boxA {
	align-items: var(--boxAai);
	margin-top: var(--boxAmt);
	margin-bottom: var(--boxAmb);
}

.right.boxA {
	padding-left: var(--boxAprl);
}
.left.boxA {
	padding-right: var(--boxAprl);
}
.right.boxA figure {
	width: var(--boxAfig);
	margin: 0 0 0 var(--boxAfigm);
}
.left.boxA figure {
	width: var(--boxAfig);
	margin: 0 var(--boxAfigm) 0 0;
}
.right.boxA figure img {
	width: 100%;
	border-radius: 50px 0 0 0;
}
.left.boxA figure img {
	width: 100%;
	border-radius: 0 50px 0 0;
}
@media screen and (max-width:768px) {
	:root {
		--boxAai: stretch;
		--boxAprl: 5%;
		--boxAfig: 100%;
		--boxAfigm: -5%;
	}
	.right.boxA {
		padding: 15px var(--boxAprl);
	}
	.left.boxA {
		padding: 15px var(--boxAprl);
	}
	.right.boxA figure {
		margin: 30px var(--boxAfigm) 0 auto;
	}
	.left.boxA figure {
		margin: 30px auto 0 var(--boxAfigm);
	}
	.right.boxA figure img {
		border-radius: 30px 0 0 30px;
	}
	.left.boxA figure img {
		border-radius: 0 30px 30px 0;
	}
}

/**------------------------------ 
boxB
--boxBbg:テキスト背景色
--boxBbd：セクション背景色
--boxBfig：画像の幅
 ------------------------------**/
:root {
	--boxBc: inherit;
	--boxBbg: var(--white);
	--boxBmt: 140px;
	--boxBmb: 140px;
	--boxBbd: var(--bodybg);
	--boxBfig: 45%;
	--boxBfigmlr: 80px;
}
.right.boxB,
.left.boxB {
	width: 1100px;
	margin: var(--boxBmt) auto var(--boxBmb);
	padding: 70px;
	color: var(--boxBc);
	border-bottom: 0;
	background: var(--boxBbg);
}
.right.boxB {
	padding-right: 0;
	border-right: 70px solid var(--boxBbd);
	border-radius: 50px 0 0 0;
}
.left.boxB {
	padding-left: 0;
	border-left: 70px solid var(--boxBbd);
	border-radius: 0 50px 0 0;
}
.right.boxB figure {
	width: var(--boxBfig);
	margin-top: calc( -1 * var(--boxBmt));
	margin-right: -70px;
	margin-left: var(--boxBfigmlr);
}
.left.boxB figure {
	width: var(--boxBfig);
	margin-top: calc( -1 * var(--boxBmt));
	margin-right: var(--boxBfigmlr);
	margin-left: -70px;
}
.right.boxB figure img {
	width: 100%;
	border-radius: 50px 50px 0 50px;
}
.left.boxB figure img {
	width: 100%;
	border-radius: 50px 50px 50px 0;
}

@media screen and (max-width:768px) {
	:root {
		--boxBc: inherit;
		--boxBg: var(--white);
		--boxBmt: 40px;
		--boxBmb: 40px;
		--boxBbd: var(--bodybg);
		--boxBfig: 100%;
		--boxBfigmlr: 80px;
	}
	.right.boxB,
	.left.boxB {
		width: 95%;
		margin: var(--boxBmt) auto  var(--boxBmb) 0;
		padding: 30px 20px 15px;
	}
	.right.boxB {
		border-right: none;
		border-radius: 0 30px 0 0;
	}
	.left.boxB {
		margin: var(--boxBmt) 0 var(--boxBmb) auto;
		border-left: none;
		border-radius: 30px 0 0 0;
	}
	.right.boxB figure {
		width: var(--boxBfig);
		margin-top: 30px;
		margin-right: calc(-1 * (20px + 5%));
		margin-left: auto;
	}
	.left.boxB figure {
		width: var(--boxBfig);
		margin-top: 30px;
		margin-right: auto;
		margin-left: calc(-1 * (20px + 5%));
	}
	.right.boxB figure img {
		border-radius: 30px 30px 0 30px;
	}
	.left.boxB figure img {
		border-radius: 30px 30px 30px 0;
	}
}


/**================================================== 
 header
================================================== **/
header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-width: 1100px;
	padding: 1px var(--calc1100) 20px;
	background: var(--white);
}
header .logo {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	flex: none;
	width: 250px;
	margin: 20px 0 0;
	white-space: nowrap;
	color: var(--green2);
}
header .logo strong {
	font-size: 1.1em;
}
header .btn_nav {
	position: absolute;
	top: 0;
	right: var(--calc1100);
	display: flex;
	justify-content: flex-end;
}
header .btn_nav a[href^="tel"] {
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
header .btn_nav a[href^="tel"] p {
	font-size: 14px;
	font-weight: normal;
	margin: 0 20px;
}
header .btn_nav a[href^="tel"] img {
	flex: none;
	width: 28px;
	margin-right: 10px;
}
header .btn_nav .btn {
	padding: 10px 30px 10px;
	color: var(--white);
	border-radius: 0 0 10px 10px;
	background: var(--green2);
}
header .btn_nav .btn:hover {
	background: var(--green);
}
header nav {
	width: 100%;
	margin: 0;
}
header nav ul {
	display: flex;
}
header nav ul a {
	display: block;
	margin: 10px 15px 0;
}
header nav ul a:hover {
	color: var(--green);
}
@media screen and (max-width:768px) {
	header {
		position: relative;
		z-index: 1000;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		width: 100%;
		min-width: 100%;
		height: 60px;
		padding: 1px var(--calc1100);
		background: var(--white);
	}
	header .logo {
		line-height: 1.3;
		margin: 0;
	}
	header .btn_nav {
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		justify-content: space-between;
		width: 100%;
		margin: 0;
		padding: 0;
		background: var(--white);
	}
	header .btn_nav a[href^="tel"] {
		font-size: 22px;
		font-weight: 700;
		line-height: 1.5;
		display: block;
		width: 60%;
		text-align: center;
	}
	header .btn_nav a[href^="tel"] p {
		margin: 0;
	}
	header .btn_nav a[href^="tel"] img {
		width: 28px;
		margin: 0 5px;
		vertical-align: middle;
	}
	header .btn_nav .btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40%;
		padding: 0;
		border-radius: 0;
	}

	header nav {
		font-size: 16px;
		position: fixed;
		z-index: 1000;
		top: 0;
		right: -300px;
		align-items: flex-start;
		justify-content: flex-start;
		box-sizing: border-box;
		width: 300px;
		height: 100%;
		padding-top: 60px;
		background: var(--green2);
	}
	header nav ul {
		flex-flow: column;
		width: 100%;
	}
	header nav ul li a {
		display: block;
		padding: 10px 28px;
		text-decoration: none;
		color: var(--white);
	}
	header nav ul li a:hover {
		color: var(--green2);
		background: #ffffff;
	}
	header .hamburger {
		font-size: 11px;
		position: fixed;
		z-index: 3;
		z-index: 1500;
		top: 0;
		right: 0;
		display: block;
		box-sizing: border-box;
		width: 60px;
		height: 60px;
		cursor: pointer;
		-webkit-transition: all 400ms;
		transition: all 400ms;
		color: #ffffff;
		border-radius: 0 0 0 10px;
		background: var(--green2);
	}
	header .hamburger:after {
		position: absolute;
		right: 0;
		bottom: 5px;
		left: 0;
		margin: 0 auto;
		content: "MENU";
		text-align: center;
		letter-spacing: 1px;
	}
	header .hamburger.open:after {
		content: "CLOSE";
		letter-spacing: 0;
		color: #ffffff;
	}
	header .hamburger span {
		position: absolute;
		right: 0;
		left: 0;
		width: 40px;
		height: 2px;
		margin: 0 auto;
		-webkit-transition: all 400ms;
		transition: all 400ms;
		background: #ffffff;
	}
	header .hamburger span:nth-child(1) {
		top: 10px;
	}
	header .hamburger span:nth-child(2) {
		top: 20px;
	}
	header .hamburger span:nth-child(3) {
		top: 30px;
	}
	header .hamburger.open {
		background: none;
	}
	header .hamburger.open span {
		background: #ffffff;
	}
	header .hamburger.open span:nth-child(1) {
		top: 20px;
		transform: rotate(45deg);
	}
	header .hamburger.open span:nth-child(2) {
		display: none;
	}
	header .hamburger.open span:nth-child(3) {
		top: 20px;
		transform: rotate(-45deg);
	}
}

/**================================================== 
footer
================================================== **/
footer {
	line-height: 2;
	display: flex;
	justify-content: space-between;
	padding: 50px var(--calc1100) 100px;
	color: var(--white);
	background: var(--green);
	position:relative;
}
footer .pagetop{
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 100;
}
footer h1 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.7;
	flex: none;
	margin: 0 0 15px;
	white-space: nowrap;
	color: var(--yellow);
}
footer h1 strong {
	font-size: 1.1em;
}
footer p {
	font-size: 14px;
}
footer a[href^="tel"] {
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	margin: 15px 0 0;
	white-space: nowrap;
}
footer a[href^="tel"] img {
	flex: none;
	width: 28px;
	margin-right: 10px;
}
footer .right {
	text-align: right;
}
footer nav ul {
	display: flex;
	justify-content: flex-end;
}
footer nav ul a {
	display: block;
	margin: 0 15px;
}
footer .right a:hover {
	color: var(--green4);
}
footer a.btn {
	font-size: 1em;
	line-height: 1.5;
	position: relative;
	display: block;
	width: 220px;
	margin: 20px 0 40px auto;
	padding: 15px;
	cursor: pointer;
	text-align: center;
	color: var(--white);
	border: 1px solid var(--white);
	border-radius: 50px;
}
footer a.btn:hover {
	color: var(--green);
	background: var(--white);
}
.copyright p {
	font-size: 12px;
	margin-top: 15px;
}
@media screen and (max-width:768px) {
	footer {
		display: flex;
		flex-flow: column;
		padding: 20px var(--calc1100) 60px;
		text-align: center;
	}
	footer .pagetop{
	  right:3%;
	  bottom:80px;
	}
	footer .pagetop img{
	  width: 44px;
	}
	footer a[href^="tel"] {
		font-size: 22px;
		font-weight: 700;
		justify-content: center;
		margin: 15px 0 0;
	}
	footer nav ul {
		display: block;
		margin: 15px 0;
		text-align: center;
	}
	footer nav ul li {
		display: inline-block;
		text-align: left;
	}
	footer a.btn {
		margin: 20px auto;
	}
	.copyright {
		text-align: center;
	}
}
/**================================================== 
 HERO
================================================== **/
.hero {
	position: relative;
	background: var(--green4);
}
.hero .slider_inner {
	display: block;
	background: var(--white);
}
.hero .slider_inner img {
	width: 100%;
}
.hero .catch {
	position: absolute;
	z-index: 100;
	top: 50%;
	left: var(--calc1100);
	transform: translateY(-70%);
}
.hero .catch h3 {
	font-family: var(--josefin);
	font-size: 2.1rem;
	color: var(--green4);
}
.hero .catch h2 {
	font-size: 3.75rem;
	font-weight: 700;
	margin: 10px 0 30px;
	color: var(--green2);
}
.hero .obi {
	position: relative;
}

.hero .obi p {
	font-size: 2.62rem;
	font-weight: 700;
	z-index: 10;
	width: 75%;
	margin: -3.3rem 0 0;
	padding: 20px 0 20px var(--calc1100);
	color: var(--yellow);
	border-radius: 0 50px 50px 0;
	background: var(--green);
}
.hero .obi h1 {
	font-size: 2.62rem;
	font-weight: 700;
	position: relative;
	z-index: 5;
	margin: 0;
	padding: 20px var(--calc1100) 20px 0;
	text-align: right;
	color: var(--white);
}
@media screen and (max-width:768px) {
	.hero .slider_inner {
		display: block;
		background: var(--white);
	}
	.hero .slider_inner img {
		width: 120%;
		height: 60vw;
		max-width: none;

		object-fit: cover;
	}
	.hero .catch {
		position: absolute;
		top: 20vw;
		width: 96%;
		left:3%;
		transform: none;
	}
	.hero .catch h3 {
		font-size: clamp(18px, 3vw, 1.5rem);
	}
	.hero .catch h2 {
		font-size: clamp(20px, 7vw, 2rem);
		margin: 5px 0 20px;
	}
	.hero .catch figure {
		position: absolute;
		top: 20vw;
		right: 0;
	}
	.hero .catch img {
		width: clamp(90px, 30vw, 200px);
	}
	.hero .obi p {
		font-size: clamp(18px, 3vw, 1.5rem);
		width: 70%;
		margin-top: -18px;
		padding: 20px 3%;
	}
	.hero .obi h1 {
		font-size: clamp(18px, 4vw, 1.5rem);
		padding: 15px 3%;
	}
}

/**================================================== 
 TOP
================================================== **/

.sec-maru {
	padding: 70px var(--calc1100);
}
.sec-maru .list-maru {
	width: 910px;
	margin: 0 auto;
}
.list-maru {
	margin: 50px auto;
}
.list-maru li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 270px;
	height: 270px;
	border: 6px solid var(--blue2);
	border-radius: 50%;
	background: var(--white) url(/common/images/dot_blue.png) repeat center / 10px auto;
	box-shadow: inset 0 0 0 6px var(--white);
}
.list-maru li:nth-child(2) {
	border-color: var(--yellow2);
	background-image: url(/common/images/dot_yellow.png);
}
.list-maru li:nth-child(3) {
	border-color: var(--green3);
	background-image: url(/common/images/dot_green.png);
}
.list-maru li span {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.5;
	display: flex;
	align-items: center;
	flex-flow: column;
	justify-content: center;
	width: 100%;
	height: 170px;
	text-align: center;
	background: var(--white);

	clip-path: circle(58% at center);
}
.list-maru li span strong {
	font-size: 1.2em;
	color: var(--green2);
}
@media screen and (max-width:768px) {
	.sec-maru {
		padding: 30px 3%;
	}
	.sec-maru .list-maru {
		justify-content: center;
		width: 100%;
	}
	.sec-maru .list-maru:after {
		display: none;
	}
	.list-maru li {
		width: clamp(160px, 45vw, 200px);
		height: clamp(160px, 45vw, 200px);
		margin: 0 auto;
		border: 4px solid var(--blue2);
		box-shadow: inset 0 0 0 4px var(--white);
	}
	.list-maru li span {
		font-size: 1.2rem;
		height: 120px;

		clip-path: circle(clamp(10px, 21vw, 96px) at center);
	}
}
/**------------------------------ 
看護師になる
 ------------------------------**/
.sec-vision {
	padding: 80px var(--calc1100);
}
.sec-vision .h-text-img {
	align-items: center;
}
.sec-vision .h-text-img figure {
	width: 580px;
}
.sec-vision .h-text-img figure img {
	width: 100%;
	border-radius: 0 50px 0 0;
}
.sec-vision .h-text-img .titA {
	position: relative;
	margin: 0 2em 0 20px;
	color: var(--black);
}
.sec-vision .h-text-img .titA small {
	position: absolute;
	top: 50%;
	right: -2em;
	margin: 0;
	transform: rotate(90deg);
	transform-origin: right top;
	white-space: nowrap;

	writing-mode: horizontal-tb;
}
.sec-vision .h-text-img .text {
	width: auto;
	height: 350px;

	writing-mode: vertical-rl;
}
@media screen and (max-width:768px) {
	.sec-vision {
		padding: 40px 0;
	}
	.sec-vision .h-text-img {
		display: block;
	}
	.sec-vision .h-text-img figure {
		width: 100%;
		margin: -20px 0 0;
	}
	.sec-vision .h-text-img figure img {
		width: 90%;
	}
	.sec-vision .h-text-img .titA small {
		top: 48%;
		right: -1.5em;
	}
	.sec-vision .h-text-img .text {
		position: relative;
		z-index: 5;
		width: 100%;
		height: 360px;
	}
}
/**------------------------------ 
ican
 ------------------------------**/
.sec-ican {
	padding: 80px var(--calc1100) 60px;
}
.list-ican dt,
.list-ican dd {
	margin-bottom: 20px;
	padding: 30px;
	border-radius: 20px;
	background: var(--white);
}
.list-ican dt h3,
.list-ican dd h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
	color: var(--green2);
}
.list-ican dt {
	text-align: center;
	background: var(--green);
}
.list-ican dt h3 {
	margin-top: 15px;
	color: var(--white);
}
@media screen and (max-width:768px) {
	.sec-ican {
		padding: 40px 3% 30px;
	}
	.list-ican dt,
	.list-ican dd {
		padding: 15px;
	}
	.list-ican dt h3,
	.list-ican dd h3 {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
	.list-ican dt {
		display: flex;
		align-items: center;
		flex-flow: column;
		justify-content: center;
	}
}
/**------------------------------ 
study
 ------------------------------**/
.sec-study {
	margin: 60px 0 0;
	padding: 1px 0;
	background: linear-gradient(to bottom, transparent 0%, transparent 50px, var(--bodybg) 50px, var(--bodybg) 100%);

	--boxBmb: 100px;
	--titBmb: 10px;
}
@media screen and (max-width:768px) {
	.sec-study {
		margin: 30px 0 0;

		--boxBmb: 50px;
	}
}

/**------------------------------ 
message
 ------------------------------**/
.sec-message {
	padding: 80px var(--calc1100);

  --boxAai:flex-start;
	--boxAprl: 0;
	--btnAmt: 40px;
}
@media screen and (max-width:768px) {
	.sec-message {
		padding: 30px var(--calc1100);

		--btnAmt: 20px;
		--btnAw: 90vw;
	}
}
/**------------------------------ 
jisseki
 ------------------------------**/
.sec-jisseki {
	padding: 80px var(--calc1100);

	--btnAw: 420px;
}
.list-jisseki {
	margin: 50px auto 0;
}
.list-jisseki li {
	position: relative;
	margin-bottom: 50px;
	border: 1px solid var(--black);
	background: var(--white);
}

.list-jisseki li a {
	display: flex;
	padding: 30px;
}
.list-jisseki li:before {
	position: absolute;
	top: 3px;
	left: 3px;
	display: block;
	width: 50px;
	height: 50px;
	content: "";
	transform: rotate(45deg);
	border-left: 1px solid var(--black);
}
.list-jisseki li:after {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 60px;
	content: "";
	opacity: 0.3;
	background: url(/common/images/dot_green.png) repeat center / 10px auto;
}
.list-jisseki li > * {
	position: relative;
	z-index: 5;
}
.list-jisseki li figure {
	flex: none;
	width: 180px;
	width: 180px;
	margin-right: 35px;
	background: var(--white);
	box-shadow: inset 0 0 0 1px var(--gray);
}
.list-jisseki li time {
	font-size: 0.9rem;
}
.list-jisseki li p {
	font-size: 1.1rem;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.sec-jisseki {
		padding: 40px var(--calc1100);

		--btnAw: 100%;
	}
	.list-jisseki {
		margin: 40px auto 0;
	}
	.list-jisseki li {
		margin-bottom: 30px;
	}
	.list-jisseki li a {
		padding: 20px 10px 20px 20px;
	}
	.list-jisseki li figure {
		flex: none;
		width: 100px;
		width: 100px;
		margin-right: 20px;
	}
	.list-jisseki li p {
		font-size: 1.0rem;
	}
}
/**------------------------------ 
aboutus
 ------------------------------**/

.sec-aboutus {
	padding: 100px var(--calc1100) 1px;
}
.list-about {
	--btnAw: 100%;
	--btnAmt: 30px;
}
.list-about >*:nth-child(odd) {
	--boxBc: var(--white);
	--boxBbg: var(--green);
	--titBc: var(--yellow);
}

.list-about >*:nth-child(odd) em {
	font-size: 1.1em;
	font-weight: 700;
	display: inline-block;
	margin-bottom: var(--titBmb);
	padding: 8px 15px;
	color: var(--green);
	background: var(--white);
}
.list-about >*:nth-child(even) {
}
.list-about >*:nth-child(even) em {
	font-size: 1.1em;
	font-weight: 700;
	display: inline-block;
	margin-bottom: var(--titBmb);
	padding: 8px 15px;
	color: var(--green);
	background: var(--yellow);
}
@media screen and (max-width:768px) {
	.sec-aboutus {
		padding: 40px 0 1px;
	}
	.sec-aboutus .titA {
		margin-left: var(--calc1100);
	}
}
/**------------------------------ 
faq
 ------------------------------**/
.sec-faq {
	padding: 1px 0 100px;

	--titAmb: 50px;
}
.list-faq dl {
	margin: 30px 0 0;
	border: 1px solid var(--black);
}
.list-faq dt {
	font-size: 1.1rem;
	font-weight: 700;
	position: relative;
	padding: 34px 100px;
	background: var(--blue3);
}
.list-faq dt:before {
	font-family: var(--roboto);
	font-size: 2.5rem;
	line-height: 1;
	position: absolute;
	top: 25px;
	left: 34px;
	content: "Q";
	color: var(--green2);
}
.pakapaka .list-faq dt {
	cursor: pointer;
}
.pakapaka .list-faq dt:after {
	line-height: 1;
	position: absolute;
	top: 34px;
	right: 34px;
	display: block;
	content: "＋";
}
.pakapaka .list-faq dt.toggle:after {
	content: "－";
}
.list-faq dd {
	position: relative;
	padding: 34px 100px;
}
.list-faq dd:before {
	font-family: var(--roboto);
	font-size: 2.5rem;
	line-height: 1;
	position: absolute;
	top: 34px;
	left: 34px;
	content: "A";
	color: var(--green4);
}
@media screen and (max-width:768px) {
	.sec-faq {
		padding: 1px 0 40px;

		--titAmb: 30px;
	}
	.list-faq dl {
		margin: 15px 0 0;
		border: 1px solid var(--black);
	}
	.list-faq dt {
	  font-size: 1rem;
		padding: 15px 30px 15px 50px;
	}
	.list-faq dt:before {
		font-size: 2rem;
		top: 15px;
		left: 15px;
	}
	.pakapaka .list-faq dt:after {
		top: 25px;
		right: 12px;
	}
	.list-faq dd {
		padding: 15px 30px 15px 50px;
	}
	.list-faq dd:before {
		font-size: 2rem;
		top: 15px;
		left: 15px;
	}
}
/**------------------------------ 
news
 ------------------------------**/
.sec-news {
	padding: 80px var(--calc1100);

	--btnBmt: 30px;
}
.list-news li {
	display: flex;
	align-items: flex-start;
	padding: 20px 15px;
	border-bottom: 1px solid var(--gray);
}
.list-news li time,
.list-news li em {
	display: inline-block;
	white-space: nowrap;
}
.list-news li time {
	font-size: 0.9rem;
	padding: 5px 0;
}
.list-news li em {
	font-size: 0.9rem;
	min-width: 7em;
	margin: 0 15px;
	padding: 3px 20px;
	text-align: center;
	color: var(--white);
	border-radius: 50px;
}
em[data-name="お知らせ"] {
	background: var(--green2);
}
em[data-name="ブログ"] {
	background: var(--blue);
}
.list-news li h3 {
	font-size: 0.9rem;
	line-height: 2;
	flex: 1;
	margin-left: 40px;
}
.list-news li a:hover {
	opacity: 0.7;
}
@media screen and (max-width:768px) {
	.sec-news {
		padding: 40px var(--calc1100);

		--mb: 20px;
	}
	.list-news li {
		flex-wrap: wrap;
		padding: 20px 0;
	}
	.list-news li h3 {
		flex: none;
		width: 100%;
		margin: 10px 0 0;
	}
}

.list-news2{
  margin: 10px 0 20px;
}

.list-news2 li{
  padding: 10px 0;
  border-bottom: 1px dotted var(--gray);
}

.list-news2 li a{
  display: flex;
  align-items: flex-start;
}

.list-news2 figure{
  width: 80px;
  height: 80px;
  background: var(--white);
  margin: 0 15px 0 0;
  padding:0;
}

.list-news2 .text{
  flex: 1;
}

.list-news2 time,
.list-news2 em,
.sec-postdetail .list-news2 em{
  font-size: 12px;
  margin: 2px;
  padding:3px 5px;
}

.list-news2 h2{
  font-size: 16px;
  margin: 5px 0;
}


/**------------------------------ 
TOP news 追加
 ------------------------------**/
.news_wrap{
  width: 980px;
  margin:0 auto 0;
  position:relative;
  z-index: 10;
}

.news_wrap h2{
  font-family: var(--josefin);
  background: var(--green2);
  width:fit-content;
  padding:5px 30px;
  border-radius: 15px 15px 0 0;
  color: var(--white);
  margin: -20px 0 0;
}

.news_wrap .list-news{
  border: 2px solid var(--green2);
  border-radius: 0 15px 15px 15px;
  background: var(--white);
  padding:15px;
  margin-bottom: 10px;
}

.news_wrap .list-news li{
  padding:10px;
  border-bottom: 1px dashed var(--green3);
}

.news_wrap .list-news li h3{
  font-size: 1.1em;
  margin:0;
  display: flex;
  gap:15px;
  line-height: 1.3;
}

.news_wrap .list-news svg{
  fill:var(--green2);
  width: 20px;
  height: 10px;
  flex: none;
  margin: 0.5em 0 0;
}

.news_wrap .list-news li:last-child{
  border: none;
}

@media screen and (max-width:768px) {
.news_wrap{
  width: 90%;
  margin:0 auto 0;
}

.news_wrap h2{
  font-size: 1.1rem;
  margin: 10px 0 0;
  padding:5px 30px;
}
.news_wrap .list-news{
  padding:5px;
}
.news_wrap .list-news li{
  padding:5px;
}
.news_wrap .list-news li h3{
  font-size: 1.0em;
}
}

/**------------------------------ 
sec-bnr
 ------------------------------**/
.sec-bnr {
	padding: 100px var(--calc1100);
}
.bnr01 {
	display: flex;
	background: #ffffff;
	box-shadow: 0 0 0 2px var(--green);

	--btnCmb: 0;
}
.bnr01 figure {
	position: relative;
	width: 50%;
}
.bnr01 figure figcaption {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bnr01 .text {
	display: flex;
	flex: 1;
	flex-flow: column;
	justify-content: space-between;
	padding: 15px 0 0;
}
.bnr01 .text h3,
.bnr01 .text p {
	margin: 25px 40px 0;
}
.bnr01:hover figure {
	opacity: 0.9;
}
@media screen and (max-width:768px) {
	.sec-bnr {
		padding: 40px var(--calc1100);
	}
	.bnr01 {
		flex-flow: column;

		--btnCmt: 20px;
	}
	.bnr01 figure {
		position: relative;
		width: 100%;
	}
	.bnr01 figure figcaption {
		width: 45%;
	}
	.bnr01 .text {
		display: flex;
		flex: 1;
		flex-flow: column;
		justify-content: space-between;
		padding: 10px 0 0;
	}
	.bnr01 .text h3,
	.bnr01 .text p {
		margin: 10px 20px 0;
	}
}
/**================================================== 
 授業内容
================================================== **/
.sec-price {
	padding: 20px var(--calc1100);

	--boxAmb: 80px;
	--boxAfig: 35%;
	--boxAai: flex-start;
	--titCfz: 1.2rem;
	--titDmt: 25px;
}
.sec-price2 {
	padding: 80px var(--calc1100);
}
@media screen and (max-width:768px) {
	.sec-price {
		padding: 30px 0;

		--boxAmb: 5px;
		--boxAfig: 100%;
	}
	.sec-price2 {
		padding: 40px var(--calc1100);
	}
}

/**================================================== 
 ライトについて
================================================== **/
.sec-right {
	padding: 20px var(--calc1100) ;
}
.sec-right2 {
	padding: 50px var(--calc1100);

	--titCmb: 60px;
}

.list-feature {
	counter-reset: number 0;
}
.list-feature li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto 60px;

	--featurec: var(--green);
	--featurec2: var(--green);
	--btnAmt: 30px;
	--btnAc: var(--green);
	--btnAbg: var(--white);
	--featurei: url(/common/images/dot_green.png);
}

.list-feature li:nth-child(1) {
	--featurec: var(--blue);
	--featurec2: var(--blue2);
	--btnAc: var(--blue);
	--featurei: url(/common/images/dot_blue.png);
}
.list-feature li:nth-child(2) {
	--featurec: var(--yellow3);
	--featurec2: var(--yellow2);
	--btnAc: var(--yellow3);
	--featurei: url(/common/images/dot_yellow.png);
}
.list-feature li:nth-child(3) {
	--featurec: var(--green);
	--featurec2: var(--green3);
	--btnAc: var(--green);
	--featurei: url(/common/images/dot_green.png);
}

.list-feature li h3 {
	font-size: 2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	margin: 0 0 30px;
	color: var(--featurec);
}
.list-feature li i {
	font-family: var(--josefin);
	font-size: 1.5rem;
	font-style: italic;
	line-height: 1;
	display: flex;
	align-items: center;
	flex: none;
	flex-flow: column;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	margin: 0 20px 0 0;
	text-align: center;
	color: var(--featurec);
	border: 2px solid var(--featurec2);
	border-radius: 50%;
	background: var(--featurei) repeat center / 5px;
	box-shadow: inset 0 0 0 4px var(--white);
}
.list-feature li i:after {
	font-family: var(--roboto);
	font-size: 3rem;
	line-height: 1;
	display: block;
	margin-left: -0.2em;
	content: counter(number, decimal-leading-zero);
	counter-increment: number;
}
.list-feature .figure {
	position: relative;
	flex: none;
	width: 50%;
	margin: 0 0 0 80px;
}

.list-feature .figure img {
	width: 100%;
	border-radius: 50px 50px 50px 0;
}
.list-feature .tape {
	position: absolute;
	bottom: 30px;
	left: -20px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.list-feature .tape span {
	font-size: 1.5rem;
	font-weight: 700;
	display: inline-block;
	margin: 5px 0;
	padding: 3px 25px;
	color: var(--white);
	border-radius: 0 50px 50px 0;
	background: var(--featurec);
}


.sec-right3 {
	margin: 0 var(--calc1100) 50px;

	--titDmb: 50px;
}

.list-flow {
}
.list-flow dl {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 0 0 50px;
	counter-increment: li;
}

.list-flow dl dt {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	flex: none;
	width: 32%;
	margin: 0 50px 0 0;
	padding: 10px 40px;
	text-align: center;
	white-space: nowrap;
	color: var(--white);
	border-radius: 50px;
	background: var(--green2);
}
.list-flow dl dt:before {
	line-height: 2rem;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	width: 2rem;
	height: 2rem;
	content: counter(li);
	counter-increment: number;
	transform: translateY(-50%);
	text-align: center;
	color: var(--green2);
	border-radius: 50px;
	background: var(--yellow);
}

.list-flow dl:after {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 20px;
	width: 1px;
	height: 100%;
	content: "";
	border-left: 3px dotted var(--green2);
}
.list-flow dl:last-child:after {
	display: none;
}

@media screen and (max-width:768px) {
	.sec-right {
		margin-left: 20px;
		padding: 20px var(--calc1100);
	}
	.sec-right2 {
		padding: 20px var(--calc1100) 0;

		--titCmb: 40px;
	}
	.list-feature li {
		flex-flow: column-reverse;
		margin: 0 auto 60px;
	}
	.list-feature li h3 {
		font-size: 1.4rem;
		margin: 0 0 15px;
	}
	.list-feature li i {
		font-size: 1.1rem;
		width: 5em;
		height: 5em;
		margin: 0 10px 0 0;
	}
	.list-feature .figure {
		position: relative;
		flex: none;
		width: 100%;
		margin: 0 0 15px 5%;
	}

	.list-feature .figure img {
		width: 100%;
		border-radius: 30px 0 0 0;
	}
	.list-feature .tape {
		bottom: 10px;
		left: -10%;
	}
	.list-feature .tape span {
		font-size: 1.3rem;
		padding: 3px 15px;
	}

	.sec-right3 {
		margin: 0 var(--calc1100) 20px;

		--titDmb: 30px;
	}

	.list-flow {
	}
	.list-flow dl {
		flex-flow: column;
		padding: 0 0 40px;
		counter-increment: li;
	}

	.list-flow dl dt {
		font-size: 1.1rem;
		width: 100%;
		margin: 0 0 15px;
		padding: 15px 40px;
	}
	.list-flow dl dt:before {
		left: 10px;
	}

	.list-flow dl:after {
		left: 25px;
	}
	.list-flow dl dd {
		margin: 0 0 0 50px;
	}
}

/**================================================== 
 講師紹介
================================================== **/

.sec-teacher {
	padding: 20px var(--calc1100);

	--boxAai: flex-start;
	--boxAfig: 30%;
	--titCfz: 20px;
}
@media screen and (max-width:768px) {
	.sec-teacher {
		padding: 40px 0 0;

		--boxAai: flex-start;
		--boxAfig: 100%;
		--titCfz: 20px;
		--titCmb: 20px;
		--boxAfigm: -10%;
	}
}
.sec-teacher2 {
	padding: 50px 0 1px;
	background: linear-gradient(to bottom, transparent 0%, transparent 50px, var(--bodybg) 50px, var(--bodybg) 100%);

	--boxBmb: 100px;
	--titBmb: 10px;
}
@media screen and (max-width:768px) {
	.sec-teacher2 {
		padding: 70px 0 1px;

		--boxBmb: 50px;
	}
}

/**================================================== 
 お問い合わせ
================================================== **/

.bnr02 {
	display: flex;
	overflow: hidden;
	border-radius: 0 50px  0 50px;
	background: #ffffff;
	box-shadow: 0 0 0 2px var(--green);

	--titCfz: 1.3rem;
}
.bnr02 figure {
	position: relative;
	width: 45%;
}
.bnr02 figure figcaption {
	position: absolute;
	right: 0;
	bottom: 20%;
}
.bnr02 .text {
	display: flex;
	flex: 1;
	flex-flow: column;
	justify-content: center;
	padding: 15px 30px;
	text-align: center;
}
.bnr02 h3,
.bnr02 p {
	margin: 15px 5px 0;
	text-align: center;
}
.bnr02 b {
	font-size: 2rem;
	font-weight: 700;
	margin: 8px 0;
	color: var(--green2);
}
.bnr02 b img {
	margin-right: 15px;
	vertical-align: middle;
}
.bnr02 span {
	color: var(--green2);
}
.bnr02:hover figure {
	opacity: 0.9;
}

@media screen and (max-width:768px) {
	.bnr02 {
		flex-flow: column;
		margin: 0 5%;
		border-radius: 0 40px 0 40px;

		--titCfz: 1.1rem;
	}
	.bnr02 figure {
		position: relative;
		width: 100%;
	}
	.bnr02 figure figcaption {
		width: 40%;
	}
	.bnr02 .text {
		display: flex;
		flex: 1;
		flex-flow: column;
		justify-content: space-between;
		padding: 10px 0;
	}
	.bnr02 .text h3,
	.bnr02 .text p {
		margin: 10px 20px 0;
	}
	.bnr02 b {
		font-size: 1.6rem;
	}
}

.sec-line {
	padding: 80px var(--calc1100);
}

.sec-line2 {
	padding:  0 var(--calc1100) 80px;
}

.list-line li {
	display: block;
	text-align: center;
	border: 2px solid var(--green2);
	border-radius: 20px 20px 0 0;
}

.list-line li h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 15px 0;
	color: var(--green2);
}

.list-line a {
	font-size: 1.2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0 0;
	padding: 10px;
	color: #ffffff;
	background: #06c755;
	background: var(--green);
}

.list-line a img {
	height: 100px;
	margin-right: 15px;
}

.sec-contact {
	padding: 80px var(--calc1100);
}


@media screen and (max-width:768px) {
	.sec-line {
		padding: 30px var(--calc1100);
	}
	.sec-line2 {
  	padding:  0 var(--calc1100) 30px;
  }

	.list-line li {
		margin: 0 0 20px;
		border: 1px solid var(--green2);
	}

	.list-line li h3 {
		font-size: 1.1rem;
	}


	.list-line a img {
		height: 70px;
	}

	.sec-contact {
		padding: 40px var(--calc1100);
	}
}


/**================================================== 
 一覧ページ
================================================== **/
.sec-postlist {
	padding: 20px var(--calc1100) 80px;
}

@media screen and (max-width:768px) {
  .sec-postlist {
	padding: 20px var(--calc1100) 40px;
}
}

/**------------------------------
catBtn 
 ------------------------------**/
.catBtn a {
	color: var(--green);
	border: 1px solid var(--green);
}
.catBtn a svg {
	width: 20px;
	height: 10px;
}
.catBtn a:hover {
	color: var(--white);
	background: var(--green);
}
.catBtn a svg {
	width: 20px;
	height: 10px;
}
.catBtn a:hover svg {
	fill: var(--white);
}

/**------------------------------ 
pager
 ------------------------------**/
.pagenation span {
	color: var(--green);
	border: 1px solid var(--green);
	border-radius: 10px;
	background: var(--white);
}
.pagenation span.page {
	color: var(--white);
	background: var(--green);
}
.pagenation span a {
	color: var(--green);
	border-radius: 10px;
	background: var(--white);
}.pagenation span a:hover {
	color: var(--white);
	background: var(--green);
}

@media screen and (max-width:768px) {
	.sec-postlist .text {
		margin-left: 30px;
	}
}

/**================================================== 
 詳細
================================================== **/
.sec-postdetail {
	padding: 20px var(--calc1100) 100px;
	display: flex;
	justify-content:space-between;
	
	--titCfz:18px;
	--titCmb:0;
}

.sec-postdetail em {
	font-size: 0.9rem;
	min-width: 7em;
	margin: 0 15px;
	padding: 3px 20px;
	text-align: center;
	color: var(--white);
	border-radius: 50px;
}

.sec-postdetail .left{
  width: 768px;
}
.sec-postdetail .right{
  width: 300px;
  border-radius: 20px;
  padding: 20px;
}

@media screen and (max-width:768px) {
  .sec-postdetail {
	  padding: 20px var(--calc1100) 40px;
	  flex-flow: column;
	}
	
	.sec-postdetail .left{
    width: 100%;
  }
  .sec-postdetail .right{
    width: 100%;
    border-radius: 20px;
    margin-top: 20px 0 0;
  }
}


/**================================================== 
 詳細
================================================== **/
.sec-success {
	padding: 20px var(--calc1100) 100px;

	--titBfz: 1.3rem;
	--titBc: var(--yellow);
	--titBmb: 15px;
}
.sec-success em {
	font-size: 1.3rem;
	font-weight: 700;
	display: inline-block;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 5px 30px;
	text-align: center;
	color: var(--yellow);
	border-radius: 50px;
	background: var(--green2);
}

.sec-success .voice {
	margin: 60px auto;
}
.sec-success .voice  figure {
	width: 150px;
}
.sec-success .voice .text {
	position: relative;
	padding: 25px;
	color: var(--white);
	border-radius: 25px;
	background: var(--green);
}
.sec-success .voice .text:before {
	position: absolute;
	top: 30%;
	left: -16px;
	width: 0;
	height: 0;
	content: "";
	border-width: 8px 16px 8px 0;
	border-style: solid;
	border-color: transparent var(--green) transparent transparent;
}

@media screen and (max-width:768px) {
	.sec-success {
		padding: 20px var(--calc1100) 100px;

		--titBfz: 1.3rem;
		--titBc: var(--yellow);
		--titBmb: 15px;
	}
	.sec-success em {
		font-size: 1.1rem;
		margin-left: 30px;
	}

	.sec-success .voice {
		flex-flow: column-reverse;
		margin: 0 auto 40px;
	}
	.sec-success .voice .text {
		margin: 10px auto 0;
		padding: 20px;
	}
	.sec-success .voice .text:before {
		position: absolute;
		top: -16px;
		left: 50%;
		transform: translateX(-50%);
		border-width: 0 8px 16px 8px;
		border-color: transparent  transparent  var(--green) transparent ;
	}
}/*layout:9*//*layout:6*/