@charset "UTF-8";

/* タイトル */
.alpha,
div#aboutText .alpha {
	font-weight: bold;
	font-size: 500%;
	background: linear-gradient(to right, #8bc782, #CAB8D9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
	position: absolute;
	top: -80px;
	left: 30%;
	transform: rotate(-5deg);
}
section#topFeature .alpha {
	left: 37%;
	top: -120px;
}
section#topEducation .alpha {
	top: -60px;
	left: -5%;
}
div.topPerson .alpha {
	left: 1%;
	top: -60px;
}
div.topPerson:last-child .alpha {
	left: 1%;
	top: -60px;
	background: linear-gradient(to right, #ef6c88, #CAB8D9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
section#topRecruit .alpha {
	left: 32%;
	top: -120px;
}
@media screen and (max-width: 1200px) {
.alpha,
div#aboutText .alpha,
section#topFeature .alpha {
	font-size: 300%;
	top: -40px;
	left: -10px;
}
section#topFeature .alpha {
	left: 5%;
	top: -100px;
}
section#topEducation .alpha {
	top: -20px;
}
section#topRecruit .alpha {
	left: 0;
	top: -80px;
}
}
/*----------------------------------
slider
-----------------------------------*/
div#visual {
	width: 100%;
	max-width: 1600px;
	margin-right: auto;
	margin-bottom: 40px;
	margin-left: auto;
	padding: 10px 0;
	position: relative;
}
div#slider_wrapper {
	width: 80%;
	
}
div#slider {
	/*width: 80% !important;*/
}
div#slider picture {
	width: 100%;
}
div#slider picture img {
	width: 100%;
	
}
div#slider picture.zoom-animation img {
	animation: sliderimg 30s linear infinite alternate;
}
@keyframes sliderimg{
	0% { transform: scale(180%); } 
	100% { transform: scale(100%); } 
}

/* sliderテキスト */
#visual .dots-wrap {
	display: flex;
	justify-content: center;
	padding-top: 15px;
}
#visual .dots-wrap li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
	border-radius: 50%;
	border: 1px solid #ef6c88;
	cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
	background-color: #ef6c88;
}
.dots-wrap li button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}
div#sliderText {
	position: absolute;
	right: 5%;
	bottom: 10%;
	padding-bottom: 150px;
}
div#sliderText h2.klee-one-regular {
	font-size: 450%;
	text-align: right;
	color: #333;
	position: relative;
	z-index: 4;
}
div#sliderText h2.klee-one-regular span.sliderText01 {
	animation: h2ani 1s 0s linear backwards;
	display: block;
}
div#sliderText h2.klee-one-regular span.sliderText02 {
	animation: h2ani 1s 1s linear backwards;
	display: block;
}
div#sliderText h2.klee-one-regular span.fs150 {
	font-size: 150%;
	line-height: 1.2;
	animation: h2ani02 2s 2.5s linear backwards;
	display: block;
}
@keyframes h2ani {
	0% { transform: translateX(50px);opacity: 0;}
	100% { transform: translateX(0px);opacity: 1;}
}
@keyframes h2ani02 {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

div#sliderText p {
	font-size: 200%;
	color: #fff;	
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 350px;
	padding: 210px 50px 50px 0;
	margin: 0;
	z-index: 2;
	color: #fff;
	background: url(../images/top/back_slidertext.png) #ef6c88;
	animation: backanimation 50s linear infinite;
	transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
		background-color 800ms;
}
@keyframes backanimation {
	0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
	14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
	28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
	42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
	56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
	70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
	84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}
/* 四角アニメーション */
.square {
	width: 100px;
	height: 100px;
	border-width: 5px;
	border-style: solid;
	border-image: linear-gradient(to right, #CAB8D9, #8bc782) 1;
	animation: floating-y 5s ease-in-out infinite alternate-reverse;
	position: absolute;
	bottom: 20px;
	left: 40px;
	background-color: rgba(255,255,255,0.8);
}
.square img {
	width: 100%;
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
		rotate: 0deg;
	}
	100% {
		transform: translateY(10%);
		rotate: 20deg;
  }
}
.square::before {
	content: " ";
	background: url(../images/top/scroll.png) no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	animation: floating-scroll 50s linear infinite;
}
@keyframes floating-scroll {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
  }
}
@media screen and (max-width: 1200px) {
div#visual {
	margin-bottom: 20px;
}
#visual .dots-wrap {
	justify-content: flex-end;

}
div#sliderText {
	position: absolute;
	right: 5%;
	bottom: 20%;
	padding: 0 6% 80px 5%;
}
div#sliderText h2.klee-one-regular {
	font-size: 150%;
}
div#sliderText h2.klee-one-regular span.fs150 {
	font-size: 150%;
}
div#sliderText p {
	font-size: 100%;
	box-sizing: border-box;
	width: 100%;
	padding: 140px 40px 30px 0;
}
.square {
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 20px;
	left: 40px;
	border-width: 3px;
}
}
@media screen and (max-width: 500px) {
div#sliderText {
	position: absolute;
	right: 2%;
	bottom: 20%;
	padding: 0 6% 60px 5%;
}
div#sliderText h2.klee-one-regular {
	font-size: 120%;
}
div#sliderText h2.klee-one-regular span.fs150 {
	font-size: 130%;
}
div#sliderText p {
	font-size: 90%;
	box-sizing: border-box;
	width: 100%;
	padding: 90px 20px 15px 0;
}
}
/*----------------------------------
メイン領域
-----------------------------------*/
main section {
	margin-bottom: 150px;
}
/* About */
section#topAbout {
	position: relative;
	padding-top: 60px;
	width: 85%;
	margin-right: auto;
	margin-left: auto;
	max-width: 1400px;
}
div#aboutText {
	background-color: #fff;
	box-sizing: border-box;
	padding: 60px;
	border-radius: 40px;
	width: 60%;
	position: absolute;
	top: 0;
	right: 0;
}
div#aboutPic {
	width: 45%;
}
div#aboutPic img {
	width: 100%;
}
div#aboutText h2 {
	font-size: 180%;
	margin-bottom: 40px;
	text-align: center;
}
div#aboutText h2 br {
	display: none;
}
div#aboutText p {
	font-size: 110%;
	line-height: 2;
	margin-bottom: 2em;
}
div#aboutText p:last-child {
	margin-bottom: 0;
}
div#aboutText p.topbtn {
	position: relative;
	text-align: center;
	font-weight: bold;
	margin-top: 60px;
}
div#aboutText p.topbtn a {
	font-size: 110%;
}
main .material-symbols-outlined {
	font-size: 140%;
	position: relative;
	top: 0.2em;
	display: inline-block;
	color: #437722;
	transition: transform 0.3s ease;
	margin-left: 0.5em;
}
main a:hover .material-symbols-outlined {
	transform: translateX(5px);
}
div#aboutText div.forpc {
	display: none;
}
@media screen and (max-width: 1200px) {
main section {
	margin-bottom: 100px;
}
div#aboutText {
	padding: 30px 30px 60px;
	width: 100%;
	position: relative;
	margin-bottom: 40px;
}
div#aboutPic {
	width: 100%;
}
div#aboutText h2 {
	font-size: 140%;
	line-height: 2;
	margin-bottom: 20px;
}
div#aboutText h2 span {
	margin-bottom: 20px;
}
div#aboutText h2 br {
	display: inline;
}
div#aboutText p {
	font-size: 110%;
	line-height: 2;
	margin-bottom: 2em;
}
}
/* Features */
section#topFeature {
	padding: 60px 0;
	background-image: url(../images/top/featureBack.jpg);
}
section#topFeature .container {
	position: relative;
}
section#topFeature h2 {
	text-align: center;
	margin-bottom: 100px;
}
section#topFeature ul {
	display: flex;
	justify-content: space-around;
	margin-bottom: 80px;
}
section#topFeature ul a  {
	width: 31%;
	display: block;
	color: #333;
	font-size: 110%;
	position: relative;
}
section#topFeature ul a:hover  {
	color: #333;
	font-weight: normal;
}
section#topFeature ul li img {
	width: 100%;
	transition: 1s;
}
section#topFeature ul a:hover li img {
	transform: scale(1.05);
}
section#topFeature ul li h3 {
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
section#topFeature div.featureText {
	background-color: rgba(255,255,255,0.9);
	padding: 15px;
	border-radius: 0 0 20px 20px;
	height: 220px;
}
section#topFeature ul li p.text_s {
	font-weight: bold;
	margin-bottom: 10px;
}
section#topFeature ul li p.text_b {
	font-weight: bold;
	font-size: 200%;
	line-height: 1.5;
	margin-bottom: 20px;
	position: relative;
	z-index: 0;
}
section#topFeature ul li p.text {
	line-height: 2;
}
section#topFeature ul li p.number {
	position: absolute;
	top: -80px;
	left: 0px;
	font-size: 500%;
	background: linear-gradient(to right, #CAB8D9, #EF6C88);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
}
section#topFeature ul  a li p.text_b span {
	display: inline-block;
	position: relative;
}
section#topFeature ul  a li p.text_b span::before {
	background: #f1b6c4;
	content: '';
	width: 100%;
	height: 10px;
	position: absolute;
	left: 0;
	bottom: 5px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
	z-index: -1;
}
section#topFeature ul a:hover li p.text_b span::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
section#topFeature .topbtn {
	text-align: center;
}
section#topFeature .topbtn a {
	font-weight: bold;
	font-size: 120%;
}
@media screen and (max-width: 1200px) {
section#topFeature {
	padding: 40px 0 60px;
	margin-bottom: 20px;	
}
section#topFeature h2 {
	margin-bottom: 60px;
}
section#topFeature ul {
	display: block;
	margin-bottom: 40px;
}
section#topFeature ul a {
	width: 80%;
	margin: 0 auto 80px;
	font-size: 100%;
	position: relative;
}
section#topFeature ul a:last-child {
	margin: 0 auto;
}
section#topFeature ul li p.text_s {
	font-size: 110%;
}
section#topFeature ul li p.text_b {
	font-weight: bold;
	font-size: 200%;
	line-height: 1.5;
	margin-bottom: 20px;
	position: relative;
	z-index: 0;
}
section#topFeature ul li p.text {
	font-size: 110%;
}
section#topFeature div.featureText {
	height: auto;
	top: -60px
}
section#topFeature ul li p.number {
	position: absolute;
	top: -100px;
}
section#topFeature .topbtn {
	line-height: 1;
}
section#topFeature .topbtn a {
	font-size: 1.2rem;
}
}
@media screen and (max-width: 500px) {
section#topFeature ul li p.text_s {
	font-size: 100%;
}
section#topFeature ul li p.text_b {
	font-size: 150%;
	line-height: 1.5;
}
}
/* Education */
section#topEducation {
	padding: 60px 0;
	position: relative;
	width: 85%;
	margin-bottom: 80px;
}
section#topEducation h2 {
	margin-bottom: 40px;
}
section#topEducation h2 br {
	display: none;
}
section#topEducation div#eduText {
	width: 50%;
}
section#topEducation p.text_b {
	font-weight: bold;
	font-size: 200%;
	color: #ef6c88;
	margin-bottom: 20px;
}
section#topEducation p.text {
	font-size: 110%;
	line-height: 2;
}
/* img animation */
section#topEducation .sqani {
	overflow: hidden;
	width: 300px;
	height: 200px;
	padding: 20px 50px 50px 50px;
	box-sizing: border-box;
	margin: 0;
	z-index: 2;
	color: #fff;
	animation: sqani 30s linear infinite;
}
@keyframes sqani {
	0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
	14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
	28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
	42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
	56% { border-radius: 39% 61% 67% 33% / 50% 70% 50% 30%; } 
	70% { border-radius: 50% 50% 34% 66% / 68% 56% 32% 44%; } 
	84% { border-radius: 54% 46% 50% 50% / 61% 35% 39% 65%; } 
}
section#topEducation #sqani01 {
	animation: sqani01 30s linear infinite;
	padding: 30px 50px 60px 50px;
}
@keyframes sqani01 {
	0%,100% { border-radius: 37% 63% 54% 46% / 48% 55% 52% 45%; } 
	14% { border-radius: 60% 40% 54% 46% / 60% 49% 40% 51%; } 
	28% { border-radius: 46% 54% 38% 62% / 70% 49% 30% 51%; } 
	42% { border-radius: 39% 61% 55% 45% / 38% 61% 62% 39%; } 
	56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
	70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
	84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}
section#topEducation a .sqani img {
	width: 100%;
	transition: 0.5s ease-in;
	transform: scale(1.5);
}
section#topEducation a:hover .sqani img {
	transform: scale(1.53);
}
section#topEducation #toEdu {
	position: absolute;
	top: -100px;
	right: 0;
}
section#topEducation #toCar {
	position: absolute;
	bottom: 0;
	left: 55%;
}
section#topEducation a .topbtn {
	font-weight: bold;
	font-size: 120%;
	padding: 0 5px 10px 10px;
	position: relative;
}
section#topEducation a .bani02::before {
	background: #437722;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: left top;
	transform: scale(1, 1);
	transition: transform .3s;
}
section#topEducation a:hover .bani02::before {
	transform-origin: right top;
	transform: scale(0, 1);
}
@media screen and (max-width: 1200px) {
section#topEducation {
	padding: 60px 0 80px;
	position: relative;
	width: 85%;
	margin-bottom: 60px;
}
section#topEducation h2 br {
	display: inline;
}
section#topEducation h2 {
	margin-bottom: 20px;
}
section#topEducation div#eduText {
	width: 100%;
	margin-bottom: 40px;
}
section#topEducation p.text_b {
	font-size: 160%;
	margin-bottom: 20px;
	line-height: 1.5;
}
section#topEducation #toEdu {
	position: relative;
	top: 0;
	right: 0;
	width: 40%;
}
section#topEducation #toCar {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40%;
}
section#topEducation .sqani {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px 20px 30px 30px;
}
section#topEducation #sqani01 {
	padding: 10px 20px 20px 30px;
}
section#topEducation a .sqani img {
	transform: scale(1.8);
}
section#topEducation a:hover .sqani img {
	transform: scale(1.83);
}
}
@media screen and (max-width: 500px) {
section#topEducation h2 {
	text-align: center;
}
section#topEducation p.text_b {
	font-size: 140%;
	margin-bottom: 20px;
	line-height: 1.5;
}
section#topEducation p.text_b br {
	display: none;
}
section#topEducation #toEdu {
	width: 46%;
}
section#topEducation #toCar {
	width: 46%;
}
section#topEducation .sqani {
	margin-bottom: 5px;
}
section#topEducation a .topbtn {
	padding: 0;
	text-align: center;
	font-size: 100%;
}
}
/* person */
section#person {
	display: flex;
	justify-content: flex-end;
	margin: 0 auto 100px;
	width: 100%;
	max-width: 1800px;
}
section#person .container {
	width: 65%;
	background-image: url(../images/top/featureBack.jpg);
	margin: 0;
	padding: 80px 60px 60px 60px;
	border-radius: 100px 0 0 100px;
	overflow: hidden;
}
div.topPerson {
	position: relative;
	margin-bottom: 140px;
}
div.topPerson div.personText {
	background-color: #fff;
	padding: 60px;
	border-radius: 40px;
	position: relative;
	width: 40%;
}
div.topPerson div.personText p {
	font-size: 110%;
}
div.topPerson a:hover  {
	color: #333;
}
div.topPerson a  p,
div.topPerson a:hover p {
	font-weight: normal;
}
section#person p.personImg {
	position: absolute;
	top: -40px;
	left: 70%;
	width: 600px;
	background-color: #fff;
	overflow: hidden;
	border-radius: 40px 0 0 40px;
}
section#person a p.personImg img {
	width: 100%;
	transition: 1s;
}
section#person a:hover p.personImg img {
	transform: scale(1.02);
	opacity: 0.5;
}
div#oneDay {
	margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
section#person .container {
	width: 90%;
	padding: 60px;
	border-radius: 100px 0 0 100px;
	box-sizing: border-box;
}

div.topPerson div.personText {
	padding: 40px;
	border-radius: 40px;
	position: relative;
	width: 65%;
}
div.topPerson p.personImg {
	top: -40px;
	left: 60%;
	width: 100%;
}
}
@media screen and (max-width: 500px) {
section#person {
	margin-bottom: 60px;
}
section#person .container {
	width: 90%;
	padding: 60px 10px 60px 50px;
	border-radius: 40px 0 0 40px;
}
div.topPerson div.personText {
	padding: 30px 10px 60px 20px;
	border-radius: 40px;
	width: 94%;
	box-sizing: border-box;
}
div.topPerson div.personText h2.mb40 {
	margin-bottom: 20px;
}
section#person p.personImg {
	width: 100%;
	top: 82%;
	left: 70px;
}
div#oneDay {
	margin-bottom: 40px;
}
div#topVoice br {
	display: none;
}
}
/* pickup */
section#pickup {
	box-sizing: border-box;
	padding: 60px 20px 100px;
	margin-bottom: 140px;
	background-color: #fff;
	border-radius: 100px;
	width: 80%;
	text-align: center;
}
section#pickup h2 {
	color: #ef6c88;
	font-size: 240%;
	margin-bottom: 10px;
}
section#pickup p {
	color: #ccc;
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 60px;
	letter-spacing: 0.2em;
}
section#pickup ul {
	display: flex;
	justify-content: space-between;
}
section#pickup ul li {
	border-right: 2px dashed #ccc;
}
section#pickup ul li:last-child {
	border-right: none;
}
section#pickup ul li a {
	font-weight: bold;
	font-size: 140%;
}
section#pickup ul li a span.material-symbols-outlined,
section#pickup ul li a:hover {
	color: #ef6c88;
}
section#pickup ul li a span.picknum {
	font-size: 120%;
	color: #ef6c88;
}
section#pickup img {
	width: 100%;
	margin: 20px 0;
	transition: 0.5s;
}
section#pickup a:hover img {
	transform: scale(0.95);
}
@media screen and (max-width: 1200px) {
section#pickup ul {
	display: block;
	padding: 0 20px;
}
section#pickup ul li {
	border-right: none;
	border-bottom: 2px dashed #ccc;
	padding: 10px 0;
}
section#pickup ul li:last-child {
	border-bottom: none;
}
section#pickup ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section#pickup ul img {
	width: 40%;
}
}
@media screen and (max-width: 500px) {
section#pickup {
	padding: 30px 10px 20px;
	margin-bottom: 80px;
	background-color: #fff;
	border-radius: 40px;
	width: 80%;
	text-align: center;
}
section#pickup h2 {
	font-size: 180%;
	margin-bottom: 10px;
}
section#pickup p {
	font-size: 100%;
	margin-bottom: 0;
}
section#pickup ul li {
	padding: 20px 0;
}
section#pickup ul li a {
	font-size: 120%;
	display: block;
}
section#pickup ul li a span.picknum {
	display: block;
	margin-bottom: 10px;
}
section#pickup ul li a img {
	margin: 0 auto 10px;
	transition: 0.5s;
	display: block;
	width: 100%;
}
}
