@charset "UTF-8";

/* --------------------------------------------
 *              base Layout
 * -------------------------------------------- */

body {
	background: #fbf7f0;
	width: 100%;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	color: #333;
	line-height: 1.8;
	letter-spacing: .05em;
	margin: 0;
	padding: 0;
	border: none;
	word-wrap:break-word;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html { font-size: 62.5%; overflow-y: scroll; } /* =10px */
body { font-size: 18px; font-size: 1.8rem; }

@media all and (max-width: 767px) {
	body { font-size: 16px; font-size: 1.6rem; }
}

a:link { color: #ff9600;text-decoration: underline; }
a:visited { color: #ff9600;text-decoration: underline; }
a:active { color: #ff9600;text-decoration: underline; }
a:hover { color: #333;text-decoration: underline; }

img {
	max-width: 100%;
	height: auto;
	border-style: none;
	vertical-align: bottom;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}

a ,
a:hover ,
a:hover img {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none;
}
a:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.70;
	opacity:0.70;
}

@media all and (max-width: 767px) {
	a:hover {
		filter: alpha(opacity=100);
		-moz-opacity:1.00;
		opacity:1.00;
	}
}

@media all and (min-width: 768px) {
.spNone { display: block; display:inline; }
.pcNone { display: none; }
}
@media all and (max-width: 767px) {
.spNone { display: none; }
.pcNone { display: block; display:inline; }
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-shadow: none;
    box-shadow: none;   
    outline: none;
} /* androidでのオレンジ枠消し */

/* --------------------------------------------
 *                  余白
 * -------------------------------------------- */

.spTopBtm1em { padding: 1em 0; }
.spTopBtm2em { padding: 2em 0; }
.spTopBtm80 { padding: 80px 0; }
.spTopBtm { padding: 140px 0 100px 0; }
.spTopBtm140 { padding: 0 0 140px 0; }
.spBtm2em { padding: 0 0 2em 0; }
.spTop140Btm { padding: 140px 0 0 0; }
.w1000 {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
}
.w1200 {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}
.w1201 {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}

@media all and (min-width: 768px) and (max-width: 1000px) {
	.w1000 {
		width: 100%;
		padding: 0 2em;
		box-sizing: border-box;
	}
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.w1200 {
		width: 100%;
		padding: 0 2em;
		box-sizing: border-box;
	}
	.w1201 {
		width: 100%;
		padding: 0 2em;
		box-sizing: border-box;
	}
}

@media all and (max-width: 767px) {
	.spTopBtm80 { padding: 3em 0; }
	.spTopBtm { padding: 4em 0 2em 0; }
	.spTopBtm140 { padding: 0 0 2em 0; }
	.spTop140Btm { padding: 2em 0 0 0; }
	.w1000 ,
	.w1200 {
		width: 100%;
		padding: 0 1.2em;
		box-sizing: border-box;
	}
	.w1201 {
		width: 100%;
		padding: 0;
	}
}

/* --------------------------------------------
 *                  bg
 * -------------------------------------------- */

.bgWhite { background-color: #fff; }

/* --------------------------------------------
 *                  text
 * -------------------------------------------- */

.fontM { font-size: .9em; }
.textCenter { text-align: center; }
.textCenterTo { text-align: center; }
.textRight { text-align: right; }
.markerGreen {
	background: linear-gradient(transparent 50%, #aeeedb 0%);
}

@media all and (max-width: 767px) {
	.textCenterTo { text-align: left; }
}

/*--- subTitle01 ----------------------------------------------------------------- */

.subTitle01 {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 70px 0;
}
.subTitle01 h3.circleTitle {
	font-size: 70px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* 前後ろの丸文字3つ */
.circleTitle::before ,
.circleTitle::after {
	content: "●●●";
	letter-spacing: 20px; /* 丸の間隔 */
	margin: 0 0 0 12px; /* テキストとの間隔 文字間の関係で前は0が良い */
	font-size: 12px;
}
/* 前の丸文字の色を個別に指定 (::before内の文字の並び順でnth-of-type) */
.circleTitle::before {
	background: linear-gradient(
		to right,
		#44dfd6 0% 33%,
		#1aba8f 33% 66%,
		#059813 66% 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
/* 後の丸文字の色を個別に指定 (::after内の文字の並び順でnth-of-type) */
.circleTitle::after {
	background: linear-gradient(
		to right,
		#059813 0% 33%,
		#1aba8f 33% 66%,
		#44dfd6 66% 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@media all and (max-width: 767px) {
	.subTitle01 {
		padding: 0 0 2em 0;
	}
	.subTitle01 h3.circleTitle {
		font-size: 30px;
	}
	/* 前後ろの丸文字3つ */
	.circleTitle::before ,
	.circleTitle::after {
		content: "●●●";
		letter-spacing: 8px; /* 丸の間隔 */
		margin: 0 0 0 5px; /* テキストとの間隔 */
		font-size: 8px;
	}
}

/*--- subTitle02 ----------------------------------------------------------------- */

.subTitle02 {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 2em 0;
}
.subTitle02 h4.circleTitle02 {
	font-size: 50px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* 前後ろの丸文字3つ */
.circleTitle02::before ,
.circleTitle02::after {
	content: "●";
	margin: 0 18px 0 20px; /* テキストとの間隔 */
	font-size: 12px;
}
/* 前の丸文字の色を個別に指定 (::before内の文字の並び順でnth-of-type) */
.circleTitle02::before {
	background: linear-gradient(
		to right,
		#1aba8f 0% 33%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
/* 後の丸文字の色を個別に指定 (::after内の文字の並び順でnth-of-type) */
.circleTitle02::after {
	background: linear-gradient(
		to right,
		#44dfd6 0% 33%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.subTitle02 p {
	text-align: center;
	margin: 0 auto;
	padding: 0 0 1em 0;
}

@media all and (max-width: 767px) {
	.subTitle02 {
		padding: 0 0 1em 0;
	}
	.subTitle02 h4.circleTitle02 {
		font-size: 26px;
	}
	/* 前後ろの丸文字3つ */
	.circleTitle02::before ,
	.circleTitle02::after {
		content: "●";
		margin: 0 2px 0 16px; /* テキストとの間隔 */
		letter-spacing: 14px; /* 丸の間隔 */
		font-size: 8px;
	}
	.subTitle02 p {
		text-align: center;
		margin: 0 1em;
		padding: 0 0 .5em 0;
	}
}

/*--- subTitle03 ----------------------------------------------------------------- */

.subTitle03 {
	text-align: center;
	margin: 0 auto;
	padding: 0 0 2em 0;
}
.subTitle03 h4 {
	font-size: 30px;
}
.subTitle03 p {
	text-align: center;
}

@media all and (max-width: 767px) {
	.subTitle03 {
		padding: 0 0 1em 0;
	}
	.subTitle03 h4 {
		font-size: 24px;
	}
	.subTitle03 p {
		text-align: left;
	}
}

/* --------------------------------------------
 *                      list
 * -------------------------------------------- */

.listCheck {
	margin: 0;
	padding: 0;
}
.listCheck ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.listCheck ul li {
	padding-left: 34px;
	line-height: 1.8em;
	margin: 0 0 .5em 0;
}
.listCheck ul li {
	background: url(../images/list_check.png) no-repeat left 0px top 5px;
	background-size: 22px 22px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.listCheck ul li {
	background: url(../images/list_check@2x.png) no-repeat left 0px top 5px;
	background-size: 22px 22px;
	}
}
.listCheck ul li h5 {
	font-weight: bold;
	color: #00af80;
	font-size: 18px;
}

@media all and (max-width: 767px) {
	.listCheck ul li h5 {
		font-size: 1em;
	}
}

/* --------------------------------------------
 *                  layout
 * -------------------------------------------- */

#layout {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

/* --------------------------------------------
 *                  header
 * -------------------------------------------- */

/*--- header ----------------------------------------------------------------- */

#index header {
	height: 800px;
	margin: 0;
	padding: 0 20px;
}

#headerArea {
	background: #fbf7f0 url(../images/h_bg.jpg) no-repeat center bottom;
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (   min--moz-device-pixel-ratio: 2),
       only screen and (     -o-min-device-pixel-ratio: 2/1),
       only screen and (        min-device-pixel-ratio: 2),
       only screen and (                min-resolution: 192dpi),
       only screen and (                min-resolution: 2dppx) {
#headerArea {
	background: #fbf7f0 url(../images/h_bg@2x.jpg) no-repeat center bottom;
	background-size: cover;
	}
}

@media all and (max-width: 767px) {
	#index header {
		height: 500px;
		margin: 0;
		padding: 0 20px;
	}
	#headerArea {
		background-image:
			url("../images/h_free.png"),
			url("../images/h_bg.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			center top -30px,
			right -50px top;
		background-size:
			350px auto,
			auto 500px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	#headerArea {
		background-image:
			url("../images/h_free@2x.png"),
			url("../images/h_bg@2x.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			center top -30px,
			right -50px top;
		background-size:
			350px auto,
			auto 500px;
		}
	}
}

/*--- header02 ----------------------------------------------------------------- */

#thanks header {
	height: 370px;
	margin: 0;
	padding: 0 20px;
}

#headerArea02 {
	background: #fbf7f0 url(../images/h_bg02.jpg) no-repeat center bottom;
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (   min--moz-device-pixel-ratio: 2),
       only screen and (     -o-min-device-pixel-ratio: 2/1),
       only screen and (        min-device-pixel-ratio: 2),
       only screen and (                min-resolution: 192dpi),
       only screen and (                min-resolution: 2dppx) {
#headerArea02 {
	background: #fbf7f0 url(../images/h_bg02@2x.jpg) no-repeat center bottom;
	background-size: cover;
	}
}

@media all and (max-width: 767px) {
	#thanks header {
		height: 200px;
		margin: 0;
		padding: 0 20px;
	}
	#headerArea02 {
		background: #fbf7f0 url(../images/h_bg02.jpg) no-repeat center bottom;
		background-size: auto 200px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	#headerArea02 {
		background: #fbf7f0 url(../images/h_bg02@2x.jpg) no-repeat center bottom;
		background-size: auto 200px;
		}
	}
}

/*--- headerBox ----------------------------------------------------------------- */

#headerBox {
	height: 90px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: flex-start;
}
#headerBox > div:nth-of-type(2) {
	margin-left: auto;
}
#headerBox .headerLogo h1 {
	margin: 0 20px 0 0;
	padding: 0;
}
#headerBox .headerLogo h1 img {
	max-width: 446px;
	width: 100%;
	height: auto;
	margin: 0;
	z-index: 200;
}
.headerBtn {
	display: flex;
	align-items: center;
}
.headerIg ,
.headerLine {
	margin: 0 10px 0 0;
	padding: 0;
}
.headerMail {
	margin: 0;
	padding: 0;
}
.headerIg img ,
.headerLine img {
	max-width: 50px;
	width: 100%;
	height: auto;
}
.headerMail img {
	max-width: 220px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	#headerBox {
		height: 60px;
	}
	#headerBox .headerLogo h1 img {
		max-width: 200px;
		position: fixed;
		background: #fff;
		padding: 5px;
		top: 4px;
		left: 4px;
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
	}
	.headerBtn {
		display: none;
		margin: 0;
		padding: 0;
	}
}

/*--- fv ----------------------------------------------------------------- */

#fv {
	width: 100%;
	margin: 0 auto;
	padding: 80px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.fvFree {
	margin: 0;
	padding: 0 60px 0 0;
}
.fvFree img {
	max-width: 630px;
	width: 100%;
	height: auto;
}
.fvCatch {
	margin: 0;
	padding: 0;
}
.fvCatch img {
	max-width: 490px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	#fv {
		padding: 0;
		flex-wrap: wrap;
	}
	.fvFree ,
	.fvFree img {
		display: none;
	}
	.fvCatch {
		margin: 0 auto;
		padding: 80px 0 0 0;
	}
	.fvCatch img {
		max-width: 350px;
	}
}

/*--- fv02 thanksページ ----------------------------------------------------------------- */

#fv02 {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0 0 0;
}

@media all and (max-width: 767px) {
	#fv02 {
		padding: 20px 0 0 0;
	}
}

/* --------------------------------------------
 *                    main
 * -------------------------------------------- */

#main {
	width: 100%;
	text-align: left;
	margin: 0;
	padding: 0;
}

/* --------------------------------------------
 *                  01-idea
 * -------------------------------------------- */

.bgIdea {
	background-image:
		url("../images/bg_fuwa.png"),
		url("../images/bg_border.png");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left -80px top 60px,
		center bottom;
	background-size:
		450px 1800px,
		100% auto;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.bgIdea {
	background-image:
		url("../images/bg_fuwa@2x.png"),
		url("../images/bg_border@2x.png");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left -80px top 60px,
		center bottom;
	background-size:
		450px 1800px,
		100% auto;
	}
}

.ideaArea {
	width: 80%;
	margin: 0;
	padding: 0 0 0 20%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.ideaArea {
		width: 90%;
		padding: 0 0 0 10%;
	}
}

.ideaArea .subTitle {
	width: 100%;
	margin: 0;
	padding: 0 0 50px 0;
}
.ideaArea .subTitle h3 {
	font-size: 70px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
}

@media all and (max-width: 767px) {
	.ideaArea .subTitle {
		text-align: center;
		margin: 0 auto;
		padding: 0 0 1em 0;
	}
	.ideaArea .subTitle h3 {
		font-size: 30px;
	}
}

.ideaText {
	width: 50%;
	margin: 0;
	padding: 0;
}
.ideaText p {
	font-size: 20px;
}
.ideaImg {
	width: 48%;
	margin: 0;
	padding: 0 1%;
}
.ideaImg img {
	max-width: 590px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	.bgIdea {
		background-image:
			url("../images/bg_fuwa.png"),
			url("../images/bg_border.png");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			right -30px top 20px,
			center bottom;
		background-size:
			200px auto,
			1400px 150px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.bgIdea {
		background-image:
			url("../images/bg_fuwa@2x.png"),
			url("../images/bg_border@2x.png");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			right -30px top 20px,
			center bottom;
		background-size:
			200px auto,
			1400px 150px;
		}
	}
	.ideaArea {
		width: 100%;
		margin: 0 auto;
		padding: 0 1.5em 2em 1em;
		box-sizing: border-box;
	}
	.ideaText {
		width: 100%;
		padding: 0 0 1em 0;
	}
	.ideaText p {
		font-size: 16px;
	}
	.ideaImg {
		width: 100%;
		text-align: center;
		margin: 0 auto;
		padding: 0;
	}
	.ideaImg img {
		max-width: 250px;
	}
}

/* --------------------------------------------
 *               01-aimArea
 * -------------------------------------------- */

.aimArea {
	width: 90%;
	margin: 0;
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.aimArea {
		width: 94%;
		padding: 0 3%;
	}
}

/*--- aimArea subTitle ----------------------------------------------------------------- */

.aimArea .subTitle {
	width: 100%;
	margin: 0 auto;
	padding: 150px 0 80px 0;
}
.aimArea .subTitle h4.circleTitle {
	font-size: 24px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aimBox {
	width: 100%;
	margin: 0;
	padding: 0 0 4em 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.aimImg {
	width: 50%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}
.aimImg img {
	max-width: 600px;
	width: 100%;
	height: auto;
}
.aimText {
	width: 50%;
	margin: 0;
	padding: 0;
}
.aimText p.aimText01 {
	font-size: 18px;
	padding: 0 0 0 50px;
}
.aimText p.aimText02 {
	font-size: 18px;
	padding: 0 50px 0 0;
}

@media all and (max-width: 767px) {
	.aimArea {
		width: 100%;
		margin: 0 auto;
		padding: 0 1.5em 0 1em;
		box-sizing: border-box;
	}
	.aimArea .subTitle {
		padding: 2em 0;
	}
	.aimArea .subTitle h4.circleTitle {
		font-size: 18px;
	}
	.aimBox {
		flex-wrap: wrap;
	}
	.aimImg {
		width: 100%;
		order: 2;
	}
	.aimImg img {
		max-width: 300px;
	}
	.aimText {
		width: 100%;
		order: 1;
	}
	.aimText p.aimText01 {
		font-size: 16px;
		padding: 0 0 1em 0;
	}
	.aimText p.aimText02 {
		font-size: 16px;
		padding: 0 0 1em 0;
	}
}

/* --------------------------------------------
 *             02-activityArea
 * -------------------------------------------- */

.activityArea {
	width: 100%;
	margin: 0;
	padding: 0;
}
.activityBox01 {
	width: 90%;
	margin: 0 10% 0 0;
	padding: 0;
	background-color: #dffff1;
	border-radius: 0 30px 30px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.activityImg {
	width: 50%;
	margin: 0;
	padding: 0;
}
.activityImg img {
	max-width: 600px;
	width: 100%;
	height: auto;
	padding: 0 0 0 20px;
}
.activityText {
	width: 50%;
	margin: 0;
	padding: 60px;
	box-sizing: border-box;
}
.activityText h4 {
	font-size: 30px;
	margin: 0;
	padding: 0 0 1em 0;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.activityBox01 {
		width: 95%;
		margin: 0 5% 0 0;
	}
}

@media all and (max-width: 767px) {
	.activityBox01 {
		width: 93%;
		margin: 0 7% 0 0;
	}
	.activityImg {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		text-align: center;
		order: 2;
	}
	.activityImg img {
		max-width: 200px;
		padding: 0;
	}
	.activityText {
		width: 100%;
		padding: 1.5em 1.5em 1em 1.5em;
		box-sizing: border-box;
		order: 1;
	}
	.activityText h4 {
		font-size: 20px;
	}
}

/* --------------------------------------------
 *             02-summaryArea
 * -------------------------------------------- */

.summaryArea {
	width: 100%;
	margin: 120px 0 0 0;
	padding: 0;
}
.summaryBox {
	width: 90%;
	margin: 0 0 0 10%;
	padding: 60px;
	background-color: #dffff1;
	border-radius: 30px 0 0 30px;
	box-sizing: border-box;
}

/*--- summaryBox01 ----------------------------------------------------------------- */

.summaryBox01 {
	margin: 0;
	padding: 0 0 4em 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.summaryTable {
	width: 70%;
	margin: 0;
}
.summaryTable .table01 th {
	width: 20%;
}
.summaryTable .table01 td {
	width: 80%;
}
.summaryImg {
	width: 30%;
	padding: 0 0 0 2em;
	box-sizing: border-box;
}
.summaryImg img {
	max-width: 250px;
	width: 100%;
	height: auto;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.summaryBox {
		width: 95%;
		margin: 0 0 0 5%;
	}
}

@media all and (max-width: 767px) {
	.summaryArea {
		margin: 3em 0 0 0;
	}
	.summaryBox {
		width: 93%;
		margin: 0 0 0 7%;
		padding: 1.5em 1.5em 1.5em 0;
		box-sizing: border-box;
	}
	.summaryBox01 {
		margin: 0;
		padding: 0 0 2em 0;
	}
	.summaryTable {
		width: 100%;
		margin: 0;
		padding: 0 0 2em 1.5em;
	}
	.summaryTable .table01 th {
		width: 30%;
	}
	.summaryTable .table01 td {
		width: 70%;
	}
	.summaryImg {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		text-align: center;
	}
	.summaryImg img {
		max-width: 120px;
	}
}

/*--- summaryBox02 03 ----------------------------------------------------------------- */

.summaryBox02 ,
.summaryBox03 {
	margin: 0;
	padding: 0 0 4em 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.summarySubTitleBox {
	width: 40%;
	margin: 0 5%;
}
.summarySubTitle {
	height: 220px;
}
.summaryBox02 .summarySubTitle {
	background: url(../images/02_subtitle_bg01.png) no-repeat left 0 center;
	background-size: 200px 220px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.summaryBox02 .summarySubTitle {
	background: url(../images/02_subtitle_bg01@2x.png) no-repeat left 0 center;
	background-size: 200px 220px;
	}
}
.summaryBox03 .summarySubTitle {
	background: url(../images/02_subtitle_bg02.png) no-repeat left 0 center;
	background-size: 140px 150px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.summaryBox03 .summarySubTitle {
	background: url(../images/02_subtitle_bg02@2x.png) no-repeat left 0 center;
	background-size: 140px 150px;
	}
}
.summarySubTitle h5 {
	font-size: 30px;
	margin: 0;
	padding: 1.5em 0 0 1.5em;
}
.summaryText {
	width: 50%;
	margin: 0;
}
.summaryText p {
	font-size: 16px;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.summarySubTitleBox {
		width: 37%;
		margin: 0 3% 0 0;
	}
	.summaryText {
		width: 60%;
	}
}

@media all and (max-width: 767px) {
	.summaryBox02 {
		padding: 0 0 2em 0;
	}
	.summaryBox03 {
		padding: 0;
	}
	.summaryBox02 .summarySubTitleBox {
		width: 100%;
		margin: 0;
	}
	.summaryBox03 .summarySubTitleBox {
		width: 100%;
		margin: 0;
		order: 1;
	}
	.summarySubTitle {
		height: 100px;
	}
	.summaryBox02 .summarySubTitle {
		background: url(../images/02_subtitle_bg01.png) no-repeat left -2px center;
		background-size: auto 100px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.summaryBox02 .summarySubTitle {
		background: url(../images/02_subtitle_bg01@2x.png) no-repeat left -2px center;
		background-size: auto 100px;
		}
	}
	.summaryBox03 .summarySubTitle {
		background: url(../images/02_subtitle_bg02.png) no-repeat left -2px center;
		background-size: auto 100px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.summaryBox03 .summarySubTitle {
		background: url(../images/02_subtitle_bg02@2x.png) no-repeat left -2px center;
		background-size: auto 100px;
		}
	}
	.summarySubTitle h5 {
		font-size: 18px;
		margin: 0;
		padding: 1.5em 0 0 1.4em;
	}
	.summaryBox02 .summaryText {
		width: 100%;
		margin: 0;
		padding: 0 0 0 1.5em;
	}
	.summaryBox03 .summaryText {
		width: 100%;
		margin: 0;
		padding: 0 0 0 1.5em;
		order: 2;
	}
	.summaryText p {
		font-size: 14px;
	}
}

/* --------------------------------------------
 *             02-flowArea
 * -------------------------------------------- */

.flowArea {
	width: 100%;
	margin: 120px 0 0 0;
	padding: 0;
}
.flowBox {
	width: 90%;
	margin: 0 10% 0 0;
	padding: 60px;
	background-color: #dffff1;
	border-radius: 0 30px 30px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

/*--- flow ----------------------------------------------------------------- */

.flow {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 0 4em;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing: border-box;
}
.flowTime {
	width: 90px;
	margin: 0;
}
.flowTime {
	background-image:
		url("../images/02_flow_circle.png"),
		url("../images/02_flow_line.png");
	background-repeat:
		no-repeat,
		repeat-y;
	background-position:
		right 0 top 9px,
		right 6px top;
	background-size:
		13px 13px,
		1px 20px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.flowTime {
	background-image:
		url("../images/02_flow_circle@2x.png"),
		url("../images/02_flow_line@2x.png");
	background-repeat:
		no-repeat,
		repeat-y;
	background-position:
		right 0 top 9px,
		right 6px top;
	background-size:
		13px 13px,
		1px 20px;
	}
}
.flowText {
	flex: 1;
	margin: .2em 0 .5em 1em;
	padding: 0;
}
.flowText h5 {
	font-size: 18px;
	line-height: 1.4;
	color: #00af80;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.flowText h5 span {
	font-size: 18px;
	color: #333;
	font-weight: normal;
}
.flowText p {
	font-size: 18px;
	line-height: 1.4;
}
.flow h6 {
	width: 100%;
	font-size: 14px;
	color: #333;
	font-weight: normal;
	margin: 0 0 .5em 0;
	padding: 2em 0 0 0;
}
.flowP {
	width: 100%;
	font-size: 16px;
	color: #333;
	font-weight: normal;
	margin: 0 0 4em 0;
	padding: 0;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.flowBox {
		width: 95%;
		margin: 0 5% 0 0;
	}
	.flow {
		padding: 0;
	}
}

@media all and (max-width: 767px) {
	.flowArea {
		margin: 3em 0 0 0;
	}
	.flowBox {
		width: 93%;
		margin: 0 7% 0 0;
		padding: 1.5em;
		box-sizing: border-box;
	}
	.flow {
		margin: 0;
		padding: 0;
	}
	.flowTime {
		width: 75px;
	}
	.flowTime {
		background-image:
			url("../images/02_flow_circle.png"),
			url("../images/02_flow_line.png");
		background-repeat:
			no-repeat,
			repeat-y;
		background-position:
			right 0 top 8px,
			right 6px top;
		background-size:
			13px 13px,
			1px 20px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.flowTime {
		background-image:
			url("../images/02_flow_circle@2x.png"),
			url("../images/02_flow_line@2x.png");
		background-repeat:
			no-repeat,
			repeat-y;
		background-position:
			right 0 top 8px,
			right 6px top;
		background-size:
			13px 13px,
			1px 20px;
		}
	}
	.flowText {
		flex: 1;
		margin: .2em 0 .5em 1em;
		padding: 0;
	}
	.flowText h5 {
		font-size: 16px;
		line-height: 1.4;
		color: #00af80;
		font-weight: bold;
		margin: 0;
		padding: 0;
	}
	.flowText h5 span {
		font-size: 16px;
		color: #333;
		font-weight: normal;
	}
	.flowText p {
		font-size: 16px;
		line-height: 1.4;
	}
	.flow h6 {
		width: 100%;
		font-size: 14px;
		color: #333;
		font-weight: normal;
		margin: 0 0 .5em 0;
		padding: 2em 0 0 0;
	}
	.flowP {
		width: 100%;
		font-size: 16px;
		color: #333;
		font-weight: normal;
		margin: 0 0 4em 0;
		padding: 0;
	}
}

/*--- activities ----------------------------------------------------------------- */

.activities {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 0 4em;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing: border-box;
}
.activitiesImg {
	width: 30%;
	margin: 0;
}
.activitiesImg img {
	max-width: 154px;
	width: 100%;
	height: auto;
}
.activitiesText {
	width: 70%;
	margin: 0;
}
.activitiesText h5 {
	margin: 0 0 1.5em 0;
	padding: 5px 15px;
	background-color: #fff;
	border-radius: 10px;
	display: inline-block;
}
.activitiesText p {
	margin: 2em 0;
	padding: 0;
}
.activitiesText p span {
	font-size: 16px;
}
.activitiesText02 {
	width: 100%;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.activities {
		padding: 0;
	}
}

@media all and (max-width: 767px) {
	.activities {
		padding: 0;
		align-items: center;
	}
	.activitiesImg {
		width: 100px;
		order: 2;
	}
	.activitiesImg img {
		max-width: 80px;
	}
	.activitiesText {
		width: 100%;
		margin: 0 0 1em 0;
	}
	.activitiesText p {
		margin: 1em 0;
	}
	.activitiesText p span {
		font-size: 14px;
	}
	.activitiesText02 {
		flex: 1;
		order: 3;
	}
}

/*--- private ----------------------------------------------------------------- */

.private {
	margin: 4em 0 0 0;
	padding: 0;
}
.private h4 {
	font-size: 30px;
	margin: 0 0 .5em 0;
	padding: 0;
}
.private h4 span {
	font-size: 18px;
	margin: 0 0 0 1em;
}

@media all and (max-width: 767px) {
	.private {
		margin: 2em 0 0 0;
	}
	.private h4 {
		font-size: 24px;
		margin: 0 0 .5em 0;
	}
	.private h4 span {
		font-size: 18px;
		margin: 0;
	}
}

/* --------------------------------------------
 *             03-priceArea
 * -------------------------------------------- */

.priceArea {
	width: 100%;
	margin: 0;
	padding: 0;
}
.priceBox {
	margin: 0;
	padding: 0;
}
.pricex2 {
	display: flex;
	gap: 100px;
}
.pricex2 .priceBox {
	width: 50%;
	margin: 0;
}
.priceTable {
	max-width: 550px;
	margin: 0 auto;
}
.priceTable table {
	margin: 0 auto;
}
.priceTable .table01 th {
	width: 30%;
}
.priceTable .table01 td {
	width: 70%;
}
.priceBox p {
	margin: 1em 0 3em 0;
}
.priceBox p.priceTileBtm {
	margin: 0 0 .5em 0;
}
.priceBox p.priceKome {
	margin: 1em 0 0 0;
}
.priceBox .subTitle02 h4 span {
	font-size: .7em;
}

@media all and (max-width: 767px) {
	.pricex2 {
		flex-wrap: wrap;
		gap: 0;
	}
	.pricex2 .priceBox {
		max-width: 100%;
		width: 100%;
	}
	.priceTable {
		width: 100%;
	}
	.priceTable table {
		width: 100%;
		margin: 0 auto;
	}
	.priceTable .table01 th {
		width: 35%;
	}
	.priceTable .table01 td {
		width: 65%;
	}
	.priceBox p {
		margin: 1em 0 3em 0;
	}
	.priceBox p.priceTileBtm {
		margin: 0 0 .5em 0;
	}
	.priceBox p.priceKome {
		margin: 1em 0 0 0;
	}
	.priceBox .subTitle02 h4 span {
		font-size: .7em;
	}
}

/* --------------------------------------------
 *             03-familyArea
 * -------------------------------------------- */

.familyArea {
	width: 100%;
	margin: 0;
	padding: 50px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
}
.listCheckx2 {
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}
.listCheckBox {
	width: 50%;
}

@media all and (max-width: 767px) {
	.familyArea {
		padding: 1em;
	}
	.listCheckx2 {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
	}
	.listCheckBox {
		width: 100%;
	}
}

/* --------------------------------------------
 *             03-priceBtmArea
 * -------------------------------------------- */

.priceBtmArea {
	width: 100%;
	margin: 2em 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.priceBtmImg {
	width: 30%;
	text-align: center;
	margin: 0 5%;
	padding: 0;
}
.priceBtmImg img {
	max-width: 320px;
	width: 100%;
	height: auto;
}
.priceBtmText {
	width: 60%;
	margin: 0;
	padding: 0;
}

@media all and (max-width: 767px) {
	.priceBtmArea {
		margin: 2em 0;
		flex-wrap: wrap;
	}
	.priceBtmImg {
		width: 100%;
		margin: 1em 0 0 0;
		order: 2;
	}
	.priceBtmImg img {
		max-width: 120px;
	}
	.priceBtmText {
		width: 100%;
		order: 1;
	}
}

/* --------------------------------------------
 *                  goArea
 * -------------------------------------------- */

.goArea {
	width: 100%;
	margin: 0;
	padding: 0;
}
.goArea {
	background-image:
		url("../images/go_free.png"),
		url("../images/go_bg.jpg");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left 10px top 10px,
		center center;
	background-size:
		570px 380px,
		cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.goArea {
	background-image:
		url("../images/go_free@2x.png"),
		url("../images/go_bg@2x.jpg");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left 10px top 10px,
		center center;
	background-size:
		570px 380px,
		cover;
	}
}
/*--- goTextBox ----------------------------------------------------------------- */
.goTextBox {
	width: 1000px;
	margin: 0 auto;
	padding: 100px 0 50px 0;
	display: flex;
	justify-content: space-between;
}
.goTitle {
	width: 40%;
	margin: 0;
	padding: 0;
}
.goTitle h3 {
	font-size: 54px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	text-align: center;
}
.goText {
	width: 60%;
	text-align: right;
	margin: 0;
	padding: 0;
}
.goText p.goTextBg {
	text-align: left;
	font-size: 20px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	margin: 0 0 .8em 0;
	padding: .3em .5em;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	width: fit-content;
}
.goText p {
	text-align: left;
}

/*--- goBtnBox ----------------------------------------------------------------- */
.goBtnBox {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 100px 0;
	display: flex;
	justify-content: center;
	gap: 50px;
}
.goLine ,
.goTel ,
.goMail {
	width: 300px;
	margin: 0;
	padding: 0;
}
.goLine img ,
.goTel img ,
.goMail img {
	max-width: 300px;
	width: 100%;
	height: auto;
}

@media all and (min-width: 768px) and (max-width: 1100px) {
	.goTextBox {
		width: 100%;
		padding: 100px 2em 50px 2em;
		box-sizing: border-box;
	}
	.goBtnBox {
		width: 100%;
		padding: 0 2em 100px 2em;
		box-sizing: border-box;
		gap: 20px;
	}
}

@media all and (max-width: 767px) {
	.goArea {
		padding: 2em 1.5em;
		box-sizing: border-box;
	}
	.goArea {
		background-image:
			url("../images/go_free.png"),
			url("../images/go_bg.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			left 10px top -80px,
			center center;
		background-size:
			350px auto,
			auto 100%;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.goArea {
		background-image:
			url("../images/go_free@2x.png"),
			url("../images/go_bg@2x.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			left 10px top -80px,
			center center;
		background-size:
			350px auto,
			auto 100%;
		}
	}
	.goTextBox {
		width: 100%;
		padding: 0 0 2em 0;
		flex-wrap: wrap;
	}
	.goTitle {
		width: 100%;
		margin: 0 0 1em 0;
		padding: 0;
	}
	.goTitle h3 {
		font-size: 34px;
	}
	.goText {
		width: 100%;
		text-align: left;
	}
	.goText p.goTextBg {
		text-align: left;
		font-size: 16px;
	}
	.goBtnBox {
		width: 100%;
		padding: 0;
		gap: 0;
		flex-wrap: wrap;
	}
	.goLine ,
	.goTel ,
	.goMail {
		width: 300px;
		margin: 0 0 1em 0;
	}
}

/* --------------------------------------------
 *             04-eventArea
 * -------------------------------------------- */

.eventArea {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.eventBox {
	width: 48%;
	max-width: 640px;
	min-height: 700px;
	margin: 0 1%;
	padding: 0;
}
.seasonTitle {
	margin: 0;
	padding: 0;
}
.seasonTitle img {
	max-width: 640px;
	width: 100%;
	height: auto;
}
.eventBox {
	background: url(../images/04_season_bg.png) no-repeat center top 40px;
	background-size: 100% auto;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.eventBox {
	background: url(../images/04_season_bg@2x.png) no-repeat center top 40px;
	background-size: 100% auto;
	}
}
.seasonText {
	margin: 0;
	padding: 30px 50px 0 70px;
}
.seasonText.spring h4 {
	color: #ff81b6;
	font-weight: bold;
}
.seasonText.summer h4 {
	color: #3eb438;
	font-weight: bold;
}
.seasonText.fall h4 {
	color: #ff8c3f;
	font-weight: bold;
}
.seasonText.winter h4 {
	color: #38adff;
	font-weight: bold;
}
.seasonText p {
	font-size: 16px;
	margin: 0 0 .4em 0;
}
.seasonCut {
	text-align: right;
	margin: 0;
	padding: 0 9px 0 0;
}
.seasonCut img {
	max-width: 133px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	.eventArea {
		margin: 1em 0;
	}
	.eventBox {
		width: 100%;
		min-height: initial;
		margin: 1em 0 0 0;
	}
	.seasonTitle img {
		max-width: 100%;
	}
	.eventBox {
		background: url(../images/04_season_bg.png) no-repeat center top 0;
		background-size: auto 550px;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.eventBox {
		background: url(../images/04_season_bg@2x.png) no-repeat center top 0;
		background-size: auto 550px;
		}
	}
	.seasonText {
		margin: 0;
		padding: 1.5em 1.5em 0 1.5em;
	}
	.seasonText p {
		font-size: 16px;
	}
	.seasonCut {
		text-align: right;
		margin: 0;
		padding: 0 9px 0 0;
	}
	.seasonCut img {
		max-width: 80px;
	}
}

/* --------------------------------------------
 *             05-stepArea
 * -------------------------------------------- */

.stepArea {
	margin: 0 1em;
	padding: 0;
}
.stepBox ul {
	width: 100%;
	font-size: 16px;
	margin: 0;
	padding: 4em 0 0 0;
	display: flex;
	justify-content: center;
}
.stepBox ul li.step {
	width: calc((100% - 1.5em) / 4);
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.stepBox ul li.step {
	position: relative;
	z-index: 1;
}
.stepBox ul li.arow {
	width: 46px;
	margin-left: -10px;
	margin-right: -10px;
	position: relative;
	z-index: 5;
}
.stepBox ul li .stepArow img {
	width: 46px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
.stepIn {
	flex: 1 1 auto;
	background: #fbf7f0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0 30px 30px 30px;
}
.stepNum {
	margin: -26px auto 0 auto;
	padding: 0;
}
.stepNum img {
	max-width: 82px;
	width: 100%;
	height: auto;
}
.stepImg {
	margin: 0 auto;
	padding: .5em 0;
}
.stepImg img {
	max-width: 140px;
	width: 100%;
	height: auto;
}
.stepTitle {
	text-align: center;
	min-height: 80px;
	margin: 0 auto;
	padding: .5em 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.stepTitle h4 {
	font-size: 26px;
	line-height: 1.2;
	margin: 0 auto;
	padding: 0;
}
.stepTitle h4 span {
	font-size: .7em;
	margin: 0 auto;
	padding: 0;
}
.stepText {
	margin: 0 auto;
	padding: 0;
}

@media all and (max-width: 767px) {
	.stepArea {
		margin: 0 1.5em;
	}
	.stepBox ul {
		width: 100%;
		font-size: 16px;
		margin: 0;
		padding: 3em 0 0 0;
		flex-wrap: wrap;
		
	}
	.stepBox ul li.step {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.stepBox ul li.step {
		position: relative;
	}
	.stepBox ul li.arow {
		width: 100%;
		height: 40px;
		margin-top: -10px;
		margin-bottom: -10px;
		position: relative;
	}
	.stepBox ul li .stepArow img {
		width: 20px;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.stepIn {
		flex: 1 1 auto;
		background: #fbf7f0;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		margin: 0;
		padding: 0 1em 1em 1em;
	}
	.stepNum {
		text-align: left;
		margin: -10px 0 0 10px;
	}
	.stepNum img {
		max-width: 40px;
	}
	.stepImg {
		margin: 0 auto;
		padding: 0 0 .5em 0;
	}
	.stepImg img {
		max-width: 100px;
	}
	.stepTitle {
		text-align: center;
		min-height: initial;
		margin: 0 auto;
		padding: .5em 0;
	}
	.stepTitle h4 {
		font-size: 24px;
	}
	.stepTitle h4 span {
		font-size: .7em;
	}
}

/* --------------------------------------------
 *             06-faqArea
 * -------------------------------------------- */

.faqArea {
	margin: 0;
	padding: 0;
}
.faq_q {
	margin: 0;
	padding: .5em 1em;
	background-color: #aeeedb;
	border-radius: 10px 10px 0 0;
	display: flex;
}
.faq_q p:first-child {
	width: 30px;
}
.faq_q p:last-child {
	flex: 1 0 0%;
}
.faq_a {
	margin: 0 0 1em 0;
	padding: .5em 1em;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	display: flex;
}
.faq_a p:first-child {
	width: 30px;
}
.faq_a p:last-child {
	flex: 1 0 0%;
}

/* --------------------------------------------
 *             07-greetingArea
 * -------------------------------------------- */

.greetingArea {
	margin: 0;
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
.greetingText {
	flex: 1 0 0%;
	margin: 0;
	padding: 0;
}
.greetingImg {
	width: 400px;
	margin: 0;
	padding: 0;
}
.greetingImg img {
	max-width: 400px;
	width: 100%;
	height: auto;
}

@media all and (max-width: 767px) {
	.greetingArea {
		justify-content: center;
		gap: 0;
		flex-wrap: wrap;
	}
	.greetingText {
		width: 100%;
		flex: auto;
		margin: .5em 0 0 0;
		padding: 0;
		order: 2;
	}
	.greetingImg {
		width: 100%;
		text-align: center;
		margin: 0 auto;
		order: 1;
	}
	.greetingImg img {
		max-width: 250px;
	}
}

/* --------------------------------------------
*              contactBox
* -------------------------------------------- */

.mailForm {
	margin: 2em auto;
}

/*--- table05 ----------------------------------------------------------------- */

.table05 {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	border-spacing: 4px;
}
.table05 th {
	width: 30%;
	padding: 5px 5px 5px 15px;
	vertical-align: middle;
	background-color: #aeeedb;
	border-radius: 10px;
}
.table05 td {
	width: 70%;
	text-align: left;
	padding: 5px 5px 5px 15px;
	vertical-align: middle;
	background-color: #fff;
	border-radius: 10px;
}
.contactBox {
	display: flex;
	justify-content: flex-start;
}
.contactTh {
	text-align: left;
	font-weight: normal;
}
.contactTh p {
	padding: 3px 0 0 0;
}
.contactPoint ,
.contactPointG {
	text-align: center;
	margin: 0 0 0 auto;
}
.contactPoint {
	color: #fff;
	background: #0dbc80;
	border-radius: 6px;
}
.contactPointG {
	background: #fff;
	border-radius: 6px;
}
.contactPoint p ,
.contactPointG p {
	font-size: 16px;
	line-height: 1;
	font-weight: normal;
	padding: .6em .2em 0 .2em;
}

@media screen and (max-width: 767px) {
.table05 {
	text-align: left;
	}
.table05 th {
	display: block;
	width: 100%;
	margin: 0 0 .4em 0;
	padding: 5px 0;
	}
.table05 td {
	display: block;
	width: 100%;
	margin: 0 0 1em 0;
	box-sizing: border-box;
	}
.contactTh p {
	font-size: 1em;
	padding: 5px 0 0 15px;
	}
.contactTh {
	order: 2;
	}
.contactPoint ,
.contactPointG {
	width: 50px;
	margin: 0 0 0 5px;
	order: 1;
	}
}

/* --------------------------------------------
*                  Form
* -------------------------------------------- */

input ,
textarea {
	font-size: 16px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	border: none;
}
input {
	outline: 0;
	border: none;
}
input.wl100 {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: .2em;
}
input.wl30 {
	width: 60%;
	box-sizing: border-box;
	margin: 0;
	padding: .2em;
}
textarea.textareawl {
	width: 100%;
	height: 6em;
	box-sizing: border-box;
	margin: 0;
	padding: .2em;
	}

::placeholder {
	color: #ccc;
}

/*--- input ----------------------------------------------------------------- */

input.submitMore[type=submit] {
	width: 350px;
	margin: 0;
	padding: 1.2em 0 1em 0;
	cursor: pointer;
	color: #fff;
	font-size: 1.1em;
	font-weight: bold;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	border: none;
	-webkit-appearance: button;
	*overflow: visible;
	background: #ffae00 url(../images/icon_more/icon_more_w.png) no-repeat right 15px center;
	background-size: 10px 18px;
	border-radius: 50px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (   min--moz-device-pixel-ratio: 2),
       only screen and (     -o-min-device-pixel-ratio: 2/1),
       only screen and (        min-device-pixel-ratio: 2),
       only screen and (                min-resolution: 192dpi),
       only screen and (                min-resolution: 2dppx) {
input.submitMore[type=submit] {
	background: #ffae00 url(../images/icon_more/icon_more_w@2x.png) no-repeat right 15px center;
	background-size: 10px 18px;
	border-radius: 50px;
	}
}

input.submitBack[type=button] {
	width: 350px;
	margin: 0;
	padding: 1.2em 0 1em 0;
	cursor: pointer;
	color: #fff;
	font-size: 1.1em;
	font-weight: bold;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	border: none;
	-webkit-appearance: button;
	*overflow: visible;
	background: #888 url(../images/icon_more/icon_back_w@2x.png) no-repeat left 15px center;
	background-size: 10px 18px;
	border-radius: 50px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (   min--moz-device-pixel-ratio: 2),
       only screen and (     -o-min-device-pixel-ratio: 2/1),
       only screen and (        min-device-pixel-ratio: 2),
       only screen and (                min-resolution: 192dpi),
       only screen and (                min-resolution: 2dppx) {
input.submitBack[type=button] {
	background: #888 url(../images/icon_more/icon_back_w@2x.png) no-repeat left 15px center;
	background-size: 10px 18px;
	border-radius: 50px;
	}
}

input.submitMore[type=submit] a ,
input.submitBack[type=button] a {
	display: block;
}

@media screen and (max-width: 767px) {
input.submitMore[type=submit] ,
input.submitBack[type=button] {
	margin: 0;
	padding: .8em 0 .7em 0;
	width: 100%;
	}
input ,
textarea ,
.cp_ipselect {
	font-size: 16px;
  }
}

/*--- radio ----------------------------------------------------------------- */

.radioBox {
	margin: 3px 0;
}
.radio02-input {
	display: none;
}
.radio02-input {
	display: none;
}
.radio02-input + label{
	padding: 0 0 0 30px;
	position: relative;
	margin: 0;
}
.radio02-input + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #baa385;
	border-radius: 50%;
}
.radio02-input:checked + label{
	color: #ff7200;

}
.radio02-input:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 7px;
	left: 3px;
	width: 11px;
	height: 11px;
	background: #ff7200;
	border-radius: 50%;
}

/*--- select ----------------------------------------------------------------- */

.cp_ipselect {
	overflow: hidden;
	margin: 0;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	border-radius: 4px;
	background: #fff;
	border: 1px solid #baa385;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 1.2em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #000;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 8px 38px 8px 1em;
	color: #000;
	font-size: 1em;
}

/*--- mail.php ----------------------------------------------------------------- */

p.error_messe {
	text-align: center;
	color: #c60000;
	margin: 0 0 10px 0;
}

/*--- フォーム下個人情報 ----------------------------------------------------------------- */

.privacy {
	border: 1px solid #eee;
	padding: 20px 20px 10px;
	box-sizing: border-box;
	height: 190px;
	overflow: auto;
	margin: 30px 0;
	background-color: #fff;
}
.privacy h4 {
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto .5em auto;
}
.privacy p {
	font-size: 14px;
	margin: 0 0 .5em 0;
}
.privacy h5 {
	font-family: "ten-mincho-text", serif;
	font-size: 18px;
	margin: 1em 0 .5em 0;
}
.privacy p.leftSp {
	margin: .5em 0 .5em 1em;
}

@media screen and (max-width: 767px) {
	.privacy {
		border: 1px solid #fff;
		padding: 10px;
		box-sizing: border-box;
		height: 150px;
		overflow: auto;
		margin-top: 0;
	}
	.privacy h4 {
		font-size: 18px;
	}
}

/* --------------------------------------------
 *            volunteerArea
 * -------------------------------------------- */

.volunteerArea {
	width: 100%;
	margin: 0;
	padding: 0;
}
.volunteerArea {
	background-image:
		url("../images/09_volunteer_img.png"),
		url("../images/09_volunteer_bg.jpg");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left 40px bottom,
		center center;
	background-size:
		360px 424px,
		cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (   min--moz-device-pixel-ratio: 2),
	only screen and (     -o-min-device-pixel-ratio: 2/1),
	only screen and (        min-device-pixel-ratio: 2),
	only screen and (                min-resolution: 192dpi),
	only screen and (                min-resolution: 2dppx) {
.volunteerArea {
	background-image:
		url("../images/09_volunteer_img@2x.png"),
		url("../images/09_volunteer_bg@2x.jpg");
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		left 40px bottom,
		center center;
	background-size:
		360px 424px,
		cover;
	}
}
/*--- volunteerBox ----------------------------------------------------------------- */
.volunteerBox {
	width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.volunteerTitle {
	width: 40%;
	margin: 0;
	padding: 0;
}
.volunteerTitle h3 {
	font-size: 70px;
	font-family: "ten-mincho-text", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	text-align: center;
}
.volunteerText {
	width: 60%;
	text-align: right;
	margin: 0;
	padding: 0;
}
.volunteerText p {
	text-align: left;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
	.volunteerBox {
		width: 100%;
		padding: 120px 2em;
		box-sizing: border-box;
	}
}

@media all and (max-width: 767px) {
	.volunteerArea {
		padding: 2em 1.5em;
		box-sizing: border-box;
	}
	.volunteerArea {
		background-image:
			url("../images/09_volunteer_img.png"),
			url("../images/09_volunteer_bg.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			right 10px bottom,
			center center;
		background-size:
			150px auto,
			auto 100%;
	}
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (   min--moz-device-pixel-ratio: 2),
		only screen and (     -o-min-device-pixel-ratio: 2/1),
		only screen and (        min-device-pixel-ratio: 2),
		only screen and (                min-resolution: 192dpi),
		only screen and (                min-resolution: 2dppx) {
	.volunteerArea {
		background-image:
			url("../images/09_volunteer_img@2x.png"),
			url("../images/09_volunteer_bg@2x.jpg");
		background-repeat:
			no-repeat,
			no-repeat;
		background-position:
			right 10px bottom,
			center center;
		background-size:
			150px auto,
			auto 100%;
		}
	}
	.volunteerBox {
		width: 100%;
		padding: 0 0 2em 0;
		flex-wrap: wrap;
	}
	.volunteerTitle {
		width: 100%;
		margin: 0 0 1em 0;
		padding: 0;
	}
	.volunteerTitle h3 {
		font-size: 34px;
	}
	.volunteerText {
		width: 100%;
		text-align: left;
	}
}

/* --------------------------------------------
 *                   table
 * -------------------------------------------- */

.table01 {
	margin: 0;
	padding: 0;
	border-spacing: 4px;
}
.table01 th {
	text-align: center;
	font-weight: normal;
	margin: 0;
	padding: 10px;
	vertical-align: middle;
	background-color: #aeeedb;
	border-radius: 10px;
}
.table01 td {
	text-align: left;
	margin: 0;
	padding: 10px;
	vertical-align: middle;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
}

/* --------------------------------------------
 *                  Footer
 * -------------------------------------------- */

footer {
	width: 100%;
	font-size: .9em;
	text-align: center;
	margin: 0;
	padding: 0;
}

/*--- footerArea ----------------------------------------------------------------- */

.footerArea {
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footerLeft ,
.footerRight {
	width: 50%;
	text-align: left;
}
.footerLeft img {
	max-width: 430px;
	width: 100%;
	height: auto;
}
.footerLeft p {
	margin: .5em 0 2em 0;
}
.snsArea {
	margin: 0;
	padding: 0;
}
.snsArea ul {
	display: flex;
}
.snsArea ul li {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.snsArea ul li img {
	max-width: 50px;
	width: 100%;
	height: auto;
}

/*--- speechBubble ----------------------------------------------------------------- */

.speechBubble {
	position: relative;
	display: inline-block;
	height: 60px;
	margin-left: 20px;
	padding: 8px 20px 0px 20px;
	border-radius: 9999px;
	background-color: #fff;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
}

.speechBubble::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	border-style: solid;
	border-width: 10px 20px 10px 0;
	border-color: transparent #fff transparent transparent;
	translate: -100% -50%;
}

.footerMap {
	width: 100%;
	position: relative;
	padding-top: 50%;
}
.footerMap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (max-width: 767px) {
	.footerArea {
		flex-wrap: wrap;
	}
	.footerLeft ,
	.footerRight {
		width: 100%;
		text-align: left;
	}
	.footerLeft img {
		max-width: 300px;
	}
	.footerLeft p {
		margin: .5em 0 1em 0;
	}
	.snsArea {
		margin: 1em 0;
		padding: 0;
	}
	.snsArea ul {
		justify-content: center;
	}
	.snsArea ul li {
		margin: 0;
		padding: 0;
	}
	.snsArea ul li img {
		max-width: 40px;
	}
	.speechBubble {
		margin-left: 14px;
		padding: 8px 5px 0px 10px;
	}
	.speechBubble::after {
		border-width: 6px 12px 6px 0;
	}
}

#footer {
	width: 100%;
	z-index: 20;
	position: relative;
}
.footerTop {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	/*max-height: 48px;*/
}
.footerTop.static {
	position: static;
}

.footerBox {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.footerLine {
	width: 33.333333%;
	padding: 0;
	background-color: #0dbc80;
}
.footerTel {
	width: 33.333333%;
	padding: 0;
	background-color: #00c6d2;
}
.footerMail {
	width: 33.333333%;
	padding: 0;
	background-color: #ffae00;
}
.footerLine img ,
.footerTel img ,
.footerMail img {
	width: 100%;
	height: auto;
}
.footerTel a:hover img ,
.footerTel a:hover ,
.footerFree a:hover img ,
.footerFree a:hover ,
.footerMail a:hover img ,
.footerMail a:hover{
	opacity: 1;
	filter: alpha(opacity=100);
}

.footerTel a ,
.footerFree a ,
.footerLine a {
	display: block;
}

@media all and (min-width: 768px) {
#footer {
	/*height: 40px;*/
	}
.footerTop {
	display: none;
	}
}

@media all and (max-width: 767px) {
#footer {
	min-height: 120px;
	}
.footerTop {
	display: block;
	}
}

/*--- footerCopy ----------------------------------------------------------------- */

.footerCopy {
	/*height: 40px;*/
	margin: 0;
	padding: .55em 0;
}
.footerCopy p {
	font-size: 0.8em;
	margin: 0;
	padding: 0;
}

@media all and (max-width: 767px) {
.footerCopy {
	padding: 0 .2em 2em .2em;
	}
}

/* --------------------------------------------
 *                pageTop
 * -------------------------------------------- */

#pageTop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 100;
}
.scroll-top {
	background-color: #333;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	color: #fff;
}
.scroll-top:hover {
	cursor: pointer;
}
#pageTop i {
	color: #fff;
}

@media only screen and (max-width: 767px) {
	#pageTop {
		display: block;
		right: 5px;
		bottom: 55px;
	}
	.scroll-top {
		width: 30px;
		height: 30px;
	}
}

/* --------------------------------------------
 *              thanks page
 * -------------------------------------------- */

.thanksArea {
	margin: 0;
	padding: 2em;
	background-color: #fff;
	border-radius: 10px;
}

