@charset "utf-8";
html {
	font-size: calc(10 / 1440 * 100vw);
}
:root {
	--main-color: #759FB3;
    --color-white:#f5f5f5;
    --color-green:#5B7A5C;
    --color-pink:#E5A8C7;
    --color-gray:#949191;
    --base-color:#F1EFE3;
    --text-color:#231815;
}
body {
	font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
	color: var(--text-color);
	letter-spacing: 0.01em;
	position: relative;
	background-color: var(--base-color);
    background-image: url(../img/noise.png);
    background-repeat: repeat;
    background-size: 32px;
}
@keyframes transformLeftRight {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(50%);
		opacity: 0;
	}
	51% {
		transform: translateX(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
.sp {
	display: none;
}
.inner {
	max-width: 128rem;
	margin: auto;
	position: relative;
	z-index: 3;
}
@media (max-width: 767px) {
	html { 
		font-size: calc(10 / 393 * 100vw);
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

section{
	margin-bottom: 10rem;
}
.section_title {
	font-weight: 300;
	font-size: 2.1rem;
	color: #000;
	margin-left: 5.8rem;
	padding-left: 5.9rem;
	position: relative;
	z-index: 2;
	line-height: 5rem;
}
.section_title:before {
	content: "";
	width: 7.1rem;
	height: 5.54rem;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-image: url(../img/title-illust.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}
.section_title span {
	font-size: 1.7rem;
	margin-left: 3rem;
}
@media (max-width:768px) {
	.section_title {
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-left: 1.5rem;
		padding-left: 4.2rem;
	}
	.section_title:before {
		width: 5.65rem;
		height: 4.33rem;
	}
	.section_title span {
		font-size: 1.2rem;
		margin-left: 1.5rem;
	}
}


.view_btn {
	font-weight: 300;
	font-size: 1.8rem;
	color: var(--text-color);
	display: inline-flex;
	align-items: center;
	gap: 3.2rem;
	transition: .3s;
}
.view_btn span {
	display: inline-block;
	transition: .3s;
}
.view_btn:before {
	content: "";
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 50%;
	background-color: var(--main-color);
	margin-top: .3rem;
	transition: .2s;
}
.view_btn:after {
	content: "";
	width: 1.3rem;
	height: .8rem;
	background-image: url(../img/arrow-right.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: .4rem;
	transition: .3s;
}
.view_btn:hover span {
	transform: translateX(1rem);
}
.view_btn:hover:before {
	opacity: 0;
	transform: translateX(4rem) scale(1.2);
}
.view_btn:hover:after {
	transform: translateX(1rem);
}
@media (max-width:768px) {
	.view_btn {
		font-size: 1.3rem;
		gap: 1.6rem;
	}
	.view_btn:before {
		width: .8rem;
		height: .8rem;
	}
	.view_btn:after {
		width: 1rem;
		height: .7rem;
	}
}


.text_animation {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.text_animation_inner {
	position: relative;
  display: inline-block;
  overflow: hidden;
}
.text_animation_box {
  display: flex;
}
.text_animation_box span {
  display: inline-block;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
	padding: .2rem 0;
}
.text_animation.is-wave .text_animation_box1 span {
  animation: waveUp 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(var(--i) * 0.025s);
}
.text_animation.is-wave .text_animation_box2 span {
  animation: waveIn 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(var(--i) * 0.025s);
}
@keyframes waveUp {
  0%   { transform: translateY(0) translateZ(0); }
  100% { transform: translateY(-100%) translateZ(0); }
}
@keyframes waveIn {
  0%   { transform: translateY(100%) translateZ(0); }
  100% { transform: translateY(0) translateZ(0); }
}
.text_animation_box2 {
  position: absolute;
  top: 0;
  left: 0;
}
.text_animation_box2 span {
  transform: translateY(100%) translateZ(0);
}
.text_animation:not(.is-wave) .text_animation_box1 span {
  transform: translateY(0) translateZ(0);
  animation: none;
}
.text_animation:not(.is-wave) .text_animation_box2 span {
  transform: translateY(100%) translateZ(0);
  animation: none;
}

.arrow_btn {
    border: 1px solid var(--color-gray);
    background-color: rgb(from var(--color-white) r g b / 0.5);
    border-radius: 100vmax;
    display: inline-block;
    padding: 1rem 4rem 1rem 3rem;
    position: relative;
    color: var(--color-green);
}
.btn_inner {
    overflow: hidden;
    line-height: 1;
}
.btn_inner .btn_text{
    display: inline-block;
    translate: 0 0;
    text-shadow: 0 1.1em 0 currentColor;
    transition: translate 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.arrow_btn:hover .btn_inner .btn_text{
    translate: 0 -1.1em;
}
.arrow_btn .icon_arrow{
    width: 1.3rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.arrow_btn:hover .icon_arrow{
    animation-name: transformLeftRight;
    animation-fill-mode: forwards;
    animation-duration: .7s;
    transition-timing-function: ease-out;
}
@keyframes transformLeftRight{
0% {
    transform: translateX(0) translateY(-50%);
}
50% {
    transform: translateX(50%) translateY(-50%);
    opacity: 0;
}
51% {
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}
}
.arrow_btn.type_b{
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.arrow_btn.type_b::before,
.arrow_btn.type_b::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}
.arrow_btn.type_b::before{
    content: "(";
    left: 0;
}
.arrow_btn.type_b::after{
    content: ")";
    right: 0;
}
.arrow_btn.type_b .icon_arrow,
.arrow_btn.type_c .icon_arrow{
    rotate: -45deg;
}
.arrow_btn.type_c{
    background-color: rgb(from var(--color-green) r g b / 1);
	color: var(--color-white);
	border-color: var(--color-green);
}

.fixed_btn {
	width: 100%;
    position: fixed;
    z-index: 5000;
    bottom: 0;
    right: 0;
    display: none;
}
.fixed_btn_inner{
	display: flex;
}
.fixed_btn_text{
	width: 50%;
	height: 4.6rem;
	display: grid;
	place-content: center;
	font-size: 1.4rem;
}
.fixed_btn_text.is_reserve{
	background-color: var(--color-green);
	color: var(--base-color);
}
.fixed_btn_text.is_recruit{
	color: var(--color-green);
	background-color: var(--base-color);
}
    