@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15; /* Correct the line height */
  -webkit-text-size-adjust: 100%; /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent; /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0; /* Remove margin */
}

main {
  display: block; /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/********** base **********/
body {
  font-family: "Noto Sans JP", serif;
  color: #151515;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 15px;
}

.section-ttl {
  width: fit-content;
  font-size: 32px;
  color: #000;
  font-family: "Noto Sans JP", "serif";
  font-weight: 300;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  line-height: 1.25;
}
.section-ttl__en {
  font-size: 80px;
  font-weight: 600;
  color: #0266BE;
  color: #f8b500;
  font-family: "Noto Sans JP", "serif";
}
@media (max-width: 576px) {
  .section-ttl__en {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .section-ttl {
    font-size: 20px;
  }
}

/********** variable **********/
/********** mixin **********/
/********** module **********/
.footer {
  background: #0266BE;
  color: white;
}
.footer__container {
  width: 100%;
  padding: 60px 96px;
}
@media (max-width: 1080px) {
  .footer__container {
    padding: 60px 32px 32px 32px;
  }
}
@media (max-width: 576px) {
  .footer__container {
    padding: 60px 16px 16px 16px;
  }
}
.footer__logo {
  font-size: 24px;
  width: 100%;
}
@media (max-width: 1080px) {
  .footer__logo {
    font-size: 20px;
  }
}
.footer__logo a {
  display: flex;
  align-items: center;
  width: fit-content;
}
@media (max-width: 576px) {
  .footer__logo a {
    margin: 0 auto;
  }
}
.footer__logo img {
  width: 115px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 1080px) {
  .footer__logo img {
    width: 64px;
  }
}
.footer__contents {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 1080px) {
  .footer__contents {
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .footer__contents {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer__address {
  margin-top: 30px;
}
@media (max-width: 576px) {
  .footer__address {
    text-align: center;
  }
}
.footer__address-text {
  padding-bottom: 16px;
}
.footer__nav-content {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 96px;
}
@media (max-width: 1080px) {
  .footer__nav-content {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .footer__nav-content {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer__nav-content {
    align-items: center;
    margin-top: 64px;
  }
}
@media (max-width: 1080px) {
  .footer__nav {
    width: 80%;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__nav-list:nth-child(1) {
  font-weight: 600;
}
@media (max-width: 1080px) {
  .footer__nav-list:nth-child(1) {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer__nav-list {
    flex-direction: column;
    text-align: center;
  }
}
.footer__nav-item {
  font-size: 16px;
  white-space: nowrap;
}
.footer__nav-item--copy {
  font-size: 13px;
}

.header {
  display: flex;
  position: fixed;
  width: 100vw;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  z-index: 250;
  background: #0266BE;
  padding: 10px 40px;
}
@media (max-width: 1080px) {
  .header {
    height: 80px;
    padding: 10px 20px;
  }
}
@media (max-width: 576px) {
  .header {
    height: 70px;
    padding: 8px 16px;
  }
}
.header__logo {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .header__logo {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    width: 60px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 1080px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}
.header__nav-item {
  color: #fff;
  font-size: 16px;
}
.header__nav-item--white {
  border: 1px solid #0266BE;
  background: #fff;
  color: #0266BE;
  border-radius: 50px;
}
.header__nav-item--white a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  padding-left: 36px;
}
.header__nav-item--arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}
.header__nav-item--arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav-item--arrow-hover {
  display: none;
  align-items: center;
}
.header__nav-item--arrow-hover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav-item--tel {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 20px;
}
.header__nav-item--tel-icon {
  width: 18px;
  height: 18px;
}
.header__nav-item--tel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btm-nav {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: none;
}
@media (max-width: 576px) {
  .btm-nav {
    display: block;
  }
}
.btm-nav__container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.btm-nav__content {
  width: 50%;
  height: 60px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btm-nav__content p {
  white-space: nowrap;
}
.btm-nav__content a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btm-nav__content--tel {
  background: #0266BE;
  white-space: nowrap;
  flex-shrink: 0;
}
.btm-nav__content--contact {
  background: #000;
}
.btm-nav__content-icon {
  display: block;
  width: 20px;
  height: 15px;
}
.btm-nav__content-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.opening {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0266BE;
  z-index: 999;
}

.opening__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 231px;
  height: auto;
}
@media (max-width: 1080px) {
  .opening__txt {
    width: 156px;
  }
}
.opening__txt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainV {
  position: relative;
  width: 100%;
  height: 100vh;
}

.mainV-swiper {
  overflow: hidden;
}

.swiper-slide img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .swiper-img-pc {
    display: none;
  }
}

.swiper-img-sp {
  display: none;
}
@media (max-width: 576px) {
  .swiper-img-sp {
    display: block;
  }
}
@media (max-width: 420px) {
  .swiper-img-sp {
    display: none;
  }
}

.swiper-img-xsp {
  display: none;
}
@media (max-width: 576px) {
  .swiper-img-xsp {
    display: none;
  }
}
@media (max-width: 420px) {
  .swiper-img-xsp {
    display: block;
  }
}

.mainV__copy {
  position: absolute;
  z-index: 999;
  font-family: "Noto Serif JP", "serif";
}
.mainV__copy--01 {
  top: calc(50% + 60px);
  left: 10vw;
  font-size: 56px;
  color: #122A88;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .mainV__copy--01 {
    width: fit-content;
    white-space: nowrap;
    font-size: 44px;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 576px) {
  .mainV__copy--01 {
    font-size: 28px;
    top: 50%;
    left: 50%;
    width: fit-content;
    transform: translate(-50%, -50%);
    writing-mode: vertical-lr;
  }
}
.mainV__copy--01 p {
  background: rgba(255, 255, 255, 0.9);
  margin-top: 15px;
  padding: 0 16px;
  width: fit-content;
}
@media (max-width: 576px) {
  .mainV__copy--01 p {
    padding: 16px 8px;
    margin: 10px;
    height: fit-content;
  }
}
.mainV__copy--02 {
  display: flex;
  white-space: nowrap;
  flex-direction: column;
  align-items: center;
  top: calc(50% + 60px);
  left: 50%;
  font-size: 56px;
  transform: translate(-50%, -50%);
  color: #fff;
  gap: 40px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .mainV__copy--02 {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .mainV__copy--02 {
    top: 50%;
    font-size: 28px;
    width: 90%;
  }
}
.mainV__copy--02img {
  max-width: 231px;
  height: auto;
}
@media (max-width: 768px) {
  .mainV__copy--02img {
    max-width: 156px;
  }
}
.mainV__copy--02img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mainV__copy--03 {
  top: calc(50% + 60px);
  left: 50%;
  font-size: 56px;
  transform: translate(-50%, -50%);
  z-index: 999;
  color: #122A88;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  background: #fff;
  font-weight: 500;
}
@media (max-width: 576px) {
  .mainV__copy--03 {
    top: 50%;
  }
}
.mainV__copy--03--bg {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0266BE;
  z-index: -999;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .mainV__copy--03--bg {
    top: 10px;
    left: 10px;
  }
}
@media (max-width: 768px) {
  .mainV__copy--03 {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .mainV__copy--03 {
    font-size: 32px;
  }
}
.mainV__copy--03 p {
  padding: 24px 0px;
  position: relative;
  background: #fff;
  box-sizing: border-box;
}
.mainV__copy--03txt {
  font-size: 44px;
  letter-spacing: 4px;
}
@media (max-width: 576px) {
  .mainV__copy--03txt {
    font-size: 28px;
  }
}

@keyframes shine {
  from {
    top: -100%; /* アニメーションの開始位置 */
  }
  to {
    top: 60%; /* アニメーションの終了位置 */
  }
}
/* ズームアニメーション */
@keyframes zoomUpAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUpAnimation 12s linear infinite;
}

.m-page-mainV {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (max-width: 1080px) {
  .m-page-mainV {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .m-page-mainV {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .m-page-mainV {
    height: 280px;
  }
}
.m-page-mainV__head-wrap {
  position: absolute;
  width: fit-content;
  white-space: nowrap;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 10vw;
}
@media (max-width: 576px) {
  .m-page-mainV__head-wrap {
    left: 50%;
    transform: translateX(-50%);
  }
}
.m-page-mainV__head-en {
  font-size: 96px;
}
@media (max-width: 1080px) {
  .m-page-mainV__head-en {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .m-page-mainV__head-en {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .m-page-mainV__head-en {
    font-size: 40px;
  }
}
.m-page-mainV__head {
  font-size: 28px;
}
@media (max-width: 1080px) {
  .m-page-mainV__head {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .m-page-mainV__head {
    font-size: 18px;
  }
}

.m-page-mainV__service {
  background: url("../img/page-service-mainV.webp") center center/cover no-repeat;
}
.m-page-mainV__works {
  background: url("../img/works-bg.webp") center center/cover no-repeat;
}
.m-page-mainV__recruit {
  background: url("../img/recruit-bg.webp") center center/cover no-repeat;
}
.m-page-mainV__company {
  background: url("../img/company-bg.webp") center center/cover no-repeat;
}
.m-page-mainV__contact {
  background: url("../img/contact-bg.webp") center center/cover no-repeat;
}
.m-page-mainV__service {
  background: url("../img/page-service-mainV.webp") center center/cover no-repeat;
}

.breadcrumbs-wrapper {
  width: fit-content;
  margin-top: 16px;
  padding-left: 5vw;
}
@media (max-width: 576px) {
  .breadcrumbs-wrapper {
    font-size: 13px;
  }
}
.breadcrumbs-wrapper .current-item {
  color: #0266BE;
}

/* spナビをデフォルトで非表示 */
.sp-nav {
  display: block;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  opacity: 0;
  z-index: 100;
}
@media (max-width: 576px) {
  .sp-nav {
    display: none;
  }
}
.sp-nav__sns-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}
.sp-nav__sns-icon {
  width: 40px;
  height: 40px;
}
.sp-nav__sns-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ナビボタンを押すとspナビを表示 */
.sp-nav.active {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(0%);
  transition: ease 1s;
  opacity: 1;
}

/* spナビリストを上下中央寄せ */
.sp-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

/* ナビのリンク */
.sp-nav__item a {
  color: #fff; /*リンクの文字色*/
  width: 100%;
  display: block;
  text-align: center;
  font-size: 15px;
  margin-bottom: 23px;
  padding: 10px 22px;
}

.sp-nav__item--border a {
  margin-bottom: 0;
  border-radius: 50px;
  border: 1px solid #fff;
}

.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 576px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1100px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

/* ハンバーガーメニューのボタン位置 */
.hamburger-menu {
  width: 32px; /*ハンバーガーメニューの線の幅*/
  height: 24px;
  position: fixed;
  top: 28px; /*(ヘッダーの高さ)ー(メニューボタンの高さ)/2*/
  right: 20px;
  background: transparent;
  z-index: 999;
  display: none;
}
@media (max-width: 1080px) {
  .hamburger-menu {
    display: block;
  }
}
@media (max-width: 576px) {
  .hamburger-menu {
    top: 23px; /*(ヘッダーの高さ)ー(メニューボタンの高さ)/2*/
  }
}
.hamburger-menu__icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger-menu__icon span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff; /*メニューバーの色*/
  transition: ease 0.4s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}
.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(-45deg);
}

.sp-header-nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  background-color: #0266BE; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease 0.4s;
  color: #fff;
  opacity: 0;
  z-index: 50;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
.sp-header-nav.active {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(0%);
  overflow: scroll;
  background-color: #0266BE; /*spナビの背景色*/
  transition: ease 0.4s;
  opacity: 1;
}
.sp-header-nav__list {
  width: 100%;
  padding: 0 24px;
  margin-top: 140px;
}
.sp-header-nav__item {
  display: block;
  border-bottom: 1px solid #fff;
}
.sp-header-nav__item a {
  padding: 24px 4px;
  display: block;
}
.sp-header-nav__item--tel {
  border-bottom: none;
  text-align: center;
  margin-top: 64px;
  line-height: 1;
}
.sp-header-nav__item--tel-wrap {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}
.sp-header-nav__item--tel-wrap span {
  font-size: 18px;
}
.sp-header-nav__item--tel-icon {
  width: 18px;
  height: 18px;
}
.sp-header-nav__item--tel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-info {
  display: flex;
}
@media (max-width: 576px) {
  .cta-info {
    flex-direction: column;
  }
}
.cta-info__wrap {
  width: 50%;
  height: 340px;
  position: relative;
  transition: 0.3s;
}
.cta-info__wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .cta-info__wrap {
    width: 100%;
  }
}
.cta-info__head {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.cta-info__text {
  font-size: 28px;
}
@media (max-width: 1080px) {
  .cta-info__text {
    font-size: 20px;
  }
}
.cta-info__text--en {
  font-size: 46px;
  font-family: "Noto Sans JP", "serif";
}
@media (max-width: 1080px) {
  .cta-info__text--en {
    font-size: 32px;
  }
}
.cta-info--company {
  transition: 0.3s;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/company-bg.webp) bottom center/cover no-repeat;
}
.cta-info--contact {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/contact-bg.webp) bottom center/cover no-repeat;
}
.cta-info--recruit {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/recruit-bg.webp) bottom center/cover no-repeat;
}

.more-btn {
  border: 1px solid transparent;
  display: flex;
  position: relative;
  width: 314px;
  border-radius: 50px;
  font-weight: 700;
  background: #04A9EE;
/*   background: #d2b74e; */
  color: #fff;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.more-btn--white {
  background: #fff;
  color: #000;
}
.more-btn a {
  display: block;
  padding: 22px 0;
  padding-right: 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", "serif";
}

.more-btn::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  background: url("../img/arrow-right.webp") center center/cover no-repeat;
}

.more-btn--white::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  background: url("../img/arrow-blue.webp") center center/cover no-repeat;
}

.m-table dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B5B5B5;
  padding: 20px 0;
}
@media (max-width: 576px) {
  .m-table dl {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
}
.m-table dt {
  width: 8em;
  white-space: nowrap;
  font-size: 20px;
}
.m-table dd {
  margin-left: 120px;
  line-height: 2em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .m-table dd {
    margin-left: 80px;
  }
}
@media (max-width: 576px) {
  .m-table dd {
    margin-left: 0;
  }
}

.pagination-wrapper {
  margin-top: 80px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.page-numbers li a {
  padding: 8px;
}

.page-numbers .current {
  background: #0266BE;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50px;
}

.header__nav-item,
.footer__nav-item {
  transition: 0.3s;
}
.header__nav-item:hover,
.footer__nav-item:hover {
  opacity: 0.8;
}

.header__nav-item--white {
  transition: 0.3s;
}

.header__nav-item--white:hover {
  background: #0266BE;
  border: 1px solid #fff;
  color: #fff;
}
.header__nav-item--white:hover .header__nav-item--arrow {
  display: none;
}
.header__nav-item--white:hover .header__nav-item--arrow-hover {
  display: flex;
}

.cta-info__wrap:hover {
  opacity: 0.8;
}

.more-btn {
  transition: 0.3s;
}
.more-btn:hover {
  border: 1px solid #04A9EE;
  background: #fff;
  color: #151515;
}
.more-btn--white:hover {
  border: 1px solid transparent;
  color: #04A9EE;
}
.more-btn::after {
  transition: 0.3s;
}
.more-btn:hover::after {
  right: 40px;
}

.m-scale-change {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}

.m-scale-change img {
  height: auto;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}

.m-scale-change:hover img {
  transform: scale(1.05); /* 拡大 */
}

/********** utils **********/
.u-mt5 {
  margin-top: 5px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-text-center {
  text-align: center;
  margin: 0 auto;
}

.u-sp-br {
  display: none;
}
@media (max-width: 576px) {
  .u-sp-br {
    display: block;
  }
}

.u-fz-sm {
  font-size: 0.8em;
}

.u-vertical-writing {
  writing-mode: vertical-rl;
}

/********** pages **********/
/* top-page*/
.top-greeting {
  margin-top: 120px;
  margin-bottom: 200px;
  background: #04A9EE;
  position: relative;
}
@media (max-width: 1080px) {
  .top-greeting {
    margin-top: 100px;
    margin-bottom: 120px;
  }
}
@media (max-width: 576px) {
  .top-greeting {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.top-greeting__accent {
  opacity: 0.9;
  font-size: 150px;
  position: absolute;
  top: 0;
  left: 0;
  color: #122A88;
  color:#f8b500;
  transform: translateY(-25%);
  font-family: "Noto Sans JP", "serif";
}
@media (max-width: 1080px) {
  .top-greeting__accent {
    font-size: 118px;
  }
}
@media (max-width: 576px) {
  .top-greeting__accent {
    font-size: 64px;
    transform: translateY(-50%);
  }
}
.top-greeting__contents {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-top: 136px;
  padding-bottom: 86px;
}
@media (max-width: 1080px) {
  .top-greeting__contents {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .top-greeting__contents {
    padding-top: 100px;
  }
}
.top-greeting__img {
  width: 50%;
  flex-shrink: 0;
  height: auto;
}
@media (max-width: 1080px) {
  .top-greeting__img {
    width: 60%;
    margin: 0 0 0 auto;
    margin-bottom: 64px;
  }
}
@media (max-width: 576px) {
  .top-greeting__img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.top-greeting__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.top-greeting__head {
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .top-greeting__head {
    font-size: 22px;
  }
}
.top-greeting__info {
  width: 50%;
  padding: 0 64px;
  color: #fff;
}
@media (max-width: 1080px) {
  .top-greeting__info {
    width: 90%;
    padding: 0 16px;
  }
}
@media (max-width: 576px) {
  .top-greeting__info {
    width: 100%;
    padding: 0 16px;
  }
}
.top-greeting__disc {
  line-height: 2;
  font-size: 16px;
}

.top-service {
  margin-bottom: 200px;
}
@media (max-width: 1080px) {
  .top-service {
    margin-bottom: 100px;
  }
}
.top-service__contents {
  display: flex;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 64px;
  position: relative;
}
@media (max-width: 1080px) {
  .top-service__contents {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.top-service__contents::before {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  width: 90%;
  height: 50vh;
  background: #04A9EE;
  z-index: -999;
}
@media (max-width: 1080px) {
  .top-service__contents::before {
    top: 100%;
  }
}
@media (max-width: 576px) {
  .top-service__contents::before {
    top: calc(100% + 20px);
    height: 120vh;
  }
}
.top-service__img {
  width: 50%;
  height: auto;
}
@media (max-width: 1080px) {
  .top-service__img {
    width: 60%;
    margin-left: auto;
    margin-right: 100%;
  }
}
@media (max-width: 576px) {
  .top-service__img {
    width: 100%;
  }
}
.top-service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.top-service__info {
  width: 50%;
  max-width: 800px;
  padding: 64px;
  transform: translateY(-25%);
}
@media (max-width: 1080px) {
  .top-service__info {
    width: 80%;
    padding: 40px;
    margin: 0 0 0 auto;
    transform: inherit;
  }
}
@media (max-width: 576px) {
  .top-service__info {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 32px;
  }
}
.top-service__disc {
  line-height: 2;
  font-size: 24px;
}
@media (max-width: 768px) {
  .top-service__disc {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .top-service__disc {
    font-size: 16px;
    margin-top: 40px;
    text-align: justify;
    padding: 0 16px;
  }
}
.top-service__works-container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  margin-bottom: 64px;
  padding: 0 16px;
  display: flex;
  gap: 36px;
}
@media (max-width: 1080px) {
  .top-service__works-container {
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .top-service__works-container {
    width: 100%;
    padding: 0 32px;
    flex-direction: column;
    gap: 64px;
  }
}
.top-service__works {
  width: 25%;
  border: 1px solid #B5B5B5;
  padding: 52px 0 16px 0;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
@media (max-width: 1080px) {
  .top-service__works {
    width: calc(50% - 18px);
  }
}
@media (max-width: 576px) {
  .top-service__works {
    width: 100%;
    padding-bottom: 48px;
  }
}
.top-service__works::before {
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-50%);
  content: "";
  font-size: 86px;
  color: #0266BE;
  font-family: "Noto Sans JP", "serif";
  text-shadow: 4px 4px 4px #fff, 4px 4px 4px #fff, 4px 4px 4px #0266BE, 4px 4px 4px #fff, 4px 0 4px #fff, 4px 0 4px #fff, 0 4px 4px #fff, 0 4px 4px #fff;
}
.top-service__works:nth-child(1)::before {
  content: "01.";
}
.top-service__works:nth-child(2)::before {
  content: "02.";
}
.top-service__works:nth-child(3)::before {
  content: "03.";
}
.top-service__works:nth-child(4)::before {
  content: "04.";
}
.top-service__works-ttl {
  position: relative;
  margin-bottom: 16px;
  font-size: 20px;
  color: #fff;
  position: relative;
  background: #0266BE;
  width: 90%;
  padding: 8px 16px 8px 16px;
}
.top-service__works-ttl::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  /* borderで三角形を作る */
  border-width: 24px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
}
.top-service__works__img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  padding: 0 16px;
}
.top-service__works__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.top-service__works-disc {
  padding: 0 16px;
}

.top-strengths {
  margin-top: 120px;
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: url("../img/section-bg.webp") center bottom/cover no-repeat;
}
@media (max-width: 576px) {
  .top-strengths {
    margin-top: 120px;
    padding: 64px 0 160px 0;
  }
}
.top-strengths__accent {
  font-size: 128px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0266BE;
  color:#f8b500;
  font-family: "Noto Sans JP", "serif";
  font-weight: 600;
}
@media (max-width: 1080px) {
  .top-strengths__accent {
    font-size: 86px;
  }
}
@media (max-width: 576px) {
  .top-strengths__accent {
    font-size: 48px;
  }
}
.top-strengths__head {
  font-size: 28px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 576px) {
  .top-strengths__head {
    font-size: 22px;
  }
}
.top-strengths__large {
  font-size: 48px;
  text-shadow: 4px 4px 4px #0266BE, -4px -4px 4px #0266BE, -4px 4px 4px #0266BE, 4px -4px 4px #0266BE, 4px 0 4px #0266BE, -4px 0 4px #0266BE, 0 4px 4px #0266BE, 0 -4px 4px #0266BE;
}
@media (max-width: 576px) {
  .top-strengths__large {
    font-size: 32px;
  }
}
.top-strengths__large-num {
  font-size: 86px;
}
@media (max-width: 576px) {
  .top-strengths__large-num {
    font-size: 64px;
  }
}
.top-strengths__text {
  margin-top: 40px;
  text-align: center;
  color: #fff;
  line-height: 2;
  font-size: 14px;
}
.top-strengths__contents {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (max-width: 1080px) {
  .top-strengths__contents {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .top-strengths__contents {
    flex-direction: column;
  }
}
.top-strengths__content {
  width: 33.3333333333%;
  background: #fff;
  padding: 20px;
  position: relative;
  z-index: auto;
}
@media (max-width: 768px) {
  .top-strengths__content {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .top-strengths__content {
    width: 90%;
    margin: 0 auto;
    padding: 32px 20px;
  }
}
.top-strengths__content::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  background: #0266BE;
  z-index: -1;
}
.top-strengths__content::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  background: #0266BE;
  z-index: -1;
}
.top-strengths__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0266BE;
  margin-bottom: 24px;
}

.top-works {
  padding: 120px 0;
}
@media (max-width: 576px) {
  .top-works {
    padding-top: 0px;
  }
}
.top-works__head {
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .top-works__head {
    flex-direction: column-reverse;
    font-size: 20px;
  }
}
.top-works__container {
  overflow-x: scroll;
  margin-bottom: 64px;
}
.top-works__container::-webkit-scrollbar {
  width: 8px;
}
.top-works__container::-webkit-scrollbar-thumb {
  background-color: #04A9EE; /* スクロールバーの色 */
  border-radius: 50px;
}
.top-works__container::-webkit-scrollbar-track {
  border-radius: 50px;
  background-color: lightgray; /* スクロールバーの背景 */
}
.top-works__contents {
  width: fit-content;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.top-works__content {
  width: 343px;
  height: auto;
}
.top-works__content img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.top-works__content-disc {
  padding: 13px 8px;
}
.top-works__content-date {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.top-works__cat {
  border: 1px solid #000;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 12px;
}

.top-recruit {
  background: #04A9EE;
}
.top-recruit__head {
  background: #0266BE;
  color: #fff;
  position: relative;
}
.top-recruit__head-accent {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-recruit__head-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.top-recruit__ttl {
  font-size: 48px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Serif JP", "serif";
}
@media (max-width: 1080px) {
  .top-recruit__ttl {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .top-recruit__ttl {
    font-size: 18px;
  }
}
.top-recruit__ttl-large {
  font-size: 128px;
}
@media (max-width: 1080px) {
  .top-recruit__ttl-large {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .top-recruit__ttl-large {
    font-size: 36px;
  }
}
.top-recruit__container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 64px 0;
}
@media (max-width: 1080px) {
  .top-recruit__container {
    padding: 64px 16px;
  }
}
@media (max-width: 576px) {
  .top-recruit__container {
    flex-direction: column;
    padding: 64px 0px;
  }
}
.top-recruit__img {
  width: 50%;
  height: auto;
}
@media (max-width: 1080px) {
  .top-recruit__img {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .top-recruit__img {
    width: 80%;
    margin: 0 0 0 auto;
  }
}
.top-recruit__img img {
  width: 100%;
  height: 100%;
}
.top-recruit__info {
  width: 50%;
}
@media (max-width: 1080px) {
  .top-recruit__info {
    width: 60%;
  }
}
@media (max-width: 576px) {
  .top-recruit__info {
    width: 100%;
    margin-top: 64px;
  }
}
.top-recruit__info-text {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
.top-recruit__info-disc {
  margin-top: 40px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 64px;
}
@media (max-width: 1080px) {
  .top-recruit__info-disc {
    font-size: 16px;
  }
}
.top-recruit__info-btn {
  position: relative;
  margin: 0;
}
@media (max-width: 576px) {
  .top-recruit__info-btn {
    margin: 0 auto;
  }
}
.top-recruit__info-btn::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 60px;
  object-fit: contain;
  background: url("../img/join us!.webp") center center/contain no-repeat;
  top: 0;
  left: -10%;
  z-index: 0;
}

.top-news {
  padding: 80px 0;
}
.top-news__contents {
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  gap: 20px;
}
@media (max-width: 576px) {
  .top-news__contents {
    flex-direction: column;
    gap: 64px;
  }
}
.top-news__content {
  width: 33.3333333333%;
  height: auto;
}
@media (max-width: 576px) {
  .top-news__content {
    width: 100%;
  }
}
.top-news__content-img {
  width: 100%;
  height: auto;
}
.top-news__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.top-news__content-disc {
  padding: 13px 8px;
}
.top-news__content-ttl {
  margin-top: 16px;
  font-size: 16px;
}

.service {
  position: relative;
  padding-top: 200px;
}
@media (max-width: 576px) {
  .service {
    padding-top: 80px;
    margin-top: 80px;
  }
}
.service__accent {
  position: absolute;
  content: "";
  top: -10px;
  left: -0.25em;
  font-size: 160px;
  color: #122A88;
  color: #f8b500;
  opacity: 0.2;
}
@media (max-width: 1080px) {
  .service__accent {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  .service__accent {
    font-size: 96px;
  }
}
@media (max-width: 576px) {
  .service__accent {
    font-size: 48px;
  }
}
.service__info {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 576px) {
  .service__info {
    flex-direction: column-reverse;
  }
}
.service__info-disc {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 60px 0 60px;
}
@media (max-width: 1080px) {
  .service__info-disc {
    padding: 40px 40px 0 40px;
  }
}
@media (max-width: 768px) {
  .service__info-disc {
    padding: 20px 20px 0 20px;
  }
}
@media (max-width: 576px) {
  .service__info-disc {
    width: 100%;
    padding-top: 40px;
  }
}
.service__info-head {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .service__info-head {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .service__info-head {
    font-size: 20px;
  }
}
.service__info-text {
  font-size: 20px;
  width: 75%;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 1080px) {
  .service__info-text {
    width: 100%;
    font-size: 16px;
  }
}
.service__info-img {
  width: 50%;
  height: auto;
}
@media (max-width: 768px) {
  .service__info-img {
    width: 100%;
  }
}
.service__info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__works-section {
  position: relative;
}
.service__works-section::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #04A9EE;
  z-index: -999;
}
@media (max-width: 1080px) {
  .service__works-section::before {
    height: 50vh;
  }
}
.service__works-container {
  margin-top: 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  justify-content: center;
}
@media (max-width: 1080px) {
  .service__works-container {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .service__works-container {
    margin-top: 100px;
  }
}
.service__works {
  width: calc(50% - 20px);
  border: 1px solid #B5B5B5;
  padding: 52px 0 54px 0;
  margin-bottom: 80px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
@media (max-width: 1080px) {
  .service__works {
    width: calc(50% - 40px);
  }
}
@media (max-width: 576px) {
  .service__works {
    width: 100%;
    padding-bottom: 28px;
  }
}
.service__works::before {
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-50%);
  content: "";
  font-size: 86px;
  color: #0266BE;
  font-family: "Noto Sans JP", "serif";
  text-shadow: 4px 4px 4px #fff, 4px 4px 4px #fff, 4px 4px 4px #0266BE, 4px 4px 4px #fff, 4px 0 4px #fff, 4px 0 4px #fff, 0 4px 4px #fff, 0 4px 4px #fff;
}
.service__works:nth-child(1)::before {
  content: "01.";
}
.service__works:nth-child(2)::before {
  content: "02.";
}
.service__works:nth-child(3)::before {
  content: "03.";
}
.service__works:nth-child(4)::before {
  content: "04.";
}
.service__works-ttl {
  position: relative;
  margin-bottom: 16px;
  font-size: 20px;
  color: #fff;
  position: relative;
  background: #0266BE;
  width: 90%;
  padding: 8px 16px 8px 16px;
}
.service__works-ttl::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  /* borderで三角形を作る */
  border-width: 24px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
}
.service__works__img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  padding: 0 40px;
}
@media (max-width: 576px) {
  .service__works__img {
    padding: 0 16px;
  }
}
.service__works__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.45/1;
}
.service__works-disc {
  padding: 0 40px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 576px) {
  .service__works-disc {
    padding: 0 16px;
  }
}

.business__section-head {
  width: 90%;
  font-size: 18px;
}
@media (max-width: 576px) {
  .business__section-head {
    font-size: 15px;
  }
}
.business__section-head span {
  font-size: 48px;
}
@media (max-width: 576px) {
  .business__section-head span {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
.business__content {
  width: 50%;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 1080px) {
  .business__content {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .business__content {
    width: 90%;
  }
}
.business__bg {
  background: #04A9EE;
  padding-top: 64px;
  padding-bottom: 120px;
}
.business__img {
  margin-top: 40px;
  width: 100%;
  height: auto;
}
.business__img img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.business__content-text {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .business__content-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .business__content-text {
    font-size: 15px;
  }
}

.m-posts {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .m-posts {
    padding-top: 80px;
  }
}
.m-posts__container {
  display: flex;
  flex-wrap: wrap;
}
.m-posts__post {
  width: 33.3333333333%;
  padding: 0 16px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .m-posts__post {
    width: 50%;
  }
}
.m-posts__post-thumb {
  width: 100%;
  height: auto;
}
.m-posts__post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.m-posts__post-disc {
  padding: 16px;
}
@media (max-width: 576px) {
  .m-posts__post-disc {
    padding: 4px;
    padding-top: 16px;
  }
}
.m-posts__cat {
  font-size: 12px;
  border: 1px solid #0266BE;
  border-radius: 50px;
  padding: 4px 8px;
  color: #0266BE;
}
@media (max-width: 576px) {
  .m-posts__cat {
    font-size: 10px;
    padding: 2px 4px;
  }
}
.m-posts__date-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.m-posts__date {
  color: #0266BE;
  margin-right: 8px;
}
@media (max-width: 576px) {
  .m-posts__date {
    font-size: 13px;
  }
}
.m-posts__post-ttl {
  margin-top: 16px;
}
@media (max-width: 576px) {
  .m-posts__post-ttl {
    font-size: 14px;
    margin-top: 8px;
  }
}

.company {
  position: relative;
  padding-top: 200px;
}
.company__accent {
  position: absolute;
  content: "";
  top: -10px;
  left: -0.25em;
  font-size: 160px;
  color: #122A88;
  color: #f8b500;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .company__accent {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .company__accent {
    font-size: 64px;
  }
}
.company__info {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 768px) {
  .company__info {
    flex-direction: column-reverse;
  }
}
.company__info-disc {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 60px 0 60px;
}
@media (max-width: 768px) {
  .company__info-disc {
    width: 100%;
    padding: 80px 16px 0 16px;
  }
}
.company__info-head {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.company__info-text {
  font-size: 20px;
  width: 75%;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 768px) {
  .company__info-text {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .company__info-text {
    width: 100%;
    font-size: 16px;
  }
}
.company__info-img {
  width: 50%;
  height: auto;
}
@media (max-width: 768px) {
  .company__info-img {
    width: 100%;
  }
}
.company__info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company__ceo-name {
  font-size: 18px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .company__ceo-name {
    font-size: 16px;
  }
}
.company__ceo-name--large {
  margin-left: 16px;
  font-size: 24px;
}
@media (max-width: 768px) {
  .company__ceo-name--large {
    font-size: 20px;
  }
}

.company-profile {
  padding-top: 120px;
}
.company-profile__table {
  padding-top: 64px;
}

.access {
  padding: 120px 0;
}
.access__map {
  margin-top: 64px;
  display: block;
  width: 100vw;
  height: 620px;
}
@media (max-width: 768px) {
  .access__map {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .access__map {
    height: 280px;
  }
}

.recruit {
  padding-top: 120px;
}
@media (max-width: 576px) {
  .recruit {
    padding-top: 80px;
  }
}
.recruit__head {
  color: #fff;
}
.recruit__message-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  background: url("../img/page-recruit-bg.png") center center/cover no-repeat;
}
@media (max-width: 576px) {
  .recruit__message-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.recruit__accent {
  position: absolute;
  font-size: 200px;
  top: 0;
  right: 0;
  color: #0266BE;
  line-height: 1;
}
@media (max-width: 1080px) {
  .recruit__accent {
    display: none;
  }
}
.recruit__message-wrap {
  width: fit-content;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding: 40px;
  position: relative;
}
.recruit__message-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  border-left: 8px solid #0266BE;
  border-top: 8px solid #0266BE;
}
@media (max-width: 576px) {
  .recruit__message-wrap::before {
    width: 64px;
    height: 64px;
  }
}
.recruit__message-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 88px;
  height: 88px;
  border-left: 8px solid #0266BE;
  border-top: 8px solid #0266BE;
  transform: rotate(180deg);
}
@media (max-width: 576px) {
  .recruit__message-wrap::after {
    width: 64px;
    height: 64px;
  }
}
.recruit__message-ttl {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 576px) {
  .recruit__message-ttl {
    font-size: 20px;
  }
}
.recruit__message-text {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  margin-top: 64px;
  line-height: 2;
  color: #fff;
  margin-bottom: 64px;
}
@media (max-width: 1080px) {
  .recruit__message-text {
    max-width: 600px;
  }
}

.recruit-info {
  padding-top: 120px;
}
.recruit-info__contents {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 150px 16px;
}
@media (max-width: 576px) {
  .recruit-info__contents {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
}
.recruit-info__content {
  width: 50%;
  height: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .recruit-info__content {
    padding-top: 40px;
    width: 100%;
  }
}
.recruit-info__content--left {
  display: flex;
  justify-content: end;
  padding-right: 64px;
}
@media (max-width: 576px) {
  .recruit-info__content--left {
    display: none;
  }
}
.recruit-info__img {
  position: absolute;
  width: 100%;
  height: auto;
}
.recruit-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-info__img01 {
  width: 446px;
  height: 530px;
}
@media (max-width: 1080px) {
  .recruit-info__img01 {
    width: 246px;
    height: 330px;
  }
}
.recruit-info__img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-info__img02 {
  width: 382px;
  height: 252px;
  top: 100%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .recruit-info__img02 {
    width: 232px;
    height: 152px;
    aspect-ratio: 16/9;
  }
}
.recruit-info__img03 {
  width: 260px;
  height: 172px;
  top: -50%;
  right: 0;
}
@media (max-width: 1080px) {
  .recruit-info__img03 {
    width: 200px;
    height: 112px;
  }
}
.recruit-info__head {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 576px) {
  .recruit-info__head {
    font-size: 22px;
  }
}
.recruit-info__head::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #04A9EE;
}
.recruit-info__text {
  font-size: 24px;
  margin-top: 40px;
  color: #122A88;
}
@media (max-width: 576px) {
  .recruit-info__text {
    font-size: 20px;
  }
}
.recruit-info__disc {
  margin-top: 32px;
  font-size: 20px;
}
@media (max-width: 576px) {
  .recruit-info__disc {
    font-size: 18px;
  }
}

.charm {
  padding: 200px 16px;
  margin-bottom: 120px;
  background: url("../img/page-bg-img.png") center top/cover no-repeat;
}
@media (max-width: 576px) {
  .charm {
    margin-bottom: 40px;
  }
}
.charm__content {
  width: fit-content;
  display: flex;
  justify-content: end;
  margin-top: 64px;
}
@media (max-width: 576px) {
  .charm__content {
    flex-direction: column-reverse;
  }
}
.charm__content:nth-child(2n) {
  flex-direction: row-reverse;
  justify-content: start;
}
@media (max-width: 576px) {
  .charm__content:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.charm__content-info {
  width: 40%;
  background: #fff;
  padding: 40px;
}
@media (max-width: 1080px) {
  .charm__content-info {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .charm__content-info {
    width: 55%;
  }
}
@media (max-width: 576px) {
  .charm__content-info {
    width: 100%;
    padding: 40px 20px;
  }
}
.charm__content-num {
  font-size: 120px;
  color: #122A88;
  color: #f8b500;
  opacity: 0.3;
}
@media (max-width: 1080px) {
  .charm__content-num {
    font-size: 80px;
  }
}
.charm__content-head {
  font-size: 32px;
}
@media (max-width: 1080px) {
  .charm__content-head {
    font-size: 24px;
  }
}
.charm__content-disc {
  margin-top: 32px;
  line-height: 2;
}
.charm__content-img {
  width: 50%;
  height: auto;
}
@media (max-width: 1080px) {
  .charm__content-img {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .charm__content-img {
    width: 45%;
  }
}
@media (max-width: 576px) {
  .charm__content-img {
    width: 100%;
  }
}
.charm__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #E0F0FF;
  padding: 80px 16px;
  position: relative;
  z-index: -10;
}
.portrait__head {
  text-align: center;
  font-size: 32px;
}
@media (max-width: 576px) {
  .portrait__head {
    font-size: 22px;
  }
}
.portrait__contents {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (max-width: 1080px) {
  .portrait__contents {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .portrait__contents {
    flex-direction: column;
  }
}
.portrait__content {
  width: 33.3333333333%;
  background: #fff;
  padding: 20px;
  position: relative;
  z-index: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .portrait__content {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .portrait__content {
    width: 90%;
    margin: 0 auto;
    padding: 32px 20px;
  }
}
.portrait__content::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  background: #0266BE;
  z-index: -1;
}
.portrait__content::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  background: #0266BE;
  z-index: -1;
}
.portrait__num {
  font-size: 40px;
  color: #0266BE;
}
.portrait__text {
  font-size: 20px;
  margin-top: 18px;
}
@media (max-width: 576px) {
  .portrait__text {
    font-size: 18px;
  }
}

.recruit-table {
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .recruit-table {
    padding-top: 80px;
  }
}
@media (max-width: 1080px) {
  .recruit-table .section-ttl {
    margin: 0 auto;
  }
}
.recruit-table__contents {
  width: fit-content;
  margin: 0 auto;
  margin-top: 100px;
}
@media (max-width: 1080px) {
  .recruit-table__contents {
    margin-top: 80px;
  }
}
@media (max-width: 576px) {
  .recruit-table__contents {
    margin-top: 40px;
  }
}
.recruit-table__btn {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1080px) {
  .recruit-table__btn {
    margin: 0 auto;
    margin-top: 80px;
  }
}
.recruit-table__btn::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 60px;
  object-fit: contain;
  background: url("../img/join us!.webp") center center/contain no-repeat;
  top: 0;
  left: -10%;
  z-index: 1;
}

.single-post p,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post a,
.single-post li,
.single-post img {
  margin-top: 24px;
  line-height: 1.75;
}
.single-post h2 {
  font-size: 24px;
}
.single-post h3 {
  font-size: 20px;
}
.single-post h4 {
  font-size: 18px;
}

.single-post {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .single-post {
    padding: 120px 0;
  }
}
@media (max-width: 576px) {
  .single-post {
    padding: 80px 0;
  }
}
.single-post__contents {
  width: 100%;
  max-width: 1112px;
  padding: 0 16px;
  margin: 0 auto;
}
.single-post__ttl {
  font-size: 32px;
  font-weight: 500;
  margin: 24px 0;
}
.single-post__thumb {
  width: 100%;
  height: auto;
}
.single-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.single-post__back-btn {
  margin-top: 100px;
}
.single-post__back-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.single-post__arrow-left {
  display: block;
  width: 32px;
  height: 32px;
}
.single-post__arrow-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 !important;
}

.contact-form__container {
  margin-top: 100px;
}

.contact-form__group {
  display: flex;
  margin-bottom: 56px;
}
@media (max-width: 576px) {
  .contact-form__group {
    flex-direction: column;
  }
}

.contact-form__label {
  width: 40%;
  margin-right: 40px;
  padding-top: 16px;
}
@media (max-width: 576px) {
  .contact-form__label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.contact-form__label-ttl {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .contact-form__label-ttl {
    justify-content: start;
    gap: 20px;
  }
}

.contact-form__required {
  background: #0266BE;
  color: #fff;
  padding: 2px 4px;
  font-size: 14px;
  font-weight: 400;
  height: fit-content;
}

.contact-form__any {
  height: fit-content;
  background: #EDEFF5;
  color: #7D7D7D;
  padding: 2px 4px;
  font-size: 14px;
  font-weight: 400;
}

.wpcf7-form-control-wrap {
  width: 55%;
}
@media (max-width: 576px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.contact-form__input {
  display: block;
  width: 100%;
  padding: 16px;
  background: #F6F8FB;
  font-size: 16px;
}

.contact-form__submit {
  background: #04A9EE;
  color: #fff;
  padding: 20px 0;
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  margin-top: 100px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 576px) {
  .contact-form__submit {
    margin-top: 64px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  text-align: center;
  color: #dc3232;
  font-weight: 300;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  color: #04A9EE;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}

.form-consent {
  text-align: center;
  margin: 0 auto;
}

.wpcf7-list-item {
  margin-left: 0;
}

.form-unit__policy-link {
  color: #04A9EE;
  border-bottom: 1px solid #04A9EE;
  line-height: 2;
  margin-left: 8px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border: 1px solid #151515;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3 ease;
  transform: translateY(-2px);
}

/* チェックマークの表示 */
.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background: #0266BE;
}

.policy {
  padding: 120px 0;
}
@media (max-width: 1080px) {
  .policy {
    padding: 60px 0 80px 0;
  }
}
@media (max-width: 576px) {
  .policy {
    padding: 40px 0 80px 0;
  }
}
.policy__container {
  width: 100%;
  max-width: 960px;
  padding: 0 16px;
  margin: 0 auto;
}
.policy__container h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .policy__container h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
.policy__container li {
  line-height: 1.5;
  padding-top: 10px;
}/*# sourceMappingURL=main.css.map */