@charset "utf-8";
/*common
-----------------------------------------------------------------------------------------*/
main {
  padding-top: 64px;
}

section{
	padding: 160px 0 0;
}

.contents-wrapper{
	width: calc(100% - 60px);
	max-width: 960px;
	margin: 0 auto;
}

.flex-content {
	width: calc(50% - 15px);
	gap: 30px;
}

h1 {
	font-size: 46px;
  font-family: 'Noto Serif JP', serif;
}

h2{
	font-size: 3rem;
  font-family: 'Frank Ruhl Libre', serif;
}

.h2-sub-page {
  font-size: 2em;
}

.img {
  width: 55%;
  height: 400px;
  overflow: hidden;
	position: relative;
  border-radius: 5px;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.5);
}

.img::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
}

.text {
  width: 45%;
}

.text p {
  line-height: 2.2;
}

.sub-page-hero {
  height: 400px;
  object-fit: cover;
  position: relative;
}

.sub-page-hero-img {
  height: 400px;
  object-fit: cover;
  position: relative;
}

.sub-page-hero-img::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
}

.sub-page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 3px 4px 4px rgba(0,0,0,0.5);
}

.title-line::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  margin-left: 16px;
  border: 1px solid currentColor;
}

.sub-page-section {
  padding-top: 120px;
}

.subpage_btn {
	max-width: 300px;
	padding: 1em;
	margin-top: 2em;
	display: block;
  color: #fff;
  background: rgb(0,212,255);
  background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(9,9,121,1) 87%, rgba(2,0,36,1) 100%);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.subpage_btn:hover {
	background: #b2d3f8;
}

.arrow {
	display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  color: #fff;
}

/*------------------------------------------ 
front-page
-------------------------------------------- */

.hero {
	padding-top: 0;
	width: 100%;
	height: 700px;
  position: relative;
}

.hero-img::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 700px;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.1);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 3px 3px;
	background-position: 0 0, 3px 3px;
}

.hero-video {
	width: -webkit-fill-available;
	height: 700px;
	object-fit: cover;
}

.hero-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1em;
	color: #fff;
	word-break: break-word;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.size-normal {
	font-size: 1.5em;
	line-height: 1.5;
}

#policy {
  padding-top: 3em;
}

.slider-wrap {
  margin-bottom: 2em;
  overflow: hidden;
  position: relative;
}

.slider-list {
  width: 200%;
  height: 40px;
  display: flex;
  animation: loop 10s linear infinite; /* 画像のリピート回数 */
}

.slider-list img {
  /* width: 100px; 画像のサイズを調整 */
  height: 40px;
  margin: 0 4em;
  object-fit: contain;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.policy {
  max-width: 592px;
}

.policy h2 {
  position: relative;
  max-width: 6em;
  margin: 0 auto 1em;
}

.policy h2::after, .service-title::after {
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  left: 0;
  background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(9,9,121,1) 87%, rgba(2,0,36,1) 100%);
  animation: border-animation 3s linear forwards;
}

@keyframes border-animation {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

.sub-title {
  font-size: 1.4em;
  font-family: 'Noto Serif JP', serif;
}

/*------------ service --------------*/
#service {
  padding-top: 220px;
}

#service .text {
  padding: 0 3em 0 0;
}

#company .text {
  padding-left: 3em;
}

#recruit {
  padding-top: 0px;
}
.recruit-wrapper {
  position: relative;
}

#recruit .img {
  width: 100%;
}

#recruit .text {
  width: auto;
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

#recruit .title-line::after {
  color: #fff;
}

#contact {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin: 120px auto 0;
  padding: 2em 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.contact-contents {
  flex: 2;
  padding: 2em;
}

.contact-wrapper {
  flex: 3;
}

.contact-box {
  flex: 1;
  padding: 2em;
  border-left: 1px solid;
}

.icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5em;
  object-fit: contain;
}

.number-text {
  margin-bottom: 0.8em;
}

.number {
  /* padding-top: 1em; */
  font-size: 2em;
}

@media screen and (max-width:1023px) {
  .hero-txt {
    width: 100%;
  }

  .contact-contents {
    flex: 100%;
  }

  .contact-wrapper {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid;
  }

  .contact-box:first-child {
    border: none;
  }

  #contact .subpage_btn {
    margin: 2em auto 0;
  }
}

@media screen and (max-width:767px) {
  h1 {
    font-size: 2em;
  }

  .sp-textLeft {
    text-align: left;
  }

  .displeyBloke-767 {
    display: block;
  }

  .img {
    width: 100%;
    height: 300px;
  }

  .text {
    width: 100%;
  }

  .sub-page-section {
    padding-top: 50px;
  }
  
  .subpage_btn {
    margin: auto;
  }

  .hero, .hero-video, .hero-img::after  {
    height: 400px;
  }

  #service {
    padding-top: 50px;
  }
  
  #service .text, #company .text {
    padding: 20px;
  }

  #company {
    padding-top: 30px;
  }

  #recruit {
  padding-top: 50px;
  }

  #recruit .text{
    width: calc(100% - 30px);
  }

  #contact {
    margin-top: 50px;
    padding: 0;
  }

  .contact-contents, .contact-box {
    padding: 2em 0;
  }

  .contact-wrapper {
    margin-top: 0;
    padding-top: 0;
  }

  .contact-box:last-child {
    border-top: 1px solid;
    border-left: none;
  }
}

/*service
-----------------------------------------------------------------------------------------*/
.service-title {
  padding: 120px 0 0;
  font-size: 1.4em;
  position: relative;
}

.subPage-img {
  display: flex;
  width: 100%;
  height: 300px;
  margin-top: 120px;
  justify-content: center;
  align-items: center;
  background-image: url(../images/sample.jpeg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width:767px) {
  .service-title{
    padding-top: 50px;
  }

  .subPage-img {
    margin-top: 30px;
  }
}

/*company
-----------------------------------------------------------------------------------------*/
.info {
  padding-top: 80px;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}

.info dd {
  padding-bottom: 1em;
}

/*============recruit（求人情報）===============*/
.bg-hero-recruit{
	background-image: url(../images/recruit-img.jpg);
	background-position: top;
}

.bg-ricruit{
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: auto;
	padding: 0;
}

.bg-ricruit-text{
	max-width: 860px;
	padding: 80px 0;
	margin: auto;
	font-size: 1.3rem;
	letter-spacing: 0.03em;
}

.entry-contents-list{
	gap: 40px;
	justify-content: center;
}

.recruit-list{
	width: calc((100% - 120px) /4);
	min-width: 260px;
	box-shadow:  5px 5px 10px #bebebe,
	-5px -5px 10px #ffffff;
  transition: all 0.5s;
}

.recruit-list:hover{
  border-radius: 20px;
  box-shadow: -2px -2px 4px #fff, 2px 2px 4px rgb(0 0 0 / 24%);
}

.recruit-list a{
	color: rgb(33, 33, 34);
}

.recruit-list dl{
	padding: 1rem;
}

.recruit-list dl:last-child{
	padding-top: 0;
}

.recruit-banner{
	height: 240px;
	padding: 0;
}

@media screen and (max-width:767px) {
	.bg-ricruit-text{
		padding: 30px;
		font-size: 1rem;
	}
}

/*contact(お問い合わせ)
-----------------------------------------------------------------------------------------*/
.contents-table{
	margin-top: 20px;
}

.contents-table tbody{
	vertical-align: baseline;
}

.contents-table th, td{
	padding: 20px 0;
  display: block;
}

.contents-table th{
  padding-bottom: 8px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
}


.contents-table-td{
	line-height: 2rem;
}

.contents-table td {
  padding-top: 0;
}

.form-item{
	width: 100%;
	padding: 8px;
	background: rgba(239, 239, 239, 0.53);
	border: none;
  border-radius: 3px;
}

.must-icon {
  padding-left: 3px;
  color: rgb(243, 1, 1);
}

.wpcf7-not-valid-tip{
	color: rgb(255, 255, 255) !important;
}

input.wpcf7-submit{
	width: 100%;
	height: 60px;
	margin-top: 20px;
	background: rgba(5, 5, 164, 0.19);
	border: none;
}

input.wpcf7-submit:hover{
	color: rgb(255, 255, 255);
	background: rgba(5, 5, 164, 0.7);
	transition: 0.8s;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-ms-transition: 0.8s;
	-o-transition: 0.8s;
}

.wpcf7-spinner{
	display: block;
	margin: auto;
}

/*404
-----------------------------------------------------------------------------------------*/
section.error{
	padding: 50px 0;
}

div.error-message{
	font-size: 150%;
	text-align: center;
}

@media screen and (max-width:767px) {
	section.error{
		padding: 30px 0;
	}

	div.error-message{
		font-size: 120%;
	}
}
