@charset "UTF-8";
/* CSS Document */

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

/*Reset*/
*,
*::before,
*::after {
  box-sizing: border-box
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,ul {
	margin: 0;
	padding:0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none
}
li {
  list-style-type: none;
}

h1,h2,h3,h4,button,input,label {
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor
}
img,
picture {
  max-width: 100%;
  display: block
}
input,
button,
textarea,
select {
  font: inherit
}
textarea:not([rows]) {
  min-height: 10em
}
:target {
  scroll-margin-block: 5ex
}
/*-----*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
button,
input,
select,
textarea,
.font_defo{ font-family:"Lato", "Noto Sans JP", sans-serif ;
}

body {
	margin: 0;
    padding: 0;
    font-size: 1.6rem;
	font-weight: 500;
	color: #333;
    line-height: 1.6;
	position:relative;
	letter-spacing: 0.02rem;
	background: #fff;
}

a:focus,a {
    outline: none;
}

a:active,
a:hover {
    outline: none;
}

h1 {
    font-size: 2em;
    margin: 0;
}

h2,h3,h4{
    font-size: 2.8rem;
    margin: 0;
}
b,
strong {
    font-weight: bold;
}
small {
    font-size: 80%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
a{
	text-decoration:none;
	color:#333;
	transition:.2s;
}
a:hover{
}


header{
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    margin: 12px;
    padding: 12px;
    position: fixed;
    width: calc(100% - 24px);
    z-index: 2;
    background: rgba(255, 255, 255, .5);
    border-radius: 8px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .05));
    backdrop-filter: blur(20px);
}
.head1{
	width: 200px;
	height: auto;
	padding: 8px 0 0 8px;
}

.hc_btn{
	background: #00cccc;
	border:1px solid #00cccc;
	color: #fff;
	padding: 12px 34px;
	border-radius: 4px;
}
.hc_btn:hover{
	background: none;
}
header .pcnav{
	display: flex;
    gap: 28px;
    align-items: center;
}
header .pcnav li{
}
header .pcnav li a{
	display: inline-block;
}
header .pcnav li a.current{
}
header .pcnav li a:hover{
	color: #00cccc;
}

/*　ハンバーガーボタン　*/
.hamburger {
	display : none;
	position: absolute;
	z-index : 3;
	right : 4px;
	top   : 4px;
	background: #00cccc;
	width: 58px;
	height: 58px;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
}
.hamburger:after{
	content:"menu";
	position:absolute;
	bottom:6px;
	left:0;
	right:0;
	margin:auto;
	color:#fff;
	font-size:1.2rem;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 1px ;
  left    : 0;
  right:0;
  margin:auto;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 32px;
}


.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  background :#fff;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(3){
  transform: translateY(-10px) rotate(-45deg);
}


nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background:#00cccc;
	text-align: center;
	width: 100%;
	/* height: 100vh; */
	display: none;
	align-items: center;
}


nav.globalMenuSp  div{
	height:100%;
	padding: 120px 8% 40px;
	position: relative;
}

nav.globalMenuSp .spnav01 li {
  list-style-type: none;
  padding: 0;
  width: 100%;
	border-bottom: 1px solid #fff;
	opacity: 0;
  transition: .4s all;
}
nav.globalMenuSp .spnav01 li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp .spnav01 li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
  font-size: 1.8rem;
  text-align:left;
}

nav.globalMenuSp.active ul li:nth-child(1) {
  animation: tatata 0.5s ease .1s forwards;
}
nav.globalMenuSp.active ul li:nth-child(2) {
  animation: tatata 0.5s ease .2s forwards;
}
nav.globalMenuSp.active ul li:nth-child(3) {
  animation: tatata 0.5s ease .3s forwards;
}
nav.globalMenuSp.active ul li:nth-child(4) {
  animation: tatata 0.5s ease .4s forwards;
}
nav.globalMenuSp.active ul li:nth-child(5) {
  animation: tatata 0.5s ease .5s forwards;
}
nav.globalMenuSp.active ul li:nth-child(6) {
  animation: tatata 0.5s ease .6s forwards;
}
nav.globalMenuSp.active ul li:nth-child(7) {
  animation: tatata 0.5s ease .7s forwards;
}
nav.globalMenuSp.active ul li:nth-child(8) {
  animation: tatata 0.5s ease .8s forwards;
}
nav.globalMenuSp.active ul li:nth-child(9) {
  animation: tatata 0.5s ease .9s forwards;
}
@keyframes tatata {
	0% {
	  opacity:0;
	  transform:translateX(5%)
	}
	
	100% {
	  opacity: 1;
	}
}

nav.globalMenuSp .spnav02{
	display:flex;
}

.spm_btn{
    background: #fff;
    color: #00cccc;
	font-size: 1.6rem;
    line-height: 1.4;
    width: 100%;
    height: 80px;
	margin: 40px 0 0 0;
    padding: 16px 24px;
    border-radius: 4px;
	display: flex;
    align-items: center;
	justify-content: center;
	font-weight: 600;
}
.sp-logo{
	position:absolute;
	width: 180px;
	height: auto;
	left: 12px;
	top: 14px;
	padding: 4px 0;
}

#f_btn{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 6;
	border-radius:50%;
}
#f_btn:before{
	content:"";
	position:absolute;
    left: 0;
	right:0;
	top:25px;
	margin:auto;
    width: 16px;
    height: 16px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(-45deg);
}

@media screen and (max-width:850px){
	header{
		margin: 4px;
		width: calc(100% - 8px);
		border-radius: 4px;
		padding: 14px 12px;
	}
	header .pcnav{
		display:none;
	}
	.head1{
		padding: 4px 0;
		width: 180px;
	}
	.hamburger{
		display:block;
	}
	.inner{
		width:100%;
	}
}
/*---------------------------------------------------*/

.mv{
	padding: 80px 0 0 0;
	position: relative;
}
.mv-inner{
    background: url(img/top/mv01pc.png) bottom right no-repeat;
    height: calc(100vh - 216px);
    background-size: contain;
	display: flex;
    align-items: center;
}
.mv-inner .toph1{
	font-size:4.8rem;
	font-weight: 900;
	letter-spacing: .2rem;
	line-height: 1.2;
	margin: 40px 0 24px;
}
.mv-inner .toph1 span{
	color:#00cccc;
}
.mv-inner .mv-txt{
    padding: 0 60px 60px;
	width: 100%;
}
.s-txt{
	position: relative;
	font-size:1.3rem;
	font-weight: 700;
	letter-spacing: .2rem;
	color: #00cccc;
	padding: 0 0 0 38px;
}
.s-txt:before{
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 24px;
	height: 2px;
	background: #00cccc;
}
.h-btnbox{
	display: flex;
    gap: 20px;
	margin: 40px 0 0 0;
}
.btn-head{
	position: relative;
	display: inline-block;
	background: #00cccc;
	border: 1px solid #00cccc;
	color: #fff;
    line-height: 1.4;
	width: 200px;
    height: 80px;
	padding: 16px 24px;
	border-radius: 4px;
}
.btn-head:hover{
	background:rgba(255,255,255,.2);
	color: #00cccc;
	backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-head span{
	font-size: 1.2rem;
}
.btn-head.bh01:before{
	content: "";
	position: absolute;
	top: 34px;
	right: 18px;
	background: url("img/common/arrow01.svg")center no-repeat;
	background-size: contain;
	height: 12px;
	width: 18px;
}
.btn-head.bh01:hover:before{
	background: url("img/common/arrow01-h.svg")center no-repeat;
}
.btn-head.bh02:before{
	content: "";
	position: absolute;
	top: 30px;
	right: 18px;
	background: url("img/common/arrow02.svg")center no-repeat;
	background-size: contain;
	height: 18px;
	width: 18px;
}
.btn-head.bh02:hover:before{
	background: url("img/common/arrow02-h.svg")center no-repeat;
}

@media screen and (max-width:850px){
	.mv{
		padding:120px 0 0 0;
	}
	.mv-inner{
		background: url(img/top/mv01sp.png) bottom right no-repeat;
		background-size: contain;
		align-items:flex-start;
		height: 720px;
	}
	.mv-inner .mv-txt {
		padding: 0 20px;
	}
	.h-btnbox{
		flex-wrap:wrap;
	}
	.btn-head{
		width:100%;
	}
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 auto;
  }
 
  .stat-item {
    padding: 28px 40px;
    border-left: 1px solid #e5e5e5;
  }
 
  .stat-item:first-child {
    border-left: none;
  }
 
  .stat-label {
    font-size: 14px;
    color: #4a4a4a;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
  }
 
  .stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
 
  .stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.01em;
  }
 
  .stat-unit {
    font-size: 20px;
    font-weight: 700;
    color: #00d1d1;
    line-height: 1;
  }
 
  /* Responsive: stack to 2 columns on tablet, 1 on mobile */
  @media (max-width: 900px) {
    .stats-bar {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(3) {
      border-left: none;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
      border-top: 1px solid #e5e5e5;
    }
  }
 
  @media (max-width: 380px) {
    .stats-bar {
      grid-template-columns: 1fr;
    }
    .stat-item {
      border-left: none !important;
      border-top: 1px solid #e5e5e5;
    }
    .stat-item:first-child {
      border-top: none;
    }
    .stat-number {
      font-size: 36px;
    }
  }


#Features{
}
#Features .inner{
	padding: 0 4%;
	margin: 0 auto;
}
.f-wrap{
	display: flex;
	flex-wrap: wrap;
	margin: 160px 0;
}
.f-wrap dt{
	width: calc((100% * 1/3));
}
.f-wrap dt h2{
	font-size:2.4rem;
	font-weight: 900;
	padding: 40px 0;
	letter-spacing: 0.1rem;
}
.f-wrap dt h2 span{
	color: #00d1d1;
}
.f-wrap dd{
	width: calc((100% * 2/3));
}
.f-wrap .f-li01{
	width: 100%;
}
.f-wrap ul li h3{
	font-size:2.4rem;
	font-weight: 900;
}
.f-wrap .f-li01 li,
.f-wrap .f-li02 li{
	border-bottom: 1px solid #ccc;
    display: flex;
	flex-wrap: wrap;
	padding: 40px 0;
	align-items: center;
}
.f-wrap .f-li01 li:last-child ,
.f-wrap .f-li02 li:last-child{
	border:none;
}
.f-wrap .f-li01 li p,
.f-wrap .f-li02 li p{
    width: calc(100% - 300px);
	display: inline-block;
}
.f-wrap .f-li01 li h3,
.f-wrap .f-li02 li h3{
    display: inline-block;
    width: 300px;
	line-height: 1.4;
}
.f-wrap ul li .number{
	color: #00d1d1;
	margin-right: 32px;
}
.f-wrap .f-li02{
}
.f-wrap ul li .initial{
	color: #00d1d1;
}
.f-wrap ul li .ini-def{
	font-weight:500;
	font-size: 1.8rem;
}
.f-wrap .f-li03{
	display: flex;
    flex-wrap: wrap;
}
.f-wrap .f-li03 li{
	width:calc((100% * 1/3));
	text-align: center;
	height: 240px;
	display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
	padding: 12px;
}
.f-wrap .f-li03 li img{
	height:120px;
	width: auto;
}
.f-wrap .f-li03 li h4{
	font-size:1.6rem;
	margin: 24px 0 0 0;
	font-weight: 500;
}

@media screen and (max-width:900px){
	.f-wrap{
		margin: 120px 0;
	}
	.f-wrap dt,
	.f-wrap dd{
		width:100%;
	}
	.f-wrap .f-li01 li h3,
	.f-wrap .f-li01 li p{
		width: 100%;
	}
	.f-wrap .f-li02 li h3,
	.f-wrap .f-li02 li p{
		width: 100%;
	}
	.f-wrap .f-li03{
		margin:60px 0 0 0;
	}
	.f-wrap ul li h3{
		margin:0 0 20px 0;
	}
}

@media screen and (max-width:770px){
	.f-wrap .f-li03 li{
		width:50%;
		height: 200px;
	}
	.f-wrap .f-li03{
	}
	.f-wrap .f-li03 li h4{
		font-size: 1.4rem;
	}
	.f-wrap .f-li03 li img{
		width:140px;
		height: auto;
	}
}

.for-wrap{
	display: flex;
	flex-wrap: wrap;
	padding: 0 2%;
	margin: 180px auto;
}
.consult-card {
  padding: 100px 80px 120px;
}
#For-employers,
#For-jobseekers{
	width:50%;
}
#For-employers .consult-card{
	background: #f2f2f2;
	border-radius:10px 0 0 10px; 
}
#For-jobseekers .consult-card{
	background: #001e38;
	color: #fff;
	border-radius: 0 10px 10px 0;
}
.consult-label {
  color: #00cccc;
  margin: 0 0 16px;
  font-size:1.4rem;
	font-weight: 900;
	letter-spacing: .1rem;
}

.consult-heading {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 28px;
}

.consult-text {
  line-height: 1.9;
  margin: 0 0 28px;
    font-size: 1.5rem;
}

.consult-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.consult-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.8;
  margin-bottom: 4px;
    font-size: 1.5rem;
}

.consult-list li .check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: #00cccc;
}
.consult-card .bh-line{
	background:#06c755;
	border:1px solid #06c755;
}
.consult-card .bh-line:hover{
	background: rgba(255, 255, 255, .2);
	color:#06c755;
}
.btn-head.bh-line:before {
    content: "";
    position: absolute;
    top: 24px;
    right: 18px;
    background: url(img/common/icon-line.svg) center no-repeat;
    background-size: contain;
    height: 32px;
    width: 32px;
}
.btn-head.bh-line:hover:before{
	background: url("img/common/icon-line-h.svg")center no-repeat;
}

@media (max-width: 900px) {
	#For-employers,
	#For-jobseekers{
		width:100%;
	}
	.for-wrap{
		margin:120px 0;
		padding: 0 4%;
	}
	.consult-card{
		padding: 80px 8%;
	}
	#For-employers .consult-card{
	    border-radius: 10px 10px 0 0;
	}
	#For-jobseekers .consult-card{
	    border-radius: 0 0 10px 10px;
	}
}

#Company{
}
#Company .inner{
	padding: 0 4%;
    margin: 0 auto;
}
#Company .f-wrap .f-li01 li h3{
	font-size: 1.6rem;
	font-weight: 500;
}

#Contact{
	padding: 0 2%;
	margin: 20px auto;
}
.contact-section {
  margin: 0 auto;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 120px 48px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
}
.contact-intro{
	width: calc((100% * 1 / 3));
	padding: 0 40px 0 0;
}
.contact-form{
	width: calc((100% * 2 / 3));
}
.contact-intro-title {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px;
}

.contact-intro-text {
  margin: 0;
}

.contact-form-group {
  margin-bottom: 28px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.required-badge {
  background: #00c9c9;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}

.contact-checkbox-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}

.contact-checkbox input[type="radio"]:checked {
  background: #00c9c9;
  border-color: #00c9c9;
}

.contact-checkbox input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  padding: 14px 16px;
  font-family: inherit;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: 2px solid #00c9c9;
  outline-offset: 0;
}

.contact-textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-submit-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}

.contact-submit-btn {
	background: #00cccc;
	border:1px solid #00cccc;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 4px;
	padding: 18px 100px;
	cursor: pointer;
	transition: .2s;
}

.contact-submit-btn:hover {
	background: none;
	color: #00cccc;
}

.privacy-policy {
  margin-top: 80px;
}

.privacy-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
}

.privacy-box {
  background: #f8f8f8;
  border-radius: 4px;
  padding: 24px 28px;
  font-size: 13px;
  color: #666666;
  line-height: 1.9;
}

.privacy-box p {
  margin: 0;
}

@media (max-width: 900px) {
	#Contact{
		padding: 0 4%;
	}
	.contact-intro,
	.contact-form{
		width: 100%;
	}
	.contact-form{
		margin: 40px 0;
	}
	.contact-section {
		padding: 60px 8%;
	}
	.contact-submit-btn {
		width: 100%;
		padding: 18px 0;
	}
	.contact-submit-wrap {
		justify-content: center;
	}
	.privacy-policy{
		margin:20px 0 0 0;
	}
}


footer{
	padding: 0 2%;
    margin: 20px auto 20px;
}
.site-footer {
  margin: 0 auto;
  background: #001e38;
  border-radius: 10px;
  padding: 52px 48px 32px;
}
.footer-logo {
	margin-bottom: 240px;
}
.footer-logo img{
  height: 28px;
  width: auto;
}
.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
  white-space: nowrap;
}

.footer-nav a:hover {
  color:#00cccc;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-copyright {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.02em;
  margin: 0;
}

@media (max-width: 800px) {
	footer{
		padding:0 4%;
	}
	.site-footer{
		padding:52px 8% 28px;
	}
	.footer-logo {
	}
	.footer-nav {
		justify-content: flex-start;
		gap: 20px;
	}
}

.thanks{
	height: calc(100vh - 320px);
    display: flex;
    align-items: center;
}
.thanks .inner{
	padding: 0 4%;
    margin: 0 auto;
}
