@charset "UTF-8";
/*----------------------------
	header / footer / side / common
----------------------------*/
body {
	font-family: Barlow, 'Noto Sans JP', sans-serif;
	color: #111;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "halt"1;
	width: 100%;
	position: relative;
	-webkit-text-size-adjust: 100%;
}
#slide_wrapp {
	position: relative;
	overflow: hidden;
}
.slide_item {
	opacity: 0;
	transform: scale(1.2);
	transition: opacity 1s linear, transform 8s linear;
	position: relative;
}
.slide_item:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}
.slide_item.show_ {
	opacity: 1;
}
.slide_item.zoom_ {
	transform: scale(1);
}
.underline {
	text-decoration: underline;
}
.none {
	display: none;
}
/* #loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #F4F4F4;
	z-index: 200;
}
#loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 98px;
	height: 98px;
	margin-top: -49px;
	margin-left: -49px;
	z-index: 201;
}
.ring {
	width: 96px;
	height: 96px;
	border-radius: 80px;
	position: absolute;
	background: transparent;
}
.r_r {
	border: 2px solid #ED7F9D;
	animation: redanim linear 2s;
	animation-iteration-count: infinite;
}
.r_g {
	border: 2px solid #F1906E;
	animation: greenanim linear 2.5s;
	animation-iteration-count: infinite;
}
.r_b {
	border: 2px solid #73C4A9;
	animation: blueanim linear 3s;
	animation-iteration-count: infinite;
}
.r_y {
	border: 2px solid #B369A7;
	animation: yellowanim linear 3.5s;
	animation-iteration-count: infinite;
} */
@keyframes redanim {
	0% {
		transform: rotate(31deg) scaleX(0.90) scaleY(1.05);
	}
	25% {
		transform: rotate(121deg) scaleX(1.00) scaleY(1.00);
	}
	50% {
		transform: rotate(211deg) scaleX(0.90) scaleY(1.05);
	}
	75% {
		transform: rotate(301deg) scaleX(1.00) scaleY(1.00);
	}
	100% {
		transform: rotate(391deg) scaleX(0.90) scaleY(1.05);
	}
}
@keyframes greenanim {
	0% {
		transform: rotate(31deg) scaleX(0.90) scaleY(0.95);
	}
	25% {
		transform: rotate(121deg) scaleX(1.00) scaleY(1.00);
	}
	50% {
		transform: rotate(211deg) scaleX(0.90) scaleY(0.95);
	}
	75% {
		transform: rotate(301deg) scaleX(1.00) scaleY(1.00);
	}
	100% {
		transform: rotate(391deg) scaleX(0.90) scaleY(0.95);
	}
}
@keyframes blueanim {
	0% {
		transform: rotate(472deg) scaleX(0.90) scaleY(1.00);
	}
	25% {
		transform: rotate(382deg) scaleX(1.00) scaleY(1.05);
	}
	50% {
		transform: rotate(292deg) scaleX(0.90) scaleY(1.00);
	}
	75% {
		transform: rotate(202deg) scaleX(1.00) scaleY(1.05);
	}
	100% {
		transform: rotate(112deg) scaleX(0.90) scaleY(1.00);
	}
}
@keyframes yellowanim {
	0% {
		transform: rotate(472deg) scaleX(0.90) scaleY(1.00);
	}
	25% {
		transform: rotate(382deg) scaleX(1.00) scaleY(0.95);
	}
	50% {
		transform: rotate(292deg) scaleX(0.90) scaleY(1.00);
	}
	75% {
		transform: rotate(202deg) scaleX(1.00) scaleY(0.95);
	}
	100% {
		transform: rotate(112deg) scaleX(0.90) scaleY(1.00);
	}
}
.static {}
#side {
	display: none;
}
#gnavi {
	position: fixed;
	top: 0;
	right: 0;
	width: 100px;
	z-index: 12;
}
#gnavi ul li {
	width: 50px;
	height: 64px;
	float: left;
	transition: .2s;
}
#search {
	position: relative;
	cursor: pointer;
}
#search div {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1em;
	position: absolute;
	top: 39px;
	left: 50%;
	margin-left: -17px;
}
#search:before {
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 16px;
	left: 50%;
	margin-left: -9px;
	content: '';
	background: url(../img/ico_search.svg);
	transition: .2s;
	z-index: 10;
}
#searchbox {
	width: 100%;
	height: 56px;
	background: #eee;
	padding: 8px;
	box-sizing: border-box;
	position: fixed;
	top: 54px;
	right: 0;
	transition: .2s;
	opacity: 0;
	z-index: 12;
	display: none;
}
#searchbox.appear {
	top: 64px;
	transition: .2s;
	opacity: 1;
	display: block;
}
#searchbox form {
	position: relative;
}
#focus {
	width: 100%;
	height: 40px;
	color: #111;
	font-size: 12px;
	line-height: 1em;
	;
	padding: 8px 16px;
	box-sizing: border-box;
	border: none;
	letter-spacing: 0.1em;
}
input[type="text"]:focus, input[type="image"]:focus {
	outline: 0;
}
#serchbtn {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 14px;
	right: 20px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
#menu {
	position: relative;
	transition: .2s;
	cursor: pointer;
}
#menu.active {
	border-bottom: none;
	background: none;
}
#menu div:first-child {
	width: 20px;
	height: 18px;
	position: absolute;
	top: 15px;
	left: 50%;
	margin-left: -12px;
	z-index: 101;
}
#menu div:last-child {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1em;
	position: absolute;
	top: 39px;
	left: 50%;
	margin-left: -13px;
}
#menu span:nth-of-type(1) {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: #111;
	transition: .2s;
}
#menu span:nth-of-type(2) {
	position: absolute;
	top: 8px;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: #111;
	transform-origin: center center;
	transition: .2s;
}
#menu span:nth-of-type(3) {
	position: absolute;
	top: 16px;
	left: 0;
	width: 10px;
	height: 2px;
	background-color: #111;
	transition: .2s;
}
#menu.active span:nth-of-type(1) {
	top: 8px;
	transform: rotateZ(45deg);
	transition-delay: 0s, 0s, 0.2s;
	transition: .2s;
}
#menu.active span:nth-of-type(2) {
	top: 8px;
	transform: rotateZ(-45deg);
	transition-delay: 0s, 0s, 0.2s;
	transition: .2s;
}
#menu.active span:nth-of-type(3) {
	width: 0;
	transition: .2s;
}
#menu.active #menu {
	background: #FCFCFC;
	border-bottom: none;
}
nav.navilist.open {
	display: block;
}
.menubtn {
	cursor: pointer;
}
nav.navilist {
	position: fixed;
	top: 0;
	left: 0;
	/*	width: calc(100% - 433px);*/
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	padding-top: 64px;
	background-color: #FCFCFC;
	z-index: 11;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	transition: .2s;
}
nav.navilist.n_active {
	visibility: visible;
	opacity: 1;
	transition: .2s;
}
nav div {
	padding: 24px;
}
nav div > ul li {
	margin-bottom: 20px;
}
nav div > ul li:last-child {
	margin-bottom: 0;
}
.block {
	display: block;
}
nav h2 {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 16px;
	padding-left: 12px;
	position: relative;
}
nav h2:before {
	position: absolute;
	top: 3px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
nav div ul li ul li {
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-right: 4px;
	margin-bottom: 8px;
	display: inline-block;
}
nav a {
	font-weight: 500;
	color: #111;
	background: #efefef;
	display: inline-block;
	padding: 5px 4px 4px;
	transition: none;
}
nav p {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1em;
	letter-spacing: 0.1em;
}
nav p a {
	font-weight: 500;
	color: #111;
	background: none;
	display: inline-block;
	transition: none;
	padding: 0;
	;
}
#sidecontent {
	background: #F4F4F4;
	padding: 105px 16px 16px 16px;
}
.side_block {
	margin-bottom: 35px;
	position: relative;
	width: 401px;
	overflow: hidden;
}
.side_block:before {
	position: absolute;
	bottom: -16px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #d8d8d8;
}
.side_block:after {
	position: absolute;
	bottom: -19px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #d8d8d8;
}
#banner div:nth-child(1) {
	width: 49%;
	float: left;
}
#banner div:nth-child(2) {
	width: 49%;
	float: right;
	margin-bottom: 12px;
}
#banner div:nth-child(3) {
	clear: both;
}
#contact_assess li:first-child {
	float: left;
	width: 49%;
	height: 48px;
	overflow: hidden;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
}
#contact_assess li:last-child {
	float: right;
	width: 49%;
	height: 48px;
	overflow: hidden;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
}
#contact_assess li a {
	display: block;
	font-weight: 500;
	color: #111;
	background: #FFF104;
	height: 48px;
	box-sizing: border-box;
	padding-top: 18px;
	position: relative;
}
.b-m #contact_assess li a {
	color: #fff;
	background: #b9a166;
}
#contact_assess li a:after {
	width: calc(100% - 8px);
	height: 40px;
	border: 1px solid #111111;
	box-sizing: border-box;
	position: absolute;
	top: 4px;
	left: 4px;
	content: '';
	transition: .2s;
}
.b-m #contact_assess li a:after {
	border: 1px solid #9c8e6a;
}
#contact_assess li a:before {
	content: url(../img/ico_arrow.png);
	width: 10px;
	height: 6px;
	position: absolute;
	top: 17px;
	left: -10px;
	transition: .2s;
}
#slidebn {
	margin-bottom: 8px;
	height: 120px;
	overflow: hidden;
}
#slidebn img{
width: 120px;
height: 120px;
}
#carousel:not(.slick-initialized) > div{
display: inline-block;
}
footer {
	padding: 24px 0;
	background: #91BBCE;
}
.b-m footer {
	background: #0c1223;
}
#fnavi {
	width: 90%;
	margin: 0 auto 16px;
	position: relative;
	padding: 0px 0 20px;
}
#fnavi:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #B0CFD9;
}
.b-m #fnavi:after {
	background-color: #151f38;
}
#contact_assess {
	margin-bottom: 8px;
}
#sns {
	margin-left: -6px;
}
#sns li {
	float: left;
	margin-left: 6px;
	width: -webkit-calc(100% / 4 - 6px);
	width: calc(100% / 4 - 6px);
}
#sns li a {
	display: block;
	background: #a9cbda;
	height: 40px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 8px;
}
.b-m #sns li a {
	background: #151e3c;
}
#tw img {
	width: 16px;
	height: 16px;
}
#fb img {
	width: 17px;
	height: 14px;
}
#ig img {
	width: 16px;
	height: 16px;
}
#yt img {
	width: 20px;
	height: 15px;
}
#tw a {
	border-radius: 2px 0 0 2px;
}
#ig a {
	border-radius: 0 2px 2px 0;
}
#sideinfo {
	width: 90%;
	margin: 0 auto 16px;
}
#sideinfo p {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	color: #fff;
}
#sideinfo ul {
	font-size: 0;
	margin-top: 10px;
}
#sideinfo ul li {
	display: inline-block;
	width: 60%;
}
#sideinfo ul li:first-of-type {
	margin-right: 2%;
	width: 38%;
}
#sideinfo ul li a {
	display: block;
	background: #a9cbda;
	height: 40px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 10px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	color: #fff;
}
.b-m #sideinfo ul li a {
	background: #151e3c;
}
#copyright {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1em;
	color: #fff;
	width: 90%;
	margin: 0 auto;
}
.btn, .btn_target {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
	color: #111;
	margin: 16px auto;
	width: 90%;
	height: 48px;
	overflow: hidden;
}
.btnw .btn {
	margin-top: 0;
}
.freebtn {
	width: 240px !important;
}
.btn a, .btn_target a {
	display: block;
	font-weight: 500;
	background: #FFF104;
	height: 48px;
	box-sizing: border-box;
	padding-top: 18px;
	position: relative;
}
.b-m .btn a, .b-m .btn_target a {
	color: #fff;
	background: #b9a166;
}
.btn a:before {
	display: none;
}
.btn a:after, .btn_target a:after {
	width: calc(100% - 8px);
	height: 40px;
	border: 1px solid #111111;
	box-sizing: border-box;
	position: absolute;
	top: 4px;
	left: 4px;
	content: '';
	transition: .2s;
}
.b-m .btn a:after, .b-m .btn_target a:after {
	border: 1px solid #9c8e6a;
}
.btn_target a:before {
	content: url("../img/target.png");
	width: 12px;
	height: 12px;
	position: absolute;
	top: 16px;
	right: 28px;
	transition: .2s;
}
/***** カコとイマ用ボタン *****/
.btn.kako {
	height: 64px;
}
.btn.kako a {
	line-height: 1.4em;
	height: 64px;
}
.btn.kako a:after {
	height: 56px;
}
.message .btn.kako {
	width: 90%;
}
/***** カコとイマ用ボタン *****/
.btnw {
	width: 100%;
	margin: 16px auto 0;
}
.btnw li {
	margin-bottom: 16px;
}
.btnw li:last-child {
	margin-bottom: 0;
}
.btnw li .btn {
	margin-top: 0;
	margin-bottom: 8px;
}
.btns {
	width: 100%;
	margin: 0 auto 16px;
}
.btns .btn {
	margin-bottom: 8px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #E2E2E2;
	height: 64px;
	padding: 21px 0 16px 10px;
	box-sizing: border-box;
}
h1 {
	width: 138px;
}
#head-sns {
	width: 80px;
	position: fixed;
	top: 19px;
	right: 120px;
}
#head-sns ul {
	display: flex;
	justify-content: space-between;
}
#head-sns li {
	width: 12px;
}
.change_pc {
	display: none;
}
.change_sp {
	display: block;
}
#pcmenu {
	display: none;
}
/*----------------------------
	main
----------------------------*/
main {
	/*	width: calc(100% - 433px);*/
	width: 100%;
	margin: 0 auto;
	padding-top: 64px;
	overflow: hidden;
}
#slide {
	position: relative;
	width: 100%;
	margin: 0 auto 12px;
	background: #f5efe4;
	height: 83vw;
	overflow: hidden;
	/*height: 312px;*/
}
#slide:after {
	display: none;
}
#slide .slick-slide {
	margin-right: 0;
}
/* slick */
.slick-dots {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 9;
}
.slick-dots li {
	float: left;
	margin-right: 0;
}
.slick-dots li:last-child {
	margin-right: 0;
}
.slick-dots button {
	text-indent: -9999px;
	border: none;
	outline: none;
	cursor: pointer;
	width: 18px;
	height: 18px;
	position: relative;
	background: none;
}
.slick-dots button:after {
	width: 12px;
	height: 2px;
	content: '';
	background: #FFF104;
	position: absolute;
	top: 7px;
	left: 2px;
}
.slick-active button:after {
	background: #111;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before, .slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	width: 120px;
	min-height: 1px;
	margin-right: 8px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	/*	display: block;*/
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.carousel {
	overflow: hidden;
	position: relative;
	margin-bottom: 16px;
}
.sp footer .slick-slide {
	margin: 0px 4px 0 0;
	width: 160px;
}
.slick-slide img {
	width: 100%;
}
.slick-prev:before, .slick-next:before {
	color: black;
}
.slick-prev {
	content: '';
	background: url(../img/prev.png) no-repeat;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	outline: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 5%;
	z-index: 1;
	margin-top: -15px;
}
.slick-next {
	content: '';
	background: url(../img/next.png) no-repeat;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	outline: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 5%;
	z-index: 1;
	margin-top: -15px;
}
#content {
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
}
.b-m #content {
	margin: 0 auto;
	box-sizing: border-box;
	background: #131827 url(../img/music/bg.png) repeat;
}
.base_01 {
	margin-bottom: 40px;
}
.b-m .base_01 {
	/*	padding-bottom: 24px;*/
	margin-top: 0 !important;
}
#content h2.title {
	text-align: center;
	margin-bottom: 20px;
}
#content h2.title {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 24px 0;
	box-sizing: border-box;
}
.b-m #content h2.title {
	margin-bottom: 0 !important;
	padding-top: 32px !important;
	padding-bottom: 16px !important;
	box-sizing: border-box;
	width: 90%;
}
#content h2 span.en {
	font-family: Vollkorn;
	font-size: 22px;
	letter-spacing: 0.02em;
	color: #111;
	line-height: 1em;
	display: block;
	margin-bottom: 4px;
}
#content h2 span.ja {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.16em;
	line-height: 1em;
	text-align: center;
	color: #111;
}
#notice {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	width: 95%;
	margin: 0 auto !important;
}
#notice ul {
	/*	margin-left: -2px;*/
	margin: 10px 0;
}
#notice ul li {
	float: left;
	/*    margin-left: 2px;*/
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
}
#notice > div.hover{
	margin-bottom: 8px;
}
#menugroup {
	padding: 0 !important;
	margin-bottom: 0 !important;
	margin-top: 8px !important;
}
#attribute {
	margin-top: -3px;
	margin-bottom: 48px;
	margin-left: -3px;
	position: relative;
	padding: 0 !important;
}
#attribute #v1, #attribute #v2 {
	margin-left: -2px;
}
#attribute li {
	text-align: center;
	font-size: 11px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 2px;
}
#attribute #v1 li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
#attribute #v2 li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
#attribute li a {
	display: block;
	background: #fff;
	color: #111;
	font-weight: 500;
	height: 96px;
	box-sizing: border-box;
	position: relative;
	padding-top: 64px;
	padding-left: 2px;
}
#attribute #v1 li a{
	background: #fffeee;
}
#attribute li a::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #111;
	transition: .2s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#v1 li:nth-child(1) a:after {
	width: 32px;
	height: 35px;
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -16px;
	content: '';
	background: url(../img/ico_navi_1.svg);
	background-size: contain;
	transition: .2s;
}
#v1 li:nth-child(2) a:after {
	width: 32px;
	height: 34px;
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -16px;
	content: '';
	background: url(../img/ico_navi_2.svg);
	background-size: contain;
	transition: .2s;
}
#v1 li:nth-child(3) a:after {
	width: 32px;
	height: 35px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -16px;
	content: '';
	background: url(../img/ico_navi_6.svg);
	transition: .2s;
	background-size: contain;
}
#v2 li:nth-child(1) a:after {
	width: 52px;
	height: 35px;
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -26px;
	content: '';
	background: url(../img/ico_navi_3.svg);
	background-size: contain;
	transition: .2s;
}
#v2 li:nth-child(2) a:after {
	width: 30px;
	height: 35px;
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -15px;
	content: '';
	background: url(../img/ico_navi_4.svg);
	background-size: contain;
	transition: .2s;
}
#v2 li:nth-child(3) a:after {
	width: 32px;
	height: 35px;
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -16px;
	content: '';
	background: url(../img/ico_navi_5.svg);
	background-size: contain;
	transition: .2s;
}
#attribute:after {
	position: absolute;
	content: '';
	bottom: -24px;
	left: 0;
	background: url(../img/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
#banner {
	width: 90%;
	margin: 0 auto;
}
#topics {
	padding: 32px 5% !important;
}
.under #topics {
	padding: 0 5% !important;
	margin-bottom: 40px;
}
#topics li {
	position: relative;
}
#topics li:last-child {
	margin-bottom: 0;
}
#topics li .update {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-align: left;
	color: #111;
	/*
	position: absolute;
	top: -8px;
	left: 24px;
*/
	transition: .2s;
}
#topics li div {}
#topics li .category {
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #b9b9b9;
	margin-bottom: 10px;
}
#topics li h3 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
}
#mainBg {
	width: 90%;
	margin: 0 auto;
}
.include.news2 {
	padding: 0 4% 32px;
}
.include.news2 h3 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 14px;
	padding-left: 16px;
	position: relative;
}
.include.news2 h3:before {
	position: absolute;
	top: 3px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
iframe#topicsinc {
	width: 100%;
	height: 294px;
}
#banner_sp {
	background: #e6e6df;
	padding: 32px 4% !important;
}
#banner_sp div:nth-child(1) {
	width: 48%;
	float: left;
}
#banner_sp div:nth-child(2) {
	width: 48%;
	float: right;
	margin-bottom: 12px;
}
#undergraduate {
	padding: 32px 0;
	background: #e6e6df;
}
#undergraduate ul li:nth-child(odd) {
	width: 96%;
}
#undergraduate ul li:nth-child(even) {
	width: 96%;
	margin-left: 4%;
}
#undergraduate ul li:nth-child(odd) div:first-child {
	width: 40%;
	overflow: hidden;
	float: left;
	height: 144px;
}
#undergraduate ul li:nth-child(odd) div:last-child {
	width: 60%;
	float: left;
	height: 144px;
}
#undergraduate ul li:nth-child(even) div:first-child {
	width: 40%;
	overflow: hidden;
	float: right;
	height: 144px;
}
#undergraduate ul li:nth-child(even) div:last-child {
	width: 60%;
	float: right;
	height: 144px;
}
.undergraduate_box {
	padding: 32px 16px 16px 16px;
	box-sizing: border-box;
	color: #fff;
}
#undergraduate a img {
	transform: scale(1.3);
}
.childcare a {
	background: #ED7F9D;
	display: block;
	border-bottom: 1px solid #fff;
}
.health a {
	background: #F1906E;
	display: block;
	border-bottom: 1px solid #fff;
}
.cultural a {
	background: #73C4A9;
	display: block;
	border-bottom: 1px solid #fff;
}
.music a {
	background: #B369A7;
	display: block;
}
.undergraduate_box h3 {
	margin-bottom: 8px;
}
.undergraduate_box h3 span.ja {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.3em;
	line-height: 1em;
	display: block;
}
.undergraduate_box h3 span.en {
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1em;
}
.undergraduate_box {
	position: relative;
}
.undergraduate_box h4 {
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    line-height: 1em;
    font-size: 10px;
    background: #fff;
    padding: 4px;
    color: #000;
}
.undergraduate_box p {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
}
.undergraduate_box p.gomore {
	display: none;
}
.undergraduate_box p br {
	display: none;
}
#carousel_sp {
	width: 100%;
	padding: 32px 0;
	background: #e6e6df;
	overflow: hidden;
}
#instagram {
	padding: 32px 16px !important;
	margin-bottom: 0 !important;
}
#instafeed {
	margin-left: -2px;
}
#instagram li {
	display: inline-block;
	width: -webkit-calc((100% - 4px) / 3);
	width: calc((100% - 4px) / 3);
	margin-right: 2px;
	margin-bottom: 2px;
	height: 32vw;
}
#instagram li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#instagram li:nth-of-type(3n){
	margin-right: 0;
}
#instagram li:nth-last-child(-n+3) {
	margin-bottom: 0;
}
#pagetop {
	width: 48px;
	height: 48px;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10;
}
#pagetop a {
	display: block;
	background: #fff;
	height: 48px;
	position: relative;
	text-indent: -9999px;
}
#pagetop a:before {
	width: 14px;
	height: 8px;
	display: block;
	position: absolute;
	top: 12px;
	left: 50%;
	margin-left: -7px;
	content: '';
	background: url(../img/top_img.png);
	transition: .2s;
}
#pagetop a:after {
	width: 20px;
	height: 8px;
	display: block;
	position: absolute;
	top: 28px;
	left: 50%;
	margin-left: -9px;
	content: '';
	background: url(../img/top_txt.png);
	transition: .2s;
}
.none_navi {
	position: relative;
}
.none_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/about/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
/*----------------------------
	子ども学科
----------------------------*/
#cover {
	position: relative;
	width: 100%;
	margin: 0 auto;
	border-bottom: 1px solid #f5f5f5;
}
.currentnavi {
	margin-left: -1px;
	position: relative;
}
.childcare_navi ul {
	margin-left: -1px;
	background: #f5f5f5;
}
.childcare_navi li {
	float: left;
	margin-left: 1px;
	width: -webkit-calc(100% / 3 - 1px);
	width: calc(100% / 3 - 1px);
	height: 48px;
}
.currentnavi li {
	text-align: center;
	font-size: 9px;
	line-height: 1.4em;
	letter-spacing: 0.02em;
	height: 48px;
}
.currentnavi a {
	display: block;
	background: #fff;
	height: 48px;
	box-sizing: border-box;
	font-weight: 500;
	color: #111;
	position: relative;
}
.music_navi li a {
	background: #19264a;
	color: #EABF91;
}
.currentnavi a span {
	position: absolute;
	top: 50%;
	left: 0;
	margin: auto;
	width: 100%;
	transform: translateY(-50%);
	box-sizing: border-box;
	padding: 0 6px;
	font-weight: 500;
}
.currentnavi a::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #111;
	transition: .2s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.under #content {
	padding: 48px 0;
}
#content > div {
	/*	margin: 16px 0 0;*/
}
#content > div:last-child {
	margin-bottom: 0 !important;
}
#content > div.entry {
	padding: 20px;
}
.entry {
	box-sizing: border-box;
	margin: 0 auto;
}
.base_02 {
	margin-bottom: 24px;
}
.b-m .base_02 {
	padding: 0 !important;
	/*	margin-bottom: 0 !important;*/
}
#content .entry p.subtitle {
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1em;
	margin-bottom: 16px;
}
.b-m #content p.subtitle {
	padding: 16px 16px 0 16px !important;
}
.page_childcare .color {
	color: #e86a8c !important;
}
.page_childcare #content .entry h5:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #ED7F9D;
	border-radius: 4px;
}
.ptn {
	padding-top: 0 !important;
}
.pbn {
	padding-bottom: 0 !important;
}
#content .entry h2 {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.3em;
	line-height: 1em;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 24px;
}
.b-m #content h2, .b-m #content h3 {
	padding: 12px 16px 0 16px !important;
}
#content .entry h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #070707;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 16px;
}
#content .entry h3 span {
	display: block;
	font-size: 10px;
	color: #D70808 !important;
	line-height: 1.8em;
	margin-top: 4px;
}
.b-m #content p {
	font-family: serif;
	margin-bottom: 0 !important;
}
.b-m #content h3 {
	font-family: serif;
	font-weight: 600;
	margin-bottom: 0 !important;
}
#content .entry p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 20px;
}
#content .entry .ll p {
	width: 100%;
}
.b-m .img.graph {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 24px;
	background: #fff;
}
.b-m #content p {
	padding: 12px 16px 24px 16px !important;
}
.b-m #content .b-m-policy p {
	padding: 16px 16px 0 16px !important;
}
.b-m #content .b-m-policy p:last-child {
	padding-bottom: 24px !important;
}
.w90 {
	width: 90% !important;
	margin: 0 auto;
}
.w100 {
	width: 100% !important;
}
.pan {
	padding: 0 !important;
}
.separate_double {
	height: 5px;
	position: relative;
	margin: 24px 0;
}
.page_childcare .separate_double::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	top: 0;
	left: 0;
}
.page_childcare .separate_double::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	top: 4px;
	left: 0;
}
#content .entry h4 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 12px;
}
.b-m #content h4 {
	padding: 16px 16px 0 16px !important;
	margin-bottom: 0;
}
#content .entry .ll {
	margin-bottom: 20px;
}
.page_childcare #content .entry .ll {
	border-left: 2px solid #ED7F9D;
}
#content .entry .ll {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	width: 90%;
	background: #fff;
	margin: 0 auto 16px;
	box-sizing: border-box;
}
.b-m #content .ll {
	padding: 4px 16px 8px !important;
	border: none !important;
	margin-bottom: 0 !important;
}
.b-m .ll-end {
	padding: 0 16px 24px !important;
}
.b-m #content .ll p {
	width: 100%;
	padding: 0 !important;
}
#content .entry .ll li {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
	text-indent: -1em;
	padding-left: 1em;
}
.b-m .ll li {
	font-weight: 600 !important;
	font-family: serif;
}
.b-m .ll-end li {
	font-weight: 600 !important;
	font-family: serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
	text-indent: -1em;
	padding-left: 1em;
}
#content .entry .ll li:last-child, .b-m .ll-end li:last-child {
	margin-bottom: 0;
}
#content .entry .ll li a, #content .entry .a-list li a {
	color: #111;
	background: #fff104;
	padding: 0;
}
.b-m #content .entry .ll li a, .b-m #content .entry .a-list li a {
	background: #e6d3ea;
}
#content .entry .a-list li {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
	text-indent: -1em;
	padding-left: 1em;
}
.b-m .a-list {
	background: #fff;
	padding: 16px;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}
.separate_single {
	content: "";
	width: 90%;
	height: 1px;
	background: #DDDDDD;
	margin: 24px auto;
}
.b-m .separate_single {
	position: relative;
	padding: 24px 0;
	margin: 0 auto;
	background: #fff;
}
.b-m .separate_single:after {
	content: '';
	background: #DDDDDD;
	height: 1px;
	width: 100%;
	top: 24px;
	left: 0;
	position: absolute;
}
.the4 > li {
	/*width: 303px;
	float: left;
	margin-right: 17px;*/
	margin-bottom: 17px;
}
.the4 > li:nth-child(2n) {
	margin-right: 0;
}
.the4 > li:last-of-type {
	margin-bottom: 0;
}
.page_childcare .the4 dt {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #E86A8C;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
	box-sizing: border-box;
	width: 90%;
	margin: 0 auto;
}
.the4 dd {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #F8F8F8;
	padding: 16px;
	border-radius: 0 0 2px 2px;
	width: 90%;
	box-sizing: border-box;
	margin: 0 auto;
}
.b-m .the4 dd {
	padding: 16px 0;
	font-family: serif;
}
.the4 dd p {
	width: 100% !important;
	background: none !important;
	padding: 0 !important;
}
#content .entry .the4 dd li {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 8px;
}
#content .entry .the4 dd li:last-child {
	margin-bottom: 0;
}
#content .entry .the4 dd p {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
}
.the4 dd li:last-child {
	margin-bottom: 0;
}
.image {
	width: 100%;
	margin: 0 auto 16px;
}
.b-m .image {
	margin-bottom: 0 !important;
}
.end {
	margin-bottom: 0 !important;
}
.col3 {
	width: 100%;
	margin: 0 auto;
}
.col3 li {
	position: relative;
	box-sizing: border-box;
	margin-bottom: 24px;
}
.col3 li:last-child {
	margin-bottom: 0;
}
.point {
	position: absolute;
	width: 48px;
	height: 48px;
	top: -8px;
	right: 24px;
	z-index: 2;
}
.col3 .thumb {
	background: #ccc;
	margin-bottom: 16px;
}
.col3 h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
	width: 90%;
	margin: 0 auto 12px;
	box-sizing: border-box;
	background: #fff;
}
.b-m .col3 h3 {
	padding: 16px 16px 12px 16px !important;
}
.b-m .col3 p {
	padding: 0 16px 24px 16px !important;
}
.col3 p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
}
.b-m .thumb, .b-m .col3 h3, .b-m .col3 p {
	margin-bottom: 0 !important;
}
.col3 p a {
	color: #111;
	background: #fff000;
	font-weight: 500;
	text-decoration: underline;
}
.licence li {
	position: relative;
	margin-bottom: 24px;
}
.b-m .licence li {
	position: relative;
	margin-bottom: 0;
}
.licence li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.licence li::after {
	content: "";
	background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 2px);
	background-size: 5px 1px;
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 5%;
	width: 90%;
	height: 1px;
}
.licence li:last-child::after {
	background: none;
}
.page_childcare #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #ed7f9d;
	position: relative;
	padding-left: 28px;
}
#content .entry .licence li p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
	padding-bottom: 24px;
}
#content .entry .licence li h3:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: url(../img/ico_license.png) no-repeat;
	width: 20px;
	height: 26px;
}
.job > div:first-child {
	margin-bottom: 16px;
}
.b-m .job > div:first-child {
	margin-bottom: 0 !important;
}
.job > div:last-child {
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}
#content .entry .job p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
}
.page_childcare .job li {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background: #e86a8c;
	box-sizing: border-box;
	display: inline-block;
	padding: 4px 8px;
	margin-right: 8px;
	margin-bottom: 8px;
}
.pageheader {
	background: #fff;
	width: 90%;
	padding: 16px 0 32px;
	box-sizing: border-box;
	margin: 0 auto 32px;
	position: relative;
}
.b-m .pageheader {
	padding-bottom: 24px;
}
#content .pageheader p.subtitle {
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1em;
	margin-bottom: 16px;
}
#content .pageheader h2 {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.2em;
	line-height: 1em;
}
#content .pageheader h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #070707;
	margin-top: 8px;
}
.b-m #content .pageheader h3 {
	margin-top: 0 !important;
}
#content .pageheader p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
}
.page_childcare #content .pageheader::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	bottom: 3px;
	left: 0;
}
.page_childcare #content .pageheader::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	bottom: 0;
	left: 0;
}
.col2 {
	margin-bottom: 24px;
}
.col2 div:nth-child(1) {
	margin-bottom: 16px;
}
table {
	width: 90%;
	margin: 0 auto;
}
table.trends_child {
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 24px;
}
table.trends_child th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
.small {
	font-size: 10px !important;
	/*	margin-left: 4px;*/
}
h2 .small, h3 .small, h4 .small, h5 .small {
	font-weight: 500;
}
table.trends_child td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #E86A8C;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
.separate_dashed {
	position: relative;
	margin: 24px auto 48px;
	width: 90%;
}
.separate_dashed:after {
	content: "";
	background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 2px);
	background-size: 5px 1px;
	background-repeat: repeat-x;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
}
table.curriculum {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 10px;
	background: #f5f5f5;
}
.b-m table.curriculum {
	margin-bottom: 0;
}
table.curriculum th, table.curriculum td {
	font-size: 10px;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #111;
	line-height: 1.6em;
}
.child_table .level_1 {
	background: #E86A8C;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.level_2 {
	background: #E8E8E8;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.level_3 {
	background: #F8F8F8;
	color: #111;
	font-weight: 400;
	vertical-align: middle;
	font-size: 10px !important;
}
.vertical {
	width: 32px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.6em;
}
.center {
	text-align: center !important;
}
.middle {
	vertical-align: middle !important;
}
.nodata {
	background: #BABABA;
}
table.curriculum td li {
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 6px;
}
table.curriculum td p {
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 6px;
}
table.curriculum td li:last-child {
	margin-bottom: 0;
}
.w192 {
	min-width: 78px;
}
#content .entry .memo {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
/*	display: inline-block;*/
	margin-top: 4px;
}
.b-m #content .memo {
	padding-top: 0 !important;
}
#content .entry .memo_small {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-top: 12px;
	margin-bottom: 8px;
}
.basiccol {
	width: 100%;
	margin: 0 auto;
}
.basiccol li div:last-child {
	width: 90%;
	margin: 0 auto;
	padding: 16px 0;
}
.b-m .basiccol li div:last-child {
	padding: 0;
	background: #fff;
}
.basiccol li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 16px;
}
.basiccol li p {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
}
.entry_inner_col2 li {
	margin-bottom: 24px;
}
.entry_inner_col2 li:last-child {
	margin-bottom: 0;
}
.entry_inner_col2 li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 12px;
}
.entry_inner_col2 li > div {
	position: relative;
	margin-bottom: 16px;
}
.music_box li {
	margin-bottom: 24px;
}
.music_box li:last-child {
	margin-bottom: 0;
}
.b-m .entry_inner_col2 li > div {
	margin-bottom: 0;
}
#content .entry .entry_inner_col2 p {
	margin-bottom: 0;
}
.comment {
	width: 86px;
}
.page_childcare #comment1 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
.page_childcare #comment2 {
	position: absolute;
	bottom: 16px;
	right: 24px;
}
.page_childcare #comment3 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
.page_childcare #comment4 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
#content .entry p.name {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
}
#content .entry p.name span {
	font-size: 10px;
	font-weight: 500;
	display: block;
	margin-top: 6px;
}
#content .entry p.name span.inline {
	display: inline;
}
.col_70 > div {
	margin-bottom: 24px;
}
.b-m .col_70 > div {
	margin-bottom: 0 !important;
}
.the4 > li {
	/*width: 303px;
	float: left;
	margin-right: 17px;*/
	margin-bottom: 17px;
}
.col_50 {
	width: 90%;
	margin: 0 auto 24px;
}
.col_50 p {
	width: 100% !important;
}
.tbox {
	margin-bottom: 10px;
}
.b-m .tbox {
	margin-bottom: 0 !important;
}
.tinfo {
	width: 90%;
	margin: 0 auto;
	background: #fff;
}
.tinfo h3 {
	margin: 0 !important;
	padding: 0 0 16px !important;
}
.tinfo .psmall {
	margin: 0 !important;
	padding: 0 !important;
}
.tinfo .name {
	margin: 0 !important;
	padding: 0 0 16px !important;
}
#content .entry p.psmall {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 6px;
}
.teacher_comment {
	position: relative;
	height: auto;
	width: 90%;
	margin: 0 auto;
}
.page_childcare .teacher_comment div:first-child {
	background: #F4B9B9;
	border-radius: 2px;
	padding: 16px 104px 16px 16px;
/*
	position: absolute;
	top: 0;
	left: 0;
*/
	z-index: 1;
	min-height: 104px;
	box-sizing: border-box;
}
#content .entry .teacher_comment p {
	font-size: 11px;
	line-height: 1.6em;
	margin-bottom: 0;
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
}
.teacher_img {
	width: 104px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.under.teachers .teacher_comment div:first-child{
	position: inherit !important;
	height: inherit !important;
}
.under.teachers .moreread{
	background: #fff;
	width: 90%;
	margin: auto;
}
.under.teachers .moreread a{
	display: block;
    position: relative;
    font-weight: 500;
    box-sizing: border-box;
    padding: 8px 0;
    background: #FFF104;
    color: #111;
    font-size: 10px;
    line-height: 1em;
    letter-spacing: 0.1em;
    text-align: center;
    width: 96px;
    transition: .2s;
    cursor: pointer;
    border-radius: 2px;
    margin: 0 auto;
}
.under.page_music.teachers .moreread{
	padding: 16px 0;
}
.ac {
	position: relative;
	overflow: hidden;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}
.ac input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.ac label {
	display: block;
	position: relative;
	font-weight: 500;
	box-sizing: border-box;
	padding: 8px 0;
	background: #FFF104;
	color: #111;
	font-size: 10px;
	line-height: 1em;
	letter-spacing: 0.1em;
	text-align: center;
	width: 96px;
	transition: .2s;
	cursor: pointer;
	border-radius: 2px;
	margin: 0 auto;
}
.b-m .ac label {
	background: #b9a166;
	color: #fff;
}
.ac .ac_content {
	display: none;
	margin-top: 16px;
	border: 1px solid #f1f1f1;
	background: #fff;
	padding: 16px 4px;
	border-radius: 2px;
}
.b-m .ac .ac_content {
	display: none;
	margin-top: 0;
	border: none;
	background: #fff;
	padding: 12px;
	border-radius: none;
}
/* :checked */
.ac input:checked ~ .ac_content {
	display: block;
	transition: 0.2s;
}
.ac_content dt {
	font-size: 10px;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	color: #111;
}
.ac_content dd {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
	padding-bottom: 12px;
	color: #111;
	border-bottom: 1px solid #f1f1f1;
}
.ac_content dd:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.b-m .page_music.option #content .entry .ac_content h4 {
	width: 100% !important;
	padding: 6px 12px !important;
	margin-top: 16px;
	font-size: 12px;
}
.b-m .page_music.option #content .entry .ac_content h5 {
	width: 100% !important;
	padding: 12px 12px 4px !important;
	font-size: 12px;
}
.b-m .page_music.option #content .entry .ac_content h5:before {
	top: 20px;
	left: 0;
}
.b-m .page_music.option #content .entry .ac_content p.ll {
	width: 100% !important;
	padding: 0 12px !important;
}
/*----------------------------
	健康栄養学科
----------------------------*/
.health_navi ul {
	margin-left: -1px;
	background: #f4f4f4;
}
.health_navi li {
	float: left;
	margin-left: 1px;
	width: -webkit-calc(100% / 3 - 1px);
	width: calc(100% / 3 - 1px);
}
.page_health .color {
	color: #F1906E !important;
}
.page_health .separate_double::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #F1906E;
	position: absolute;
	top: 0;
	left: 0;
}
.page_health .separate_double::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #F1906E;
	position: absolute;
	top: 4px;
	left: 0;
}
.page_health #content .entry .ll {
	border-left: 2px solid #F1906E;
}
.page_health .the4 dt {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #F1906E;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}
.page_health #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #F1906E;
	position: relative;
	padding-left: 28px;
}
.page_health .job li {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: center;
	color: #fff;
	border-radius: 1px;
	background: #F1906E;
	box-sizing: border-box;
	display: inline-block;
	padding: 4px 8px;
	margin-right: 4px;
	margin-bottom: 8px;
}
.page_health #content .entry h5:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #F1906E;
	border-radius: 4px;
}
.evaluate {
	font-size: 10px;
	font-weight: 500;
	background: #E0E0E0;
	display: inline-block;
	margin-left: 8px;
	padding: 6px 8px;
	line-height: 1em;
	border-radius: 1px;
}
table.feature_health {
	border-collapse: collapse;
	margin-bottom: 12px;
}
table.feature_health th {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #fff;
	background: #F1906E;
	padding: 10px;
	border: 1px solid #111;
	vertical-align: middle;
	text-align: center;
}
table.feature_health td {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 10px;
	border: 1px solid #111;
	text-align: center;
	vertical-align: middle;
}
.page_health #content .pageheader::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #F1906E;
	position: absolute;
	bottom: 3px;
	left: 0;
}
.page_health #content .pageheader::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #F1906E;
	position: absolute;
	bottom: 0;
	left: 0;
}
.trends_health {
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 32px;
}
table.trends_health th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.trends_health td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #F1906E;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
.health_table .level_1 {
	background: #F1906E;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.page_health #comment1 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
.page_health #comment2 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
.page_health #comment3 {
	position: absolute;
	bottom: 16px;
	left: 24px;
}
.page_health #comment4 {
	position: absolute;
	top: 16px;
	left: 24px;
}
#content .entry .entry_inner_col2 h4 {
	line-height: 1.6em;
}
#content .message .entry .ll {
	margin-bottom: 24px;
}
.page_health .teacher_comment div:first-child {
	background: #FBDACC;
	border-radius: 2px;
	padding: 16px 104px 16px 16px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 104px;
	box-sizing: border-box;
}
/*----------------------------
	文化教養学科
----------------------------*/
.cultural_navi ul {
	margin-left: -1px;
	background: #f4f4f4;
}
.cultural_navi li {
	float: left;
	margin-left: 1px;
	width: -webkit-calc(100% / 3 - 1px);
	width: calc(100% / 3 - 1px);
	height: 48px;
}
.page_cultural .color {
	color: #73C4A9 !important;
}
.page_cultural #content .pageheader::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	bottom: 3px;
	left: 0;
}
.page_cultural #content .pageheader::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	bottom: 0;
	left: 0;
}
.page_cultural .separate_double::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	top: 0;
	left: 0;
}
.page_cultural .separate_double::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	top: 4px;
	left: 0;
}
.page_cultural #content .entry .ll {
	border-left: 2px solid #73C4A9;
}
.page_cultural .the4 dt {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #73C4A9;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}
.page_cultural #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #73C4A9;
	position: relative;
	padding-left: 28px;
}
.page_cultural .job li {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	color: #fff;
	border-radius: 2px;
	background: #73C4A9;
	box-sizing: border-box;
	display: inline-block;
	padding: 4px 8px;
	margin-right: 8px;
	margin-bottom: 8px;
}
#content .entry h5 {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	width: 90%;
	margin: 0 auto 16px;
	padding-left: 12px;
	position: relative;
}
#content .entry h6 {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	width: 90%;
	margin: 0 auto 8px;
}
.b-m #content .entry h5 {
	margin-bottom: 0 !important;
	padding: 16px 24px 0 !important;
	background: #fff;
	box-sizing: border-box;
}
.page_cultural #content .entry h5:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #73C4A9;
	border-radius: 4px;
}
.page_cultural #content .entry .ll p.check {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #208060;
	display: block;
	padding: 6px 8px;
	box-sizing: border-box;
	border-radius: 1px;
	width: 90%;
	margin: 8px auto 0;
}
.cultural_table .level_1 {
	background: #73C4A9;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.page_cultural #comment1, .page_cultural #comment3, .page_cultural #comment4 {
	position: absolute;
	top: 16px;
	left: 24px;
}
.page_cultural #comment2, .page_cultural #comment5 {
	position: absolute;
	bottom: 16px;
	right: 24px;
}
.page_cultural .teacher_comment div:first-child {
	background: #CFEDE3;
	border-radius: 2px;
	padding: 16px 104px 16px 16px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 104px;
	box-sizing: border-box;
}
table.trends_cultural {
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 24px;
}
table.trends_cultural th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.trends_cultural td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #56ab8f;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
/*----------------------------
	音楽科
----------------------------*/
.music_navi {
	background: #0c152d;
}
.music_navi ul {
	margin-left: -1px;
}
.music_navi li {
	float: left;
	margin-left: 1px;
	width: -webkit-calc(100% / 3 - 1px);
	width: calc(100% / 3 - 1px);
}
.page_music .color {
	color: #B369A7 !important;
}
.page_music #content .entry h2, .page_music #content .entry h3, .page_music #content .entry h4, .page_music #content .pageheader h2, .page_music #content .pageheader h3, .page_music .col3 h3, .page_music #content .entry h5 {
	font-family: serif;
	font-weight: 600;
}
.page_music #content .entry h5:before, .page_music #content .entry h6:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #B369A7;
	border-radius: 4px;
}
.b-m .page_music #content .entry h5:before, .b-m .page_music #content .entry h6:before {
	top: 23px;
	left: 8px;
}
.page_music .separate_double::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #B369A7;
	position: absolute;
	top: 0;
	left: 0;
}
.page_music .separate_double::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #B369A7;
	position: absolute;
	top: 4px;
	left: 0;
}
.page_music #content .entry .ll {
	border-left: 2px solid #B369A7;
}
.b-m .page_music .the4 dl {
	background: #fff;
	width: 90%;
	margin: 0 auto;
	padding-top: 16px;
}
.page_music .the4 dt {
	font-family: serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #B369A7;
	padding: 16px;
	border-radius: 2px 2px 0 0;
	width: 90%;
	box-sizing: border-box;
	margin: 0 auto;
}
.page_music #content .entry .licence li h3 {
	margin-bottom: 0;
	color: #B369A7;
	padding-bottom: 0;
}
.page_music #content .entry .licence li h3:before {
	display: none;
}
.page_music #content .pageheader::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #B369A7;
	position: absolute;
	bottom: 3px;
	left: 0;
}
.page_music #content .pageheader::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #B369A7;
	position: absolute;
	bottom: 0;
	left: 0;
}
.b-m .page_music #content .pageheader::before, .b-m .page_music #content .pageheader::after {
	display: none;
}
.music_table .level_1 {
	background: #B369A7;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.page_music .teacher_comment div:first-child {
	background: #DCC1DA;
	border-radius: 2px;
	padding: 16px 104px 16px 16px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 104px;
	box-sizing: border-box;
}
table.trends_music {
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 24px;
}
table.trends_music th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.trends_music td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #823694;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
.page_music.option #content .entry .image {
	margin: 32px 0 16px;
}
.b-m .page_music.option #content .entry .image {
	margin: 0 0 16px;
}
.leftright, .rightleft {
	margin-bottom: 16px;
}
.b-m .leftright, .b-m .rightleft {
	margin-bottom: 16px;
	width: 90% !important;
	padding: 16px;
	background: #fff;
	box-sizing: border-box;
	margin: 0 auto;
}
.b-m #content .leftright p, .b-m #content .rightleft p {
	padding: 0 !important;
	width: 100%;
}
.leftright div:first-child, .rightleft div:first-child {
	width: 42%;
	float: left;
	margin-right: 16px;
}
.leftright div:first-child p, .rightleft div:first-child p {
	font-size: 10px !important;
}
.mrenewal .leftright div:first-child {
	width: 60%;
	float: left;
	margin-right: 0;
}
.b-m .mrenewal .leftright div:first-child {
	display: none;
}
.mrenewal .leftright div:last-child {
	width: 36%;
	float: right;
}
.b-m .mrenewal .leftright div:last-child {
	width: 100%;
	float: none;
}
.page_music.option #content .entry h4 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 24px;
	background: #DCC1DA;
	position: relative;
	padding: 8px 0 8px 16px;
	margin-top: 24px;
}
.b-m .page_music.option #content .entry h4 {
	margin-bottom: 0 !important;
	padding-bottom: 16px !important;
	margin-top: 0;
}
.page_music.option #content .entry h4:before {
	content: '';
	background: #111;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
}
.page_music.option #content .entry h4:after {
	content: '';
	background: #111;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.page_music.option #content .entry h6 {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 12px;
	padding-left: 16px;
	position: relative;
}
/*----------------------------
	学科診断
----------------------------*/
#content .dianosis .wrapper .ttl1 {
	margin-bottom: 32px;
	width: 100%;
}
#content .dianosis .item {
	margin-bottom: 32px;
}
#content .dianosis .item:last-of-type {
	margin-bottom: 0;
}
#content .dianosis .item p {
	margin-bottom: 0;
}
#content .dianosis .item .box1 p {
	width: 168px;
	font-size: 10px;
}
#content .dianosis .item h2, #content .dianosis .item h3, #content .dianosis .item h4 {
	font-weight: 500;
	line-height: 1.6em;
}
#content .dianosis .item h2 {
	font-size: 16px !important;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
	width: 100%;
}
#content .dianosis .item h3 {
	font-size: 14px;
	text-align: center;
	padding: 8px;
	margin-bottom: 0;
	color: #fff;
	width: 100%;
}
#content .dianosis .item h3 span.big {}
#content .dianosis .item h4 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}
.box1 {
	margin-bottom: 12px;
	position: relative;
}
#content .dianosis .item .box1 .txtBox {
	/*min-height: 138px;*/
}
#content .dianosis .item .box1 .img {
	width: 100px;
	position: absolute;
	bottom: -12px;
	right: 0;
}
#content .dianosis .item .box2 {
	border: 1px solid;
}
#content .dianosis .item .box2 .txtBox {
	border-bottom: 1px solid;
	border-top: 1px solid;
	padding: 16px;
}
#content .dianosis .item .box2 .img {
	padding: 10px;
}
#content .dianosis .item .box2 .img p {
	width: 48%;
	margin-right: 4%;
	float: left;
}
#content .dianosis .item .box2 .img p:last-of-type {
	margin-right: 0;
}
#content .dianosis .wrapper2 .ttl2 {
	margin: 20px auto;
	text-align: center;
	width: 228px;
}
#content .dianosis .wrapper2 .ttl2 img {
	width: 455px;
	height: auto;
}
#content .dianosis .wrapper2 .img {
	margin-bottom: 32px;
}
#content .dianosis .item.page_childcare .box2, #content .dianosis .item.page_childcare .box2 .txtBox {
	border-color: #e86a8c !important;
}
#content .dianosis .item.page_childcare .color {
	color: #e86a8c !important;
	font-size: 12px;
}
#content .dianosis .item.page_childcare h3, #content .dianosis .item.page_childcare h5:before {
	background: #e86a8c;
}
#content .dianosis .item.page_health .box2, #content .dianosis .item.page_health .box2 .txtBox {
	border-color: #F1906E !important;
}
#content .dianosis .item.page_health .color {
	color: #F1906E !important;
	font-size: 12px;
}
#content .dianosis .item.page_health h3, #content .dianosis .item.page_health h5:before {
	background: #F1906E;
}
#content .dianosis .item.page_cultural .box2, #content .dianosis .item.page_cultural .box2 .txtBox {
	border-color: #73C4A9 !important;
	font-size: 12px;
}
#content .dianosis .item.page_cultural .color {
	color: #73C4A9 !important;
	font-size: 12px;
}
#content .dianosis .item.page_cultural h3, #content .dianosis .item.page_cultural h5:before {
	background: #73C4A9;
}
#content .dianosis .item.d_music .box2, #content .dianosis .item.d_music .box2 .txtBox {
	border-color: #B369A7 !important;
	font-size: 12px;
}
#content .dianosis .item.d_music .color {
	color: #B369A7 !important;
	font-size: 12px;
}
#content .dianosis .item.d_music h3, #content .dianosis .item.d_music h5:before {
	background: #B369A7;
}
#content .dianosis .item.other1 .box2, #content .dianosis .item.other1 .box2 .txtBox {
	border-color: #0099DB !important;
}
#content .dianosis .item.other1 .color {
	color: #0099DB !important;
	font-size: 12px;
}
#content .dianosis .item.other1 h3, #content .dianosis .item.other1 h5:before {
	background: #0099DB;
}
#content .dianosis .item.other2 .box2, #content .dianosis .item.other2 .box2 .txtBox {
	border-color: #947864 !important;
}
#content .dianosis .item.other2 .color {
	color: #947864 !important;
	font-size: 12px;
}
#content .dianosis .item.other2 h3, #content .dianosis .item.other2 h5:before {
	background: #947864;
}
#content .dianosis p, #content .dianosis h5 {
	margin-right: 0;
	margin-left: 0;
	width: 100%;
}
#content .dianosis .item.other1 h2, #content .dianosis .item.other2 h2 {
	width: 168px;
}
#content .dianosis .item.other1 .box2 .txtBox, #content .dianosis .item.other2 .box2 .txtBox {
	border-bottom: none;
}
/*----------------------------
	入試情報
----------------------------*/
.entrance_navi ul {
	margin-left: -2px;
	background: #f4f4f4;
}
.entrance_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
.entrance_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.page_others #content .pageheader::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #111;
	position: absolute;
	bottom: 3px;
	left: 0;
}
.page_others #content .pageheader::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #111;
	position: absolute;
	bottom: 0;
	left: 0;
}
.uniquenavi {
	width: 90%;
	margin: 0 auto 16px;
}
.uniquenavi p {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 14px;
	padding-left: 16px;
	position: relative;
}
.uniquenavi p:before {
	position: absolute;
	top: 3px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
.uniquenavi li {
	float: left;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: center;
	margin-right: 8px;
	margin-bottom: 8px;
}
.uniquenavi li:last-child {
	margin-right: 0;
}
.uniquenavi li a {
	font-weight: 500;
	border-radius: 2px;
	color: #111;
	background: #fff104;
	box-sizing: border-box;
	display: block;
	padding: 4px 8px;
}
.uniquenavi.visitor {
	margin: 0 auto 32px;
}
.uniquenavi.visitor li {
	font-size: 13px;
	float: none;
	margin-right: 0;
}
.uniquenavi.visitor li .small {
	font-size: 12px !important;
}
.uniquenavi.visitor li a {
	text-align: left;
	padding: 8px 12px;
}
.students_system li {
	width: 46%;
	height: 34px;
}
.students_system li a {
	padding: 0 !important;
}
.students_system li:last-child {
	margin-bottom: 0;
}
.note {
	width: 90%;
	margin: 0 auto 24px;
	padding: 12px;
	background: #F7F7F7;
	background-image: linear-gradient(to right, #000, #000 1px, transparent 2px, transparent 2px), linear-gradient(to bottom, #000, #000 1px, transparent 2px, transparent 2px), linear-gradient(to right, #000, #000 1px, transparent 2px, transparent 2px), linear-gradient(to bottom, #000, #000 1px, transparent 2px, transparent 2px);
	background-size: 5px 1px, 1px 5px, 5px 1px, 1px 5px;
	background-position: top, right, bottom, left;
	background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
	box-sizing: border-box;
}
.note li {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	margin-bottom: 4px;
	padding-left: 1em;
	text-indent: -1em;
}
.note li:last-child {
	margin-bottom: 0;
}
.page_others #content .entry h5:before {
	position: absolute;
	top: 9px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
#content .entry .list_txt {
	margin-bottom: 32px;
}
#content .entry .list_txt li {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
	padding-left: 1em;
	text-indent: -1em;
}
#content .entry .list_txt li:last-child {
	margin-bottom: 0;
}
#content .entry .list_txt li a {
	color: #111;
	background: #F9C4A8;
	display: inline-block;
}
#content .entry .ll {
	border-left: 2px solid #6A96E8;
	padding-left: 16px;
}
.scroll {
	width: 95%;
	overflow-x: scroll;
	margin-bottom: 16px;
	margin-left: 5%;
}
.scroll table:last-child {
	margin-bottom: 0 !important;
}
table tr.border_double{
	border-bottom: 3px double #111;
}
table.others_table th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.others_table td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #111;
	background: #F8F8F8;
	padding: 12px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.entrance_table.max {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	margin-bottom: 16px;
	width: 800px;
}
table.entrance_table.min {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	margin-bottom: 16px;
	width: 90%;
}
table.entrance_table th, table.entrance_table td {
	font-size: 10px;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #111;
	line-height: 1.6em;
	vertical-align: middle;
}
table.entrance_table td img {
	width: inherit;
}
td a {
	color: #111;
	background: #F9C4A8;
	display: inline-block;
	padding: 0 2px;
}
table.entrance_table th {
	text-align: center;
	font-weight: 500;
	color: #111;
	background: #6A96E8;
}
table.entrance_table .level_2 {
	font-weight: 500;
	background: #b5cefb;
}
table.entrance_table .level_3 {
	font-weight: 500;
	background: #d5e3fd;
}
table.entrance_table .level_4 {
	font-weight: 500;
	background: #eef3fd;
}
table.teacher {
	width: 800px;
}
.teacher th:nth-child(-n+4) {
	width: 14%;
}
.teacher td:nth-child(-n+4) br {
	display: none;
}
.w_restrict {
	width: 160px;
}
.w_restrict_min {
	width: 88px;
}
.colt {
	margin-bottom: 16px;
}
.colt > div:nth-child(1) {
	margin-bottom: 24px;
}
table.cols_table th {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 8px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.cols_table td {
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	color: #111;
	background: #F8F8F8;
	padding: 8px;
	border: 1px solid #111;
	vertical-align: middle;
}
.entrance_table {
	margin-bottom: 16px;
}
.color_c {
	color: #e86a8c !important;
}
.color_h {
	color: #F1906E !important;
}
.color_cl {
	color: #73C4A9 !important;
}
.color_m {
	color: #B369A7 !important;
}
.color_o {
	color: #6A96E8 !important;
}
.page_others.option #content .entry h4 {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-top: 24px;
	margin-bottom: 16px;
	background: #E6B98C;
	position: relative;
	padding: 8px 8px 8px 16px;
}
.page_others.option #content .entry h4:before {
	content: '';
	background: #111;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
}
.page_others.option #content .entry h4:after {
	content: '';
	background: #111;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.red {
	color: #D70808 !important;
}
.bold {
	font-weight: 500 !important;
}
#content .entry h5 a, #content .entry p a {
	color: #111;
	background: #fff000;
	font-weight: 500;
	text-decoration: underline;
}
.intro {
	width: 703px;
	margin: 0 auto 16px;
}
element.style {}
.intro p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
}
/*----------------------------
	visitor
----------------------------*/
.visitor_navi {
	background: #f4f4f4;
}
.visitor_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
.visitor_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.page_others .separate_double::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #6A96E8;
	position: absolute;
	top: 0;
	left: 0;
}
.page_others .separate_double::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #6A96E8;
	position: absolute;
	top: 4px;
	left: 0;
}
.page_others .color {
	color: #346dd8 !important;
}
.col3_link {
	width: 90%;
	margin: 0 auto;
}
.col3_link li:nth-child(odd) {
	width: 48%;
	float: left;
	margin-bottom: 16px;
}
.col3_link li:nth-child(even) {
	width: 48%;
	float: right;
	margin-bottom: 16px;
}
.col3_link li:last-child {
	margin-bottom: 0;
}
.col3_link a {
	display: block;
	background: #fff;
	padding: 0;
	box-sizing: border-box;
	border-radius: 2px;
	position: relative;
	/*height: 168px;*/
}
.col3_link li h3 {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	height: 3em;
}
.col3_link li div {
	background: #000;
	margin-bottom: 8px;
	overflow: hidden;
}
.col3_link a img {
	transform: scale(1.05);
	transition: 0.8s;
	opacity: 1;
}
.tblemp {
	background: #b9e9ff !important;
}
table.visitor_table.min {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	margin-bottom: 16px;
	width: 100%;
}
table.visitor_table th {
	text-align: center;
	font-weight: 500;
	color: #111;
	background: #6A96E8;
}
table.visitor_table th, table.visitor_table td {
	font-size: 12px;
	padding: 12px;
	box-sizing: border-box;
	border: 1px solid #111;
	line-height: 1.6em;
	vertical-align: middle;
}
/*----------------------------
	about
----------------------------*/
.page_others .entry.special {
	background: #fff;
	width: 90%;
	padding: 40px 20px 24px;
	box-sizing: border-box;
	margin: 0 auto;
	border: 6px solid #2FB2CF;
}
.about_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/about/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.about_navi ul {
	margin-left: -2px;
}
.about_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
.special_title {
	width: 100%;
	margin: 0 auto 32px !important;
}
.kimg, .kimg2 {
	width: 100%;
	;
	margin: 0 auto 32px;
}
.kimg_min {
	width: 50%;
	;
	margin: 0 auto 32px;
}
.page_others.about .color {
	color: #2FB2CF !important;
}
.page_others.about #content .entry h5:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #2FB2CF;
	border-radius: 4px;
}
.page_others.about #content .entry .ll {
	border-left: 2px solid #2FB2CF;
}
/*----------------------------
	work
----------------------------*/
.work_navi ul {
	margin-left: -1px;
	background: #f4f4f4;
}
.work_navi li {
	float: left;
	margin-left: 1px;
	width: -webkit-calc(100% / 3 - 1px);
	width: calc(100% / 3 - 1px);
}
.work_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/about/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
#hsj {
	width: 90%;
    margin: 0 auto;
}
#hsj > li:not(:last-child) {
	margin-bottom: 24px;
}
#content .entry #hsj > li h4 {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #111;
	margin-bottom: 32px;
	padding-left: 0;
	width: 100%;
}
#content .entry #hsj > li h5 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 12px;
	padding-left: 0;
	width: 100%;
}
#content .entry #hsj > li h5:before {
	display: none;
}
#content .entry #hsj > li h6 {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #F29FB4;
	margin-bottom: 12px;
	width: 100%;
}
#content .entry #hsj > li p {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 16px;
	background: #eee;
	padding: 12px;
	width: 100%;
}

#content .entry #hsj > li ul li {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
}
/*----------------------------
	キャンパスマップ
----------------------------*/
#content .entry p.view a {
	padding: 0;
}
/*----------------------------
	オープンキャンパス
----------------------------*/
.ocImage li {
	margin-bottom: 16px;
}
.ocImage li:last-of-type {
	margin-bottom: 0;
}
.ytbox {
	margin-bottom: 16px;
}
.ytbox2 {
	margin-bottom: 24px;
}
.ytbox2 div:nth-child(1) {
	width: 48%;
	float: left;
	margin-bottom: 16px;
}
.ytbox2 div:nth-child(2) {
	width: 48%;
	float: right;
	margin-bottom: 16px;
}
.ytbox2 div:nth-child(3) {
	width: 48%;
	float: left;
}
.ytbox2 div:nth-child(4) {
	width: 48%;
	float: right;
}
.ytbox3 div:first-child {}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 16px;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
/*----------------------------
	おしらせ
----------------------------*/
.fcol li:nth-child(-n+2) {
	margin-bottom: 12px;
}
.fcol li:nth-child(odd) {
	width: 48%;
	float: left;
}
.fcol li:nth-child(even) {
	width: 48%;
	float: right;
}
.fcol li div {
	margin-bottom: 4px;
}
.fcol li p {
	margin-bottom: 0 !important;
}
.amail {
	width: 154px;
}
/*20210115追加*/
.till div {
	display: none;
}
/*20210322追加*/
#fvbn {
	width: 95%;
	margin: 0 auto 8px;
}
#fvbn ul li:nth-child(1) {
	width: 49%;
	float: left;
	margin-bottom: 8px;
}
#fvbn ul li:nth-child(2) {
	width: 49%;
	float: right;
	margin-bottom: 8px;
}
#fvbn ul li:nth-child(3) {
	width: 49%;
	float: left;
}
#fvbn ul li:nth-child(4) {
	width: 49%;
	float: right;
}
#sitemap {
	display: none;
}
.mtn {
	margin-top: 0 !important;
}
.mbn {
	margin-bottom: 0 !important;
}
.b-m #content .ptm {
	padding-top: 24px !important;
}
.b-m #content .pbm {
	padding-bottom: 24px !important;
}
.b-m #content .pbs {
	padding-bottom: 12px !important;
}
.b-m #content .pbn {
	padding-bottom: 0 !important;
}
.b-m #content .ptn {
	padding-top: 0 !important;
}
.bmimg {
	width: 90%;
	margin: 0 auto;
}
.b-m .f1_1, .b-m .f1_2 {
	padding-top: 8px !important;
}
.bmimg_small {
	width: 90%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	padding: 16px;
}
#content .entry #story ul li h5 {
	padding-left: 16px !important;
}
#content .entry #story ul li h5:before {
	display: none;
}
.m_img_w90_auto {
	width: 90%;
	margin-left: auto !important;
	margin-right: auto !important;
}
/*----------------------------
	短大のメリット
----------------------------*/
ul#merit {}
ul#merit li {}
ul#merit li:not(:last-child) {
	margin-bottom: 24px;
}
ul#merit li h4 {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #070707;
	margin-bottom: 16px;
	position: relative;
	padding-left: 24px;
}
ul#merit li h4:before {
	content: '';
	background: url(../img/about/merit_icon.svg) repeat-x;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 5px;
	left: 0;
}
ul#merit li div {
	margin-bottom: 16px;
}
ul#merit li p {
	font-weight: 400 !important;
	font-size: 12px !important;
	letter-spacing: 0.1em !important;
	line-height: 1.8em !important;
	text-align: left;
	color: #111;
	margin-bottom: 0 !important;
}

/*----------------------------
	固定バナー（サイド）
----------------------------*/
#sidebn {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	margin-top: -50px;
}
#sidebn li {
	width: 48px;
	margin-bottom: 4px;
}
#sidebn li:last-child {
	margin-bottom: 0;
}
#sidebn li a:hover img {
	transform: translateX(4px);
}

/*----------------------------
	第三者評価・適格認証
----------------------------*/
.jaca{
	width: 90%;
	margin: auto;
}
.jaca .ico_jaca{
	width: 82px !important;
	float: left;
	margin-right: 20px !important;
	margin-right: 0 !important;
}
.jaca p{
	width: 100% !important;
}


/* 2024年 特集 教員への道 */
#specia_teacher_img{
	margin-left: -20px !important;
    width: 110% !important;
    margin-right: 0 !important;
}