@charset "UTF-8";
body {
	font-family: Barlow, 'Noto Sans JP', sans-serif;
	background: #F4F4F4;
	color: #111;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "halt"1;
	width: 100%;
	position: relative;
}



#slide_wrapp{
	position: relative;
	overflow: hidden;
	width: 1000px;
	height: 520px;
}
.slide_item {
	opacity: 0;
	transform: scale(1.1);
	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;
/*	mix-blend-mode: screen;*/
	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 {
	position: relative;
}
#side {
	display: none;
}
#gnavi ul li {
	width: 144px;
	height: 72px;
	float: left;
	transition: .2s;
}
#search {
	position: relative;
	width: 216px;
	height: 89px;
	background: #fff;
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 144px;
	z-index: 100;
}
#search div {
	font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
	line-height: 1em;
	position: absolute;
	top: 45px;
	left: 50%;
	margin-left: -18px;
}
#search:hover, #menu:hover {
	background: #eee;
}
#search:before {
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -9px;
	content: '';
	background: url(../img/ico_search.png);
	transition: .2s;
}
#searchbox {
	width: 288px;
	height: 66px;
	background: #eee;
	padding: 0;
	box-sizing: border-box;
	position: fixed;
	top: 62px;
	right: 0;
	transition: .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 9;
	border-top: 1px solid #eee;
	padding: 8px;
}
#searchbox.appear {
	top: 72px;
	transition: .2s;
	visibility: visible;
	opacity: 1;
}
#searchbox form {
	position: relative;
}
#focus {
	width: 100%;
	height: 49px;
	color: #111;
	font-size: 12px;
	line-height: 1em;
	padding: 8px 12px 8px;
	box-sizing: border-box;
	border: none;
	letter-spacing: 0.1em;
	background: #fff;
}
input[type="text"]:focus, input[type="image"]:focus {
	outline: 0;
}
#serchbtn {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 18px;
	right: 20px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
#menu {
	position: relative;
	background: #fff;
	box-sizing: border-box;
	transition: .2s;
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 101;
}
#menu.active {
	border-bottom: none;
	background: none;
}
#menu div:first-child {
	width: 24px;
	height: 18px;
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -12px;
}
#menu div:last-child {
	font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
	line-height: 1em;
	position: absolute;
	top: 45px;
	left: 50%;
	margin-left: -14px;
}
#menu span:nth-of-type(1) {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #111;
	transition: .2s;
}
#menu span:nth-of-type(2) {
	position: absolute;
	top: 8px;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #111;
	transform-origin: center center;
	transition: .2s;
}
#menu span:nth-of-type(3) {
	position: absolute;
	top: 16px;
	left: 0;
	width: 12px;
	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;
}
nav.navilist {
	position: fixed;
	top: 0;
	left: 0;
	/*	width: calc(100% - 433px);*/
	width: 100%;
	height: 100%;
	background-color: #FCFCFC;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	overflow-y: scroll;
	transition: .2s;
}
nav.navilist.n_active {
	visibility: visible;
	opacity: 1;
	transition: .2s;
}


nav div {
	padding: 40px 0 40px 40px;
	max-width: 80%;
	/*	margin: 0 auto;*/
	box-sizing: border-box;
}
nav div > ul li {
	margin-bottom: 20px;
}
nav div > ul li:last-child {
	margin-bottom: 0;
}
.block {
	display: block;
}
nav h2 {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 16px;
	padding-left: 16px;
	position: relative;
}
nav h2:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
nav div ul li ul li {
	font-size: 13px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-right: 4px;
	margin-bottom: 10px;
	display: inline-block;
}
nav a {
	font-weight: 500;
	color: #111;
	background: #F9C4A8;
	display: inline-block;
	padding: 5px 6px 3px;
}
nav a:hover {
	background: #cccccc;
	color: #fff;
}
nav p {
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1em;
	letter-spacing: 0.1em;
}
nav p a {
	font-weight: 500;
	color: #111;
	background: none;
	display: inline-block;
	transition: none;
	padding: 0;
	;
}
nav p a:hover {
	background: none;
	color: #111;
	transition: none;
}
#sidecontent {
	background: #F4F4F4;
	padding: 105px 16px 16px 16px;
}

#notice {
	width: 904px;
	margin: 0 auto 24px;
	padding-bottom: 0 !important;
}
#notice ul li {
	width: 290px;
	float: left;
	margin-right: 17px;
}
#notice ul li:last-child {
	margin-right: 0;
}
#notice ul li a {
	width: 290px;
	height: 120px;
	display: block;
	background: #ccc;
}

#menugroup {
	width: 904px;
	margin: 0 auto;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
#attribute {
	float: left;
	width: 487px;
}
#banner {
	float: right;
	width: 400px;
}
#attribute li {
	text-align: center;
	font-size: 15px;
	letter-spacing: 0.3em;
	line-height: 1em;
}
#attribute li a {
	display: block;
	background: #fff;
	color: #111;
	font-weight: 500;
	height: 168px;
	box-sizing: border-box;
	position: relative;
	padding-top: 122px;
	padding-left: 2px;
}
#attribute #v1, #attribute #v2 {
	margin-left: -2px;
}
#attribute #v1 li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 2 - 2px);
	width: calc(100% / 2 - 2px);
}
#attribute #v2 li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
#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%);
}
#attribute li a:hover::before {
	width: 0%;
}
#attribute #v1 li:nth-child(1) a:after {
	width: 66px;
	height: 72px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -33px;
	content: '';
	background: url(../img/ico_navi_1.png);
	transition: .2s;
	background-size: contain;
}
#attribute #v1 li:nth-child(2) a:after {
	width: 67px;
	height: 72px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -33px;
	content: '';
	background: url(../img/ico_navi_2.png);
	transition: .2s;
	background-size: contain;
}
#attribute #v2 li:nth-child(1) a:after {
	width: 107px;
	height: 72px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -53px;
	content: '';
	background: url(../img/ico_navi_3.png);
	transition: .2s;
	background-size: contain;
}
#attribute #v2 li:nth-child(2) a:after {
	width: 62px;
	height: 72px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -31px;
	content: '';
	background: url(../img/ico_navi_4.png);
	transition: .2s;
	background-size: contain;
}
#attribute #v2 li:nth-child(3) a:after {
	width: 67px;
	height: 72px;
	display: block;
	position: absolute;
	top: 18%;
	left: 50%;
	margin-left: -33px;
	content: '';
	background: url(../img/ico_navi_5.png);
	transition: .2s;
	background-size: contain;
}
#attribute li a:hover:after {
	top: 18%;
}
#banner div:nth-child(1) {
	width: 192px;
	height: 192px;
	overflow: hidden;
	float: left;
	margin-right: 16px;
}
#banner div:nth-child(2) {
	width: 192px;
	height: 192px;
	overflow: hidden;
	float: left;
	margin-bottom: 16px;
}
.hover a {
	display: block;
	position: relative;
}
.hover a:before {
	border: 8px solid #fff;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	opacity: 0;
	transition: .2s;
}
.hover a:hover:before {
	opacity: 1;
	transition: .2s;
}
#banner div:nth-child(3) {
	clear: both;
}
#fnavi {
	width: 904px;
	height: 48px;
	margin: 0 auto 16px;
	position: relative;
	padding: 24px 0;
}
#fnavi:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #B0CFD9;
}
#fnavi:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #B0CFD9;
}
#contact_assess {
	width: 394px;
	float: left;
}
#contact_assess li {
	float: left;
	width: 192px;
	height: 48px;
	overflow: hidden;
	margin-right: 10px;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
}
#contact_assess li:last-child {
	margin-right: 0;
}
#contact_assess li a {
	display: block;
	font-weight: 500;
	color: #111;
	background: #FFF104;
	height: 48px;
	box-sizing: border-box;
	padding-top: 17px;
	position: relative;
}
#contact_assess li a:after {
	width: 184px;
	height: 40px;
	border: 1px solid #111111;
	box-sizing: border-box;
	position: absolute;
	top: 4px;
	left: 4px;
	content: '';
	transition: .2s;
}
#contact_assess li a:hover {
	background: #cccccc;
	color: #fff;
	letter-spacing: 0.2em;
}
#contact_assess li a:hover:after {
	border: 1px solid #cccccc;
	transition: .2s;
}
#contact_assess li a:before {
	content: url(../img/ico_arrow.png);
	width: 10px;
	height: 6px;
	position: absolute;
	top: 17px;
	left: -10px;
	transition: .2s;
}
#contact_assess li a:hover:before {
	left: 20px;
	transition: .2s;
}
footer {
	padding: 40px 0 32px;
	background: #91BBCE;
}
#sns {
	width: 494px;
	float: right;
}
#sns li {
	width: 158px;
	float: left;
	margin-right: 10px;
}
#sns li:last-child {
	margin-right: 0;
}
#sns li a {
	display: block;
	background: #a9cbda;
	height: 48px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 13px;
}
#tw img {
	width: 7px;
	height: 16px;
}
#fb img {
	width: 17px;
	height: 14px;
}
#ig img {
	width: 16px;
	height: 16px;
}
#tw a {
	border-radius: 2px 0 0 2px;
}
#ig a {
	border-radius: 0 2px 2px 0;
}
#sns li a:hover {
	background: #80B2C9;
}
#sideinfo {
	width: 904px;
	position: relative;
	margin: 0 auto 16px;
	padding-bottom: 16px;
}
#sideinfo:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #B0CFD9;
}
#sideinfo p {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	color: #fff;
}
#copyright {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.08em;
	line-height: 1em;
	color: #fff;
	width: 904px;
	margin: 0 auto;
}
.btn, .btn_target {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
	color: #111;
	margin: 24px auto 0;
	width: 240px;
	height: 48px;
	overflow: hidden;
}
.btn.btn_l{
	margin: 24px 0 0;
}
.btnw .btn {
	margin-top: 0;
}
.btn a, .btn_target a {
	display: block;
	font-weight: 500;
	background: #FFF104;
	height: 48px;
	box-sizing: border-box;
	padding-top: 17px;
	position: relative;
}
.btn a:before {
	content: url("../img/ico_arrow.png");
	width: 10px;
	height: 6px;
	position: absolute;
	top: 18px;
	left: -10px;
	transition: .2s;
}
.btn a:after, .btn_target a:after {
	width: 232px;
	height: 40px;
	border: 1px solid #111111;
	box-sizing: border-box;
	position: absolute;
	top: 4px;
	left: 4px;
	content: '';
	transition: .2s;
}
.btn a:hover, .btn_target a:hover {
	background: #cccccc;
	color: #fff;
/*	letter-spacing: 0.15em;*/
}
.btn a:hover:before {
	left: 16px;
	transition: .2s;
}
.btn a:hover:after, .btn_target a:hover:after {
	border: 1px solid #cccccc;
	transition: .2s;
}
.btn_target a:before {
	content: url("../img/target.png");
	width: 12px;
	height: 12px;
	position: absolute;
	top: 16px;
	right: 28px;
	transition: .2s;
}
.btn_target a:hover:before {
	content: url("../img/target_on.png");
	width: 12px;
	height: 12px;
	position: absolute;
	top: 16px;
	right: 28px;
	transition: .2s;
}
/***** カコとイマ用ボタン *****/
.btn.kako {
	width: 300px;
	height: 64px;
}
.btn.kako a {
	line-height: 1.4em;
	height: 64px;
}
.btn.kako a:after {
	width: 292px;
	height: 56px;
}
.btn.kako a:before {
	top: 24px;
}
/***** カコとイマ用ボタン *****/
.btnw {
	width: 496px;
	margin: 24px auto 32px;
}
.btnw li {
	width: 240px;
	float: left;
	margin-right: 16px;
}
.btnw li:last-child {
	margin-right: 0;
}
.btnw li .btn {
	margin-top: 0;
	margin-bottom: 8px;
}
.btns {
	width: 240px;
	margin: 0 auto 32px;
}
.btns .btn {
	margin-bottom: 8px;
}
header {
	width: 100%;
    background: #fff;
}
#header {
	width: 1000px;
    padding-top: 16px;
    box-sizing: border-box;
    margin: 0 auto;
}
h1 {
	width: 496px;
	margin-bottom: 18px;
}
.change_pc {
	display: block;
}
.change_sp {
	display: none;
}
#pcmenu {
	width: 1000px;
	margin-left: -1px;
}
.menu {
    position: relative;
    width: 100%;
    height: 48px;
    max-width: 1000px;
    margin: 0 auto;
}
.menu > li {
    float: left;
    margin-left: 1px;
	width: -webkit-calc(100% / 5 - 1px);
	width: calc(100% / 5 - 1px);
    height: 48px;
    line-height: 1em;
	text-align: center;
	font-size: 12px;
    letter-spacing: 0.1em;
}
.menu > li a {
    display: block;
    color: #111;
	background: #fff;
	height: 48px;
	position: relative;
}
.menu li:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    background: #F9C4A8;
    width: 144px;
    height: 1px;
	margin-left: -72px;
}
.menu > li a span {
    position: absolute;
    top: 50%;
    left: 0;
    margin: auto;
    width: 100%;
    transform: translateY(-50%);
    box-sizing: border-box;
    padding: 0 10px;
    font-weight: 500;
	line-height: 1.4em;
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}
ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}
.menu > li:hover {
    background: #072A24;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.menu__second-level li {
    position: relative;
}
.menu__second-level li a:hover {
    background: #F9C4A8;
    color: #fff;
}
.init-bottom:after {
    content: '';
	background: url(../img/ico_menu_bottom.png) no-repeat;
    display: inline-block;
    width: 9px;
    height: 5px;
	position: absolute;
	top: 21px;
    right: 32px;
	background-size: contain;
	transition: .2s;
}
.init-bottom:hover:after {
    top: 23px;
	transition: .2s;
}
.menu:before,
.menu:after {
    content: " ";
    display: table;
}
.menu:after {
    clear: both;
}
.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}
li.menu__single ul.menu__second-level {
    position: absolute;
    top: 48px;
    width: 100%;
    background: #072A24;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
    top: 48px;
    visibility: visible;
    opacity: 1;
}
.menu > li.menu__multi {
    position: relative;
}

li.menu__multi ul.menu__second-level {
    position: absolute;
    top: 48px;
    width: 100%;
    background: #072A24;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__multi:hover ul.menu__second-level {
    top: 48px;
    visibility: visible;
    opacity: 1;
}
li.menu__multi ul.menu__second-level li {
    position: relative;
}
li.menu__multi ul.menu__second-level li:hover {
    background: #111;
}
li.menu__multi ul.menu__second-level li ul.menu__third-level {
    position: absolute;
    top: 0px;
    left: 100%;
    width: 100%;
    background: #111;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__multi ul.menu__second-level li:hover ul.menu__third-level {
    visibility: visible;
    opacity: 1;
}
li.menu__multi ul.menu__second-level li ul.menu__third-level li {
    position: relative;
}
li.menu__multi ul.menu__second-level li ul.menu__third-level li:hover {
    background: #000;
}
li.menu__multi ul.menu__second-level li ul.menu__third-level li ul.menu__fourth-level {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 100%;
    background: #2a1f1f;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__multi ul.menu__second-level li ul.menu__third-level li:hover ul.menu__fourth-level {
    visibility: visible;
    opacity: 1;
}
.init-right:after {
    content: '';
	background: url(../img/ico_menu_right.png) no-repeat;
    display: inline-block;
    width: 5px;
    height: 9px;
	position: absolute;
	top: 20px;
    right: 32px;
	background-size: contain;
	transition: .2s;
}
.init-right:hover:after {
    right: 24px;
	transition: .2s;
}
a.init-right:hover {
	background: #fff !important;
    color: #111 !important;
}

main {
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}
#slide {
	position: relative;
	width: 1000px;
/*	height: 520px;*/
	height: 560px;
	margin: 0 auto;
}
#slide:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: url(../img/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.slick-dots {
	position: absolute;
	bottom: 24px;
	right: 32px;
	z-index: 50;
}
.slick-dots li {
	float: left;
	margin-right: 4px;
}
.slick-dots li:last-child {
	margin-right: 0;
}
.slick-dots button {
	text-indent: -9999px;
	border: none;
	outline: none;
	cursor: pointer;
	width: 20px;
	height: 20px;
	position: relative;
	background: none;
}
.slick-dots button:after {
	width: 16px;
	height: 2px;
	content: '';
	background: #FFF104;
	position: absolute;
	top: 9px;
	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;
	height: auto;
	min-height: 1px;
}
footer .slick-slide {
	width: 200px;
	height: 200px;
	margin-right: 16px;
}
[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 {
	width: 100%;
	margin: 0 auto 32px;
	overflow: hidden;
	position: relative;
}
.carousel .hover:nth-child(odd) {
	float: left;
	width: 192px;
	margin-bottom: 17px;
}
.carousel .hover:nth-child(even) {
	float: right;
	width: 192px;
	margin-bottom: 17px;
}
#side .slick-slide {
	margin: 0px 4px;
	width: 185px;
}
.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: 38px;
	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: 38px;
	z-index: 1;
	margin-top: -15px;
}
#content {
	width: 1000px;
	margin: 0 auto;
	padding-top: 25px;
	box-sizing: border-box;
	background: #F5EFE4;
}
#content > div {
	padding: 48px 0;
}
.base_01 {
	padding-bottom: 48px;
	background: #F5EFE4;
}
#content h2.title {
	text-align: center;
	margin-bottom: 32px;
}
#content h2 span.en {
	font-family: Vollkorn;
	font-size: 26px;
	letter-spacing: 0.02em;
	color: #111;
	line-height: 1em;
	display: block;
	margin-bottom: 4px;
}
#content h2 span.ja {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.16em;
	line-height: 1em;
	text-align: center;
	color: #111;
}
#topics {
	width: 904px;
	margin: 0 auto;
/*	padding: 48px 0;*/
}
.under #topics {
	margin: 0 auto 32px;
}
#topics iframe, iframe#topicsinc {
	height: 284px;
}
#undergraduate {
	background: #e6e6df;
	padding: 48px 0;
}
#undergraduate ul li:nth-child(odd) {
	width: 904px;
}
#undergraduate ul li:nth-child(even) {
	width: 904px;
	margin-left: 96px;
}
#undergraduate ul li:nth-child(odd) div:first-child {
	width: 303px;
	height: 264px;
	overflow: hidden;
	background: #000;
	float: left;
}
#undergraduate ul li:nth-child(odd) div:last-child {
	width: 601px;
	float: left;
}
#undergraduate ul li:nth-child(even) div:first-child {
	width: 303px;
	height: 264px;
	overflow: hidden;
	background: #000;
	float: right;
}
#undergraduate ul li:nth-child(even) div:last-child {
	width: 601px;
	float: right;
}
.undergraduate_box {
	height: 264px;
	padding: 32px 0 32px 32px;
	box-sizing: border-box;
	color: #fff;
	position: relative;
}
.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: 16px;
}
.undergraduate_box h3 span.ja {
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.3em;
	line-height: 1em;
	display: block;
	margin-bottom: 8px;
}
.undergraduate_box h3 span.en {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	line-height: 1em;
}
.undergraduate_box p {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 2em;
}
.undergraduate_box p.gomore {
	width: 116px;
	height: 35px;
	border-radius: 1px;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1em;
	box-sizing: border-box;
	text-align: center;
	padding-top: 11px;
	position: absolute;
	bottom: 32px;
	right: 32px;
}
.childcare p.gomore {
	background: #e86a8c;
	transition: .2s;
}
.health p.gomore {
	background: #E5825F;
	transition: .2s;
}
.cultural p.gomore {
	background: #59AF92;
	transition: .2s;
}
.music p.gomore {
	background: #A25495;
	transition: .2s;
}
.childcare a:hover {
	background: #e86a8c;
}
.health a:hover {
	background: #E5825F;
}
.cultural a:hover {
	background: #59AF92;
}
.music a:hover {
	background: #A25495;
}
.childcare a:hover p.gomore {
	background: #ED7F9D;
	transition: .2s;
}
.health a:hover p.gomore {
	background: #F1906E;
	transition: .2s;
}
.cultural a:hover p.gomore {
	background: #73C4A9;
	transition: .2s;
}
.music a:hover p.gomore {
	background: #B369A7;
	transition: .2s;
}
#undergraduate a img {
	transform: scale(1.1);
	transition: 0.8s;
	opacity: 1;
}
#undergraduate a:hover img {
	transform: scale(1);
	transition: 0.8s;
	opacity: 0.8;
}
#instagram {
	width: 904px;
	margin: 0 auto;
	padding: 48px 0;
}
#instagram li {
	width: 214px;
	height: 214px !important;
	overflow: hidden;
	float: left;
	margin-right: 16px;
	margin-bottom: 16px;
	background: #000;
}
#instagram li:nth-child(4n) {
	margin-right: 0;
}
#instagram li:nth-last-child(-n+4) {
	margin-bottom: 0;
}
#instagram a img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
	width: 214px;
	height: 214px;
}
#instagram li:last-child {
	display: none;
}
#pagetop {
	width: 64px;
    height: 64px;
    position: fixed;
    bottom: 0;
    right: 0;
	z-index: 99;
}
#pagetop a {
	display: block;
	background: #fff;
	height: 64px;
	position: relative;
	text-indent: -9999px;
}
#pagetop a:before {
	width: 14px;
	height: 8px;
	display: block;
	position: absolute;
	top: 20px;
	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: 38px;
	left: 50%;
	margin-left: -9px;
	content: '';
	background: url(../img/top_txt.png);
	transition: .2s;
}
#pagetop a:hover {
	background: #eee;
}
#pagetop a:hover:before {
	top: 16px;
	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: 1000px;
	margin: 0 auto;
}
#cover img {
	width: 1000px;
	height: 320px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
#course_top img {
	width: 1000px;
	height: 480px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.currentnavi {
	position: relative;
	margin-left: -3px;
}
.childcare_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/childcare/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.childcare_navi ul {
	margin-left: -2px;
}
.childcare_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 5 - 2px);
	width: calc(100% / 5 - 2px);
}
.currentnavi li {
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.15em;
	line-height: 1em;
	height: 64px;
}
.currentnavi a {
	display: block;
	background: #fff;
	height: 64px;
	box-sizing: border-box;
	font-weight: 500;
	color: #111;
	position: relative;
}
.currentnavi a span {
	position: absolute;
	top: 50%;
	left: 0;
	margin: auto;
	width: 100%;
	transform: translateY(-50%);
	box-sizing: border-box;
	padding: 0 10px;
	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%);
}
.currentnavi a:hover::before {
	width: 0%;
}
.entry {
	background: #fff;
	width: 904px;
	padding: 40px;
	box-sizing: border-box;
	margin: 0 auto;
}
.base_02 {}
.base_02 {
	padding: 48px 0;
	background: #e6e6df;
}
#content .entry p.subtitle {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	line-height: 1em;
	margin-bottom: 16px;
}
.page_childcare .color {
	color: #e86a8c !important;
}
#content .entry h2 {
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.3em;
	line-height: 1em;
	margin-bottom: 16px;
}
#content .entry h3 {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #070707;
	margin-bottom: 16px;
}
#content .entry p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 24px;
}
.separate_double {
	height: 5px;
	position: relative;
	margin: 32px 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: 16px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 16px;
}
#content .entry .ll {
	margin-bottom: 20px;
	padding-left: 14px;
}
.page_childcare #content .entry .ll {
	border-left: 2px solid #ED7F9D;
}
#content .entry .ll p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
}
#content .entry .ll 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;
	list-style-position: inside;
}
#content .entry .ll li:last-child {
	margin-bottom: 0;
}
#content .entry .ll li a, #content .entry .a-list li a {
	color: #111;
	background: #F9C4A8;
	padding: 2px;
}
#content .entry .ll li a:hover, #content .entry .a-list li a:hover {
	background: #cccccc;
	color: #fff;
}
#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;
}
.separate_single {
	content: "";
	width: 100%;
	height: 1px;
	background: #DDDDDD;
	margin: 32px 0;
}
.the4 > li {
	width: 303px;
	float: left;
	margin-right: 17px;
	margin-bottom: 17px;
}
.the4 > li:nth-child(2n) {
	margin-right: 0;
}
.the4 > li:nth-last-child(-n+2) {
	margin-bottom: 0;
}
.page_childcare .the4 dt {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #E86A8C;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
}
.the4 dd {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #F8F8F8;
	padding: 16px;
	border-radius: 0 0 2px 2px;
}
.the4 dd.g1_1{
	height: 108px;
}
.the4 dd.g1_2{
	height: 192px;
}
.the4 dd.g1_3{
	height: 75px;
}
.the4 dd.g1_4{
	height: 50px;
}
#content .entry .the4 dd li {
	font-weight: 400;
	font-size: 14px;
	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: 14px;
	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 {
	margin-bottom: 24px;
}
.end {
	margin-bottom: 0 !important;
}
.col3 {
	width: 902px;
	margin: 0 auto;
}
.col3 ul {
	margin-left: -16px;
}
.col3 li {
	margin-left: 16px;
	width: -webkit-calc(100% / 3 - 16px);
	width: calc(100% / 3 - 16px);
	float: left;
	margin-bottom: 17px;
	position: relative;
	background: #fff;
	box-sizing: border-box;
	padding: 24px;
	border-radius: 2px;
}
.col3 li:nth-child(3n) {
	margin-right: 0;
}
.col3 li:nth-last-child(-n+3) {
	margin-bottom: 0;
}
.point {
	position: absolute;
	width: 48px;
	height: 48px;
	top: -8px;
	right: -8px;
}
.c_1_points li {
	height: 404px;
}
.c_2_points li {
	height: 422px;
}
.col3 .thumb {
	margin-bottom: 12px;
}
.col3 h3 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
}
.col3 p {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
}
.col3 p a {
	color: #111;
	background: #F9C4A8;
	padding: 2px;
}
.col3 p a:hover {
	background: #cccccc;
	color: #fff;
}
.licence li {
	margin-bottom: 26px;
	padding-bottom: 24px;
	position: relative;
}
.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: 0;
	width: 100%;
	height: 1px;
}
.licence li:last-child::after {
	background: none;
}
.page_childcare #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 18px;
	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: 14px;
	letter-spacing: 0.1em;
	line-height: 2.2em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
}
#content .entry .licence li h3:before {
	position: absolute;
	content: '';
	top: 2px;
	left: 0;
	background: url(../img/ico_license.png) no-repeat;
	width: 20px;
	height: 26px;
}
.job > div:first-child {
	border-bottom: 1px solid #DDDDDD;
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.job > div:last-child {
}
#content .entry .job p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 0;
}
.page_childcare .job li {
	font-weight: 500;
	font-size: 12px;
	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: 6px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
}
.pageheader {
	background: #fff;
	width: 904px;
	padding: 40px;
	box-sizing: border-box;
	margin: 0 auto 48px;
	position: relative;
}
#content .pageheader p.subtitle {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	line-height: 1em;
	margin-bottom: 16px;
}
#content .pageheader h2 {
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.2em;
	line-height: 1em;
	margin-bottom: 24px;
}
#content .pageheader h3 {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #070707;
}
#content .pageheader p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-top: 12px;
}
.page_childcare #content .pageheader::before {
	content: "";
	width: 623px;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	bottom: 3px;
	left: 40px;
}
.page_childcare #content .pageheader::after {
	content: "";
	width: 623px;
	height: 1px;
	background: #e86a8c;
	position: absolute;
	bottom: 0;
	left: 40px;
}
.col2 div:nth-child(1) {
	width: 48%;
	float: left;
}
.col2 div:nth-child(2) {
	width: 48%;
	float: right;
}
table.trends_child {
	border-collapse: collapse;
	margin-bottom: 32px;
}
table.trends_child th {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 20px;
	border: 1px solid #111;
	vertical-align: middle;
}
.small {
	font-size: 10px !important;
}
h2 .small, h3 .small, h4 .small, h5 .small {
	font-weight: 500;
}
table.trends_child td {
	font-weight: 500;
	font-size: 16px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #E86A8C;
	padding: 20px;
	border: 1px solid #111;
	vertical-align: middle;
}
.separate_dashed {
	position: relative;
	margin: 32px 0 72px;
}
.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;
	margin-bottom: 16px;
}
table.curriculum th, table.curriculum td {
	font-size: 12px;
	padding: 12px;
	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: 28px;
	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;
}
#content .entry p.memo {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-top: 12px;
}
#content .entry p.memo_small {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-top: 12px;
	margin-bottom: 8px;
}
#content .entry p.memo_small.pc-none{
	display: none;
}
.basiccol {
	width: 902px;
	margin: 0 auto;
}
.iregcol {
	width: 812px;
	margin: 0 auto;
}
.basiccol ul, .iregcol ul {
	margin-left: -16px;
}
.basiccol li, .iregcol li {
	margin-left: 16px;
	width: -webkit-calc(100% / 3 - 16px);
	width: calc(100% / 3 - 16px);
	float: left;
	margin-bottom: 24px;
	box-sizing: content-box;
}
.basiccol li:last-child, .iregcol li:last-child {
	margin-bottom: 0;
}
.basiccol li div:last-child, .iregcol li div:last-child {
	background: #fff;
	padding: 24px;
	box-sizing: border-box;
}
.basiccol li h3, .iregcol li h3 {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: left;
	color: #111;
	margin-bottom: 8px;
}
.basiccol li p, .iregcol li p {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 0 !important;
}
.iregcol li div {
	margin-bottom: 12px !important;
}
.iregcol li h5 {
	margin-bottom: 8px !important;
	font-weight: 500 !important;
}
.child_box .f1_1 {
	height: 216px;
}
.child_box .f1_2 {
	height: 272px;
}
.child_box .f1_3 {
	height: 108px;
}
.child_box .f1_4 {
	height: 138px;
}

.health_box .f1_1 {
	height: 216px;
}
.health_box .f1_2 {
	height: 392px;
}
.cultural_box .f1_1 {
	height: 276px;
}
.cultural_box .f1_2 {
	height: 498px;
}
.cultural_box .f1_3 {
	height: 388px;
}
.cultural_box .f1_4 {
	height: 388px;
}
.music_box .f1_1 {
	height: 216px;
}
.music_box .f1_2 {
	height: 240px;
}
.circle_box .f1_1 {
	height: 82px;
}
.circle_box li:nth-last-child(-n+2) {
	margin-bottom: 0;
}
.entrance_box .f1_1 {
	height: 360px;
}
.map_box li {
	height: 308px;
}


.entry_inner_col2 {
	margin-left: -16px;
}
.entry_inner_col2 li {
	margin-left: 16px;
	width: -webkit-calc(100% / 3 - 16px);
	width: calc(100% / 3 - 16px);
	float: left;
	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 {
	margin-bottom: 16px;
	position: relative;
}
#content .entry .entry_inner_col2 p {
	margin-bottom: 0;
}
.comment {
	width: 86px;
}
.page_childcare #comment1 {
	position: absolute;
	bottom: 16px;
	left: -24px;
	z-index: 1;
}
.page_childcare #comment2 {
	position: absolute;
	top: -32px;
	right: 16px;
	z-index: 1;
}
.page_childcare #comment3 {
	position: absolute;
	bottom: 16px;
	right: -24px;
	z-index: 1;
}
.page_childcare #comment4 {
	position: absolute;
	bottom: 16px;
	left: -24px;
	z-index: 1;
}
#content .entry p.name {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #111;
	margin-bottom: 16px;
}
#content .entry p.name span {
	font-size: 12px;
	font-weight: 500;
	display: inline-block;
	margin-left: 2px;
}
#content .entry p.name br.pc-none{
	display: none;
}
.the4 > li {
	width: 48%;
	float: left;
	margin-right: 17px;
	margin-bottom: 17px;
}
.col_50 div:first-child {
	width: 48%;
	float: left;
}
.col_50 div:last-child {
	width: 48%;
	float: right;
}
.col_70 div:first-child {
	width: 70%;
	float: left;
}
.col_70 div:last-child {
	width: 25%;
	float: right;
}
.tbox {
	margin-bottom: 16px;
}
.tinfo {
	float: left;
	width: 440px;
}
#content .entry p.psmall {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-bottom: 10px;
}
.teacher_comment {
	float: right;
	width: 308px;
	position: relative;
	margin-top: 8px;
}
.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;
	height: 116px;
	box-sizing: border-box;
}
#content .entry .teacher_comment p {
	font-size: 12px;
	line-height: 1.8em;
	margin-bottom: 0;
}
.teacher_img {
	width: 104px;
	position: absolute;
	top: -39px;
	right: 0;
	z-index: 2;
}
.ac {
	position: relative;
	overflow: hidden;
}
.ac input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.ac label {
	display: block;
	position: relative;
	margin: 0;
	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;
}
.ac label:hover {
	background: #ccc;
	transition: .2s;
}
.ac .ac_content {
	display: none;
	margin-top: 16px;
	border: 1px solid #f1f1f1;
	background: #fff;
	padding: 16px;
	border-radius: 2px;
}
.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;
}
.ac_content h6 {
	font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1em;
    text-align: left;
    color: #111;
    margin-bottom: 12px;
}
.graph {
	width: 623px;
	margin: 32px auto 0;
}
.health_navi ul {
	margin-left: -2px;
}
.health_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 5 - 2px);
	width: calc(100% / 5 - 2px);
}
.health_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/health/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.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: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #F1906E;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
}
.page_health #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 18px;
	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: 12px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background: #F1906E;
	box-sizing: border-box;
	display: inline-block;
	padding: 6px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
}
.evaluate {
	font-size: 12px;
	font-weight: 500;
	background: #E0E0E0;
	display: inline-block;
	margin-left: 8px;
	padding: 6px 8px;
	line-height: 1em;
	border-radius: 2px;
}
table.feature_health {
	border-collapse: collapse;
	margin-bottom: 32px;
}
table.feature_health th {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #fff;
	background: #F1906E;
	padding: 20px;
	border: 1px solid #111;
	vertical-align: middle;
	text-align: center;
}
table.feature_health td {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 20px;
	border: 1px solid #111;
	text-align: center;
}
.page_health #content .pageheader::before {
	content: "";
	width: 623px;
	height: 1px;
	background: #F1906E;
	position: absolute;
	bottom: 3px;
	left: 40px;
}
.page_health #content .pageheader::after {
	content: "";
	width: 623px;
	height: 1px;
	background: #F1906E;
	position: absolute;
	bottom: 0;
	left: 40px;
}
.trends_health {
	border-collapse: collapse;
	margin-bottom: 32px;
}
table.trends_health th {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 20px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.trends_health td {
	font-weight: 500;
	font-size: 16px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #F1906E;
	padding: 20px;
	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;
	top: -32px;
	right: 16px;
	z-index: 1;
}
.page_health #comment3 {
	position: absolute;
	bottom: -16px;
    right: 12px;
}
.page_health #comment4 {
	position: absolute;
	top: 6px;
	left: -24px;
	z-index: 1;
}
#content .entry .entry_inner_col2 h4 {
	margin-bottom: 8px;
	line-height: 1.6em;
}
#content .message .entry h4 {
	margin-bottom: 8px;
}
#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: 116px;
	box-sizing: border-box;
}
.cultural_navi ul {
	margin-left: -2px;
}
.cultural_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 5 - 2px);
	width: calc(100% / 5 - 2px);
}
.cultural_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/cultural/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.page_cultural .color {
	color: #73C4A9 !important;
}
.page_cultural #content .pageheader::before {
	content: "";
	width: 623px;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	bottom: 3px;
	left: 40px;
}
.page_cultural #content .pageheader::after {
	content: "";
	width: 623px;
	height: 1px;
	background: #73C4A9;
	position: absolute;
	bottom: 0;
	left: 40px;
}
.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: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #73C4A9;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
}
.page_cultural #content .entry .licence li h3 {
	font-weight: 500;
	font-size: 18px;
	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: 12px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	color: #fff;
	border-radius: 2px;
	background: #73C4A9;
	box-sizing: border-box;
	display: inline-block;
	padding: 6px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
}
#content .entry h5 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	color: #111;
	margin-bottom: 12px;
	padding-left: 16px;
	position: relative;
}
.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: 12px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #208060;
	display: inline-block;
	padding: 8px 10px;
	box-sizing: border-box;
	border-radius: 2px;
	margin-top: 8px;
}
.cultural_table .level_1 {
	background: #73C4A9;
	color: #111;
	font-weight: 500;
	vertical-align: middle;
}
.page_cultural #comment1, .page_cultural #comment4 {
	position: absolute;
	top: 16px;
	left: -24px;
	z-index: 1;
}
.page_cultural #comment3 {
	position: absolute;
	bottom: -32px;
	right: -10px;
	z-index: 1;
}
.page_cultural #comment2 {
	position: absolute;
	bottom: -32px;
	right: -10px;
	z-index: 1;
}
.page_cultural #comment5 {
	position: absolute;
	bottom: 16px;
	right: -24px;
	z-index: 1;
}
.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: 116px;
	box-sizing: border-box;
}
.music_navi ul {
	margin-left: -2px;
}
.music_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 4 - 2px);
	width: calc(100% / 4 - 2px);
}
.music_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/music/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
.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;
}
.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;
}
.page_music .the4 dt {
	font-family: serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	text-align: left;
	color: #fff;
	background: #B369A7;
	padding: 12px 16px;
	border-radius: 2px 2px 0 0;
}
.page_music #content .entry .licence li h3 {
	margin-bottom: 0;
	color: #B369A7;
}
.page_music #content .entry .licence li h3:before {
	display: none;
}
.page_music #content .pageheader::before {
	content: "";
	width: 623px;
	height: 1px;
	background: #B369A7;
	position: absolute;
	bottom: 3px;
	left: 40px;
}
.page_music #content .pageheader::after {
	content: "";
	width: 623px;
	height: 1px;
	background: #B369A7;
	position: absolute;
	bottom: 0;
	left: 40px;
}
.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: 116px;
	box-sizing: border-box;
}
.page_music.option #content .entry .image {
	margin-bottom: 16px;
}
.page_music.option #content .entry .col3ImgBox .image{
	width: 273px;
	float: left;
	margin-right: 2px;
}
.page_music.option #content .entry .col3ImgBox .image:nth-of-type(3n){
	margin-right: 0;
}
.leftright, .rightleft {
	margin-bottom: 32px;
}
.leftright div:first-child {
	width: 25%;
	float: right;
}
.leftright div:last-child {
	width: 72%;
	float: left;
}
.rightleft div:first-child {
	width: 30%;
	float: right;
}
.rightleft div:last-child {
	width: 67%;
	float: left;
}
.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;
}
.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;
}
.page_music .job li {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background: #B369A7;
	box-sizing: border-box;
	display: inline-block;
	padding: 6px 10px;
	margin-right: 8px;
	margin-bottom: 8px;
}
#content .dianosis .ttl1 {
	margin: 0 auto 32px;
	width: 50%;
}
#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 h2, #content .dianosis .item h3, #content .dianosis .item h4 {
	font-family: serif;
	font-weight: 600;
	line-height: 1.6em;
}
#content .dianosis .item h2 {
	font-size: 24px;
	letter-spacing: 0.1em;
}
#content .dianosis .item h3 {
	font-size: 20px;
	text-align: center;
	padding: 12px 0;
	margin-bottom: 0;
	color: #fff;
}
#content .dianosis .item h3 span.big {
	font-size: 24px;
	font-weight: 600;
}
#content .dianosis .item h4 {
	font-size: 18px;
	font-weight: 600;
}
#content .dianosis .item .box1 .txtBox {
	padding-right: 20px;
	display: table-cell;
	vertical-align: bottom;
	padding-bottom: 24px;
}
#content .dianosis .item .box1 .img {
	width: 202px;
	display: table-cell;
	vertical-align: bottom;
}
#content .dianosis .item .box2 {
	border: 1px solid;
}
#content .dianosis .item .box2 .txtBox {
	border-bottom: 1px solid;
	border-top: 1px solid;
	padding: 20px;
}
#content .dianosis .item .box2 .img {
	padding: 20px;
}
#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-bottom: 32px;
	text-align: center;
}
#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;
}
#content .dianosis .item.page_childcare h3 {
	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;
}
#content .dianosis .item.page_health h3 {
	background: #F1906E;
}
#content .dianosis .item.page_cultural .box2, #content .dianosis .item.page_cultural .box2 .txtBox {
	border-color: #73C4A9 !important;
}
#content .dianosis .item.page_cultural .color {
	color: #73C4A9 !important;
}
#content .dianosis .item.page_cultural h3 {
	background: #73C4A9;
}
#content .dianosis .item.page_music .box2, #content .dianosis .item.page_music .box2 .txtBox {
	border-color: #B369A7 !important;
}
#content .dianosis .item.page_music .color {
	color: #B369A7 !important;
}
#content .dianosis .item.page_music h3 {
	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;
}
#content .dianosis .item.other1 h3 {
	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;
}
#content .dianosis .item.other2 h3 {
	background: #947864;
}
.imgtitle {
	width: 50%;
	margin: 0 auto 48px !important;
}
.entrance_navi ul {
	margin-left: -2px;
}
.entrance_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 4 - 2px);
	width: calc(100% / 4 - 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: calc(100% - 80px);
	height: 1px;
	background: #111;
	position: absolute;
	bottom: 3px;
	left: 40px;
}
.page_others #content .pageheader::after {
	content: "";
	width: calc(100% - 80px);
	height: 1px;
	background: #111;
	position: absolute;
	bottom: 0;
	left: 40px;
}
.uniquenavi {
	width: 904px;
	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: 11px;
	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: #F9C4A8;
	box-sizing: border-box;
	display: block;
	padding: 8px 10px;
}
.uniquenavi li a:hover {
	background: #cccccc;
	color: #fff;
}
.students_system li {
	height: 47px;
}
.students_system li a {
	padding: 0 !important;
}
.students_system li:last-child {
	margin-bottom: 0;
}
.note {
	width: 904px;
	margin: 0 auto 32px;
	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: 10px;
	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 .list_txt li a:hover {
	background: #cccccc;
	color: #fff;
}
#content .entry .ll {
	border-left: 2px solid #6A96E8;
}
.scroll {
	margin-bottom: 32px;
}
table.others_table th {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	background: #F8F8F8;
	padding: 20px;
	border: 1px solid #111;
	vertical-align: middle;
}
table.others_table td {
	font-weight: 500;
	font-size: 18px;
	line-height: 1em;
	text-align: center;
	color: #111;
	background: #F8F8F8;
	padding: 20px;
	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: 1200px;*/
}
table.entrance_table.min {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	margin-bottom: 16px;
	/*	width: 623px;*/
}
table.entrance_table th, table.entrance_table td {
	font-size: 10px;
	padding: 6px;
	box-sizing: border-box;
	border: 1px solid #111;
	line-height: 1.4em;
	vertical-align: middle;
/*	font-family: "游ゴシック", sans-serif;*/
}
table.entrance_table td img {
	width: inherit;
}
td a {
	color: #111;
	background: #F9C4A8;
	padding: 2px;
}
td a:hover {
	color: #fff;
	background: #cccccc;
}
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;
}
.w_restrict_maxmax {
	width: 368px;
}
.w_restrict_max {
	width: 280px;
}
.w_restrict {
	width: 160px;
}
.w_restrict_min {
	width: 108px;
}
.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: 14px;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
	margin-top: 32px;
	margin-bottom: 24px;
	background: #E6B98C;
	position: relative;
	padding: 8px 0 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: #F9C4A8;
	padding: 2px;
	font-weight: 500;
}
#content .entry h5 a:hover, #content .entry p a:hover {
	color: #fff;
	background: #cccccc;
}
.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;
}
.include {
	width: 904px;
	margin: 0 auto 32px;
}
.include h3 {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1em;
	margin-bottom: 24px;
	padding-left: 16px;
	position: relative;
}
.include h3:before {
	position: absolute;
	top: 3px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #6A96E8;
	border-radius: 4px;
}
.visitor_navi li {
	float: left;
	margin-left: 3px;
	width: -webkit-calc(100% / 5 - 3px);
	width: calc(100% / 5 - 3px);
}
.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: 703px;
	margin: 0 auto;
}
.col3_link li {
	width: 223px;
	float: left;
	margin-right: 17px;
	margin-bottom: 17px;
}
.col3_link li:nth-child(3n) {
	margin-right: 0;
}
.col3_link li:nth-last-child(-n+3) {
	margin-bottom: 0;
}
.col3_link a {
	display: block;
	background: #fff;
	width: 223px;
	padding: 24px 24px 32px 24px;
	box-sizing: border-box;
	border-radius: 2px;
	position: relative;
}
.col3_link a:hover {
	background: #F9C4A8;
	border-radius: 2px;
}
.col3_link li a:hover h3 {
	color: #fff;
}
.col3_link li h3 {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	text-align: left;
	color: #111;
}
.col3_link li div {
	width: 175px;
	height: 120px;
	background: #000;
	margin-bottom: 16px;
	overflow: hidden;
}
.col3_link li a:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 24px;
	background: #F9C4A8;
	width: 175px;
	height: 1px;
}
.col3_link li a:hover:after {
	background: #fff;
}
.col3_link a img {
	transform: scale(1.05);
	transition: 0.8s;
	opacity: 1;
}
.col3_link a:hover img {
	transform: scale(1);
	transition: 0.8s;
	opacity: 0.8;
}
.tblemp {
	background: #b9e9ff !important;
}
.hs_box a {
	height: 242px;
}

table.visitor_table.min {
	letter-spacing: 0.06em;
	line-height: 1.8em;
	color: #111;
	border-collapse: collapse;
	margin-bottom: 16px;
}
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;
}
.page_others .entry.special {
	background: #fff;
	width: 904px;
	padding: 64px 40px 40px;
	box-sizing: border-box;
	margin: 0 auto;
	border: 6px solid #FFF100;
}
.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% / 4 - 2px);
	width: calc(100% / 4 - 2px);
}
.special_title {
	width: 400px;
	margin: 0 auto 32px !important;
}
.kimg {
	width: 480px;
	margin: 0 auto 32px;
}
.kimg_min {
	width: 240px;
	margin: 0 auto 32px;
}
.page_others.about .color {
	color: #3a3492 !important;
}
.page_others.about #content .entry h5:before {
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: #3a3492;
	border-radius: 4px;
}
.page_others.about #content .entry .ll {
	border-left: 2px solid #3a3492;
}
.work_navi ul {
	margin-left: -2px;
}
.work_navi li {
	float: left;
	margin-left: 2px;
	width: -webkit-calc(100% / 3 - 2px);
	width: calc(100% / 3 - 2px);
}
.work_navi:after {
	position: absolute;
	content: '';
	bottom: -25px;
	left: 0;
	background: #F5EFE4 url(../img/about/bg_dotted.png) repeat-x;
	width: 100%;
	height: 25px;
}
#consortium {
	width: 250px;
}
.teacher th, .teacher td {
	font-size: 10px !important;
}

/*----------------------------
	キャンパスマップ
----------------------------*/
#content .entry p.view a{
	padding: 0;
}

/*----------------------------
	オープンキャンパス
----------------------------*/
.ocFlow li:nth-of-type(1) p,
.ocFlow li:nth-of-type(2) p,
.ocFlow li:nth-of-type(3) p{
	height: 112px;
}
.ocImage li{
	width: 404px;
	margin-right: 16px;
	margin-bottom: 16px;
	float: left;
}
.ocImage li:nth-of-type(2n){
	margin-right: 0;
}
.ytbox {
	margin-bottom: 24px;
}
.ytbox p {
	width: 480px;
	float: left;
}
.ytbox div {
	width: 312px;
	float: right;
}
.ytbox2 {
	margin-bottom: 32px;
}
.ytbox2 div {
	width: 194px;
	float: left;
	margin-right: 16px;
}
.ytbox2 div:last-child {
	margin-right: 0;
}
.ytbox a:hover, .ytbox2 a:hover {
	opacity: 0.6;
}
.ytbox3 div:last-child {
	width: 312px;
	float: left;
}
.ytbox3 div:first-child {
	width: 480px;
	float: right;
}

/*----------------------------
	おしらせ
----------------------------*/
.fcol li {
	width: 194px;
	float: left;
	margin-right: 16px;
}
.fcol li:last-child {
	margin-right: 0;
}
.fcol li a:hover {
	opacity: 0.6;
}
.fcol li div {
	margin-bottom: 8px;
}
.fcol li p {
	margin-bottom: 0 !important;
}
.amail {
	width: 209px;
}