@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

/*-------------------------------
>>> style.css
---------------------------------
# Normalize
# Elements
# Typography
# Common
# Layout
@media print,screen and (max-width:481px)
@media print,screen and (max-width:769px)
@media print,screen and (max-width:1180px)
@media print 
-------------------------------*/
/*-------------------------------
# Normalize
-------------------------------*/
#srOnly a {
	opacity: 0; position: absolute; left: -1000px;
}
#srOnly a:focus {	
	opacity: 1; display: block; background-color: #fff; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4); color: #2E2E3E;	width: 200px; font-size: 16px; font-weight: 700; left: 5px; line-height: normal; padding: 8px 20px ; text-decoration: none; top: 5px; z-index: 99999;
}
#srOnly:hover {
	background-color: #fff;
}
html {
	font-size: 62.5%;
}
body {	
	font-size: 1.6rem;
	font-family: "BIZ UDPGothic",'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-style: normal;
	font-weight: 400;
	background-color: #fff;
	color: #133F33;
	transition: all .2s!important;
}
img {
  max-width: 100%;
	height: auto;
}
a,button {
  transition: all .2s!important;
}
a {
	color: #133F33;
	text-decoration: none;
}
a:hover {
	opacity: 0.9;
}
section {
	margin-top: 60px;
	padding: 0 20px;
}
section:last-of-type {
	padding-bottom: 64px;
}
h1,h2,h3,h4 {
	margin-bottom: 0;
	font-weight: bold;
}
small {
	font-size: 1.2rem;
}

/*-------------------------------
# Elements
-------------------------------*/
.ul_basic {
	padding-left: 14px;
}
.ul_basic li::marker {
	color: #14AF9F;
}
.ul_basic li {
	line-height: 3.2rem;
	text-align: justify;
	margin-bottom: 16px;
}
.btn_basic a,
.btn_blue a{
	display: block;
	max-width: 100%;
	padding: 10px 0;
	border-radius: 50px;
	text-align: center;
	background-color: #F8FFEB;
}
.btn_blue a {
	padding: 20px 0;
	background-color: #007599;
	color: #FFF;
}
.btn_basic.btn_blue a {
	padding: 10px 0;
}
section.bg_gr {
	padding: 40px 20px;
	background-color: #F8FFEB;
}

/*-------------------------------
# Typography
-------------------------------*/
.fontBold {
	font-weight: bold;
}
.fontNomal {
	font-weight: 400;
}
.textCenter {
	text-align: center;
}
.textLeft {
	text-align: left;
}
.textRight {
	text-align: right;
}
.textUnderline a{
	text-decoration: underline;
}
.h2_basic {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	color: #008065;
}
.h2_basic::after {
	content: "";
	display: block;
	background: url("../images/site/h2.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 10px;
	margin: 8px 0 20px;
}
.h3_basic {
	font-size: 1.8rem;
	border-radius: 50px;
	line-height: 2.8rem;
	margin-bottom: 20px;
	text-align: center;
	background-color: #E9F7F6;
	color: #007599;
}
.h4_basic {
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 10px;
}
.h4_basic small {
	font-size: 1.4rem;
}
.p_basic {
	line-height: 3.6rem;
	text-align: justify;
}
.note {
	font-size: 1.2rem;
	line-height: 1.6em;
}

/*-------------------------------
# Common
-------------------------------*/
.mtb_0 {
	margin-top: 0!important;
	margin-bottom: 0!important;
}
.mb_0 {
	margin-bottom: 0!important;
}
.d_none {
	display: none;
}
.d_block {
	display: block;
}
.d_md,
.d_sm,
.d_xs {
	display: none;
}
.row {
	display: flex;
	flex-wrap: wrap;
}
.row > .col5 {
	width: 50%;
	padding: 0 4px 4px 0;
}
.row > .col5:nth-of-type(2n) {
	padding-right: 0;
}
.row > .col {
	width: 100%;
}
@media print,screen and (max-width:1180px) {
	.d_md {
		display: block;
	}
}
@media print,screen and (max-width:820px) {
	.d_sm {
		display: block;
	}
}
@media print,screen and (max-width:481px) {
	.d_xs {
		display: block;
	}
}

/*-------------------------------
#  Layout
-------------------------------*/
/* -- top -- */
.bg {
	position: fixed;
	background: url("../images/site/bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.side {
	display: flex;
	position: fixed;
	width: 100vw;
	height: 100vh;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
.side_left,
.side_right {
	position:fixed;
	width: calc(50vw - 240px);
	margin-top: 30px;
}
.side_wrap {
	margin: 0 auto;
}
.side_left .side_wrap {
	max-width: 280px;
}
.side_wrap > p {
	margin-top: 24px;
}
.side_menu {
	margin: 60px 0;
}
.side_menu p {
	font-size: 2rem;
}
.side_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.side_menu ul li {
	margin-bottom: 12px;
}
.sns p {
	font-size: 1.2rem;
}
.sns > div {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.sns > div > div {
	padding: 12px;
}
.side_right {
	right: 0;
}
.side_right .side_wrap {
	max-width: 360px;
}
.illust_right {
	background: url("../images/site/illust_01.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 100%;
	height: 329px;
	margin: 24px 0 30px;
}
.side_right .btn_blue a{
	margin: 20px auto 10px;
	padding: 20px 0;
	max-width: 300px;
	width: 100%;
	display: inline-block;
}
.copy {
	margin-top: 6px;
}
.copy > div:first-of-type {
	max-width: 200px;
	margin: 0 auto;
}
.copy small {
	font-weight: 100;
	font-size: 1.1rem;
}

.wave {
	position: fixed;	
	width: 100vw;
	height: 100vh;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 0;
}
.wave > div {
	position: absolute;
	bottom: 0;	
	display: flex;
}
.wave > div > div {
	display: flex;
	animation: wave-anime 60s infinite linear 0.5s both;
}
.wave > div > div > div {
	height: 100px;
	bottom: 0;
	flex-wrap: nowrap;
}
.wave > div > div > div span {
	display: block;
	background: url("../images/site/wave01.svg");
	background-repeat: repeat;
	background-size: contain;
	width: 1039px;
	height: 106px;	
}
#wave2.wave > div > div {
	animation: wave-anime 90s infinite linear 0.5s both;
}
#wave2.wave > div > div > div span {
	background: url("../images/site/wave2.svg");
	width: 970px;
}
@keyframes wave-anime {
	from {
		transform:translate(0);
	}
	to {
		transform:translate(-100%);
	}
}


/* -- hamburger menu -- */
.hamburger {
	display: none;
	position: fixed;
	top: 64px;
	right: 12px;
	width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 5px;
	background-color: #008065;
	color: #FFF;
	border: solid 1px #FFF;
	z-index: 99;
}
.hamburger > span {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px 8px 8px;
}
.hamburger > span > span:not(:last-of-type) {
	position: absolute;
	display: block;
	width: 30px; 
  height: 2px;
	right: 0;
  left: 0;
  margin: 0 auto;
  border-radius: 1px;
	background-color: #FFF;
  transition: all 0.2s ease-in-out;
}
.hamburger > span > span:last-of-type {
	display: block;
	font-size: 10px;
	letter-spacing: -2px;
	font-weight: bold;
	margin: 0;
	padding-top: 16px;
}
.hamburger > span > span:nth-of-type(1) {
  top: 10px;
}
.hamburger > span > span:nth-of-type(2) {
	top: 18px;
}
.hamburger.active > span > span:nth-of-type(1) {
  transform: translateY(4px) rotate(-30deg);
}
.hamburger.active > span > span:nth-of-type(2) {
  transform: translateY(-4px) rotate(30deg);
}

/* -- main -- */
main {
	position: relative;
	max-width: 481px;
	top: 30px;
	margin: 0 auto;
	background-color: #FFF;	
	z-index: 1;
}
.main_wrap {
	width: 100%;
	padding-top: 20px;
	overflow: hidden;
}
.main_top {
	margin-top: 0px;
}
.main_top > div {
	position: relative;
	width: 100%;
	max-width: 440px;
	height: 0;
	margin: 20px auto 0;
	padding-top: 109.09%; /*(480/440)*100 = 109.09 */
	background: url("../images/site/illust_02.png");
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
}
.main_top p {	
	position: absolute;
	top: 16px;
	right: 0;
	left: 0;
	font-size: 2.4rem;
	color: #FFF;
	line-height: 3.4rem;
	z-index: 1;
}
#menu01 .h3_basic {
	margin-top: 42px;
}

.faculty {
	display: flex;
	position: relative;
	align-items: center;
	margin-bottom: 20px;
	padding: 20px 0 20px 12px;
	background-color: #EFFEF2;
	border: solid 1px #0DB09F;
	border-radius: 10px;
	transition: all .2s
}
.faculty::after {
	content: "";
	position: relative;
	background: url("../images/site/arrow01.svg");
	background-repeat: no-repeat;
	width: 10px;
	height: 16px;
	margin-left: auto;
	margin-right: 8px;
	transition: all .2s
}
.faculty.select::after {
	margin-right: 6px;
}

.faculty img {
	border-radius: 50px;
	box-shadow: 1px 2px 2px rgba(0,0,0,0.16);
}
.faculty p {
	padding: 0 10px;
}
.faculty p strong {
	padding-right: 16px;
}
.faculty a {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
}
.faculty a span {
	display: none;
}

.rate > div > div {
	text-align: center;
	padding: 18px 0;
	border: solid 1px #C4D9D2;
	height: 100%;
}
#menu06 .rate:first-of-type {
	margin-bottom: 18px;
}
.percent {
	font-size: 5rem;
	line-height: 4.6rem;
	font-weight: bold;
	margin-bottom: 0;
	color: #007599;	
}
.percent span {
	font-size: 2rem;
}
.pamphlet .btn_blue a{
	font-size: 1.8rem;
	max-width: 390px;
	margin: 0 auto;
	display: block;
}
.pamphlet p {
	margin-top: 8px;
}

/* -- slider -- */
ul.slide {
	width: 481px;
	margin: 0 -20px;
	padding-left: 0;
	list-style: none;
}
.cumpuslife {
	margin: 0 auto 30px;	
	padding-left: 0;
	text-align: center;
	list-style: none;	
}
.cumpuslife img {
	border-radius: 20px;
}
.slide .slick-slide {
	height: 285px;	
	margin: 0 5px;
}
.slick-slide > div,
.slide li,
.slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.slick-dots {
	position: relative;
	height: 20px;
	bottom: 0;
	margin-top: 10px;
}
.slick-dots li {	
	width: 16px;
	height: 16px;
	margin: 0 10px;
}
.slick-dots li button {
	width: 16px;
	height: 16px;
	padding: 0;	
}
.slick-dots li button:before {
	content: "";
	width: 16px;
	height: 16px;
	font-size: 6rem;
	border: solid 1px #14AF9F;
	background-color: #FFF;
	border-radius: 50px;
	opacity: 1;
}
.slick-dots li.slick-active button:before {
	opacity: 1;
	background-color: #14AF9F;
}
/*停止ボタン*/
.slide_wrap {
	position: relative;
}
.slide_wrap button {
	content: "";
	position: absolute;
	background: url("../images/site/icon_play.svg");
	width: 20px;
	height: 20px;
	bottom: 0;
	left: 0;
	border: none;
	cursor: pointer;
}
.slide_wrap button.paused {
	background: url("../images/site/icon_stop.svg");
}

/* -- footer -- */
footer {
	position: relative;
	max-width: 481px;
	top: 30px;
	margin: 0 auto;
	background-color: #FFF;	
}
footer div {
	text-align: center;
}
footer div > div:first-of-type {
	padding: 26px 0 20px;
	background-color: #EFFEF2;
}
footer div > div:last-of-type {
	padding: 16px 0;
	background-color: #008065;
	color: #FFF;
}
@media print,screen and (max-width:1180px) {
	.side_right .btn_blue {
		letter-spacing: -1.2px;
	}
	.side_wrap {
		padding: 0 10px;
	}
	.illust_right {
		background-size: auto;
		width: calc(100% + 10px + 10px);
		margin-left: -10px;
	}
	.slide .slick-slide {
		height: calc((100% - 26px)* 0.65 );
	}
}

@media print,screen and (max-width:820px) {
	.side_wrap > p {
		margin-top: 0px;
	}
	.side {
		display: block;
		position: unset;
		height: 0;
	}
	.side_wrap {
		padding: 0;
	}
	.sns > p {
		margin-top: 20px;
		margin-bottom: 0;
	}
	.side_left {
		position: unset;
		margin-top: 0;
	}
	.side_right {
		display: none;
	}	
	.hamburger {
		display: block;
	}	
	.navPanel {
		position: fixed;
		top: -100vh;
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding: 46px 0;
		color: #FFF;
		background-color: rgba(20,175,159,0.9);
		text-align: center;
		font-weight: bold;
		transition: 0.4s;
		z-index: 10;
	}
	.navPanel.open {
		top: 0;
	}
	.navPanel > div {
		display: flex;
		height: 600px;
		flex-flow: column;
		justify-content: space-between;
	}
	.navPanel .side_menu {
		width: 280px;
		margin: 0 auto;
	}
	.btn_basic > .d_md {
		display: none;
	}	
}

@media print,screen and (max-width:481px) {
	.wave {
		display: none;
	}
	.bg {
		display: none;
	}
	.navPanel {
		top: calc(-100vh - 40px);
		height: calc(100vh + 40px);
		padding: 18px 0 40px;
		overflow: scroll;
	}
	.navPanel > div {		
		height: 630px;
		padding-bottom: 0;		
	}
	.side_wrap > p {
		max-width: 180px;
		margin: 0 auto 4px;
	}
	.side_menu ul li {
		margin-bottom: 10px;
	}
	.side_menu small {
		margin-top: 4px;
	}
	.side_menu p {
		font-size: 1.8rem;
		margin-bottom: 6px;
	}
	.side_menu p.btn_basic  {
		font-size: 1.6rem;
	}
	.sns > div > div {
		width: 60px;
		padding: 6px 12px;
	}
	.sns > p {
		margin-top: 6px;
	}
	main {
		max-width: 100vw;
		top: 0;
	}
	.main_top p {
		font-size: 5vw;
	}

	ul.slide {
		width: 100vw;
	}
	.slide .slick-slide {
		height: calc((100vw - 26px)* 0.65 );
	}
	footer {
		top: 0;
	}		
}
@media print {
	.navPanel,.hamburger {
		display: none;
	}
	.main_top p {
		font-size: 2.4rem;
	}
	.main_top > div {
		padding-top: 480px;
	}
	.slide_wrap {
		width: 100%;
		margin: 0 auto;
	}
	ul.slide {
		width: 100%;
		margin: 0 auto;
		padding-left: 0;
		list-style: none;
	}
	.slide .slick-slide {
		height: 285px;
	}
	.slick-list.draggable {
		margin: 0 auto;
	}
	.cumpuslife > li {
		width: 440px;
		margin: 0 auto;
	}
	.cumpuslife img {
		width: 100%;
		object-fit: cover;
	}
	footer {
		max-width: 100%;
	}
}

/* CMSKIT 管理画面用 */
#wcv_sys_edit_pageeditarea{position: relative;}
#wcv_sys_edit_pageeditarea { background: url(../images/site/bg.png) no-repeat center; background-size: cover; height: 100vh; top: 0; bottom: 0; left: 0;}
#wcv_sys_edit_areawrap .bg{display: none;}
#wcv_sys_edit_areawrap .wave{display: none;}
#wcv_sys_edit_areawrap .side,
#wcv_sys_edit_areawrap .side_left,
#wcv_sys_edit_areawrap .side_right {top:0; position: absolute;}
#wcv_sys_edit_areawrap .btn_basic a, .btn_blue a {display: inline-block;}
#wcv_sys_edit_areawrap .sns #blockarea_div2{display: flex; flex-wrap: wrap;}
#wcv_sys_edit_areawrap .d_md,#wcv_sys_edit_areawrap .d_sm,#wcv_sys_edit_areawrap .d_xs{display: block;}
#wcv_sys_edit_areawrap .d_md form::after,
#wcv_sys_edit_areawrap .d_sm form::after,
#wcv_sys_edit_areawrap .d_xs form::after{content :"[ ↑ PC表示では非表示 ]"; font-size: 0.9em; font-weight: 500; display: block;}
#wcv_sys_edit_areawrap .slide_wrap::before{content:"[ ↓ スライドショー ]"; font-size: 0.9em; font-weight: 500; display: block;}
#wcv_sys_edit_areawrap .slide_wrap::after{content:"[ ↑ スライドショー ]"; font-size: 0.9em; font-weight: 500; display: block;}
#wcv_sys_edit_areawrap .slide_wrap button {display: none;}
#wcv_sys_edit_areawrap .slide li,
#wcv_sys_edit_areawrap .slide input[type="image"]{max-width: 440px; margin: 0 auto;}