@charset "UTF-8";

:root {
  --color: #231815;
  --color-blue: #134ccb;
  --color-pink: #e27fa7;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color);
  --fsz: 16;
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
}

::after,
::before,
* {
  --font-size: calc((var(--fsz) / 16) * 1rem);
  font-size: var(--font-size);
}

a:hover{
	opacity: 0.7;
}

header {
  position: absolute;
  top: 45px;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 2;
  padding-right: 15px;
  padding-left: 15px;
  z-index: 101;
}

header {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
}

@media (max-width: 991px) {
  header {
    align-items: flex-start;
    top: 0;
    padding-top: 15px;
  }
  header h1 {
    max-width: 150px;
  }
  .header-logo{
	max-width: 150px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.fv-video {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fv-video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  z-index: 2;

  left: 0;
}

.fv-video video {
  position: absolute;
  width: 119%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}



.fv {
  position: relative;
  width: 100%;
}

.fv-video {
  width: 100%;
  height: 1000px;
}

@media(min-width:2700px) {
	.fv-video{
		height: 1300px;
	}
}

@media(max-width:768px) {
	.fv-video{
		height: 800px;
	}
}

@media(max-width:575px) {
	.fv-video{
		height: 700px;
	}
}

.fv-text {
  position: absolute;
  left: calc((100vw - 1200px) / 2);
  top: 20%;
  color: #fff;
  z-index: 2;
}

@media (max-width: 1250px) {
  .fv-text {
    left: 15px;
  }
}

#page .nav-inner {
	box-shadow:3px 3px 6px 0px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  background-color: #fff;
  display: flex;
  gap: 30px;
  border-radius: 30px;
  padding: 11px 30px 11px 45px;
  align-items: center;
}

.nav-inner-logo{
	position: absolute;
	left: 15px;
	top: 15px;
	max-width: 150px;
	display: none;
}

@media(max-width:991px) {
	.nav-inner-logo{
		display: block;
	}
}

@media(max-width:991px) {
	.nav-inner{
		padding: 11px 15px;
	}
}

@media (max-width: 1200px) {
  .nav-inner {
    gap: 20px;
  }
}

.nav-inner ul {
  display: flex;
  gap: 40px;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .nav-inner ul {
    gap: 20px;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1100;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: -3px 3px 15px -5px rgba(0, 0, 0, 0.45);
}
.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
  position: absolute;
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 18px;
}
.hamburger span:nth-child(2) {
  top: 24px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translateX(-66%);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translateX(-65%);
  top: 38px;
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  nav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    transition: 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .nav-inner {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
	overflow: auto;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav ul li {
    width: 100%;
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }

  .sns,
  .contact-btn {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  nav.active ul {
    display: flex;
  }

  nav.active .sns {
	justify-content: center;
  }

  nav.active .sns img{
	width: 50px;
  }

  nav.active .contact-btn{
	max-width: 270px;
	margin-right: auto;
	margin-left: auto;
	padding: 15px 25px;
	justify-content: center;
  }
}

.nav-inner ul li {
  list-style-type: none;
}

.nav-inner ul li a {
  text-decoration: none;
  color: var(--color);
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media(max-width:991px) {
	.nav-inner ul li a{
		padding-left: 10px;
	}
}

.contact-btn {
  background-color: var(--color-blue);
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 5px 25px;
  border-radius: 25px;
}

.contact-btn:hover{
	color: #fff;
}

.contact-btn::before {
  content: "";
  background-image: url(./img/icon-mail.svg);
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 12px;
  background-size: contain;
}

.fv-text .main-text {
  --fsz: 43;
  margin-bottom: 20px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .fv-text .main-text {
    --fsz: 30;
    margin-bottom: 10px;
  }
  .fv-text img {
    max-width: 500px;
  }
}

@media (max-width: 575px) {
  .fv-text .main-text {
    --fsz: 24;
  }
  .fv-text img {
    max-width: 300px;
  }
  .fv-text p {
    --fsz: 14;
  }
}

.fv-text p {
  line-height: calc(28 / 16);
}

.bg-clip {
}

.bg-image {
  background-image: url(./img/bg-clip.jpg);
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
}

.masked-text {
  width: 100%;
  background-image: url(./img/nishiki-textv3.png);
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  /* bottom: -450px; */
  top: -350px;
  height: 756px;
  z-index: 1;
}

@media(min-width:2700px) {
	.masked-text{
		top: -430px;
	}
}

@media (min-width: 2000px) {
  .masked-text {
    height: auto;
    background-size: cover;
    aspect-ratio: 2237 / 756;
  }
}

@media(max-width:1300px) {
	.masked-text{
		height: 550px;
		background-size: cover;
	}
}

@media(max-width:991px) {
	.masked-text{
		height: 450px;
	}
}

@media(max-width:768px) {
	.masked-text{
		height: 350px;
		top: -200px;
	}
}

@media(max-width:575px) {
	.masked-text{
		height: 190px;
		top: -190px;
	}
}

.scroll {
  --fsz: 12;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  z-index: 3;
  color: #fff;
}

.scroll::before {
  animation: 2s scroll infinite;
  background: #e27fa7;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
}

.scroll::after {
  border-radius: 20px;
  content: "";
  display: block;
  height: 30px;
  margin-inline: auto;
  width: 8px;
  background-color: #fff;
  margin-top: 10px;
}

@keyframes scroll {
  0% {
    opacity: 0;
    top: 40%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}

@media(max-width:768px) {
	.scroll::after{
		height: 20px;
		width: 5px;
		margin-top: 2px;
	}
	.scroll::before{
		width: 3px;
		height: 3px;
	}
}

.sns {
  display: flex;
  gap: 10px;
}

.top-about {
  position: relative;
  right: 0;
  top: -320px;
  z-index: 3;
}

@media (max-width: 991px) {
  .top-about {
    top: 0;
  }
}

@media (min-width: 1441px) {
  .top-about {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

.section-title {
  font-size: var(--font-size);
  --fsz: 16;
  font-weight: bold;
  color: #000;
}

.section-title.vertical {
  writing-mode: vertical-rl;
  margin: 0;
}

@media (max-width: 575px) {
  .section-title.vertical {
    position: absolute;
	padding-left: 0;
	--fsz:14;
  }
}

.section-title span {
  --fsz: 89;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  color: var(--color-blue);
}

@media (max-width: 991px) {
  .section-title span {
    --fsz: 45;
  }
}

@media(max-width:575px) {
	.section-title span{
		--fsz:25;
	}
}

.top-about .container {
  margin-right: 0;
  max-width: 1400px;
}

#page .container {
  max-width: 1190px;
}

.top-about-collumn,
.right-column {
  display: flex;
  gap: 40px;
}

.top-about-text,
.right-column-text {
  max-width: 460px;
}

.top-about .right-column-text{
	min-width: 420px;
}

@media(max-width:1200px) {
	.top-about .right-column-text h2{
		--fsz:25;
	}
	.top-about .right-column-text{
		min-width: 375px;
	}
	
}

@media(max-width:768px) {
	.top-about .right-column-text h2{
		--fsz:18;
	}
}

@media(max-width:991px) {
	.top-about .right-column-text{
		min-width: auto;	
	}
}
.right-column-text h2 {
	font-size: var(--font-size);
	font-weight: bold;
	--fsz: 28;
	line-height: calc(40 / 28);
	margin-bottom: 30px;
  }
  
  .right-column-text p {
	line-height: calc(34 / 16);
	margin-bottom: 60px;
	text-align: justify;
  }

  .service-top-content .right-column-text p{
	margin-bottom: 25px;
	text-align: justify;
  }
  
  @media (max-width: 768px) {
	.right-column-text p {
	  margin-bottom: 15px;
	}
  }

  /* @media(min-width:992px) {
	.top-about .right-column-text{
		flex-shrink: 0;
	}
  } */

@media (max-width: 991px) {
  .top-about .right-column-text {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .top-about-text,
  .right-column-text {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .top-about-text,
  .right-column-text {
    max-width: 100%;
  }
  .right-column-text h2 {
    --fsz: 18;
	margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .top-about .right-column {
    gap: 15px;
  }
  .top-about .right-column-text {
    padding-right: 0;
	margin-left: 60px;
	max-width: calc(100% - 60px);
  }
}



.top-about .right-column-text p{
	max-width: 400px;
}

@media(max-width:991px) {
	.top-about .right-column-text p{
		max-width: 100%;
		margin-bottom: 15px;
		padding-right: 30px;
	}
}

.nu-btn {
  width: 320px;
  max-width: 100%;
  display: block;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding: 25px 0;
  transition: 0.3s;
}

form .nu-btn{
	padding: 17px 0;
}

.nu-btn:hover{
	opacity: 1;
}

@media(max-width:768px) {
	.nu-btn{
		padding: 15px 0;
	}
}

.top-service-inner .nu-btn.pink{
	position: relative;
	z-index: 3;
}

.nu-btn.pink {
  background-color: var(--color-pink);
  color: #fff;
}
.nu-btn.black {
  background-color: #000;
  color: #fff;
  position: relative;
}

.nu-btn:hover {
  color: #fff;
}

.nu-btn.pink.nu-btn.pink:hover {
  background-color: var(--color-blue);
}


.right-column-inner {
  max-width: 1300px;
  margin-left: auto;
  padding-left: 15px;
  box-sizing: content-box;
}

.top-about .right-column-inner{
	max-width: 1420px;
}

@media (min-width: 1441px) {
  .right-column-inner {
    width: 1166px;
	padding-left: 0;
    max-width: 100%;
    margin-right: auto;
  }
}

@media (max-width: 768px) {

  .right-column-inner {
    padding-right: 15px;
  }

  .right-column-inner {
    padding-left: 15px;
  }

  .top-about .right-column-inner{
	padding-right: 0;
  }
}

.top-service-inner {
  max-width: 1220px;
  margin-left: auto;
  padding-left: 30px;
  box-sizing: content-box;
}

@media (min-width: 1441px) {
  .top-service-inner {
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .top-service-inner {
    padding-right: 30px;
  }
}

.top-service-inner h2 {
  margin-bottom: 40px;
}

.top-service-inner p {
  line-height: calc(34 / 16);
}

.top-service {
  background-image: url(./img/top-service-bg01.png);
  background-repeat: no-repeat;
  padding-top: 510px;
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 2;
}

.top-service::before{
	content: "";
	background-image: url(./img/top-service-bg02.png);
	background-repeat: no-repeat;
	width: 980px;
	height: 1200px;
	position: absolute;right: 0;
	bottom: 0;
	background-size: cover;
}

@media(min-width:1921px) {
	.top-service::before{
		right: 100px;
	}
}

@media(max-width:991px) {
	.top-service{
		margin-top: -100px;
		padding-top: 400px;
	}
	.top-service::before{
		width: 680px;
		height: 800px;
	}
}

@media(max-width:768px) {
	.top-service{
		padding-top: 300px;
	}
	.top-service::before{
		width: 280px;
		height: 400px;
	}
}

@media(max-width:575px) {
	.top-service{
		padding-top: 250px;
	}
}

@media (min-width: 992px) {
  .top-service {
    padding-top: 500px;
    margin-top: -650px;
  }
}

@media (min-width: 1900px) {
  .top-service {
    padding-top: 700px;
  }
}

.top-service-img {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 90px;
  top: -210px;
}

@media (max-width: 1250px) {
  .top-service-img {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .top-service-img {
    top: 0;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
  }
}

.top-service-img01 {
  margin-top: 350px;
}

@media (max-width: 991px) {
  .top-service-img01 {
    margin-top: 100px;
  }
}

.top-service-img03 {
  position: absolute;
  bottom: -230px;
  right: 230px;
}

@media(max-width:1200px) {
	.top-service-img03{
		right: 200px;
	}
}

@media (max-width: 991px) {
  .top-service-img03 {
    position: static;
    margin-left: auto;
    margin-right: 100px;
    max-width: 40%;
	margin-bottom: -30px;
  }
}

.top-service-img01 {
  max-width: 38%;
}

.top-service-img02 {
  max-width: 55%;
  margin-left: auto;
}

@media (max-width: 991px) {
  .top-service-img02 {
    max-width: 62%;
	margin-right: -30px;
  }
  .top-service-img02 img{
	margin-left: auto;
  }
}

.top-service-inner h2,
.top-service-inner h2 span,
.top-service-inner p {
  color: #fff;
}

.top-service-inner p {
  max-width: 400px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .top-service-inner p {
    max-width: 100%;
  }
}

@media(max-width:768px) {
	.top-service-inner p{
		margin-bottom: 30px;
	}
}

.top-recruit {
  position: relative;
  padding-top: 190px;
  overflow: hidden;
}

@media(max-width:991px) {
	.top-recruit{
		padding-top: 100px;
	}
}

.top-recruit h2 {
  margin-bottom: 55px;
}

@media(max-width:768px) {
	.top-recruit h2{
		margin-bottom: 30px;
	}
}

.top-recruit-main {
  --fsz: 28;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(40 / 28);
  text-align: center;
  margin-bottom: 20px;
}

@media(max-width:768px) {
	.top-recruit-main{
		--fsz: 18;
	}
}

.top-recruit-text {
  line-height: calc(34 / 16);
  text-align: center;
  margin-bottom: 100px;
}

@media(max-width:768px) {
	.top-recruit-text{
		margin-bottom: 30px;
	}
}

.top-recruit-img {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-bottom: 120px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .top-recruit-img {
	margin-bottom: 50px;
	gap: 10px;
  }

}

@media(max-width:768px) {
	.top-recruit-img img {
		width: 100px;
	  }
}

  .top-recruit-img img:nth-child(even) {
    margin-top: 75px;
  }

  @media(max-width:768px) {
	.top-recruit-img img:nth-child(even) {
		margin-top: 30px;
	  }
  }

.top-recruit-inner {
  position: relative;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 190px;
}

@media(max-width:991px) {
	.top-recruit-inner{
		padding-bottom: 100px;
	}
}

.top-recruit::before {
  content: "";
  background-image: url(./img/top-recruit-bg02.svg);
  background-repeat: no-repeat;
  display: block;
  width: 290px;
  height: 1700px;
  position: absolute;
  right: 0;
  /* right: calc(50% + 450px); */
  /* top: -500px; */
  bottom: -120px;
  z-index: -1;
}


.top-recruit::after {
  content: "";
  background-image: url(./img/top-recruit-bg01.svg);
  background-repeat: no-repeat;
  display: block;
  width: 290px;
  height: 1700px;
  position: absolute;
  left: 0;
  /* left: calc(50% + 450px); */
  /* top: -500px; */
  bottom: 0;
  z-index: -1;
}


@media(max-width:991px) {
	.top-recruit::before{
		bottom: 50%;
		transform: translateY(50%);
		right: -50px;
		width: 200px;
		height: 1300px;
		background-size: cover;
	}
	.top-recruit::after{
		bottom: 50%;
		transform: translateY(50%);
		left: -50px;
		width: 200px;
		height: 1300px;
		background-size: cover;
	}
}

@media(max-width:768px) {
	.top-recruit::before{
		right: -80px;
	}
	.top-recruit::after{
		left: -80px;
	}
}

.footer-contact {
  background-image: url(./img/footer-contact-bg.png);
  background-repeat: no-repeat;
  width: 100%;
  padding: 120px 0;
  background-size: cover;
}

.footer-contact .section-title,
.footer-contact .section-title span {
  color: #fff;
  text-align: center;
}

.footer-contact .section-title {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .footer-contact .section-title {
    margin-bottom: 50px;
  }
}

.contact-link-menu {
  display: flex;
  justify-content: center;
  gap: 37px;
}

.footer-contact .contact-link-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .footer-contact .contact-link-menu {
    grid-template-columns: 1fr;
    place-items: center;
  }
  .footer-contact {
    padding: 70px 0;
  }
  .footer-contact .contact-link-menu .contact-link-item{
	max-width: 350px;
  }
}

.contact .contact-link-menu {
  gap: 70px;
}

@media (max-width: 768px) {
  .contact .contact-link-menu {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}

.contact .contact-link-item span {
  color: #000;
  font-weight: bold;
}

.footer-contact .contact-link-menu > span {
  color: #fff;
}

.contact-link-item .nu-btn span {
  --fsz: 11;
  margin-bottom: 0;
  display: block;
  margin-top: 0;
  font-weight: 500;
  color: #000;
}

.contact-link-item .nu-btn {
  /* padding: 37px 0; */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 97px;
  color: #fff;
  --fsz: 18;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-link-item .nu-btn {
    height: 70px;
    --fsz: 16;
  }
}

.contact-link-item .nu-btn.green {
  background-color: #06c755;
  display: flex;
  align-items: center;position: relative;
}
.contact-link-item .nu-btn.blue {
  background-color: var(--color-blue);
  display: flex;
  align-items: center;position: relative;
}

.contact-link-item .nu-btn.blue::after,
.contact-link-item .nu-btn.green::after,
.nu-btn.black::after{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 50px;
	transition: .3s;
}

.contact-link-item .nu-btn.blue:hover:after,
.contact-link-item .nu-btn.green:hover:after,
.nu-btn.black:hover::after{
	right: 45px;
}

@media(max-width:575px) {
	.nu-btn{
		width: 270px;
	}
}

.contact-link-item span {
  color: #fff;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .tell-number-btn {
    pointer-events: none;
  }
}

.contact-link-item .tell-number-btn {
  --fsz: 25;
  display: block;
  padding-top: 20px;
}

.contact-link-item .tell-number-btn{
	font-family: "Montserrat", sans-serif;
}

.contact-link-item .tell-number-btn span{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.tell-number-row{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

@media (max-width: 768px) {
  .contact-link-item .tell-number-btn {
    padding-top: 6px;
  }
}

@media (max-width: 991px) {
  .contact-link-item {
    width: 100%;
  }
}

.contact-top-link {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.contact-top-link .contact-link-item > span{
	color: #000;
	font-weight: bold;
	--fsz:16;
}

@media (max-width: 768px) {
  .contact-top-link {
    grid-template-columns: 1fr;
	gap: 30px;
  }
}

footer {
  padding-top: 60px;
}

.footer-bottom {
  background-image: url(./img/footer-trackv2.png);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  aspect-ratio: 1440 / 255;
  /* height: 250px; */
  position: relative;
  background-size: cover;
}

@media(max-width:991px) {
	.footer-bottom{
		height: 250px;
	}
}

@media(max-width:768px) {
	.footer-bottom{
		height: 150px;
	}
}
.copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  --fsz: 12;
  width: 100%;
  text-align: center;
}

@media(max-width:768px) {
	.copyright{
		bottom: 0;
	}
}

.footer-text {
  --fsz: 43;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  color: #000;
}

@media (max-width: 991px) {
  .footer-text {
    --fsz: 25;
    margin-bottom: 30px;
    text-align: center;
  }
}

footer address {
  --fsz: 14;
  line-height: calc(28 / 14);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}

.footer-nav-menu {
  display: flex;
  gap: 40px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .footer-nav-menu {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .footer-nav-menu {
    flex-wrap: wrap;
    max-width: 300px;
  }
  .footer-nav-menu li {
    width: calc((100% / 2) - 10px);
  }
}

.footer-nav ul li {
  list-style: none;
}

.footer-nav-menu a {
  color: var(--color);
  text-decoration: none;
}

.footer-link .sns {
  justify-content: flex-end;
  margin-bottom: 40px;
}

@media(max-width:991px) {
	.footer-link .sns{
		justify-content: center;
	}
}

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 100;

  opacity: 0;
  transition: .3s;
  visibility: hidden;
}

.contact-pagetop{
	bottom: 80px;
}

.pagetop.show{
	opacity: 1;
	visibility: visible;
}

@media(max-width:768px) {
	.pagetop{
max-width: 40px;
right: 15px;
bottom: 35px;
	}
	.contact-pagetop{
		bottom: 77px;
	}
	
}

.footer-company-info address {
  padding-left: 30px;
  margin-top: 15px;
}

.top-content {
  position: relative;
  margin-top: -350px;
}

@media(max-width:1300px) {
	.top-content{
		margin-top: -300px;
	}
}

@media (max-width: 991px) {
  .top-content {
    margin-top: -500px;
  }
}

@media(max-width:768px) {
	.top-content{
	margin-top: -300px;	
	}
}

@media(max-width:575px) {
	.top-content{
		margin-top: -250px;	
		}
}

.fv-recruit {
  display: block;
  position: absolute;
  right: 0;
  top: -20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  z-index: 5;
  padding: 12px;
  padding-right: 24px;
  color: #000;
  text-decoration: none;
  box-shadow: -9px 9px 7px 0px rgba(0, 0, 0, 0.45);
}

@media(max-width:768px) {
	.fv-recruit{
		box-shadow: -3px 3px 3px 0px rgba(0, 0, 0, 0.45);

	}
}

.fv-recruit-text img{
	position: absolute;
	bottom:22px;
	right: 25px;
	transition: .3s;
}

.fv-recruit:hover{
	opacity: 0.7;
	color: #000;
}
.fv-recruit:hover .fv-recruit-text img{
	right: 20px;
}

.fv-recruit-text span {
  --fsz: 35;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  color: var(--color-blue);
  border-bottom: 1px dashed #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1;
}

@media(max-width:991px) {
	.fv-recruit{
		flex-direction: column;
		writing-mode: vertical-rl;
		padding-right: 12px;
		--fsz:12;
	}
	.fv-recruit-text span{
		--fsz:16;
		border-bottom: none;
	}
	.fv-recruit img{
		display: none;
	}
}

@media(max-width:575px) {
	.fv-recruit{
		top: -100px;
		padding: 15px 9px;
	}
}

.page-title-area {
  position: relative;
  padding-top: 200px;
  padding-bottom: 35px;
}

@media (max-width: 991px) {
  .page-title-area {
    padding-top: 80px;
    padding-bottom: 15px;
  }
}

.page-title-area::before {
  content: "";
  display: block;
  background-image: url(./img/page-header-pink.png);
  background-repeat: no-repeat;
  aspect-ratio: 615 / 311;
  width: 615px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-size: cover;
}

.page-title-area::after {
  content: "";
  display: block;
  background-image: url(./img/page-header-blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 550 / 369;
  width: 550px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .page-title-area::before,
  .page-title-area::after {
    aspect-ratio: auto;
    background-size: cover;
  }
  .page-title-area::before {
    width: 400px;
    height: 190px;
  }
  .page-title-area::after {
    width: 250px;
    height: 230px;
  }
}

@media(max-width:768px) {
	.page-title-area::before {
		width: 265px;
		height: 135px;
	  }
	  .page-title-area::after {
		width: 220px;
		height: 230px;
	  }
}

@media (min-width: 1600px) {
  .page-title-area::before {
    aspect-ratio: none;
    width: 50%;
    height: 100%;
  }
  .page-title-area::after {
    aspect-ratio: none;
    width: 50%;
    height: 100%;
  }
}

.page-title {
  font-size: var(--font-size);
  --fsz: 80;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--color-blue);
}

@media (max-width: 991px) {
  .page-title {
    --fsz: 50;
  }
}

@media (max-width: 768px) {
  .page-title {
    --fsz: 30;
  }
}

.page-title span {
  display: block;
  --fsz: 24;
  font-style: normal;
  color: #000;
}

@media (max-width: 991px) {
  .page-title span {
    --fsz: 18;
  }
}

@media (max-width: 768px) {
  .page-title span {
    --fsz: 16;
  }
}

.page-header {
  margin-bottom: 25px;
}

.page-header img {
  width: 100%;
}

.bread-crumb {
  display: flex;
  align-items: center;
  gap: 17px;
  --fsz:13;
}

.page-content {
  padding: 170px 0;
}

@media (max-width: 768px) {
  .page-content {
    padding: 70px 0 100px 0;
  }
}


.bread-crumb span {
  display: block;
  position: relative;
}

.bread-crumb a{
	display: block;
	line-height: 1;
}


.company-info {
  margin: 200px 0;
}

@media (max-width: 768px) {
  .company-info {
    margin: 100px 0;
  }
}

.senmu-text {
  line-height: calc(30 / 16);
  text-align: justify;
}

.about-senmu {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #000;
}

.about-senmu span {
  --fsz: 20;
  display: inline-block;
  margin-left: 10px;
}

.company-info {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

@media(max-width:991px) {
	.recruitment .company-info{
		margin-right: 15px;
		margin-left: 15px;
	}
}

.company-info h2 {
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .company-info h2 {
    margin-bottom: 30px;
  }
}

.company-info dl {
  display: flex;
  align-items: center;
}

.company-info dt {
  min-width: 170px;
  border-bottom: 2px solid #e27fa7;
  margin-right: 5px;
  --fsz: 14;
  line-height: 1;
  padding-left: 10px;
}

.company-info dd {
  border-bottom: 1px solid #a3a2a2;
  width: 100%;
  padding-left: 10px;
  margin-bottom: 0;
}

.company-info dt,
.company-info dd {
  padding-bottom: 30px;
}

.attempt h2 {
  text-align: center;
  margin-bottom: 60px;
}

@media(max-width:768px) {
	.attempt h2{
		margin-bottom: 30px;
	}
}

.attempt-img {
  margin-bottom: 20px;
}

.attempt-card {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .attempt-card {
    margin-bottom: 40px;
  }
}

.attempt-card p {
  text-align: center;
  color: #000;
}

@media(max-width:768px) {
	.attempt-card p{
		--fsz:14;
	}
}

.service01 h2,
.service02 h2 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .service01 h2,
  .service02 h2 {
    margin-bottom: 10px;
  }
}

.service01 p,
.service02 p {
  line-height: calc(34 / 16);
  color: #000;
  text-align: justify;
}

.service01 h2,
.service02 h2 {
  font-size: var(--font-size);
  --fsz: 30;
  letter-spacing: 0.1em;
  position: relative;
}

@media (max-width: 768px) {
  .service01 h2,
  .service02 h2 {
    --fsz: 20;
  }
}

.service01 h2::before,
.service02 h2::before {
  content: "";
  background-repeat: no-repeat;
  display: block;
  width: 137px;
  height: 110px;
  position: absolute;
  left: 0;
  top: -60px;
  z-index: -1;
  background-size: contain;
}

.service01 h2::before {
  background-image: url(./img/service01.svg);
}

.service02 h2::before {
  background-image: url(./img/service02.svg);
  width: 164px;
}

@media (max-width: 768px) {
  .service01 h2::before {
    width: 120px;
    height: 80px;
  }
  .service02 h2::before {
    width: 140px;
    height: 80px;
  }
}

.service01-row {
  margin-bottom: 100px;
}

.service02 {
  padding-top: 350px;
  position: relative;
}

@media (max-width: 768px) {
  .service02 {
    padding-top: 0;
	margin-top: 70px;
  }
}

.service02::after {
  content: "";
  background-image: url(./img/service02-2.jpg);
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 300px;
  height: 220px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .service02::after {
    content: none;
  }
}

.service-top-content {
  position: relative;
  padding-bottom: 150px;
}

@media(max-width:768px) {
	.service-top-content{
		padding-bottom: 100px;
		padding-top: 30px;
	}
}


.service-top-content::before {
  content: "";
  position: absolute;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 550px;
  top: 300px;
  transform: translateY(-50%);
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f0e4;
  transform: skewY(-7deg);
  z-index: -1;
}

@media (max-width: 768px) {
  .service-top-content::before {
    height: 400px;
    top: 550px;
  }
}

.service-top-content .top-about-collumn,
.recruit .top-about-collumn,
.service-top-content .right-column,
.recruit .right-column {
  gap: 135px;
  margin-bottom: 110px;
}

@media (max-width: 991px) {
  .service-top-content .top-about-collumn,
  .recruit .top-about-collumn,
  .recruit .right-column {
    gap: 50px;
  }
  .service-top-content .right-column {
    gap: 50px;
	margin-bottom: 50px;
  }
  
}

.recruit .right-column {
  margin-bottom: 160px;
}

@media (max-width: 991px) {
  .recruit .right-column {
    margin-bottom: 70px;
  }
}

@media (max-width: 1440px) {
  .service-top-content .top-about-collumn,
  .recruit .top-about-collumn,
  .service-top-content .right-column,
  .recruit .right-column {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .service-top-content .top-about-collumn,
  .recruit .top-about-collumn,
  .service-top-content .right-column,
  .recruit .right-column {
    flex-direction: column;
  }
  .service-top-content .right-column{
	gap: 0;
  }
}

@media(max-width:991px) {
	.service-track-item{
		max-width: 250px;
	}
}

@media (max-width: 768px) {
  .service-track-item {
    display: none;
  }
}

.hoyuu-content {
  background-image: url(./img/hoyuu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  color: #fff;
}

@media (max-width: 768px) {
  .hoyuu-content {
    padding-bottom: 50px;
	padding: 70px 0 30px 0;
  }
}

.hoyuu-content h2 {
  font-size: var(--font-size);
  --fsz: 30;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  text-align: center;
}

.hoyuu-lead {
  line-height: calc(34 / 16);
  margin-bottom: 95px;
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  text-align: justify;
}

@media (max-width: 768px) {
  .hoyuu-lead {
    margin-bottom: 30px;
  }
  .hoyuu-content h2 {
    margin-bottom: 20px;
  }
}

.hoyuu-card {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .hoyuu-card {
    margin-bottom: 30px;
  }
}

.hoyuu-card p {
  --fsz: 18;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .hoyuu-card p {
    --fsz: 16;
    margin-top: 10px;
  }
}

.hoyuu-card p:after {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  border-radius: 5px;
  margin-right: auto;
  margin-left: auto;
  background-color: #e27fa7;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hoyuu-card p:after {
    margin-top: 5px;
  }
}

.area {
  padding-top: 130px;
  text-align: center;
}

@media(max-width:768px) {
	.area{
		padding-top: 70px;
	}
}

.area p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  line-height: calc(34 / 16);
  color: #000;
}

.benefits {
  background-color: #f8f7f4;
  padding-top: 100px;
  padding-bottom: 200px;
}

h2{
	font-weight: bold;
}

.benefits h2 {
  margin-bottom: 50px;
}

.benefits-lead {
  line-height: calc(34 / 16);
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  color: #000;
  text-align: justify;
}

@media (max-width: 768px) {
  .benefits-lead {
    margin-bottom: 30px;
  }
  .benefits h2 {
    margin-bottom: 30px;
  }
  .benefits {
    padding-bottom: 70px;
	padding-top: 70px;
  }
}

.benefits-img {
  border-radius: 50%;
  box-shadow: 0px 0px 14px -3px rgba(0, 0, 0, 0.35);
}

.benefits .container {
  max-width: 1190px;
}

.recruitment .company-info {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .recruitment .company-info {
    margin-bottom: 50px;
  }
}

table {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  border-spacing: 5px;
  border-collapse: separate;
}


table th {
  width: 170px;
  border-bottom: 2px solid #e27fa7;
  padding: 35px 10px;
  color:#000;
}

table td {
  width: calc(100% - 170px);
  border-bottom: 1px solid #a3a2a2;
  padding: 35px 10px;
  color:#000;
}


table tr:first-child th,
table tr:first-child td{
	padding-top: 0;
}

@media (max-width: 575px) {
  table th,
  table td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  table th {
    border-bottom: none;
  }
  table td {
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
}

.contact-form {
  background-color: #f8f7f4;
  border-radius: 20px;
  padding: 80px 65px;
  margin-top: 80px;
  max-width: 965px;
  margin-right: auto;
  margin-left: auto;
  color: #000;
}

@media (max-width: 991px) {
  .contact-form {
    padding: 50px 20px;
  }
}

.contact-lead {
  line-height: calc(34 / 16);
  margin-bottom: 75px;
}

@media (max-width: 768px) {
  .contact-lead {
    margin-bottom: 30px;
  }
}

.caution-hissu {
  --fsz: 14;
  font-weight: bold;
  color: red;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .caution-hissu {
    margin-bottom: 0;
  }
}

span.hissu {
  color: red;
  --fsz: 14;
  display: inline-block;
  margin-left: 10px;
}

.col-form-label {
  font-weight: bold;
}

input {
  height: 65px;
}

@media(max-width:768px) {
	input{
		height: 50px;
	}
}

input,
textara {
  border-color: #d6d6d6;
}

form textarea {
  width: 100% !important;
}

form .privacy-policy {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: scroll;
  height: 250px;
}

@media(max-width:768px) {
	form .privacy-policy{
		padding: 15px;
	}
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-pink);
  content: "";
}
.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  box-shadow: none;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev {
  background: none;
  text-shadow: none;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover,
button.mfp_next:hover,
button.mfp_prev:hover {
  background: none;
  text-shadow: none;
  background-color: #000;
  color: #fff;
}

.mfp_element_textarea {
  height: 10rem !important;
}

.thanks-content {
  text-align: center;
}


@keyframes fadeInUpSmall {
	from {
	  opacity: 0;
	  transform: translate3d(0, 10px, 0); /* ← ここで距離を短く */
	}
  
	to {
	  opacity: 1;
	  transform: none;
	}
  }
  
  .animate__fadeInUpSmall {
	animation-name: fadeInUpSmall;
	animation-duration: 1s;
	animation-fill-mode: both;
  }

  .wow:not(.animate__animated) {
	animation-name: none;
	visibility: hidden;
  }

  .page-content h2 {
	font-size: var(--font-size);
	--fsz: 30;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: bold;
	color: #000;
  }
  
  @media (max-width: 991px) {
	.page-content h2 {
	  --fsz: 22;
	}
  }

  .page-content .hoyuu h2{
	color: #fff;
  }
  
  .no-link{
	pointer-events: none;
	color: var(--color);
	text-decoration: none;
  }

  .address-map{
	color: #000;
	display: inline-block;
	margin-left: 10px;
  }

  .top-about-img {
	max-width: 760px;
	margin-left: auto;
  }

  .g-recaptcha{
	border: none;
  }

  .privacy-policy h3{
	font-size: var(--font-size);
	--fsz:18;
	font-weight: bold;
  }