@charset "UTF-8";
/*----------------------------------------------------
	base
----------------------------------------------------*/
body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0em;
  background-color: #FFF;
}

table {
  color: #000000;
  font-size: 18px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8em;
  letter-spacing: 0em;
}

a {
  color: #000000;
  text-decoration: underline;
}

a img {
  transition: opacity 0.5s ease;
}

a:hover {
  text-decoration: none;
}

a img:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

a .nonHover:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.preload * {
  transition: none !important;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: transparent;
}

.clear {
  clear: both;
}

.clear:after {
  content: url("../images/common/pixel.gif");
  display: block;
  clear: both;
  height: 0;
}

.re {
  color: #F23038;
}

.bi {
  font-size: 120%;
}

.sma {
  font-size: 85%;
}

.bo {
  font-weight: 800;
}

.sp {
  display: none;
}

/*----------------------------------------------------
	head
----------------------------------------------------*/
header {
  z-index: 600;
  position: relative;
  width: 100%;
  height: 75px;
  background-color: white;
  box-shadow: 0px 5px 1px 0px rgba(0, 0, 0, 0.1);
}
header .headLogo {
  position: absolute;
  top: 17px;
  left: 40px;
}
header .headLogo img {
  width: 148px;
}
header .headMenu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
header .headMenu .headMenuTel {
  width: 304px;
}
header .headMenu .headMenuEntry {
  /*width: 150px;*/
  width: 220px;
}
header .headMenu .headMenuEntry a {
  display: block;
  height: 75px;
  line-height: 0;
  background: linear-gradient(90deg, #0097dc, #004096);
}

/*----------------------------------------------------
	contents
----------------------------------------------------*/
.subTitle {
  font-weight: 800;
}
.subTitle p {
  display: inline-block;
  opacity: 0;
  font-size: 54px;
  line-height: 1.2em;
  background: linear-gradient(90deg, #003b92 0%, #00a0e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subTitle h2 {
  opacity: 0;
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.2em;
}
.subTitle.is-active p {
  animation-name: fadeInSubtitle;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.subTitle.is-active h2 {
  animation-delay: 0.3s;
  animation-name: fadeInSubtitle;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInSubtitle {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
}

.fadein.is-active {
  animation-name: fadeInContent;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main {
  position: relative;
  z-index: 500;
  width: 100%;
  height: 950px;
  margin: -75px auto 0;
  overflow: hidden;
  /*
  max-width: 1920px;
  min-width: 1600px;
  */
}
.main video {
  position: absolute;
  top: 0;
  left: calc(50% - 960px);
  width: 1920px;
  margin: 0 auto;
}

/*----------------------------------------------------
	Message
----------------------------------------------------*/
.mes {
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0 75px;
}
.mes .mesCont {
  width: 1000px;
  margin: 35px auto 0;
  padding: 38px 38px 30px;
  text-align: left;
  border: solid 1px #00a0e2;
}
.mes .mesCont div {
  width: 330px;
  margin: 25px 0 0 auto;
  padding-left: 150px;
  line-height: 37px;
  background-image: url("../images/mes_logo.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

/*----------------------------------------------------
	Strengths
----------------------------------------------------*/
.str {
  padding: 75px 0 185px;
  background-image: url("../images/str_back.png");
  background-position: left top;
  background-repeat: repeat;
}

.strCont {
  margin: 30px auto 0;
  background-image: url("../images/str_back_circle.png");
  background-position: center top 150px;
  background-repeat: no-repeat;
}
.strCont ul {
  position: relative;
  width: 900px;
  height: 1660px;
  margin: 0 auto;
  /*
  &.is-active {
  	li {
  		animation-name: fadeInContent;
  		animation-duration: 0.5s;
  		animation-timing-function: ease-out;
  		animation-fill-mode: forwards;

  		&:nth-child(2) {
  			animation-delay: 0.3s;
  		}

  		&:nth-child(3) {
  			animation-delay: 0.6s;
  		}

  		&:nth-child(4) {
  			animation-delay: 0.9s;
  		}

  		&:nth-child(5) {
  			animation-delay: 1.2s;
  		}

  		&:nth-child(6) {
  			animation-delay: 1.5s;
  		}
  	}
  }
  */
}
.strCont ul li {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 452px;
  height: 452px;
  padding: 40px 0 0 0;
  margin-top: 37px;
  background-image: url("../images/str_circle.svg");
  background-position: left top;
  background-repeat: no-repeat;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
}
.strCont ul li.is-active {
  animation-name: fadeInContent;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.strCont ul li:nth-child(even) {
  left: auto;
  right: 0;
}
.strCont ul li:nth-child(2) {
  top: 228px;
}
.strCont ul li:nth-child(3) {
  top: 490px;
}
.strCont ul li:nth-child(4) {
  top: 724px;
}
.strCont ul li:nth-child(4) p {
  width: 350px;
}
.strCont ul li:nth-child(5) {
  top: 975px;
}
.strCont ul li:nth-child(6) {
  top: 1210px;
}
.strCont ul li::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-image: url("../images/str_01.svg");
  background-position: left top;
  background-repeat: no-repeat;
}
.strCont ul li:nth-child(1)::before {
  background-image: url("../images/str_01.svg");
}
.strCont ul li:nth-child(2)::before {
  background-image: url("../images/str_02.svg");
}
.strCont ul li:nth-child(3)::before {
  background-image: url("../images/str_03.svg");
}
.strCont ul li:nth-child(4)::before {
  background-image: url("../images/str_04.svg");
}
.strCont ul li:nth-child(5)::before {
  background-image: url("../images/str_05.svg");
}
.strCont ul li:nth-child(6)::before {
  background-image: url("../images/str_06.svg");
}
.strCont ul li h3 {
  margin: 10px 0 0;
  color: #0f398d;
  font-size: 24px;
  line-height: 1.6em;
  font-weight: 800;
}
.strCont ul li .strSub {
  margin: 0px 0 15px;
  font-size: 14px;
  line-height: 1em;
}
.strCont ul li p {
  width: 340px;
  margin: 5px auto 0;
  padding-left: 15px;
  text-align: left;
  line-height: 1.6em;
}

/*----------------------------------------------------
	About Job
----------------------------------------------------*/
.about {
  margin: -80px 0 0;
  padding: 80px 0 55px;
  background-image: url("../images/about_back.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 80px 80px 0 0;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.aboutText {
  width: 1000px;
  margin: 50px auto 0;
  text-align: left;
}

.aboutCont {
  width: 1000px;
  margin: 50px auto 0;
  padding: 55px 45px 30px;
  border: solid 2px #0f398d;
}
.aboutCont h3 {
  width: 445px;
  margin: -80px auto 0;
  color: white;
  font-size: 24px;
  font-weight: 800;
  line-height: 48px;
  background-image: url("../images/about_subtitle_back.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboutCont p {
  margin: 25px 0 0;
  text-align: left;
}

/*----------------------------------------------------
	Recruitment
----------------------------------------------------*/
.recruit {
  padding: 0 0 80px;
  background-image: url("../images/recruit_back_02.png");
  background-position: left 0px top 182px;
  background-repeat: no-repeat;
  background-size: auto auto;
}
.recruit .subTitle {
  height: 183px;
  padding-top: 15px;
  text-align: left;
  background-image: url("../images/recruit_back.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.recruit .subTitle p {
  display: block;
  width: 1000px;
  margin: 15px auto auto;
  color: white;
  background: transparent;
  -webkit-text-fill-color: white;
}
.recruit .subTitle h2 {
  width: 1000px;
  margin: 20px auto 0;
  color: white;
}
.recruit table {
  width: 1000px;
  margin: 105px auto 0;
  border: solid 1px black;
}
.recruit table th {
  width: 200px;
  padding: 25px 0;
  color: white;
  border-bottom: solid 1px white;
  background-color: #0f398d;
}
.recruit table td {
  padding: 25px 10px 25px 15px;
  text-align: left;
  border-bottom: solid 1px black;
}
.recruit table tr:last-child th, .recruit table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 1300px) {
  .recruit {
    background-position: left -50px top 182px;
    background-size: auto auto;
  }
}
/*----------------------------------------------------
	Company
----------------------------------------------------*/
.company {
  width: auto;
  margin: 0 100px 0 0;
  padding: 80px 0 80px 100px;
  background-color: #f4f4f6;
  border-radius: 0 100px 100px 0;
}
.company table {
  width: 1000px;
  margin: 105px auto 0;
  border: solid 1px #cbcbcb;
}
.company table th {
  width: 280px;
  padding: 25px 0;
  color: white;
  border-bottom: solid 1px white;
  background-color: #0f398d;
}
.company table td {
  padding: 25px 10px 25px 35px;
  text-align: left;
  background-color: white;
  border-bottom: solid 1px #cbcbcb;
}
.company table tr:last-child th, .company table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 1400px) {
  .company {
    margin: 0 50px 0 0;
  }
}
/*----------------------------------------------------
	Flow
----------------------------------------------------*/
.flow {
  margin: 75px 0 70px;
}
.flow .subTitle {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.flow ul {
  display: flex;
  width: 1000px;
  margin: 40px auto 0;
}
.flow ul.is-active li {
  animation-name: fadeInContent;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.flow ul.is-active li:nth-child(2) {
  animation-delay: 0.3s;
}
.flow ul.is-active li:nth-child(3) {
  animation-delay: 0.6s;
}
.flow ul.is-active li:nth-child(4) {
  animation-delay: 0.9s;
}
.flow ul.is-active li:nth-child(5) {
  animation-delay: 1.2s;
}
.flow ul.is-active li:nth-child(6) {
  animation-delay: 1.5s;
}
.flow ul li {
  opacity: 0;
  position: relative;
  width: 255px;
}
.flow ul li:last-child {
  width: 235px;
}
.flow ul li .flowImage {
  position: relative;
  z-index: 600;
  line-height: 0em;
}
.flow ul li .flowText {
  position: relative;
  z-index: 500;
  width: 240px;
  height: 230px;
  margin: -10px auto 0 0;
  padding: 40px 0 10px 15px;
  background-color: white;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}
.flow ul li .flowText h3 {
  height: 60px;
  font-size: 24px;
  color: #0f398d;
}
.flow ul li .flowText p {
  margin: 15px 0 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.6em;
}
.flow ul li:nth-child(1) .flowText h3, .flow ul li:nth-child(4) .flowText h3 {
  line-height: 60px;
}
.flow ul li .flowTextSub {
  margin: 15px 0 0;
  font-size: 14px;
  text-align: left;
  line-height: 1.6em;
}

/*----------------------------------------------------
	Entry
----------------------------------------------------*/
.entry {
  position: relative;
  padding: 40px 0 80px;
}
.entry::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: linear-gradient(90deg, #003b92, #00a0e2);
}
.entry .subTitle p {
  color: white;
  background: transparent;
  -webkit-text-fill-color: white;
}
.entry .subTitle h2 {
  color: white;
}

.entryCont {
  margin: 35px 100px 0;
  padding-top: 35px;
  background-color: white;
  border-radius: 100px 100px 0 0;
}
.entryCont table {
  width: 1000px;
  margin: 35px auto 0;
  border: solid 1px #cbcbcb;
}
.entryCont table th {
  width: 260px;
  padding: 25px 0 25px 20px;
  color: white;
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px white;
  background-color: #0f398d;
}
.entryCont table td {
  position: relative;
  padding: 25px 10px 25px 40px;
  vertical-align: top;
  text-align: left;
  border-bottom: solid 1px #cbcbcb;
  /*
  .selectWrap {
  	position: relative;
  	display: inline-block;

  	&::before {
  		content: '';
  		position: absolute;
  		top: 0;
  		right: 0;
  		width: 40px;
  		height: 100%;
  		background-color: #333333;
  		border-radius: 0 4px 4px 0;
  	}

  	.dli-chevron-down {
  		position: absolute;
  		top: 16px;
  		right: 15px;
  		display: inline-block;
  		vertical-align: middle;
  		color: white;
  		line-height: 1;
  		width: 10px;
  		height: 10px;
  		border: 3px solid currentColor;
  		border-left: 0;
  		border-bottom: 0;
  		box-sizing: border-box;
  		transform: translateY(-25%) rotate(135deg);
  	}
  }
  */
}
.entryCont table td input, .entryCont table td select, .entryCont table td textarea {
  font-size: 18px;
}
.entryCont table td input[type=text], .entryCont table td input[type=email] {
  width: 540px;
  padding: 10px 10px;
  background-color: #f2f2f2;
  border: solid 1px #cccccc;
}
.entryCont table td textarea {
  width: 630px;
  height: 170px;
  padding: 10px 10px;
  background-color: #f2f2f2;
  border: solid 1px #cccccc;
}
.entryCont table td input[type=radio] {
  position: relative;
  top: -3px;
}
.entryCont table td select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0 50px 0 10px;
  height: 44px;
  color: black;
  border-radius: 4px;
  background-image: url("../images/form_select_bg.svg");
  background-position: right 0 top 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.entryCont table td .selectWrap {
  display: inline-block;
}
.entryCont table td .error {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.4em;
  color: #e60012;
}
.entryCont table tr:last-child th, .entryCont table tr:last-child td {
  border-bottom: none;
}
.entryCont .entryButton {
  margin: 60px auto 0;
}
.entryCont .entryButton input:hover {
  opacity: 0.7;
}
.entryCont .entryPrivacy {
  width: 690px;
  margin: 75px auto 0;
}
.entryCont .entryPrivacy h3 {
  padding: 2px 0;
  color: white;
  font-size: 14px;
  font-weight: 800;
  background-color: #333333;
}
.entryCont .entryPrivacy p {
  overflow-y: scroll;
  height: 65px;
  padding: 10px 10px;
  font-size: 12px;
  text-align: left;
  line-height: 1.6em;
  border: solid 1px #333333;
}

@media (max-width: 1400px) {
  .entryCont {
    margin: 35px 50px 0;
  }
}
.entryTextFinish {
  margin: 120px 0 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.6em;
}

.entryTextFinish02 {
  margin: 130px 0 140px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.6em;
}

/*----------------------------------------------------
	food
----------------------------------------------------*/
footer {
  padding: 20px 0;
  color: white;
  background-color: #333333;
}

.foodCopy {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8em;
}
.foodCopy a {
  color: white;
}/*# sourceMappingURL=style.css.map */