* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: #0f131b;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 1.2px;
}
.inline {
  display: inline-block;
}
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  line-height: 1.7;
  letter-spacing: 1.2px;
}

/*header*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s ease;
}
header.active {
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1350px;
  margin: 0 auto;
  height: 80px;
}
.header-nav ul {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.header-nav li:not(:first-of-type) {
  margin-left: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 350px;
}
.header-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0041b2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.header-contact-btn img {
  width: 30px;
}
/*fv*/
.fv {
  height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
}
.fv-textwrap {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-title span {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 5px;
}

.fv-sliderwrap {
  width: 65%;
  position: relative;
  height: 100vh;
}
/*==================================================
スライダーのためのcss
===================================*/
.fv-slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100%; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  width: 100%;
}
/*　背景画像設定　*/

.fv-slider .slider-item01 {
  background: url(../img/fv-slider01.jpg);
}

.fv-slider .slider-item02 {
  background: url(../img/fv-slider02.jpg);
}

.fv-slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100%; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.fv-slider .slick-track,
.fv-slider .slick-slide,
.fv-slider .slick-list {
  height: 100%;
}
/*section*/
section {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
  font-size: 1.2rem;
  color: #07123b;
}
.section-title::before {
  content: attr(data-en);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 900;
  color: #0041b2;
}
.section-title.title-left {
  align-items: flex-start;
}
.more-btnwrap {
  margin-top: 2rem;
}
.more-btn {
  background-color: #07123b;
  color: #fff;
  padding: 1rem 3rem;
  display: flex;
  width: fit-content;
  font-weight: bold;
}
.more-btn.btn-wh {
  background-color: #fff;
  color: #27262a;
}
.more-btn img {
  width: 40px;
  margin-left: 1rem;
  object-fit: contain;
}
.more-btnwrap.center {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
/*about*/
.about-contents {
  margin-top: 4rem;
  display: flex;
}
.about-img {
  width: 45%;
}
.about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-textwrap {
  padding: 1rem 6rem 1rem 4rem;
  width: 55%;
}
.about-textwrap h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.about-textwrap p {
  margin-top: 0.5rem;
}

/*business*/
.business {
  background-color: #07123b;
  color: #fff;
}
.business-contents {
  margin: 3rem auto 0;
  display: flex;
  max-width: 1300px;
}

.business-item {
  width: calc((100% - 6rem) / 3);
  margin: 1rem;
}
.business-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5/1;
  object-fit: cover;
}
.business-item h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

/*example*/
.example {
  padding: 0;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
  margin-top: 4rem;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}

/*contact*/
.contact {
  background-color: #0f131b;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6rem 0;
}

.contact-btn {
  background-color: #fff;
  position: relative;
  padding: 1rem 3rem;
}

.contact-btn::before {
  content: "";
  border: 2px solid #fff;
  position: absolute;
}

.section-title.wh {
  color: #fff;
}
.section-title.wh::before {
  color: #fff;
}
/*footer*/
footer {
  padding: 3rem 0;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.footer-logo {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1rem;
}
.footer-nav {
  width: 100%;
  margin-top: 1rem;
}
.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-nav li {
  margin: 1rem;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
}
/*u-fv*/
.u-fv {
  height: 300px;
  background: url("../img/fv01.jpg") no-repeat bottom / cover;
  margin-top: 80px;
  display: flex;
  align-items: flex-end;
}

.u-fv-title {
  background-color: #07123b;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  width: 90%;
  max-width: 500px;
  font-size: 1.4rem;
  padding: 2rem 1rem 2rem 4rem;
}
.u-fv-title::before {
  content: attr(data-en);
  text-transform: uppercase;
  font-size: 3rem;
}

/*u-business*/
.u-business-top-contents {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.u-business-top a {
  width: calc((100% - 3rem) / 3);
  margin: 0.5rem;
  position: relative;
}

.u-business-top img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.3/1;
  object-fit: cover;
}

.u-business-top p {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-business-top p span {
  border: 1px solid #fff;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.u-business-section-top {
  width: 100%;
  height: 200px;
}
.u-business-section-top.business-01-top {
  background: url("../img/fv01.jpg") no-repeat center / cover;
}
.u-business-section-top.business-02-top {
  background: url("../img/fv02.jpg") no-repeat bottom / cover;
}
.u-business-section-top.business-03-top {
  background: url("../img/fv01.jpg") no-repeat center / cover;
}
.u-business-section-top h2 {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.u-business-section-top span {
  padding: 2rem;
  color: #fff;
  background-color: #0f131b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  letter-spacing: 3px;
  width: 90%;
  max-width: 500px;
}
.u-business-item {
  text-align: center;
}

.u-business-contents {
  margin: 3rem auto 0;
  width: 95%;
  max-width: 1200px;
}
.u-business-item-imgwrap {
  display: flex;
  margin-top: 1.5rem;
}
.u-business-item-imgwrap img {
  display: block;
  width: 50%;
}
.u-business-item + .u-business-item {
  margin-top: 3rem;
}

.u-business-textwrap {
  margin-top: 1rem;
}
.u-business-box-item h3 {
  margin-top: 1rem;
}
.u-business-text-item h4 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  border-bottom: 1px solid #000;
}
.u-business-text-item h4::before {
  content: "■";
}
.u-business-text-item + .u-business-text-item {
  margin-top: 1rem;
}
.u-business-text-item p {
  margin-top: 0.5rem;
}
.u-business-textwrap p + p {
  margin-top: 1rem;
}

/*u-example*/
.u-example-title {
  text-align: center;
}
.u-example-contents {
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}
.u-example-item {
  width: calc((100% - 6rem) / 3);
  margin: 1rem;
}
.u-example-item img {
  display: block;
  width: 100%;
}
.u-example-item h3 {
  text-align: center;
  margin-top: 0.5rem;
}

/*company-table*/
.company-table {
  width: 95%;
  max-width: 800px;
  margin: 4rem auto 0;
  border-collapse: collapse;
}
.recruit-table {
  max-width: 1000px;
}
.company-table th {
  background-color: #000;
  color: #fff;
  padding: 1rem;
}
.company-table td {
  padding: 1rem;
}
.company-table tr:not(:first-of-type) th {
  border-top: 1px solid #fff;
}
.company-table tr:first-of-type th {
  border-top: 1px solid #0f131b;
}
.company-table tr:first-of-type td {
  border-top: 1px solid #0f131b;
}
.company-table td {
  border-bottom: 1px solid #0f131b;
  border-right: 1px solid #0f131b;
}

.map {
  width: 100%;
  margin-top: 3rem;
}

.map iframe {
  display: block;
  width: 100%;
}

/*contact*/
.u-contact-top {
  text-align: center;
}
.contact-form {
  margin-top: 2rem;
  width: 95%;
  max-width: 900px;
  margin: 2rem auto 0;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-item p {
  display: flex;
}
.form-item + .form-item {
  margin-top: 1rem;
}
.form-item label .req {
  background-color: #b70b0b;
  color: #fff;
  margin-right: 0.5rem;
  padding: 0.15rem 0.3rem;
  font-size: 0.9rem;
}
.form-item label {
  width: 250px;
  font-weight: bold;
  display: block;
  padding: 1rem;
  line-height: 1;
}
.wpcf7-form-control-wrap {
  width: calc(100% - 250px);
  display: flex;
  align-items: center;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #000;
}

input[type="submit"] {
  margin: 5rem auto 0;
  display: block;
  background-color: #0f131b;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 4rem;
  font-family: "Noto Serif JP", serif;
cursor:pointer;
}
.radio-box {
  display: flex;
  align-items: center;
  padding: 1rem;
}
.radio-box label {
  margin-top: 0;
  width: auto;
}
.radio-box label + label {
  margin-left: 1rem;
}
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #000;
  cursor: pointer;
  width: 80px;
  height: 100%;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 30px;
}

.openbtn span:nth-of-type(2) {
  top: 40px;
}

.openbtn span:nth-of-type(3) {
  top: 50px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 40px;
  transform: translateX(-50%) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 40px;
  transform: translateX(-50%) rotate(45deg);
}

.u-business-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.u-business-box-item {
  width: calc((100% - 6rem) / 3);
  margin: 1rem;
}
.u-business-box-img img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.5/1;
}

.business-bottom {
  margin-top: 2rem;
}

/*u-example*/
/*==================================================
スライダーのためのcss
===================================*/
.u-example-slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.u-example-slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.u-example-slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.u-example-slider .slick-prev,
.u-example-slider .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.u-example-slider .slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.u-example-slider .slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.u-example-slider .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.u-example-slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.u-example-slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.u-example-slider .slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
.u-example-textwrap {
  margin-top: 1rem;
}
.u-example-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}
.u-example-table tr {
  border-bottom: 1px solid #929292;
}
.u-example-table th,
.u-example-table td {
  padding: 0.2rem;
}

.u-example-box + .u-example-box {
  margin-top: 4rem;
}

.page-nav {
  margin-top: 3rem;
  text-align: center;
}

.page-nav span.current {
  background-color: #000;
  color: #fff;
}
.wp-pagenavi a,
.wp-pagenavi span {
  padding: 0.25rem 0.5rem !important;
  display: inline-block;
}

/*scrolldown*/
.scrolldown {
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  z-index: 2;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.scrolldown p {
  writing-mode: vertical-rl;
  padding-bottom: 160px;
  color: #0041b2;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.scrolldown:after {
  content: "";
  width: 3px;
  height: 250px;
  background-color: #fff;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 1px solid #0041b2;
}
.scrolldown:before {
  content: "";
  width: 3px;
  height: 250px;
  background-color: #0041b2;
  border: 1px solid #0041b2;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0) translateX(-50%);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1) translateX(-50%);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1) translateX(-50%);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0) translateX(-50%);
    transform-origin: 0 100%;
  }
}

/*rr-contents*/
.rr-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.rr-item {
  width: 48%;

  position: relative;
}
.rr-item img {
  display: block;
  width: 100%;
  aspect-ratio: 2.3/1;
  object-fit: cover;
}
.rr-item h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: #07123b;
  color: #fff;
  text-align: center;
}

/*results*/
.results-contents {
}
.results-table {
  border-collapse: collapse;
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

.results-table th,
.results-table td {
  padding: 0.5rem 0.25rem;
}
.tr-title th {
  background-color: #07123b;
  color: #fff;
  text-align: left;
  padding: 1rem 0.5rem;
}

.tr-title th {
  border-right: 2px solid #fff;
}
.th03 {
  width: 90px;
}
