/*
Theme Name: recruit 
 */

/* ============================
	common
============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--leading-trim: calc((1em - 1lh) / 2);
	--main-color: #4DBCCB;
	--sub-color: #FFB502;
	--main-text-color: #2B2B2B;
	--sub-text-color: #0A8696;
	--bg-color: #fff;
	--border-color: #40CFDD;
	--blue: #3e5ca0;
	--black: #2C2C2C;
	--white: #fff;
	--container-size: 1160px;
	--container-padding: 20px;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ofi {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.bold {
  font-weight: 700;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.pt-0 {
	padding-top: 0 !important;
}

.glow {
	position: relative;
	z-index: 2;
}

.glow::before {
	background: radial-gradient(ellipse 60% 40%, rgba(253, 182, 1, 1) 0%, rgba(254, 201, 66, 1) 15%, rgba(255, 219, 129, 1) 30%, rgba(255, 236, 188, 1) 45%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 870px;
	left: 14vw;
	opacity: .3;
	position: absolute;
	rotate: -20deg;
	top: -50%;
	width: 1380px;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.glow::before {
		height: 400px;
		left: 22vw;
		top: -25%;
		width: 600px;
	}
}

/* ============================
	sp-menu
============================ */
#sp-menu {
  background-color: #F0F9FA;
	box-shadow: -3px 0 6px rgb(229, 236, 245);
	border-radius: 20px 0 0 20px;
  box-sizing: border-box;
	height: 100vh;
  right: -425px;
  opacity: 1;
  padding: 140px 20px 40px;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 0.35s ease;
	transform: translateZ(0);
  width: 420px;
	z-index: 11;
}

#sp-menu.opening {
  opacity: 1;
  pointer-events: auto;
	right: 0;
}

body:has(#sp-menu)::before {
	background-color: rgb(0 0 0 / .3);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all 0.3s ease;
	width: 100%;
	z-index: -1;
}

body:has(#sp-menu.opening)::before {
	opacity: 1;
	z-index: 11;
}

#sp-menu .menu-item + .menu-item {
	margin-top: 20px;
}

#sp-menu .menu-item a {
	border-bottom: 1px solid var(--sub-text-color);
	color: var(--sub-text-color);
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	margin-inline: auto;
	text-align: center;
	transition: all .4s;
	padding: 15px 0;
	width: 80%;
}

#sp-menu .sub-menu {
  display: none;
  opacity: 0;
  transition: 0.35s all ease;
}

#sp-menu .sub-menu.opening {
  display: block;
  opacity: 1;
  transition: 0.35s all ease;
}

#sp-menu .sp-contact-box {
  margin: 50px auto 0;
	width: fit-content;
}

@media screen and (max-width: 767px) {
	#sp-menu {
		right: -82%;
		width: 80%;
	}
	
	#sp-menu .menu-item a {
		width: 90%;
	}
}


/* btn-hamburger */
#btn-hamburger {
  position: relative;
  top: 0;
  right: 0;
  width: 30px;
  height: 40px;
  z-index: 1001;
  cursor: pointer;
}

#btn-hamburger .border {
	border-radius: 1px;
  position: absolute;
  left: 0;
  transition: opacity, transform 0.2s ease;
  background: #2B2B2B no-repeat left top;
  width: 24px;
  height: 2px;
  z-index: 1;
}

#btn-hamburger .border:first-child {
  top: 33%;
}

#btn-hamburger .border:nth-child(2) {
  transform: rotate(0);
  opacity: 1;
  top: 50%;
	width: 16px;
}

#btn-hamburger .border:nth-child(3) {
	top: 67%;
}

#btn-hamburger.opening .border:first-child {
  transform: rotate(45deg);
  top: 50%;
}

#btn-hamburger.opening .border:nth-child(2) {
  opacity: 0;
}

#btn-hamburger.opening .border:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
	width: 23px;
}

@media screen and (max-width: 767px) {
	#btn-hamburger {
		height: 40px;
		width: 40px;
	}
	
	#btn-hamburger .border {
		left: 10px;
		width: 20px;
	}
	
	#btn-hamburger .border:nth-child(3) {
		width: 19px;
	}
	
	#btn-hamburger.opening .border:nth-child(3) {
		width: 20px;
	}
}

/* ============================
	header
============================ */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header.h-fixed {
  position: fixed;
}

#header .nav-wrapper {
	border-radius: 10px;
	margin: 10px 20px;
}

#header .h-inner {
  align-items: center;
	background-color: var(--white);
	border-radius: 90px;
	box-shadow: 5px 0 10px rgb(229, 236, 245);
	column-gap: 28px;
	display: flex;
	justify-content: space-between;;
	padding: 10px 60px 10px 32px;
  padding: 10px 20px;
  width: 100%;
}

#header .h-inner {
  align-items: center;
	display: flex;
	justify-content: space-between;
	height: 72px;
	padding: 0 20px;
	transition: all .4s;
  width: 100%;
}

#header .h-inner #h-site-logo {
	height: auto;
	max-width: 340px;
	width: 100%;
}

#header .h-inner #h-site-logo .image-box a {
	align-items: center;
	display: flex;
	gap: 10px;
}

#header .h-inner #h-site-logo .image-box img {
	display: block;
	height: auto;
	width: 217px;
}

#header .h-inner #h-site-logo .image-box a span {
	color: var(--main-color);
	font-size: 1.6rem;
	font-weight: 300;
}

#h-gnav-box {
	width: calc(100% - 410px);
}

#h-gnav-box #menu-header-nav {
	display: flex;
	gap: 20px 8px;
	justify-content: flex-end;
}

#h-gnav-box .menu-item a {
  font-size: 1.8rem;
  font-weight: 700;
}

#h-gnav-contact {
  margin-left: 30px;
}

#h-gnav-contact a {
  display: block;
  box-sizing: border-box;
  background-color: #111;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  width: 160px;
  height: 40px;
  padding: 12px 0;
}

@media screen and (max-width: 767px) {
  #header {
    margin: 0 auto;
    right: 0;
  }
	
	#header .nav-wrapper {
		margin: 10px 15px;
	}

  #header .h-inner {
		height: 64px;
    padding: 0 20px 0 15px;
  }
	
	#header .h-inner #h-site-logo .image-box a {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}
	
	#header .h-inner #h-site-logo .image-box img {
		width: 163px;
	}
	
	#header .h-inner #h-site-logo .image-box a span {
		font-size: 1rem;
		line-height: 1;
		margin-left: 40px;
	}
}

/* ============================
	footer
============================ */
#footer .f-inner {
  background-color: #2C2C2C;
  padding: 80px 0 40px;
}

#footer .f-content {
	align-items: center;
	display: flex;
	gap: 40px 45px;
  text-align: center;
}

#footer .f-content .f-logo {
	border-right: 1px solid #777;
	padding-right: 40px;
}

#footer .f-content .info-container {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
}

#footer .f-content .info-container address p {
	color: #C4C4C4;
	font-style: normal;
	line-height: 1.5;
	text-align: left;
}

#footer .f-content .info-container .contact p {
	color: #C4C4C4;
	line-height: 1.5;
	text-align: left;
}

#copyright {
  background-color: #2C2C2C;
	display: block;
  padding: 10px 0;
}

#copyright p {
  text-align: center;
  color: #C4C4C4;
  font-size: 1.4rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #footer .f-inner {
    padding: 60px 0 25px;
  }
	
	#footer .f-content {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	#footer .f-content .f-logo {
		border-right: none;
	}
	
	#footer .f-content .info-container {
		justify-content: center;
	}
	
	#footer .f-content .info-container address p {
		text-align: center;
	}

	#footer .f-content .info-container .contact p {
		text-align: center;
	}
	
	#copyright {
		padding: 10px 0 80px;
	}
}

/* ============================
	mainvisual
============================ */
.mainvisual {
  width: 100%;
  margin: 0;
}

#top-mv .mv-inner {
  background-color: #ECF0F4;
	overflow: hidden;
	padding: 150px 0 0;
	position: relative;
	z-index: 1;
}

#top-mv .mv-inner::before {
	background: radial-gradient(ellipse 60% 40%,rgba(253, 182, 1, 1) 0%, rgba(254, 201, 66, 1) 15%, rgba(255, 219, 129, 1) 30%, rgba(255, 236, 188, 1) 45%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 980px;
	left: 14vw;
	opacity: .3;
	position: absolute;
	rotate: -20deg;
	top: -38%;
	width: 1447px;
	z-index: -1;
}

#top-mv .mv-inner .image-box img {
	height: auto;
	width: 100%;
}

#top-mv .mv-inner .title-wrapper {
	margin-top: -115px;
}

#top-mv .mv-inner #mv-title {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

#top-mv .mv-inner #mv-title span {
	background: linear-gradient(90deg,rgba(53, 156, 170, 1) 0%, rgba(3, 196, 208, 1) 100%);
	background-color: var(--main-color);
	border-radius: 8px;
	color: var(--white);
	font-size: 3.2rem;
	font-weight: 600;
	opacity: 0;
	padding: 2px 14px;
	width: fit-content;
}

#top-mv .mv-inner #mv-title span:nth-child(1) {
	animation: catch_anime 2s forwards .5s;
}

#top-mv .mv-inner #mv-title span:nth-child(2) {
	animation: catch_anime 2s forwards 1.25s;
}

#top-mv .mv-inner #mv-title span:nth-child(3) {
	animation: catch_anime 2s forwards 2s;
}

#top-mv .mv-inner .title-wrapper .text-box {
	margin-top: 20px;
}

#top-mv .mv-inner .title-wrapper .text-box p {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
	#top-mv .mv-inner::before {
		height: 490px;
		left: 5vw;
		top: -200px;
		width: 724px;
		display: none;
	}
	
	#top-mv .mv-inner #mv-title span {
		font-size: 2rem;
		padding: 7px 10px;
	}
	
	#top-mv .mv-inner .title-wrapper {
		margin-top: -30px;
	}
	
	#top-mv .mv-inner .title-wrapper .text-box {
		margin-top: 15px;
	}
}

#page-mv .mv-inner {
  padding: 100px 0;
}

#page-mv .page-ttl {
  margin: 0;
}

@keyframes catch_anime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) {
	#page-mv .mv-inner {
		padding: 60px 0;
	}
}

#top-mv .image-box {
	column-gap: 10px;
	display: flex;
	width: max-content;
}

#top-mv .mv-inner .image-box img {
	animation: seamless-scroll 50s linear infinite;
}

#top-mv .mv-message-container {
	background: linear-gradient(180deg,rgba(236, 240, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
	margin-top: -25px;
	padding-bottom: 70px;
	overflow: hidden;
}

#top-mv .mv-message-container .message {
	display: flex;
	opacity: .18;
	width: 100vw;
}

#top-mv .mv-message-container .message p {
	animation: seamless-scroll 100s linear infinite;
	color: var(--main-color);
	font-size: 8.6rem;
	font-weight: 300;
	line-height: 1;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	#top-mv .mv-inner .image-box img {
		animation: seamless-scroll02 30s linear infinite;
		height: 40dvh;
	}
	
	#top-mv .mv-message-container {
		margin-top: -10px;
	}
	
	#top-mv .mv-message-container .message p {
		font-size: 5.6rem;
		line-height: 1;
	}
}

@keyframes seamless-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@keyframes seamless-scroll02 {
	0% {
		transform: translateX(-30%);
	}
	100% {
		transform: translateX(-130%);
	}
}

#page-mv {
	background-color: #ECF0F4;
	overflow: hidden;
	padding: 82px 0 0;
	position: relative;
	z-index: 1;
}

#page-mv::before {
	background: radial-gradient(ellipse 60% 40%, rgba(253, 182, 1, 1) 0%, rgba(254, 201, 66, 1) 15%, rgba(255, 219, 129, 1) 30%, rgba(255, 236, 188, 1) 45%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 870px;
	left: 14vw;
	opacity: .3;
	position: absolute;
	rotate: -20deg;
	top: -50%;
	width: 1380px;
	z-index: -1;
}

#page-mv::after {
	background: linear-gradient(180deg, rgba(236, 240, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
	content: "";
	display: block;
	margin-top: -25px;
	height: 200px;
	position: relative;
	overflow: hidden;
	width: 100%;
	z-index: -2;
}

@media screen and (max-width: 767px) {
	#page-mv::before {
		height: 400px;
		left: 22vw;
		top: -25%;
		width: 600px;
	}
}

.page-ttl-box .page-ttl {
	font-size: 3.2rem;
	font-weight: 700;
}

.page-ttl-box .page-sub-ttl {
	color: #00C1D0;
	font-size: 1.9rem;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	.page-ttl-box .page-ttl {
		font-size: 2.4rem;
	}

	.page-ttl-box .page-sub-ttl {
		font-size: 1.4rem;
	}
}

/* ============================
	section
============================ */
.sec-inner {
  padding: 100px 0;
}

.sec-ttl {
  text-align: center;
  margin: 0;
}

.content-width {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
  width: min(100%, calc(var(--container-size) + var(--container-padding) * 2));
}

.content-box {
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
	.content-width {
		padding: 0 15px;
		width: 100%;
	}
}

body#top .sec-ttl-box .sec-ttl {
	align-items: center;
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	font-size: 6.4rem;
	font-weight: 300;
	justify-content: center;
	line-height: 1.4;
	margin-inline: auto;
	width: fit-content;
}

body#top .sec-ttl-box.center .sec-ttl {
	align-items: center;
	margin-inline: auto;
}

body#top .sec-ttl-box.white .sec-ttl {
	color: var(--white);
}

body#top .sec-ttl-box .sec-ttl span {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
}

body#top .sec-ttl-box.white .sec-ttl span {
	color: var(--white);
}

@media screen and (max-width: 767px) {
	.sec-inner {
		padding: 56px 0;
	}

	body#top .sec-ttl-box .sec-ttl {
		align-items: flex-start;
		font-size: 4rem;
		margin-left: unset;
	}
	
	body#top .sec-ttl-box .sec-ttl span {
		font-size: 1.4rem;
	}
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
	align-items: center;
	background-color: transparent;
  display: flex;
	height: fit-content;
	padding: 10px 0;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: var(--sub-text-color);
	font-size: 1.3rem;
	font-weight: 400;
}

.breadcrumbs .content-width {
	text-align: right;
}

.breadcrumbs .content-width > span {
	margin-left: 0;
	position: relative;
}

.breadcrumbs .content-width > span:first-child {
	margin-left: 0;
}

.breadcrumbs .content-width > span::before {
	border: 2px solid var(--sub-color);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	content: "";
	color: var(--main-text-color);
	display: inline-block;
	height: 8px;
	line-height: 1;
	margin: 0.45em 0.75em 0.15em 0.35em;
	transform: rotate(45deg);
	width: 8px;
}

.breadcrumbs .content-width > span:first-child::before {
	content: none;
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		padding: 10px 0;
	}
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
  clear: both;
  margin: 30px 0 0;
  font-size: 1.6rem;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  width: 3em;
  height: 3em;
  margin: 0 0.5em;
  font-weight: bold;
  line-height: 3;
  color: #999;
  border: 2px solid #ccc;
  text-align: center;
  vertical-align: middle;
  transition: all 0.5s ease;
}

.wp-pagenavi a:hover,
.wp-pagenavi span {
  background: #000000;
  color: #fff;
  border-color: #000;
  opacity: 1;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  transition: all 0.5s ease;
}

.wp-pagenavi .extend {
  width: 1em;
  color: #000;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}

.wp-pagenavi .extend::after {
  content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 3em;
  height: 3em;
  background: #fff;
  text-indent: -999999px;
  vertical-align: middle;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(225deg);
}

.wp-pagenavi .nextpostslink::after {
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  border-color: #fff;
}

.result_count {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}

/* ============================
	post parts
============================ */
.post-date {
  font-size: 1.5rem;
  min-width: 70px;
}

.post-cats {
  line-height: 1;
  margin: 0 0 0 20px;
}

.post-cats.flex-start {
  justify-content: flex-start;
  align-items: center;
}

.post-cat {
  display: block;
  background-color: #111;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 10px;
  width: 120px;
  text-align: center;
}

.post-cat + .post-cat {
  margin: 0 0 0 10px;
}

.post-cat:link {
  color: #fff;
}

.post-cat:visited {
  color: #fff;
}

/* ============================
	news list
============================ */
.news-item {
  padding: 20px 0;
}

.news-item + .news-item {
  border-top: 1px solid #1e1e1e;
}

.news-item .post-ttl {
  font-size: 1.5rem;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .news-item .post-meta {
    width: 100%;
  }
  .news-item .post-ttl {
    margin-left: 0;
  }
}

/* ============================
	card list
============================ */
.card-list {
  margin-top: -30px;
  margin-left: -80px;
}

.card-item {
  width: 280px;
  margin-top: 30px;
  margin-left: 80px;
}

.card-item .post-thumb img {
  width: 100%;
}

.card-item .post-info {
  margin-top: 20px;
}

.card-item .post-ttl {
  font-size: 1.5rem;
  margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .card-item {
    width: 100%;
  }
}

/* ============================
	contact form
============================ */
.contact-box .wpcf7-not-valid-tip {
	margin-top: 8px;
}

.contact-box .required {
  background-color: #F72121;
	border-radius: 2px;
  color: var(--white) !important;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 16px;
  padding: 4px 8px;
}

.contact-box .optional {
  background-color: #797979;
	border-radius: 2px;
  color: #fafafa !important;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 16px;
  padding: 4px 8px;
}

.contact-box input.size-md {
	max-width: 240px;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box textarea {
	background-color: var(--white);
	border: 1px solid #C1C1C1;
	border-radius: 3px;
	box-shadow: unset;
	box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 7px 24px;
	width: 100%;
}

.contact-box input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.contact-box textarea {
	height: 200px;
}

.contact-box .wpcf7-radio .wpcf7-list-item {
	flex-basis: auto;
	margin: 0;
	width: auto;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label {
	align-items: center;
  cursor: pointer;
  display: flex;
	font-size: 1.6rem;
	font-weight: 500;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label::before {
  background-color: var(--white);
	border: 1px solid #ccc;
  border-radius: 100%;
  content: "";
  height: 20px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .3s;
  width: 20px;
}

.contact-box input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--sub-text-color);
  box-shadow: inset 0 0 0 3px var(--white);
}

.contact-box .wpcf7-checkbox {
	display: flex;
	gap: 24px;
}

.contact-box .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}

.contact-box .contact-information .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contact-box .contact-information .wpcf7-checkbox .wpcf7-list-item {
	flex-basis: calc(50% - 10px);
	width: calc(50% - 10px);
}

.contact-box .age-field dd {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

.contact-box .age-field input {
	width: 100px;
}

.contact-box .age-field dd .unit {
	margin-top: 10px;
}

.contact-box .age-field .wpcf7-not-valid-tip {
	flex: 0 0 100%;
	margin-top: 5px;
}

.contact-box .your-email {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .zip {
  width: 150px;
  box-sizing: border-box;
}

.contact-box .your-address {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .your-content {
  width: 100%;
  box-sizing: border-box;
}

.contact-box .wpcf7-radio {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.contact-box  input[type="checkbox"] {
	appearance: none;
	background-color: var(--white);
	border: 1px solid #C1C1C1;
	border-radius: 3px;
	position: relative;
	height: 24px;
	vertical-align: -5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 24px;
}

.contact-box  input[type="checkbox"]:checked {
	background-color: var(--main-text-color);
}

.contact-box  input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 6px;
  transform: rotate(40deg);
  width: 11px;
  height: 16px;
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
	border-radius: 2px;
  content: '';
}

.contact-box .wpcf7-acceptance input[type="checkbox"]:checked {
	background-color: var(--main-color);
}

.contact-box .wpcf7-acceptance input[type="checkbox"]:checked:before {
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

.contact-box .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.contact-box .wpcf7-acceptance .wpcf7-list-item label {
	align-items: center;
	display: flex;
	gap: 16px;
	text-align: left;
}

.contact-box .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
	line-height: 1.4;
}

.contact-box dl {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

.contact-box dl + dl {
	margin-top: 48px;
}

.contact-box dd {
	font-size: 1.6rem;
	font-weight: 500;
	margin: 16px 0 0 0;
}

.contact-box dd.flex-date {
	align-items: center;
	display: flex;
	gap: 20px 10px;
}

.contact-box input[type="tel"].tel {
  width: 240px;
}

.contact-box .content-policy {
	background-color: var(--white);
	border: 1px solid #ccc;
	margin-top: 16px;
	max-height: 350px;
	padding: 24px 16px;
	overflow-y: auto;
	width: 100%;
}

#consent-box {
	margin-top: 40px;
  text-align: center;
}

#consent-box .wpcf7-list-item-label a {
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: underline;
}

#submit-box .wpcf7-response-output {
  text-align: center;
}

#btn-submit {
  width: 300px;
  position: relative;
  margin: 0 auto;
}

#submit-box {
	position: relative;
	text-align: center;
}

#submit-box .btn-send {
	background-color: var(--main-color);
	border: none;
	border-radius: 36px;
	color: var(--white);
	font-size: 2rem;
	font-weight: 700;
	height: 100%;
	line-height: 1;
	margin-top: 24px;
	max-width: 360px;
	height: 74px;
	padding: 26px 20px 26px 20px;
	text-align: center;
	width: 100%;
}

#btn-submit .wpcf7-submit {
  background-color: #111;
  color: #fff;
  line-height: 1;
  width: 300px;
  padding: 16px 0;
}

#submit-box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  margin: 0 0 0 10px;
}

#submit-box .btn-send {
	column-gap: 30px;
	background-color: var(--main-color);
	border: none;
	border-radius: 3px;
	color: var(--white);
	font-size: 2rem;
	font-weight: 700;
	height: 100%;
	line-height: 1;
	max-height: 70px;
	padding: 24px 20px 24px 20px;
	text-align: center;
	width: 230px;
}

@media screen and (min-width: 768px) {
  .contact-box th {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="email"],
  .contact-box input[type="tel"],
  .contact-box input[type="url"],
  .contact-box input[type="number"],
  .contact-box textarea {
    width: 100%;
  }

  .contact-box td,
  .contact-box th {
    display: block;
    width: 100%;
  }
	
	.contact-box .age-field input {
		width: 100px;
	}
	
	.contact-box .contact-information .wpcf7-checkbox .wpcf7-list-item {
		flex-basis: 100%;
		width: 100%;
	}
}

.contact-box.recruit input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--main-color);
}

.contact-box.recruit .wpcf7-radio {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
}

.contact-box.recruit .wpcf7-radio .wpcf7-list-item-label::before {
	border: 1px solid var(--recruit-bg-color);
}

.contact-box.recruit input[type="text"],
.contact-box.recruit input[type="password"],
.contact-box.recruit input[type="email"],
.contact-box.recruit input[type="tel"],
.contact-box.recruit input[type="url"],
.contact-box.recruit input[type="number"],
.contact-box.recruit textarea {
	background-color: #FAFAFA;
	border: 1px solid #C3D0D9;
}

.contact-box.recruit input[type="text"]::placeholder,
.contact-box.recruit input[type="password"]::placeholder,
.contact-box.recruit input[type="email"]::placeholder,
.contact-box.recruit input[type="tel"]::placeholder,
.contact-box.recruit input[type="url"]::placeholder,
.contact-box.recruit input[type="number"]::placeholder,
.contact-box.recruit textarea::placeholder {
	color: #C3D0D9;
}

.contact-box.recruit  input[type="checkbox"] {
	border-color: #C3D0D9;
}

.contact-box.recruit  input[type="checkbox"]:checked {
	background-color: var(--main-color);
}

.contact-box.recruit #consent-box input[type="checkbox"]:checked {
	background-color: var(--recruit-sub-color);
}

.contact-box.recruit #submit-box .btn-send {
	background-color: var(--recruit-sub-color);
}

@media screen and (max-width: 767px) {
	.contact-box.recruit .wpcf7-radio .wpcf7-list-item {
		flex-basis: 100%;
	}
}

/* ============================
	404
============================ */
body.error404 #error-404 {
	margin-top: -200px;
	position: relative;
	z-index: 1;
}

#error-404 .content-box p {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #h-gnav-box {
    display: none;
  }
}

/* ============================
	link
============================ */
.c-link {
	align-items: center;
	background-color: var(--white);
	border-radius: 90px;
	box-shadow: 2px 2px 5px rgb(64 64 64 / .4);
	column-gap: 24px;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	height: 64px;
	justify-content: flex-start;
	min-width: 180px;
	padding: 4px 18px 4px 26px;
	position: relative;
	width: fit-content;
}

.c-link .text {
	color: var(--main-color);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.c-link .circle {
	background-color: var(--white);
	border-radius: 50%;
	display: grid;
	height: 48px;
	left: 10px;
	place-items: center;
	position: relative;
	transition: all .4s;
	width: 48px;
}

.c-link .circle::before {
	background-color: #54CDD9;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	content: "";
	height: 83px;
	left: 50%;
	opacity: .38;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 83px;
}

.c-link .circle::after {
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: 50%;
	content: "";
	height: 27px;
	left: 50%;
	opacity: 1;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	transition: all .4s;
	width: 27px;
}

.c-link:hover .circle::after {
	animation: .8s circleanime forwards;
}

.c-link .arrow {
	background-image: url("./images/common/link_arrow.svg");
	background-size: cover;
	display: block;
	height: 13px;
	overflow: hidden;
	position: relative;
	width: 16px;
	z-index: 1;
}

.c-link .external {
	background-color: #B9B5AC;
	mask-image: url("./images/common/icon_external_link.svg");
	mask-size: cover;
	display: block;
	height: 16px;
	overflow: hidden;
	position: relative;
	width: 20px;
}

.c-link.inversion {
	background-color: var(--main-color);
}

.c-link.inversion .circle {
	background-color: var(--main-color);
}

.c-link.inversion .text {
	color: var(--white);
}

@keyframes circleanime {
	0%{
	  transform: scale(0);
	}
	100%{
		transform: scale(3);
		opacity: 0;
	}
}

@media (hover: hover) {
	.c-link:hover {
		opacity: 1;
	}
	
	.c-link .circle::after:hover {
		border-color: var(--white);
	}
	
	.c-link.inversion:hover .circle {
		background-color: var(--white);
	}
}

/* ============================
	button
============================ */
.c-button {
	align-items: center;
	background-color: var(--main-color);
	border-radius: 90px;
	display: flex;
	justify-content: center;
	height: 44px;
	min-width: 148px;
	padding: 0 10px;
	position: relative;
	transition: all .2s;
	width: fit-content;
}

.c-button.yellow {
	background-color: var(--sub-color);
}

.c-button span {
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 700;
}

.c-button02 {
	align-items: center;
	background-color: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 32px;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	justify-content: space-between;
	padding: 4px 18px 4px 26px;
	position: relative;
	transition: all .2s;
	width: calc(100% - 16px);
}

.c-button02::before {
	border: 1px solid var(--border-color);
	border-radius: 37px;
	content: "";
	height: 72px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: calc(100% + 16px);
}

.c-button02 .text {
	color: var(--main-text-color);
	flex-basis: calc(100% - 48px);
	font-size: 1.7rem;
	font-weight: 500;
	width: calc(100% - 48px);
}

.c-button02 .circle {
	border-radius: 50%;
	display: grid;
	flex-basis: 48px;
	height: 48px;
	place-items: center;
	position: relative;
	width: 48px;
}

.c-button02 .arrow {
	background-color: #B9B5AC;
	mask-image: url("./images/common/link_arrow.svg");
	mask-size: cover;
	display: block;
	height: 16px;
	width: 16px;
}

@media screen and (max-width: 767px) {
	.c-button02 {
		column-gap: 10px;
	}
	
	.c-button02 .text {
		flex-basis: calc(100% - 58px);
		font-size: 1.7rem;
		width: calc(100% - 58px);
	}
}

#mod_entry {
	align-items: center;
	aspect-ratio: 72 / 25;
	background-image: url("./images/common/entry_bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px 24px 0 0;
	display: flex;
	justify-content: center;
	height: 500px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
#mod_entry::before {
	background: radial-gradient(
		circle,
		rgba(39, 166, 180, .9) 0%,
		rgba(34, 170, 184, .8) 30%,
		rgba(34, 170, 184, 0) 70%
	);
	content: "";
	height: 1100px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 1100px;
	z-index: 1;
}

#mod_entry .entry-container {
	position: relative;
	z-index: 2;
}

#mod_entry .entry-container .sec-ttl-box .sec-ttl {
	align-items: center;
	color: var(--white);
	display: flex;
	flex-direction: column;
	font-size: 6.4rem;
	font-weight: 300;
	justify-content: center;
	line-height: 1.4;
	margin-inline: auto;
	width: fit-content;
}

#mod_entry .entry-container .sec-ttl-box .sec-ttl span {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
}

#mod_entry .entry-container .text-box {
	margin-top: 25px;
}

#mod_entry .entry-container .text-box p {
	color: var(--white);
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
}

#mod_entry .entry-container .c-link {
	margin-inline: auto;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	#mod_entry::before {
		height: 400px;
		width: 500px;
	}
	
	#mod_entry .entry-container .sec-ttl-box .sec-ttl {
		font-size: 4rem;
	}
	
	#mod_entry .entry-container .sec-ttl-box .sec-ttl span {
		font-size: 1.6rem;
	}
}

/* ============================
	link-group
============================ */
#follow_link_group {
	bottom: 20px;
	column-gap: 8px;
	display: flex;
	justify-content: center;
	position: fixed;
	transition: all  .4s;
	visibility: visible;
	width: 100%;
	z-index: 11;
}

#follow_link_group .c-button {
	min-width: 168px;
}

/* ============================
	mod_recruit_interview
============================ */
#mod_recruit_interview {
	position: relative;
}

#mod_recruit_interview::before {
	background: radial-gradient(ellipse 60% 40%,rgba(253, 182, 1, 1) 0%, rgba(254, 201, 66, 1) 15%, rgba(255, 219, 129, 1) 30%, rgba(255, 236, 188, 1) 45%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 980px;
	left: 46vw;
	opacity: .3;
	position: absolute;
	rotate: -20deg;
	top: -60%;
	width: 1447px;
	z-index: -1;
}

#mod_recruit_interview::after {
	background: radial-gradient(ellipse 60% 40%,rgba(253, 182, 1, 1) 0%, rgba(254, 201, 66, 1) 15%, rgba(255, 219, 129, 1) 30%, rgba(255, 236, 188, 1) 45%, rgba(255, 255, 255, 0) 100%);
	bottom: -50%;
	content: "";
	height: 980px;
	left: -30vw;
	opacity: .3;
	position: absolute;
	rotate: -20deg;
	width: 1447px;
	z-index: -1;
}

#mod_recruit_interview .sec-inner {
	padding-bottom: 240px;
}

#mod_recruit_interview .sec-ttl-box {
	margin-inline: auto;
	width: fit-content;
}

#mod_recruit_interview .sec-ttl-box p {
	color: var(--white) !important;
}

.interview-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 40px 16px;
}

.interview-list .item-box {
	background-color: var(--white);
	border-radius: 24px;
	box-shadow: 2px 2px 5px rgb(200 200 200 / .4);
	padding: 16px;
	position: relative;
	transition: all .4s;
	width: calc(100% / 4 - 20px);
}

.interview-list .item-box .image-box {
	overflow: hidden;
	position: relative;
}

.interview-list .item-box .image-box img {
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	height: auto;
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}

.interview-list .item-box .department {
	font-size: 1.2rem;
	font-weight: 500;
	margin-inline: auto;
	width: fit-content;
}

.interview-list .item-box .join {
	font-size: 1.6rem;
	font-weight: 500;
	margin-inline: auto;
	margin-top: 5px;
	width: fit-content;
}

.interview-list .item-box .text-box {
	margin-top: 8px;
	width: 100%;
}

.interview-list .item-box .text-box h3 {
	color: var(--main-color);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0;
	margin-inline: auto;
	width: fit-content;
}

.interview-list .item-box .text-box .info {
	border-top: 1px solid #EDEDED;
	margin-top: 8px;
	padding-top: 8px;
}

#mod_recruit_interview .c-link {
	margin-inline: auto;
	margin-top: 40px;
	width: fit-content;
}

#mod_recruit_interview .wrap-link {
	margin-top: 80px;
}

@media screen and (max-width: 767px) {
	#mod_recruit_interview::before {
		height: 490px;
		left: 20vw;
		top: -250px;
		width: 724px;
		display: none;
	}
	
	#mod_recruit_interview::after {
		bottom: -250px;
		height: 490px;
		left: -100vw;
		width: 724px;
		display: none;
	}
	
	#mod_recruit_interview .sec-inner {
		padding-bottom: 100px;
	}
	
	.interview-list {
		gap: 20px 8px;
	}
	
	.interview-list .item-box {
		flex-basis: calc(50% - 10px);
		max-width: 362px;
		padding: 10px;
		position: relative;
		width: 100%;
	}
	
	.interview-list .item-box .text-box h3 {
		font-size: 1.6rem;
	}
	
	.interview-list .item-box .join {
		font-size: 1.4rem;
		margin-top: 0;
	}
}

@media (hover: hover) {
	.interview-list .item-box:hover {
		box-shadow: 0 0 2px 1px rgb(77 188 203 / .4);
		translate: 3px 3px;
		opacity: 1;
	}
}

body.post-type-archive-interview .section-main {
	margin-top: -200px;
	position: relative;
	z-index: 1;
}

body.post-type-archive-interview .section-main .sec-inner {
	padding-top: 0;
}
