@charset "utf-8";

/* ----------------------------------------------------------------------------
	トップページ
	index.html
---------------------------------------------------------------------------- */
#content img,
#visual img{
	width:100%;
}

/*========= 背景動画設定のCSS ===============*/

#visual{
	position: relative;
	height: 100vh;
	text-align: center;
	color: #fff;
	background: url("../../grade1_2/img/youtube_bg.jpg") no-repeat;
	background-size: cover;
}

#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
}

#loading.disappear{
     display: none;   
}


/* youtube設定 */
#youtube-area{
    position: fixed;
    z-index: 1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
	opacity: 0;    
}

#youtube-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
#youtube video{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

#youtube-mask{
    position: absolute;
    z-index: 2;
    top:0;
    width:100%;
    height: 100%;
}

#copy_area {
	position: absolute;
    z-index: 3;
    top:0;
    width:100%;
    height: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
#copy_area h2{
	font-size: 2.500rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.8;
	color: #FFF;
	text-align: center;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
}
#copy_area #under_copy{
	width: 600px;
	position: absolute;
	bottom: 30px;
	right: 30px;
}

#scroll_icon{
	width: 80px;
	height: 80px;
	position: fixed;
	bottom: 35px;
	left: 5%;
	margin: 0 0 0 0;
	z-index: 300;
}
#scroll_icon p{
	font-size: 0.75rem;
	text-align: center;
	color: #FFF;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0%;
}
#scroll_icon #roll{
	width: 2px;
	height: 20px;
	background: rgba(255,255,255,1.00);
	position: absolute;
	top: 30px;
	left: 50%;
	margin: 0 0 0 -1px;
}
#scroll_icon #i_under{
	width: 20px;
	height: 20px;
	border: 1px solid;
	border-color:  transparent transparent #FFF #FFF;
	transform: rotate(-45deg);
	position: absolute;
	bottom: 15px;
	left: 50%;
	margin: 0 0 0 -10px;
	animation-name:scrollAnime;
	animation-duration:2s;
	animation-delay:.2s;
	animation-fill-mode:backwards;
	animation-timing-function:ease-out;
	animation-iteration-count: infinite;
}

@keyframes scrollAnime{
	0% {
		bottom: 15px;
		opacity: 0;
	}
	80% {
		bottom: 0px;
		opacity: 1;
	}
	100% {
		bottom: 0px;
		opacity: 0;
	}
}

@media only screen and (max-width: 999px) {
	#visual{
		width: 100%;
	}
	#copy_area h2{
		font-size: 3.7vw;
	}
}
@media only screen and (max-width: 768px) {
	#visual{
		width: 100%;
	}
	#copy_area h2{
		font-size: 4.5vw;
		font-weight: 700;
		padding: 0 0 0 0;
	}
	#copy_area #under_copy{
		width: calc(100% - 190px);
		bottom: 20px;
		right: 20px;
	}
}
@media only screen and (orientation: landscape) and (max-width: 768px) {
	#copy_area h2{
		padding: 0 0 1em 0;
	}
	#copy_area h2 br{
		display: none !important;
	}
	#copy_area #under_copy{
		width: 45%;
		bottom: 20px;
		right: 20px;
	}
}
@media only screen and (max-width: 480px) {
	#copy_area h2{
		font-size: 6vw;
		padding: 0 0 0 0;
	}
	#copy_area #under_copy{
		width: calc(100% - 120px);
		bottom: 10px;
		right: 10px;
	}
	
	#scroll_icon{
		width: 50px;
		height: 50px;

		bottom: 15px;
		left: 5%;
	}
	#scroll_icon p{
		font-size: 2.2vw;
	}
	#scroll_icon #roll{
		width: 2px;
		height: 10px;
		top: 20px;
		left: 50%;
		margin: 0 0 0 -1px;
	}
	#scroll_icon #i_under{
		width: 10px;
		height: 10px;
		bottom: 10px;
		left: 50%;
		margin: 0 0 0 -5px;
	}
}


.modaal-close {
    position: absolute;
    right: -20px;
    top: -20px;
}
@media only screen and (max-width: 768px) {
	.modaal-close {
		position: absolute;
		right: -20px;
		top: -20px;
	}
}

#content #btn_nav{
	background: #FFF;
	padding: 120px 0 0 0;
	position: relative;
}

#content #btn_nav ul{
	width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 0 100px 0;
}
#content #btn_nav ul li{
	width: 300px;
	display: block;
	border-left: #000 1px solid;
	box-sizing: border-box;
	letter-spacing: 0.05em;
	position: relative;
}
#content #btn_nav ul li:nth-child(2){
	border-right: #000 1px solid;
}
#content #btn_nav ul li a{
	width: 100%;
	display: block;
	font-size: 1.375rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.1;
	padding: 0 0 0.9em 0;
	color: #000;
}
#content #btn_nav ul li a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	display: block;
	background: url("../../grade1_2/img/arrow_d.png") center bottom/ auto 100% no-repeat;
	margin: 0 auto;
}

.modaal-container {
    background: none !important;
    box-shadow: none !important;
}

@media only screen and (max-width: 999px) {
	#content #btn_nav{
		padding: 100px 0 0 0;
	}

	#content #btn_nav ul{
		width: 600px;
		padding: 0 0 100px 0;
	}
	#content #btn_nav ul li{
		width: 50%;
	}
	#content #btn_nav ul li:nth-child(2){
		border-right: #000 1px solid;
	}
	#content #btn_nav ul li a{
		font-size: 1.250rem;
	}
	#content #btn_nav ul li a::after{
		content: "";
		height: 10px;
		background: url("../../grade1_2/img/arrow_d.png") center bottom/ auto 100% no-repeat;
	}
}
@media only screen and (max-width: 768px) {
	#content #btn_nav{
		padding: 80px 0 0 0;
	}

	#content #btn_nav ul{
		width: 80%;
		padding: 0 0 80px 0;
	}
	#content #btn_nav ul li{
		width: 50%;
	}
	#content #btn_nav ul li a{
		font-size: 1.125rem;
	}
	#content #btn_nav ul li a::after{
		content: "";
		height: 10px;
		background: url("../../grade1_2/img/arrow_d.png") center bottom/ auto 100% no-repeat;
	}
}
@media only screen and (max-width: 480px) {
	#content #btn_nav{
		padding: 60px 0 0 0;
	}

	#content #btn_nav ul{
		width: 80%;
		padding: 0 0 60px 0;
	}
	#content #btn_nav ul li{
		width: 50%;
	}
	#content #btn_nav ul li a{
		font-size: 1.000rem;
	}
}


#content #skill_area{
	padding: 0 0 0 0;
	position: relative;
}
#content #skill_area .in-box{
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-end;
}
#content #skill_area .copy_area{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 40px 0;
	order: 3;
	z-index: 0;
}
#content #skill_area .copy_area h3{
	width: 100%;
	display: block;
	font-size: 1.500rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.1;
	padding: 0 0 0.8em 0;
	color: #000;
}
#content #skill_area .copy_area h2{
	width: 430px;
	display: block;
	margin: 0 auto;
}

#content #skill_area .point_unit a{
	display: block;
}
#content #skill_area #point1{
	width: 276px;
	order: 1;
	padding: 0 50px 0 0;
}
#content #skill_area #point2{
	width: 342px;
	order: 2;
	padding: 0 0 0 50px;
}
#content #skill_area #point3{
	width: 259px;
	position: absolute;
	top: 380px;
	left: 0;
	z-index: 2;
}
#content #skill_area #point4{
	width: 246px;
	position: absolute;
	top: 400px;
	right: 0;
	z-index: 2;
}
#content #skill_area #point5{
	width: 246px;
	order: 5
}
@media only screen and (max-width: 999px) {
	#content #skill_area .copy_area{
		padding: 40px 0;
		order: 3;
	}
	#content #skill_area .copy_area h3{
		font-size: 1.412rem;
	}
	#content #skill_area .copy_area h2{
		width: 43%;
	}

	#content #skill_area #point1{
		width: 27.6%;
		order: 1;
		padding: 0 5% 0 0;
	}
	#content #skill_area #point2{
		width: 34.2%;
		order: 2;
		padding: 0 0 0 5%;
	}
	#content #skill_area #point3{
		width: 25.9%;
		top: 45%;
		left: 0;
	}
	#content #skill_area #point4{
		width: 24.6%;
		top: 47%;
		right: 0;
	}
	#content #skill_area #point5{
		width: 24.6%;
		order: 5
	}
}
@media only screen and (max-width: 768px) {
	#content #skill_area .in-box{
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		align-items: flex-end;
	}
	#content #skill_area .copy_area{
		padding: 0 0 40px;
		order: 1;
	}
	#content #skill_area .copy_area h3{
		font-size: 4.5vw;
		line-height: 1.4;
	}
	#content #skill_area .copy_area h2{
		width: 60%;
	}

	#content #skill_area #point1{
		width: calc(27.6% * 1.4);
		order: 2;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point2{
		width: calc(34.2% * 1.4);
		order: 3;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point3{
		width: calc(25.9% * 1.4);
		order: 4;
		position: relative;
		top: auto;
		left: auto;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point4{
		width: calc(24.6% * 1.4);
		order: 5;
		position: relative;
		top: auto;
		right: auto;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point5{
		width: calc(24.6% * 1.4);
		order: 6;
		padding: 0 3% 0 3%;
	}
}
@media only screen and (max-width: 480px) {
	#content #skill_area .copy_area{
		padding: 0 0 30px;
		order: 1;
	}
	#content #skill_area .copy_area h3{
		font-size: 4.5vw;
		line-height: 1.4;
	}
	#content #skill_area .copy_area h2{
		width: 86%;
	}

	#content #skill_area #point1{
		width: calc(27.6% * 1.4);
		order: 2;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point2{
		width: calc(34.2% * 1.4);
		order: 3;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point3{
		width: calc(25.9% * 1.4);
		order: 4;
		position: relative;
		top: auto;
		left: auto;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point4{
		width: calc(24.6% * 1.4);
		order: 5;
		position: relative;
		top: auto;
		right: auto;
		padding: 0 3% 20px 3%;
	}
	#content #skill_area #point5{
		width: calc(24.6% * 1.4);
		order: 6;
		padding: 0 3% 0 3%;
	}
}


#content h4.ttl_unit{
	width: 100%;
	height: 43px;
	padding: 0 0 60px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#content h4.ttl_unit img{
	width: auto;
	height: 100%;
	position: relative;
	text-align: center;
}
@media only screen and (max-width: 999px) {
	#content h4.ttl_unit{
		width: 100%;
		height: 40px;
		padding: 0 0 50px 0;
	}
}
@media only screen and (max-width: 768px) {
	#content h4.ttl_unit{
		width: 100%;
		height: 35px;
		padding: 0 0 40px 0;
	}
}
@media only screen and (max-width: 480px) {
	#content h4.ttl_unit{
		height: 26px;
		padding: 0 0 30px 0;
	}
}


#content #health{
	width: 100%;
	padding: 0 0 120px 0;
	margin: 0 0 0 0;
	position: relative;
}
#content #health .top_area{
	width: 100%;
	background: url("../../grade1_2/img/h_top_bg.png")center top/100% no-repeat;
	position: relative;
}
#content #health .top_area .in-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
#content #health .top_area .in-box .copy{
	width: 600px;
	padding: 18% 0 6%;
}
#content #health .top_area .in-box .copy h2{
	font-size: 2.5rem;
	line-height: 1.3;
	letter-spacing: 0.2em;
	font-weight: 500;
	text-align: left;
	color: #FFF;
	padding: 0 0 0.5em 0;
	display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
}
#content #health .top_area .in-box .copy h2 sup{
	font-size: 0.3em;
	letter-spacing: 0.06em;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}
#content #health .top_area .in-box .copy p{
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 2.0;
	overflow-wrap: break-word;
	padding: 0 0 3% 0;
	color: rgba(19,19,19,1.00);
}

#content #health .top_area .in-box .graph{
	width: 300px;
	margin: 0 0px 0 0;
	padding: 0 0 5% 0;
	mix-blend-mode: multiply;
}


#content #health .image{
	width: 100%;
	position: relative;
	margin: -13.5% 0 0 0;
	z-index: 3;
}
#content #health .image .in-box{
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: -325px auto 0 auto;
}
#content #health .image .ttl_area{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	padding: 0 0 40px 0;
}
#content #health .image .ttl_area .enGraph{
	width: 469px;
	position: relative;
}
#content #health .image .ttl_area .enGraph img:first-child{
	width: 100%;
	opacity: 0.9;
	position: relative;
	margin: auto;
	display: block;
}
#content #health .image .ttl_area .enGraph img:nth-child(2){
	position: absolute;
	top: 0;
	left: 0;
}
#content #health .image .ttl_area .ttl{
	width: 260px;
}

#content #health #under{
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #eeeeee url("../../grade1_2/img/point_top_bg.png") bottom center/100% auto no-repeat;
	z-index: 1;
	padding: 360px 0 100px 0;
	margin: -300px 0 0 0;
}
#content #health #under p{
	font-size: 1.125rem;
	line-height: 1.4;
	padding: 0 0 1.5em 0;
}
#content #health #under dl.course_list{
	width: 100%;
	padding: 0 0 60px 0;
	box-sizing: border-box;
}
#content #health #under dl.course_list dt{
	width: 100%;
	font-size: 1.412rem;
	font-weight: 600;
	padding: 0 0 0.3em 1em;
	position: relative;
	box-sizing: border-box;
}
#content #health #under dl.course_list dt::before{
	content: "◉";
	font-size: 1.412rem;
	font-weight: 600;
	position: absolute;
	top: 0.1em;
	left: 0;
}
#content #health #under dl.course_list dt.helth::before{
	color: #44acff;
}
#content #health #under dl.course_list dt.design::before{
	color: #f98ed6;
}
#content #health #under dl.course_list dd{
	width: 100%;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 0 0 1.4em 1.2em;
	position: relative;
	box-sizing: border-box;
}
#content #health #under .jinzai{
	width: 100%;
	padding: 0 0 100px 0;
}


#content #health #tokutyou{
	width: 100%;
	padding: 0 0 100px 0;
}
#content #health #tokutyou .unit{
	width: 100%;
	padding: 0 0 60px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#content #health #tokutyou .unit .copy_unit{
	width: 100%;
	padding: 0 0 20px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}
#content #health #tokutyou .unit .copy_unit i{
	width: auto;
	height: 70px;
	display: block;
}
#content #health #tokutyou .unit .copy_unit i img{
	width: auto;
	height: 100%;
	display: block;
}
#content #health #tokutyou .unit .copy_unit h3{
	font-size: 2.500rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	padding: 0 0 0 30px;
}
#content #health #tokutyou .unit.sec .copy_unit h3{
	font-size: 2.000rem;
}
#content #health #tokutyou .unit p{
	width: 34%;
	font-size: 1.250rem;
}
#content #health #tokutyou .unit figure{
	width: 64%;
}
#content #health #tokutyou .unit.sec p{
	width: 45%;
}
#content #health #tokutyou .unit.sec figure{
	width: 54%;
}


#content #health #curriculum{
	width: 100%;
	padding: 0 0 100px 0;
}


#content #health #license{
	width: 100%;
	padding: 0 0 0 0;
}
#content #health #license h4{
	padding: 0 0 0 0;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
#content #health #license ul{
	width: 100%;
	padding: 0 0 0 0;
	margin: -20px 0 0 0;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#content #health #license ul li{
	width: 49.5%;
	padding: 1.5em 1em;
	margin: 0 0 10px 0;
	position: relative;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	border: #26d2b4 1px solid;
	border-radius: 10px;
	box-sizing: border-box;
}
@media only screen and (min-width: 1800px) {
	#content #health .top_area .in-box{
		width: 60%;
	}
	#content #health .top_area .in-box .copy{
		width: 72%;
		padding: 21% 0% 12% 0;
		box-sizing: border-box;
	}
	#content #health .top_area .in-box .copy h2{
		font-size: 2.875rem;
	}
	#content #health .top_area .in-box .copy p{
		font-size: 1.250rem;
	}

	#content #health .top_area .in-box .graph{
		width: 28%;
		margin: 0 0% 0 0;
		padding: 0 0 5% 0;
	}
	
	#content #health .image{
		margin: -15% 0 0 0;
	}
	
}
@media only screen and (max-width: 999px) {
	#content #health{
		padding: 0 0 100px 0;
		margin: 100px 0 0 0;
	}
	#content #health .top_area{
		background: url("../../grade1_2/img/h_top_bg.png")center top/100% no-repeat;
		position: relative;
	}
	#content #health .top_area .in-box{
	}
	#content #health .top_area .in-box .copy{
		width: 62%;
		padding: 17% 2% 11% 0;
		box-sizing: border-box;
	}
	#content #health .top_area .in-box .copy h2{
		font-size: 2.250rem;
	}
	#content #health .top_area .in-box .copy p{
		font-size: 1.000rem;
	}

	#content #health .top_area .in-box .graph{
		width: 30%;
		margin: 0 1% 0 0;
		padding: 0 0 12% 0;
	}


	#content #health .image{
		margin: -18% 0 0 0;
	}
	#content #health .image .in-box{
		margin: -31% auto 0 auto;
	}
	#content #health .image .ttl_area{
		padding: 0 0 40px 0;
	}
	#content #health .image .ttl_area .enGraph{
		width: 42%;
	}
	#content #health .image .ttl_area .ttl{
		width: 26%;
	}

	#content #health #under{
		padding: 360px 0 100px 0;
		margin: -300px 0 0 0;
	}
	#content #health #under p{
		font-size: 1.000rem;
	}
	#content #health #under dl.course_list{
		padding: 0 0 50px 0;
	}
	#content #health #under dl.course_list dt{
		font-size: 1.375rem;
	}
	#content #health #under dl.course_list dt::before{
		content: "◉";
		font-size: 1.375rem;
	}
	#content #health #under dl.course_list dd{
		font-size: 1.000rem;
	}
	#content #health #under .jinzai{
		padding: 0 0 90px 0;
	}


	#content #health #tokutyou{
		padding: 0 0 90px 0;
	}
	#content #health #tokutyou .unit{
		padding: 0 0 50px 0;
	}
	#content #health #tokutyou .unit .copy_unit{
		width: 100%;
		padding: 0 0 20px 0;
	}
	#content #health #tokutyou .unit .copy_unit i{
		width: auto;
		height: 70px;
	}
	#content #health #tokutyou .unit .copy_unit h3{
		font-size: 4.5vw;
		padding: 0 0 0 30px;
	}
	#content #health #tokutyou .unit.sec .copy_unit h3{
		font-size: 2.8vw;
	}
	#content #health #tokutyou .unit p{
		width: 34%;
		font-size: 1.125rem;
	}
	#content #health #tokutyou .unit figure{
		width: 64%;
	}
	#content #health #tokutyou .unit.sec p{
		width: 45%;
	}
	#content #health #tokutyou .unit.sec figure{
		width: 54%;
	}


	#content #health #curriculum{
		padding: 0 0 90px 0;
	}


	#content #health #license{
		padding: 0 0 0 0;
	}
	#content #health #license h4{
		z-index: 3;
	}
	#content #health #license ul{
		margin: -20px 0 0 0;
	}
	#content #health #license ul li{
		width: 49.5%;
		padding: 1.5em 1em;
		font-size: 1.000rem;
		border-radius: 10px;
		box-sizing: border-box;
	}
	
}
@media only screen and (max-width: 768px) {
	#content #health{
		padding: 0 0 80px 0;
		margin: 80px 0 0 0;
	}
	#content #health .top_area{
		background: url("../../grade1_2/img/h_top_bg_sp.png")center top/100% 100% no-repeat;
	}
	#content #health .top_area .in-box{
		padding: 0 0 6% 0;
	}
	#content #health .top_area .in-box .copy{
		width: 100%;
		padding: 20% 2% 5% 2%;
		box-sizing: border-box;
		text-align: center;
		margin: 0 auto;
	}
	#content #health .top_area .in-box .copy h2{
		font-size: 1.750rem;
		text-align: center;
		margin: 0 auto;
		justify-content: center;
	}
	#content #health .top_area .in-box .copy p{
		font-size: 0.938rem;
	}

	#content #health .top_area .in-box .graph{
		width: 40%;
		margin: 0 auto 0 auto;
		padding: 0 0 3% 0;
		mix-blend-mode: normal;
	}


	#content #health .image{
		margin: -15% 0 0 0;
	}
	#content #health .image .in-box{
		margin: -31% auto 0 auto;
	}
	#content #health .image .ttl_area{
		padding: 0 0 40px 0;
	}
	#content #health .image .ttl_area .enGraph{
		width: 55%;
	}
	#content #health .image .ttl_area .ttl{
		width: 35%;
	}
	
	#content #health #under{
		padding: 330px 0 70px 0;
        margin: -270px 0 0 0;
	}
	#content #health #under p{
		font-size: 1.000rem;
	}
	#content #health #under dl.course_list{
		padding: 0 0 40px 0;
	}
	#content #health #under dl.course_list dt{
		font-size: 1.125rem;
	}
	#content #health #under dl.course_list dt::before{
		content: "◉";
		font-size: 1.125rem;
	}
	#content #health #under dl.course_list dd{
		font-size: 0.938rem;
	}
	#content #health #under .jinzai{
		padding: 0 0 70px 0;
	}


	#content #health #tokutyou{
		padding: 0 0 70px 0;
	}
	#content #health #tokutyou .unit{
		padding: 0 0 40px 0;
	}
	#content #health #tokutyou .unit .copy_unit{
		width: 100%;
		padding: 0 0 20px 0;
		align-items: flex-start;
	}
	#content #health #tokutyou .unit .copy_unit i{
		width: auto;
		height: 55px;
	}
	#content #health #tokutyou .unit .copy_unit h3{
		width: calc(100% - 60px);
		font-size: 1.625rem;
		line-height: 1.3;
		padding: 0 0 0 25px;
	}
	#content #health #tokutyou .unit.sec .copy_unit h3{
		font-size: 1.625rem;
	}
	#content #health #tokutyou .unit p{
		width: 100%;
		font-size: 1.000rem;
		padding: 0 0 30px 0;
	}
	#content #health #tokutyou .unit figure{
		width: 100%;
	}
	#content #health #tokutyou .unit.sec p{
		width: 100%;
	}
	#content #health #tokutyou .unit.sec figure{
		width: 100%;
	}


	#content #health #curriculum{
		padding: 0 0 90px 0;
	}
	#content #health #curriculum figure{
		width: 100%;
		height: 600px;
		overflow-x: auto;
        overflow-y: hidden;
        cursor: grabbing;
        white-space: nowrap;
	}
	#content #health #curriculum figure img{
		width: auto;
		height: 100%;
	}


	#content #health #license{
		padding: 0 0 0 0;
	}
	#content #health #license h4{
		z-index: 3;
		padding: 0 0 30px 0;
	}
	#content #health #license ul{
		margin: 0px 0 0 0;
	}
	#content #health #license ul li{
		width: 100%;
		padding: 1.5em 1em;
		margin: 0 0 5px 0;
		font-size: 0.938rem;
		border-radius: 10px;
	}
	
}
@media only screen and (max-width: 480px) {
	#content #health{
		padding: 0 0 60px 0;
		margin: 30px 0 0 0;
	}
	#content #health .top_area{
	}
	#content #health .top_area .in-box{
	}
	#content #health .top_area .in-box .copy{
		width: 100%;
		box-sizing: border-box;
		padding: 25% 2% 5% 2%;
	}
	#content #health .top_area .in-box .copy h2{
		font-size: 1.375rem;
	}
	#content #health .top_area .in-box .copy p{
		font-size: 0.875rem;
		letter-spacing: 0.15em;
	}

	#content #health .top_area .in-box .graph{
		width: 50%;
		padding: 0 0 5% 0;
	}


	#content #health .image{
		margin: -18% 0 0 0;
	}
	#content #health .image .in-box{
		margin: -31% auto 0 auto;
	}
	#content #health .image .ttl_area{
		padding: 0 0 30px 0;
	}
	#content #health .image .ttl_area .enGraph{
		width: 55%;
	}
	#content #health .image .ttl_area .ttl{
		width: 35%;
	}

	
	#content #health #under{
		padding: 150px 0 70px 0;
        margin: -140px 0 0 0;
	}
	#content #health #under p{
		font-size: 1.000rem;
	}
	#content #health #under dl.course_list{
		padding: 0 0 40px 0;
	}
	#content #health #under dl.course_list dt{
		font-size: 1.125rem;
	}
	#content #health #under dl.course_list dt::before{
		content: "◉";
		font-size: 1.125rem;
	}
	#content #health #under dl.course_list dd{
		font-size: 0.938rem;
	}
	#content #health #under .jinzai{
		padding: 0 0 70px 0;
	}


	#content #health #tokutyou{
	}
	#content #health #tokutyou .unit{
		padding: 0 0 40px 0;
	}
	#content #health #tokutyou .unit .copy_unit{
		width: 100%;
		padding: 0 0 20px 0;
		align-items: flex-start;
	}
	#content #health #tokutyou .unit .copy_unit i{
		width: auto;
		height: 45px;
	}
	#content #health #tokutyou .unit .copy_unit h3{
		width: calc(100% - 50px);
		font-size: 1.250rem;
		padding: 0 0 0 20px;
	}
	#content #health #tokutyou .unit.sec .copy_unit h3{
		font-size: 1.250rem;
	}
	#content #health #tokutyou .unit p{
		font-size: 0.938rem;
		padding: 0 0 30px 0;
	}


	#content #health #curriculum{
		padding: 0 0 60px 0;
	}
	#content #health #curriculum figure{
		height: 450px;
	}

	#content #health #license{
		padding: 0 0 0 0;
	}
	#content #health #license h4{
		z-index: 3;
		padding: 0 0 30px 0;
	}
	#content #health #license ul{
		margin: 0px 0 0 0;
	}
	#content #health #license ul li{
		width: 100%;
		padding: 1.5em 1em;
		margin: 0 0 5px 0;
		font-size: 0.875rem;
		border-radius: 10px;
	}
}




#content #course {
	width: 100%;
	padding: 120px 0 120px 0;
	margin: 0 0 0 0;
	position: relative;
}

#content #course #course_two{
	width: 100%;
	padding: 0 0 100px 0;
	margin: 0 0 0 0;
	position: relative;
}
#content #course #course_two .in-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#content #course #course_two .c_box{
	width: 50%;
	padding: 70px 0 60px;
	margin: -85px 0 0 0;
}
#content #course #course_two .c_box.c1{
	background: url("../../grade1_2/img/course_se_img1_bg.png") top center/cover no-repeat;
}
#content #course #course_two .c_box.c2{
	background: url("../../grade1_2/img/course_se_img2_bg.png") top center/cover no-repeat;
}
#content #course #course_two .c_box .txt_area{
	width: 100%;
	padding: 50px 50px 0 50px;
	box-sizing: border-box;
}
#content #course #course_two .c_box .txt_area h5{
	width: 100%;
	font-size: 1.813rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 0 0 0.4em 0;
	text-align: left;
	color: #FFF;
}
#content #course #course_two .c_box .txt_area p{
	width: 100%;
	font-size: 1.000rem;
	text-align: left;
	color: #FFF;
}

#content #course #shinro{
	width: 100%;
	padding: 0 0 100px 0;
	margin: 0 0 0 0;
	position: relative;
}
#content #course #shinro .in-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#content #course #shinro .c_box{
	width: 50%;
	padding: 70px 50px 30px;
	margin: -85px 0 0 0;
	box-sizing: border-box;
}
#content #course #shinro .c_box.c1{
	background: url("../../grade1_2/img/course_se_img1_bg2.png") top center/cover no-repeat;
}
#content #course #shinro .c_box.c2{
	background: url("../../grade1_2/img/course_se_img2_bg2.png") top center/cover no-repeat;
}
#content #course #shinro .c_box h5{
	width: 100%;
	font-size: 1.813rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 0 0 1.0em 0;
	text-align: left;
}
#content #course #shinro .c_box h6{
	width: 100%;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 0 0 0.4em 0;
	text-align: left;
}
#content #course #shinro .c_box p{
	width: 100%;
	font-size: 0.938rem;
	line-height: 1.6;
	text-align: left;
	padding: 0 0 1.5em 0;
}
#content #course #shinro .c_box blockquote{
	width: 100%;
	padding: 1.4em;
	margin: 0 0 2em 0;
	border: #333 1px solid;
	font-size: 0.813rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: left;
	box-sizing: border-box;
	background: #FFF;
	position: relative;
	z-index: 1;
}
#content #course #shinro .c_box blockquote::after{
	content: "具体的には…";
	font-size: 0.750rem;
	padding: 0 1em;
	position: absolute;
	top: -0.6em;
	left: 1.5em;
	z-index: 3;
}
#content #course #shinro .c_box blockquote::before{
	content: "";
	font-size: 0.750rem;
	width: 8em;
	height: 0.5em;
	background: #FFF;
	position: absolute;
	top: -0.1em;
	left: 1.5em;
	z-index: 2;
}
#content #course #shinro .c_box.c1 h5{
	color: #44acff;
}
#content #course #shinro .c_box.c1 h6{
	color: #44acff;
}
#content #course #shinro .c_box.c1 blockquote{
	border: #44acff 1px solid;
}
#content #course #shinro .c_box.c1 blockquote::after{
	color: #44acff;
}

#content #course #shinro .c_box.c2 h5{
	color: #f98ed6;
}
#content #course #shinro .c_box.c2 h6{
	color: #f98ed6;
}
#content #course #shinro .c_box.c2 blockquote{
	border: #f98ed6 1px solid;
}
#content #course #shinro .c_box.c2 blockquote::after{
	color: #f98ed6;
}


#content #course #teacher{
	width: 100%;
	padding: 160px 0 160px 0;
	margin: 0 0 0 0;
	position: relative;
	background: #f4f4f4;
}
#content #course #teacher h4.ttl_unit{
	position: absolute;
	top: -15px;
	left: 0%;
}
#content #course #teacher .in-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#content #course #teacher .box{
	width: 46.5%;
	margin: 0 0 0 0;
	position: relative;
}
#content #course #teacher .box h5{
	width: 100%;
	text-align: left;
	margin: 0 0 0 0;
	position: relative;
	font-size: 1.625rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding: 0 0 0.8em 0;
}
#content #course #teacher .box figure{
	width: 100%;
	padding: 0 0 30px 0;
}
#content #course #teacher .box p{
	width: 100%;
	text-align: left;
	margin: 0 0 0 0;
	position: relative;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.8;
	padding: 0 0 1.5em 0;
}
#content #course #teacher .box .teacher_info{
	width: 100%;
	margin: 0 0 0 0;
	position: relative;
	border-top: #26d2b4 2px solid;
	border-bottom: #26d2b4 2px solid;
}
#content #course #teacher .box .teacher_info .prof_area{
	width: 100%;
	margin: 0 0 0 0;
	position: relative;
	border-bottom: #26d2b4 2px solid;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
#content #course #teacher .box .teacher_info .prof_area figure{
	width: 140px;
	padding: 0 0 0 0;
	line-height: 0;
}
#content #course #teacher .box .teacher_info .prof_area .txt_area{
	width: calc(100% - 140px);
	padding: 10px 0 10px 30px;
	box-sizing: border-box;
}
#content #course #teacher .box .teacher_info .prof_area .txt_area h6{
	width: 100%;
	font-size: 1.813rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	padding: 0 0 0.3em 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}
#content #course #teacher .box .teacher_info .prof_area .txt_area h6 span{
	font-size: 0.555em;
	font-weight: 600;
	padding: 0 0 0 0.5em;
}
#content #course #teacher .box .teacher_info .prof_area .txt_area p{
	width: 100%;
	font-size: 0.750rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.6;
	padding: 0 0 0 0;
}
#content #course #teacher .box .teacher_info .field{
	width: 100%;
	font-size: 1.000rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-align: center;
	padding: 0.86em 0;
}
@media only screen and (max-width: 999px) {
	#content #course {
		padding: 120px 0 90px 0;
	}

	#content #course #course_two{
		padding: 0 0 80px 0;
	}
	#content #course #course_two .c_box{
		width: 50%;
		padding: 60px 0 50px;
		margin: -75px 0 0 0;
	}
	#content #course #course_two .c_box.c1{
		background: url("../../grade1_2/img/course_se_img1_bg.png") top center/cover no-repeat;
	}
	#content #course #course_two .c_box.c2{
		background: url("../../grade1_2/img/course_se_img2_bg.png") top center/cover no-repeat;
	}
	#content #course #course_two .c_box .txt_area{
		padding: 40px 40px 0 40px;
	}
	#content #course #course_two .c_box .txt_area h5{
		font-size: 1.725rem;
	}
	#content #course #course_two .c_box .txt_area p{
		font-size: 0.938rem;
	}

	#content #course #shinro{
		padding: 0 0 80px 0;
	}
	#content #course #shinro .c_box{
		width: 50%;
		padding: 60px 40px 20px;
		margin: -75px 0 0 0;
		box-sizing: border-box;
	}
	#content #course #shinro .c_box h5{
		font-size: 1.725rem;
	}
	#content #course #shinro .c_box h6{
		font-size: 1.000rem;
	}
	#content #course #shinro .c_box p{
		font-size: 0.875rem;
	}
	#content #course #shinro .c_box blockquote{
		padding: 1.4em;
		font-size: 0.750rem;
	}
	#content #course #shinro .c_box blockquote::after{
		font-size: 0.688rem;
	}
	#content #course #shinro .c_box blockquote::before{
		content: "";
		font-size: 0.688rem;
	}


	#content #course #teacher{
		padding: 140px 0 140px 0;
	}
	#content #course #teacher h4.ttl_unit{
		position: absolute;
		top: -15px;
		left: 0%;
	}

	#content #course #teacher .box{
		width: 46.5%;
	}
	#content #course #teacher .box h5{
		font-size: 1.500rem;
	}
	#content #course #teacher .box figure{
		padding: 0 0 30px 0;
	}
	#content #course #teacher .box p{
		font-size: 1.000rem;
	}
	#content #course #teacher .box .teacher_info{
	}
	#content #course #teacher .box .teacher_info .prof_area{
	}
	#content #course #teacher .box .teacher_info .prof_area figure{
		width: 140px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area{
		width: calc(100% - 140px);
		padding: 10px 0 10px 30px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area h6{
		font-size: 1.725rem;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area p{
		font-size: 0.688rem;
	}
	#content #course #teacher .box .teacher_info .field{
		font-size: 0.938rem;
	}
}
@media only screen and (max-width: 768px) {
	#content #course {
		padding: 90px 0 70px 0;
	}

	#content #course #course_two{
		padding: 0 0 60px 0;
	}
	#content #course #course_two .c_box{
		width: 100%;
		padding: 40px 0 40px;
		margin: 0 0 0 0;
	}

	#content #course #course_two .c_box .txt_area{
		padding: 30px 30px 0 30px;
	}
	#content #course #course_two .c_box .txt_area h5{
		font-size: 1.5000rem;
	}
	#content #course #course_two .c_box .txt_area p{
		font-size: 0.938rem;
	}

	#content #course #shinro{
		padding: 0 0 60px 0;
	}
	#content #course #shinro .c_box{
		width: 100%;
		padding: 40px 40px 40px;
		margin: 0 0 0 0;
		box-sizing: border-box;
	}
	#content #course #shinro .c_box h5{
		font-size: 1.5000rem;
	}
	#content #course #shinro .c_box h6{
		font-size: 1.000rem;
	}
	#content #course #shinro .c_box p{
		font-size: 0.875rem;
	}
	#content #course #shinro .c_box blockquote{
		padding: 1.1em;
		font-size: 0.750rem;
	}
	#content #course #shinro .c_box blockquote::after{
		font-size: 0.688rem;
	}
	#content #course #shinro .c_box blockquote::before{
		content: "";
		font-size: 0.688rem;
	}


	#content #course #teacher{
		padding: 100px 0 100px 0;
	}
	#content #course #teacher h4.ttl_unit{
		position: absolute;
		top: -15px;
		left: 0%;
	}

	#content #course #teacher .box{
		width: 100%;
		padding: 0 0 60px 0;
	}
	#content #course #teacher .box h5{
		font-size: 1.375rem;
	}
	#content #course #teacher .box figure{
		padding: 0 0 30px 0;
	}
	#content #course #teacher .box p{
		font-size: 0.938rem;
	}
	#content #course #teacher .box .teacher_info{
	}
	#content #course #teacher .box .teacher_info .prof_area{
	}
	#content #course #teacher .box .teacher_info .prof_area figure{
		width: 140px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area{
		width: calc(100% - 140px);
		padding: 10px 0 10px 30px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area h6{
		font-size: 1.500rem;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area p{
		font-size: 0.688rem;
	}
	#content #course #teacher .box .teacher_info .field{
		font-size: 0.938rem;
	}
}
@media only screen and (max-width: 480px) {
	#content #course {
		padding: 90px 0 70px 0;
	}

	#content #course #course_two{
		padding: 0 0 40px 0;
	}
	#content #course #course_two .c_box{
		padding: 25px 0 25px;
		margin: 0 0 0 0;
	}

	#content #course #course_two .c_box .txt_area{
		padding: 25px 25px 0 25px;
	}
	#content #course #course_two .c_box .txt_area h5{
		font-size: 1.375rem;
	}
	#content #course #course_two .c_box .txt_area p{
		font-size: 0.938rem;
	}

	#content #course #shinro{
		padding: 0 0 60px 0;
	}
	#content #course #shinro .c_box{
		padding: 25px 25px 25px;
	}
	#content #course #shinro .c_box h5{
		font-size: 1.375rem;
	}
	#content #course #shinro .c_box h6{
		font-size: 0.938rem;
	}
	#content #course #shinro .c_box p{
		font-size: 0.813rem;
	}
	#content #course #shinro .c_box blockquote{
		padding: 1.1em;
		font-size: 0.688rem;
	}
	#content #course #shinro .c_box blockquote::after{
		font-size: 0.625rem;
	}
	#content #course #shinro .c_box blockquote::before{
		content: "";
		font-size: 0.625rem;
	}


	#content #course #teacher{
		padding: 80px 0 80px 0;
	}
	#content #course #teacher h4.ttl_unit{
		position: absolute;
		top: -15px;
		left: 0%;
	}

	#content #course #teacher .box{
		width: 100%;
		padding: 0 0 50px 0;
	}
	#content #course #teacher .box h5{
		font-size: 1.250rem;
	}
	#content #course #teacher .box figure{
		padding: 0 0 30px 0;
	}
	#content #course #teacher .box p{
		font-size: 0.875rem;
	}
	#content #course #teacher .box .teacher_info{
	}
	#content #course #teacher .box .teacher_info .prof_area{
	}
	#content #course #teacher .box .teacher_info .prof_area figure{
		width: 120px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area{
		width: calc(100% - 120px);
		padding: 10px 0 10px 20px;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area h6{
		font-size: 1.375rem;
	}
	#content #course #teacher .box .teacher_info .prof_area .txt_area p{
		font-size: 0.625rem;
	}
	#content #course #teacher .box .teacher_info .field{
		font-size: 0.875rem;
	}
}




#content #environment{
	width: 100%;
	padding: 0 0 120px 0;
	margin: 0 auto 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#content #environment h4.ttl_unit{
	padding: 0 0 30px 0;
}
#content #environment figure.img{
	width: 588px;
	display: block;
	position: absolute;
	bottom: 0;
	right: -240px;
}
#content #environment .txt_area{
	box-sizing: border-box;
	margin: 0 auto;
	padding: 60px 0;
}
#content #environment .txt_area h3{
	width: 584px;
	box-sizing: border-box;
	padding: 0 0 30px 0;
}
#content #environment .txt_area h6{
	width: 584px;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.6;
	text-align: left;
}
@media only screen and (max-width: 1480px) {
	#content #environment{
		padding: 0 0 120px 0;
	}
	#content #environment h4.ttl_unit{
		padding: 0 0 30px 0;
	}
	#content #environment .in-box{
		width: 100%;
	}
	#content #environment figure.img{
		width: 40vw;
		right: 0%;
	}
	#content #environment .txt_area{
		padding: 40px 0 40px 7%;
	}
	#content #environment .txt_area h3{
		width: 500px;
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h6{
		width: 500px;
		font-size: 1.125rem;
	}
}
@media only screen and (max-width: 999px) {
	#content #environment{
		padding: 0 0 90px 0;
	}
	#content #environment h4.ttl_unit{
		padding: 0 0 50px 0;
	}
	#content #environment .in-box{
		width: 90%;
	}
	#content #environment figure.img{
		width: 100%;
		position: relative;
		top: auto;
		right: auto;
	}
	#content #environment .txt_area{
		padding: 0 0 40px 0;
	}
	#content #environment .txt_area h3{
		width: 500px;
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h6{
		width: 500px;
		font-size: 1.000rem;
	}
}
@media only screen and (max-width: 768px) {
	#content #environment{
		padding: 0 0 70px 0;
	}
	#content #environment h4.ttl_unit{
		padding: 0 0 50px 0;
	}
	#content #environment .in-box{
		width: 90%;
	}
	#content #environment figure.img{
		width: 100%;
	}
	#content #environment .txt_area{
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h3{
		width: 80%;
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h6{
		width: 100%;
		font-size: 0.938rem;
	}
	#content #environment .txt_area h6 br{
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	#content #environment{
		padding: 0 0 60px 0;
	}
	#content #environment h4.ttl_unit{
		padding: 0 0 40px 0;
	}
	#content #environment .in-box{
		width: 90%;
	}
	#content #environment figure.img{
		width: 100%;
	}
	#content #environment .txt_area{
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h3{
		width: 90%;
		padding: 0 0 30px 0;
	}
	#content #environment .txt_area h6{
		width: 100%;
		font-size: 0.938rem;
	}
}




#content #rikejo{
	width: 90%;
	background: #FFF;
	margin: 0 auto 0 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#content #rikejo figure.img{
	width: 39%;
	display: block;
	position: relative;
	background: url("../../grade1_2/img/s_rikejo.jpg") center center/cover no-repeat;
}
#content #rikejo .txt_area{
	width: 61%;
	padding: 75px 90px;
	box-sizing: border-box;
}
#content #rikejo .txt_area h3{
	width: 100%;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.05em;
	padding: 0 0 0.8em 0;
	text-align: left;
	color: #00D27A;
}
#content #rikejo .txt_area h3 span{
	font-weight: 600;
	color: #FF53A0;
}
#content #rikejo .txt_area ul.under_area{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	padding: 30px 0 0 0;
}
#content #rikejo .txt_area ul.under_area li{
	width: 33%;
}
#content #rikejo .txt_area ul.under_area li:last-child{
	width: 29%;
}

#content #rikejo .line_top{
	width: 100%;
	height: 20px;
	background: url("../../grade1_2/img/igejo_line.png") center center/auto 100% no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
#content #rikejo .line_bottom{
	width: 100%;
	height: 20px;
	background: url("../../grade1_2/img/igejo_line.png") center center/auto 100% no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media only screen and (max-width: 999px) {
	#content #rikejo{
		width: 100%;
	}
	#content #rikejo figure.img{
		width: 39%;
	}
	#content #rikejo .txt_area{
		width: 61%;
		padding: 55px 60px;
	}
	#content #rikejo .txt_area h3{
		font-size: 1.500rem;
	}
	#content #rikejo .txt_area ul.under_area{
		padding: 30px 0 0 0;
	}
	#content #rikejo .txt_area ul.under_area li{
		width: 33%;
	}
	#content #rikejo .txt_area ul.under_area li:last-child{
		width: 29%;
	}

	#content #rikejo .line_top{
		height: 15px;
	}
	#content #rikejo .line_bottom{
		height: 15px;
	}
}
@media only screen and (max-width: 768px) {
	#content #rikejo{
		width: 100%;
	}
	#content #rikejo figure.img{
		width: 100%;
		height: 450px;
	}
	#content #rikejo .txt_area{
		width: 100%;
		padding: 35px 30px;
	}
	#content #rikejo .txt_area h3{
		font-size: 1.500rem;
	}
	#content #rikejo .txt_area ul.under_area{
		padding: 30px 0 0 0;
	}
	#content #rikejo .txt_area ul.under_area li{
		width: 33%;
	}
	#content #rikejo .txt_area ul.under_area li:last-child{
		width: 29%;
	}

	#content #rikejo .line_top{
		height: 15px;
	}
	#content #rikejo .line_bottom{
		height: 15px;
	}
}
@media only screen and (max-width: 480px) {
	#content #rikejo{
		width: 100%;
	}
	#content #rikejo figure.img{
		width: 100%;
		height: 250px;
	}
	#content #rikejo .txt_area{
		width: 100%;
		padding: 35px 30px;
	}
	#content #rikejo .txt_area h3{
		font-size: 1.500rem;
	}
	#content #rikejo .txt_area ul.under_area{
		padding: 30px 0 0 0;
	}
	#content #rikejo .txt_area ul.under_area li{
		width: 33%;
	}
	#content #rikejo .txt_area ul.under_area li:last-child{
		width: 29%;
	}

	#content #rikejo .line_top{
		height: 15px;
	}
	#content #rikejo .line_bottom{
		height: 15px;
	}
}








#content .convert_btn{
	padding: 120px 0 120px 0;
}
#content .convert_btn a{
	display: block;
	width: 320px;
	font-size: 1.500rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-align: center;
	padding: 0.8em 1em;
	margin: 0 auto;
	color: #FFF;
	box-shadow: 0px 1px 4px rgba(17,17,17,0.45);
	text-decoration: none;
	box-sizing: border-box;
}
#content .convert_btn p.att{
	padding: 10px 0 0 0;
}
#content .convert_btn a{
	background: #00d279;
}
@media only screen and (max-width: 999px) {
	#content .convert_btn{
		padding: 90px 0 90px 0;
	}
	#content .convert_btn a{
		width: 320px;
		font-size: 1.375rem;
	}
}
@media only screen and (max-width: 768px) {
	#content .convert_btn{
		padding: 60px 0 60px 0;
	}
	#content .convert_btn a{
		width: 70%;
		font-size: 1.250rem;
	}
}
@media only screen and (max-width: 480px) {
	#content .convert_btn a{
		width: 90%;
		font-size: 1.125rem;
	}
}