@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
  -webkit-appearance: none;
}

:root {
  --black: #282828;
  --ff: "Noto Sans JP", sans-serif;
  --en: "Work Sans", sans-serif;
}

body {
  background: #fff;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  font-family: var(--ff);
  color: var(--black);
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}
body.fixed {
  position: fixed;
}

td {
  font-weight: 500;
}

.en {
  font-family: var(--en);
  font-weight: 600;
}

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

a {
  transition: color 0.4s ease;
  color: var(--black);
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    color: #1558d6;
  }
}

.sp_block {
  display: none;
}

.w1480 {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.w_ttl01 {
  display: flex;
  gap: 0 125px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.w_ttl01 .ttl01 {
  margin-bottom: 0;
}
.w_ttl01 p {
  padding-bottom: 5px;
  position: relative;
}
.w_ttl01 p:before {
  position: absolute;
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--black);
  transform: rotate(-55deg);
  left: -95px;
  bottom: 35px;
}

.ttl01 {
  margin-bottom: 75px;
}
.ttl01.white {
  color: #fff;
}
.ttl01 span {
  display: block;
  line-height: 1;
}
.ttl01 .ja {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
.ttl01 .en {
  font-size: 72px;
  font-weight: 600;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: var(--black);
  border-radius: 8px;
  width: 280px;
  height: auto;
  aspect-ratio: 28/6;
  margin: 0 auto;
  text-decoration: none;
  position: relative;
  transition: 0.4s ease;
}
.btn01.white {
  background: none;
  border: solid 1px #fff;
}
.btn01:before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  content: "";
  border-radius: 3px;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../img/arrow.svg) no-repeat 6px center/5px auto;
}
@media (any-hover: hover) {
  .btn01:hover {
    color: #fff;
    background: #727272;
  }
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延バリエーション */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

#header {
  z-index: 999;
  position: fixed;
  padding-left: 28px;
  padding-right: 40px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s ease;
}
#header.on {
  background: #fff;
  height: 60px;
}
#header.on #logo svg {
  width: 160px;
  fill: var(--black);
}
#header.on nav a {
  color: var(--black);
}
#header.on nav a:after {
  background: var(--black);
}
#header.on .contact_btn {
  height: 40px;
}
#header #logo svg {
  transition: 0.4s ease;
  width: 186px;
  height: auto;
  aspect-ratio: 186/52;
  fill: #fff;
}
#header a {
  text-decoration: none;
}
#header nav ul {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
#header nav a {
  color: #fff;
  position: relative;
}
#header nav a:after {
  position: absolute;
  transition: 0.4s ease;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  opacity: 0;
  background: #fff;
}
@media (any-hover: hover) {
  #header nav a:hover:after {
    opacity: 1;
  }
}
#header .contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 180px;
  height: 50px;
  color: #fff;
  font-size: 15px;
  background: var(--black);
  padding-bottom: 2px;
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  #header .contact_btn:hover {
    background: #1558d6;
  }
}

.float_copy {
  mix-blend-mode: difference;
  display: block;
  font-family: var(--en);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  z-index: 900;
  right: 20px;
  transform: rotate(90deg);
  transform-origin: right top;
  transition: 0.3s ease;
}
.float_copy.bottom {
  transition: 1s ease;
  mix-blend-mode: revert;
  color: var(--black);
  transform: revert;
  top: auto !important;
  right: calc((100% - 1480px) / 2);
}

footer nav {
  padding: 160px 0;
  border-bottom: solid 1px #707070;
}
footer nav ul {
  display: flex;
  justify-content: center;
  font-weight: bold;
  gap: 55px;
}
footer nav a {
  text-decoration: none;
}
footer .footer_bottom {
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_bottom .f_logo {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0 26px;
}
footer .footer_bottom .f_logo span {
  font-size: 20px;
  font-weight: bold;
}
footer .footer_bottom svg {
  max-width: 180px;
}

#mv {
  position: relative;
}
#mv .main_text {
  position: absolute;
  color: #fff;
  z-index: 3;
  top: 35%;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  left: 10.9375vw;
}
#mv .main_text h2 {
  font-size: 3.0208333333vw;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1.0416666667vw;
}
#mv .main_text .en {
  font-size: 1.09375vw;
  font-weight: 600;
  letter-spacing: 0;
}
#mv .news_box {
  z-index: 3;
  position: absolute;
  left: 32px;
  background: #fff;
  bottom: 100px;
  border-radius: 8px;
  min-width: 600px;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 20px;
}
#mv .news_box .en {
  font-weight: 600;
  opacity: 0.8;
  margin-right: 40px;
}
#mv .news_box .text {
  font-size: 15px;
  position: relative;
  top: -1px;
}
#mv .news_box .btn {
  transition: 0.4s ease;
  margin-left: auto;
  background: var(--black);
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  width: 145px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  position: relative;
}
#mv .news_box .btn:before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 9px;
  content: "";
  border-radius: 3px;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff url(../img/arrow.svg) no-repeat center/5px auto;
}
@media (any-hover: hover) {
  #mv .news_box .btn:hover {
    background: #1558d6;
  }
}

#mv_slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#mv_slider .swiper-slide {
  height: calc(100svh + 70px);
}
#mv_slider .mv-progress {
  position: absolute;
  right: 50px;
  bottom: 100px;
  height: 3px;
  background: #fff;
  z-index: 10;
  overflow: hidden;
  width: 235px;
}
#mv_slider .mv-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: #989898;
  will-change: transform;
}
#mv_slider .slide01 {
  background: url(../img/slide01.jpg) no-repeat center/cover;
}
#mv_slider .slide02 {
  background: url(../img/slide02.jpg) no-repeat center/cover;
}
#mv_slider .slide03 {
  background: url(../img/slide03.jpg) no-repeat center/cover;
}

#radius {
  z-index: 2;
  position: relative;
  padding-top: 30px;
}
#radius:before {
  position: absolute;
  left: 0;
  top: -70px;
  width: 100%;
  height: 100px;
  content: "";
  display: block;
  background: #fff;
  border-radius: 50px 50px 0 0;
}
#radius > div, #radius > section, #radius > article {
  position: relative;
  z-index: 3;
}

#top_about {
  position: relative;
  overflow: hidden;
  padding-bottom: 28.6315789474vw;
  background: #fff;
}
#top_about .ab {
  position: absolute;
}
#top_about .ab01 {
  width: 25.5789473684vw;
  left: -1.0526315789vw;
  top: 10vw;
}
#top_about .ab02 {
  width: 23.1578947368vw;
  right: -1.0526315789vw;
  top: 7.8947368421vw;
}
#top_about .ab03 {
  width: 28.6315789474vw;
  right: -1.0526315789vw;
  bottom: 8.4210526316vw;
}
#top_about .ab04 {
  width: 34.7368421053vw;
  left: -1.0526315789vw;
  bottom: 10.9473684211vw;
}
#top_about .ab05 {
  width: 28.9473684211vw;
  left: 39.2105263158vw;
  bottom: 6.4210526316vw;
}
#top_about .ttl01 {
  margin-bottom: 0;
}
#top_about .bg {
  width: 47.8947368421vw;
  aspect-ratio: 1/1;
  background: url(../img/bg_top_about.svg) no-repeat center/cover;
  margin: 0 auto;
}
#top_about .w_text {
  max-width: fit-content;
  margin: 0 auto;
  padding-top: 10vw;
}
#top_about .w_text p {
  font-size: 1.2631578947vw;
  font-weight: bold;
  margin-bottom: 1em;
}
#top_about .btn01 {
  margin-top: 4.4736842105vw;
}

#top_service {
  padding: 120px 0 100px;
  background: #F7F7F7;
}
#top_service ul {
  padding-left: 100px;
  padding-right: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 60px;
}
#top_service ul a {
  height: 100%;
  position: relative;
  text-decoration: none;
  color: var(--black);
  display: block;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  #top_service ul a:hover {
    box-shadow: none;
  }
}
#top_service ul a:before {
  position: absolute;
  right: 15px;
  bottom: 15px;
  content: "";
  border-radius: 3px;
  display: block;
  width: 22px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/arrow_w.svg) no-repeat 6px center/5px auto;
}
#top_service ul a:has(.red):before {
  background: #9E0C1A url(../img/arrow_w.svg) no-repeat 8px 5px/7px auto;
}
#top_service ul a:has(.blue):before {
  background: #10408A url(../img/arrow_w.svg) no-repeat 8px 5px/7px auto;
}
#top_service ul a:has(.pink):before {
  background: #CD1F5B url(../img/arrow_w.svg) no-repeat 8px 5px/7px auto;
}
#top_service .img {
  width: 100%;
  height: auto;
  aspect-ratio: 550/378;
  position: relative;
}
#top_service .img .logo {
  width: 172px;
  height: auto;
  aspect-ratio: 172/68;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 0 15px 0;
}
#top_service .img .logo img {
  width: 134px;
}
#top_service .img01 {
  background: url(../img/top_service01.jpg) no-repeat center/cover;
}
#top_service .img02 {
  background: url(../img/top_service02.jpg) no-repeat center/cover;
}
#top_service .img03 {
  background: url(../img/top_service03.jpg) no-repeat center/cover;
}
#top_service .w_text {
  padding: 30px 30px 45px;
}
#top_service .label {
  line-height: 1;
  font-size: 14px;
  color: #fff;
  max-width: fit-content;
  border-radius: 50px;
  font-weight: bold;
  padding: 6px 15px 8px;
}
#top_service h3 {
  font-size: 22px;
  font-weight: bold;
}
#top_service .red {
  background: #9E0C1A;
}
#top_service .blue {
  background: #10408A;
}
#top_service .pink {
  background: #CD1F5B;
}
#top_service .text {
  line-height: 1.75;
}

#top_reason {
  background: #fff;
  padding-top: 120px;
}
#top_reason ul {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  border-top: solid 1px var(--black);
  border-bottom: solid 1px var(--black);
}
#top_reason ul li {
  background: #fff;
  padding: 40px 30px 45px 180px;
}
#top_reason ul li:nth-child(1) {
  background: #fff url(../img/reason01.png) no-repeat 40px center/105px auto;
}
#top_reason ul li:nth-child(2) {
  background: #fff url(../img/reason02.png) no-repeat 40px center/105px auto;
}
#top_reason ul li:nth-child(3) {
  background: #fff url(../img/reason03.png) no-repeat 40px center/105px auto;
}
#top_reason ul li:nth-child(4) {
  background: #fff url(../img/reason04.png) no-repeat 40px center/105px auto;
}
#top_reason ul li:nth-child(5) {
  background: #fff url(../img/reason05.png) no-repeat 40px center/105px auto;
}
#top_reason ul li:nth-child(6) {
  background: #fff url(../img/reason06.png) no-repeat 40px center/105px auto;
}
#top_reason ul li h3 {
  line-height: 1.4;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
#top_reason ul li p {
  line-height: 1.75;
}

#cta_recruit {
  padding: 140px 0;
}
#cta_recruit .bg {
  position: relative;
  height: 450px;
  margin: 0 4%;
  background: url(../img/cta_recruit.jpg) no-repeat center/cover;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding-left: 8%;
}
#cta_recruit .ttl01 {
  margin-bottom: 30px;
}
#cta_recruit .text {
  color: #fff;
}
#cta_recruit .btn01 {
  position: absolute;
  right: 8%;
  bottom: 20%;
}

#cta_contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#cta_contact:after {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  background: url(../img/cta_contact.jpg) no-repeat center right/cover;
}
#cta_contact .black {
  background: var(--black);
  color: #fff;
  padding: 90px 0;
}
#cta_contact .w_text {
  max-width: 534px;
  margin: 0 auto;
}
#cta_contact .w_text p {
  margin-bottom: 50px;
}
#cta_contact h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#cta_contact .btn01 {
  margin-left: 0;
}

@media screen and (max-width: 1500px) {
  .w1480 {
    padding-left: 4%;
    padding-right: 4%;
  }
  #top_reason ul {
    grid-template-columns: 1fr 1fr;
  }
  #top_service ul {
    padding-left: 4%;
    padding-right: 4%;
    gap: 30px;
  }
  .float_copy.bottom {
    right: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  body {
    background: #fff;
    width: 100%;
    font-weight: 500;
    font-size: calc(16 / 1300 * 100vw);
    line-height: 2;
    font-family: var(--ff);
    color: var(--black);
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.05em;
  }
  body.fixed {
    position: fixed;
  }
  .en {
    font-family: var(--en);
    font-weight: 600;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a {
    transition: color 0.4s ease;
    color: var(--black);
  }
  /* 表示状態 */
  /* 遅延バリエーション */
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  a:hover {
    text-decoration: none;
    color: #1558d6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .sp_block {
    display: none;
  }
  .w1480 {
    max-width: calc(1480 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  .w_ttl01 {
    display: flex;
    gap: 0 calc(125 / 1300 * 100vw);
    align-items: flex-end;
    margin-bottom: calc(80 / 1300 * 100vw);
  }
  .w_ttl01 .ttl01 {
    margin-bottom: 0;
  }
  .w_ttl01 p {
    padding-bottom: calc(5 / 1300 * 100vw);
    position: relative;
  }
  .w_ttl01 p:before {
    position: absolute;
    content: "";
    display: block;
    width: calc(70 / 1300 * 100vw);
    height: calc(2 / 1300 * 100vw);
    background: var(--black);
    transform: rotate(-55deg);
    left: calc(-95 / 1300 * 100vw);
    bottom: calc(35 / 1300 * 100vw);
  }
  .ttl01 {
    margin-bottom: calc(75 / 1300 * 100vw);
  }
  .ttl01.white {
    color: #fff;
  }
  .ttl01 span {
    display: block;
    line-height: 1;
  }
  .ttl01 .ja {
    font-size: calc(18 / 1300 * 100vw);
    margin-bottom: calc(15 / 1300 * 100vw);
    font-weight: bold;
  }
  .ttl01 .en {
    font-size: calc(72 / 1300 * 100vw);
    font-weight: 600;
  }
  .btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(18 / 1300 * 100vw);
    font-weight: bold;
    color: #fff;
    background: var(--black);
    border-radius: calc(8 / 1300 * 100vw);
    width: calc(280 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 28/6;
    margin: 0 auto;
    text-decoration: none;
    position: relative;
    transition: 0.4s ease;
  }
  .btn01.white {
    background: none;
    border: solid 1px #fff;
  }
  .btn01:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(15 / 1300 * 100vw);
    content: "";
    border-radius: calc(3 / 1300 * 100vw);
    display: block;
    width: calc(16 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
    background: #fff url(../img/arrow.svg) no-repeat calc(6 / 1300 * 100vw) center/calc(5 / 1300 * 100vw) auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .btn01:hover {
    color: #fff;
    background: #727272;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .js-fadeUp {
    opacity: 0;
    transform: translateY(calc(40 / 1300 * 100vw));
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .js-fadeUp.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 {
    transition-delay: 0.2s;
  }
  .delay-2 {
    transition-delay: 0.4s;
  }
  .delay-3 {
    transition-delay: 0.6s;
  }
  #header {
    z-index: 999;
    position: fixed;
    padding-left: calc(28 / 1300 * 100vw);
    padding-right: calc(40 / 1300 * 100vw);
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100 / 1300 * 100vw);
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s ease;
  }
  #header.on {
    background: #fff;
    height: calc(60 / 1300 * 100vw);
  }
  #header.on #logo svg {
    width: calc(160 / 1300 * 100vw);
    fill: var(--black);
  }
  #header.on nav a {
    color: var(--black);
  }
  #header.on nav a:after {
    background: var(--black);
  }
  #header.on .contact_btn {
    height: calc(40 / 1300 * 100vw);
  }
  #header #logo svg {
    transition: 0.4s ease;
    width: calc(186 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 186/52;
    fill: #fff;
  }
  #header a {
    text-decoration: none;
  }
  #header nav ul {
    display: flex;
    justify-content: center;
    gap: 0 calc(50 / 1300 * 100vw);
  }
  #header nav a {
    color: #fff;
    position: relative;
  }
  #header nav a:after {
    position: absolute;
    transition: 0.4s ease;
    content: "";
    display: block;
    width: 100%;
    height: calc(1 / 1300 * 100vw);
    left: 0;
    bottom: calc(-5 / 1300 * 100vw);
    opacity: 0;
    background: #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #header nav a:hover:after {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #header .contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: calc(8 / 1300 * 100vw);
    width: calc(180 / 1300 * 100vw);
    height: calc(50 / 1300 * 100vw);
    color: #fff;
    font-size: calc(15 / 1300 * 100vw);
    background: var(--black);
    padding-bottom: calc(2 / 1300 * 100vw);
    transition: 0.4s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #header .contact_btn:hover {
    background: #1558d6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .float_copy {
    mix-blend-mode: difference;
    display: block;
    font-family: var(--en);
    color: #fff;
    font-weight: 600;
    font-size: calc(14 / 1300 * 100vw);
    position: absolute;
    z-index: 900;
    right: calc(20 / 1300 * 100vw);
    transform: rotate(90deg);
    transform-origin: right top;
    transition: 0.3s ease;
  }
  .float_copy.bottom {
    transition: 1s ease;
    mix-blend-mode: revert;
    color: var(--black);
    transform: revert;
    top: auto !important;
    right: calc((100% - (1480 / 1300 * 100vw)) / 2);
  }
  footer nav {
    padding: calc(160 / 1300 * 100vw) 0;
    border-bottom: solid 1px #707070;
  }
  footer nav ul {
    display: flex;
    justify-content: center;
    font-weight: bold;
    gap: calc(55 / 1300 * 100vw);
  }
  footer nav a {
    text-decoration: none;
  }
  footer .footer_bottom {
    padding: calc(70 / 1300 * 100vw) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer_bottom .f_logo {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 0 calc(26 / 1300 * 100vw);
  }
  footer .footer_bottom .f_logo span {
    font-size: calc(20 / 1300 * 100vw);
    font-weight: bold;
  }
  footer .footer_bottom svg {
    max-width: calc(180 / 1300 * 100vw);
  }
  #mv {
    position: relative;
  }
  #mv .main_text {
    position: absolute;
    color: #fff;
    z-index: 3;
    top: 35%;
    text-shadow: 0 0 calc(8 / 1300 * 100vw) rgba(0, 0, 0, 0.4);
    left: 10.9375vw;
  }
  #mv .main_text h2 {
    font-size: 3.0208333333vw;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 1.0416666667vw;
  }
  #mv .main_text .en {
    font-size: 1.09375vw;
    font-weight: 600;
    letter-spacing: 0;
  }
  #mv .news_box {
    z-index: 3;
    position: absolute;
    left: calc(32 / 1300 * 100vw);
    background: #fff;
    bottom: calc(100 / 1300 * 100vw);
    border-radius: calc(8 / 1300 * 100vw);
    min-width: calc(600 / 1300 * 100vw);
    display: flex;
    align-items: center;
    padding: calc(12 / 1300 * 100vw) calc(12 / 1300 * 100vw) calc(12 / 1300 * 100vw) calc(20 / 1300 * 100vw);
  }
  #mv .news_box .en {
    font-weight: 600;
    opacity: 0.8;
    margin-right: calc(40 / 1300 * 100vw);
  }
  #mv .news_box .text {
    font-size: calc(15 / 1300 * 100vw);
    position: relative;
    top: calc(-1 / 1300 * 100vw);
  }
  #mv .news_box .btn {
    transition: 0.4s ease;
    margin-left: auto;
    background: var(--black);
    text-decoration: none;
    color: #fff;
    font-size: calc(13 / 1300 * 100vw);
    width: calc(145 / 1300 * 100vw);
    height: calc(36 / 1300 * 100vw);
    border-radius: calc(6 / 1300 * 100vw);
    display: flex;
    align-items: center;
    padding-left: calc(12 / 1300 * 100vw);
    position: relative;
  }
  #mv .news_box .btn:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(9 / 1300 * 100vw);
    content: "";
    border-radius: calc(3 / 1300 * 100vw);
    display: block;
    width: calc(16 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
    background: #fff url(../img/arrow.svg) no-repeat center/calc(5 / 1300 * 100vw) auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #mv .news_box .btn:hover {
    background: #1558d6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #mv_slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  #mv_slider .swiper-slide {
    height: calc(100svh + (70 / 1300 * 100vw));
  }
  #mv_slider .mv-progress {
    position: absolute;
    right: calc(50 / 1300 * 100vw);
    bottom: calc(100 / 1300 * 100vw);
    height: calc(3 / 1300 * 100vw);
    background: #fff;
    z-index: 10;
    overflow: hidden;
    width: calc(235 / 1300 * 100vw);
  }
  #mv_slider .mv-progress__bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: #989898;
    will-change: transform;
  }
  #mv_slider .slide01 {
    background: url(../img/slide01.jpg) no-repeat center/cover;
  }
  #mv_slider .slide02 {
    background: url(../img/slide02.jpg) no-repeat center/cover;
  }
  #mv_slider .slide03 {
    background: url(../img/slide03.jpg) no-repeat center/cover;
  }
  #radius {
    z-index: 2;
    position: relative;
    padding-top: calc(30 / 1300 * 100vw);
  }
  #radius:before {
    position: absolute;
    left: 0;
    top: calc(-70 / 1300 * 100vw);
    width: 100%;
    height: calc(100 / 1300 * 100vw);
    content: "";
    display: block;
    background: #fff;
    border-radius: calc(50 / 1300 * 100vw) calc(50 / 1300 * 100vw) 0 0;
  }
  #radius > div, #radius > section {
    position: relative;
    z-index: 3;
  }
  #top_about {
    position: relative;
    overflow: hidden;
    padding-bottom: 28.6315789474vw;
    background: #fff;
  }
  #top_about .ab {
    position: absolute;
  }
  #top_about .ab01 {
    width: 25.5789473684vw;
    left: -1.0526315789vw;
    top: 10vw;
  }
  #top_about .ab02 {
    width: 23.1578947368vw;
    right: -1.0526315789vw;
    top: 7.8947368421vw;
  }
  #top_about .ab03 {
    width: 28.6315789474vw;
    right: -1.0526315789vw;
    bottom: 8.4210526316vw;
  }
  #top_about .ab04 {
    width: 34.7368421053vw;
    left: -1.0526315789vw;
    bottom: 10.9473684211vw;
  }
  #top_about .ab05 {
    width: 28.9473684211vw;
    left: 39.2105263158vw;
    bottom: 6.4210526316vw;
  }
  #top_about .ttl01 {
    margin-bottom: 0;
  }
  #top_about .bg {
    width: 47.8947368421vw;
    aspect-ratio: 1/1;
    background: url(../img/bg_top_about.svg) no-repeat center/cover;
    margin: 0 auto;
  }
  #top_about .w_text {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 10vw;
  }
  #top_about .w_text p {
    font-size: 1.2631578947vw;
    font-weight: bold;
    margin-bottom: 1em;
  }
  #top_about .btn01 {
    margin-top: 4.4736842105vw;
  }
  #top_service {
    padding: calc(120 / 1300 * 100vw) 0 calc(100 / 1300 * 100vw);
    background: #F7F7F7;
  }
  #top_service ul {
    padding-left: calc(100 / 1300 * 100vw);
    padding-right: calc(100 / 1300 * 100vw);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(42 / 1300 * 100vw);
    margin-bottom: calc(60 / 1300 * 100vw);
  }
  #top_service ul a {
    height: 100%;
    position: relative;
    text-decoration: none;
    color: var(--black);
    display: block;
    background: #fff;
    border-radius: calc(15 / 1300 * 100vw);
    overflow: hidden;
    box-shadow: 0 0 calc(15 / 1300 * 100vw) rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  #top_service ul a:hover {
    box-shadow: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #top_service ul a:before {
    position: absolute;
    right: calc(15 / 1300 * 100vw);
    bottom: calc(15 / 1300 * 100vw);
    content: "";
    border-radius: calc(3 / 1300 * 100vw);
    display: block;
    width: calc(22 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
    background: url(../img/arrow_w.svg) no-repeat calc(6 / 1300 * 100vw) center/calc(5 / 1300 * 100vw) auto;
  }
  #top_service ul a:has(.red):before {
    background: #9E0C1A url(../img/arrow_w.svg) no-repeat calc(8 / 1300 * 100vw) calc(5 / 1300 * 100vw)/calc(7 / 1300 * 100vw) auto;
  }
  #top_service ul a:has(.blue):before {
    background: #10408A url(../img/arrow_w.svg) no-repeat calc(8 / 1300 * 100vw) calc(5 / 1300 * 100vw)/calc(7 / 1300 * 100vw) auto;
  }
  #top_service ul a:has(.pink):before {
    background: #CD1F5B url(../img/arrow_w.svg) no-repeat calc(8 / 1300 * 100vw) calc(5 / 1300 * 100vw)/calc(7 / 1300 * 100vw) auto;
  }
  #top_service .img {
    width: 100%;
    height: auto;
    aspect-ratio: 550/378;
    position: relative;
  }
  #top_service .img .logo {
    width: calc(172 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 172/68;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 0 0 calc(15 / 1300 * 100vw) 0;
  }
  #top_service .img .logo img {
    width: calc(134 / 1300 * 100vw);
  }
  #top_service .img01 {
    background: url(../img/top_service01.jpg) no-repeat center/cover;
  }
  #top_service .img02 {
    background: url(../img/top_service02.jpg) no-repeat center/cover;
  }
  #top_service .img03 {
    background: url(../img/top_service03.jpg) no-repeat center/cover;
  }
  #top_service .w_text {
    padding: calc(30 / 1300 * 100vw) calc(30 / 1300 * 100vw) calc(45 / 1300 * 100vw);
  }
  #top_service .label {
    line-height: 1;
    font-size: calc(14 / 1300 * 100vw);
    color: #fff;
    max-width: fit-content;
    border-radius: calc(50 / 1300 * 100vw);
    font-weight: bold;
    padding: calc(6 / 1300 * 100vw) calc(15 / 1300 * 100vw) calc(8 / 1300 * 100vw);
  }
  #top_service h3 {
    font-size: calc(22 / 1300 * 100vw);
    font-weight: bold;
  }
  #top_service .red {
    background: #9E0C1A;
  }
  #top_service .blue {
    background: #10408A;
  }
  #top_service .pink {
    background: #CD1F5B;
  }
  #top_service .text {
    line-height: 1.75;
  }
  #top_reason {
    background: #fff;
    padding-top: calc(120 / 1300 * 100vw);
  }
  #top_reason ul {
    display: grid;
    gap: calc(1 / 1300 * 100vw);
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
  }
  #top_reason ul li {
    background: #fff;
    padding: calc(40 / 1300 * 100vw) calc(30 / 1300 * 100vw) calc(45 / 1300 * 100vw) calc(180 / 1300 * 100vw);
  }
  #top_reason ul li:nth-child(1) {
    background: #fff url(../img/reason01.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li:nth-child(2) {
    background: #fff url(../img/reason02.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li:nth-child(3) {
    background: #fff url(../img/reason03.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li:nth-child(4) {
    background: #fff url(../img/reason04.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li:nth-child(5) {
    background: #fff url(../img/reason05.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li:nth-child(6) {
    background: #fff url(../img/reason06.png) no-repeat calc(40 / 1300 * 100vw) center/calc(105 / 1300 * 100vw) auto;
  }
  #top_reason ul li h3 {
    line-height: 1.4;
    font-size: calc(22 / 1300 * 100vw);
    font-weight: bold;
    margin-bottom: calc(5 / 1300 * 100vw);
  }
  #top_reason ul li p {
    line-height: 1.75;
  }
  #cta_recruit {
    padding: calc(140 / 1300 * 100vw) 0;
  }
  #cta_recruit .bg {
    position: relative;
    height: calc(450 / 1300 * 100vw);
    margin: 0 4%;
    background: url(../img/cta_recruit.jpg) no-repeat center/cover;
    border-radius: calc(30 / 1300 * 100vw);
    display: flex;
    align-items: center;
    padding-left: 8%;
  }
  #cta_recruit .ttl01 {
    margin-bottom: calc(30 / 1300 * 100vw);
  }
  #cta_recruit .text {
    color: #fff;
  }
  #cta_recruit .btn01 {
    position: absolute;
    right: 8%;
    bottom: 20%;
  }
  #cta_contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #cta_contact:after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    background: url(../img/cta_contact.jpg) no-repeat center right/cover;
  }
  #cta_contact .black {
    background: var(--black);
    color: #fff;
    padding: calc(90 / 1300 * 100vw) 0;
  }
  #cta_contact .w_text {
    max-width: calc(534 / 1300 * 100vw);
    margin: 0 auto;
  }
  #cta_contact .w_text p {
    margin-bottom: calc(50 / 1300 * 100vw);
  }
  #cta_contact h2 {
    font-weight: bold;
    font-size: calc(32 / 1300 * 100vw);
    line-height: 1.5;
    margin-bottom: calc(20 / 1300 * 100vw);
  }
  #cta_contact .btn01 {
    margin-left: 0;
  }
}
@media screen and (max-width: 1500px) {
  .w1480 {
    padding-left: 4%;
    padding-right: 4%;
  }
  #top_reason ul {
    grid-template-columns: 1fr 1fr;
  }
  #top_service ul {
    padding-left: 4%;
    padding-right: 4%;
    gap: 2%;
  }
  .float_copy.bottom {
    right: 4%;
  }
}
@media screen and (min-width: 768px) {
  #hb_btn, #hb_menu {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
  body.fixed {
    position: fixed;
  }
  .sp_block {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .w1480 {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .w_ttl01 {
    display: grid;
    gap: 4vw 0;
    align-items: flex-end;
    margin-bottom: 10.6666666667vw;
  }
  .w_ttl01 .ttl01 {
    margin-bottom: 0;
  }
  .w_ttl01 p {
    padding-bottom: 1.3333333333vw;
    position: relative;
    font-size: 3.7333333333vw;
    line-height: 1.65;
  }
  .w_ttl01 p:before {
    content: none;
  }
  .ttl01 {
    margin-bottom: 10.6666666667vw;
  }
  .ttl01 .ja {
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
    font-weight: bold;
  }
  .ttl01 .en {
    font-size: 11.2vw;
    font-weight: 600;
  }
  .btn01 {
    font-size: 4vw;
    border-radius: 2.1333333333vw;
    width: 64vw;
    height: auto;
    aspect-ratio: 28/6;
    margin: 0 auto;
    text-decoration: none;
    position: relative;
    transition: 0.4s ease;
  }
  .btn01.white {
    background: none;
    border: solid 0.2666666667vw #fff;
  }
  .btn01:before {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 4vw;
    content: "";
    border-radius: 0.8vw;
    display: block;
    width: 4.2666666667vw;
    height: auto;
    aspect-ratio: 1/1;
    background: #fff url(../img/arrow.svg) no-repeat 1.6vw center/1.3333333333vw auto;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .btn01:hover {
    color: #fff;
    background: #727272;
  }
}
@media screen and (max-width: 767px) {
  #hb_btn {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    width: 16vw;
    height: 16vw;
    padding: 5.6vw 4.5333333333vw 0;
    cursor: pointer;
  }
  #hb_btn span {
    height: 0.5333333333vw;
    background: #fff;
    display: block;
    margin-bottom: 1.3333333333vw;
    transition: 0.4s ease;
  }
  #hb_btn.open span:nth-child(1) {
    transform: translate(0, 2.1333333333vw) rotate(45deg);
  }
  #hb_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #hb_btn.open span:nth-child(3) {
    transform: translate(0, -1.6vw) rotate(-45deg);
  }
  #hb_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    background: var(--black);
    width: 100%;
    height: 100%;
    padding-top: 26.6666666667vw;
  }
  #hb_menu ul {
    text-align: center;
    gap: 4vw;
    display: grid;
    font-size: 4.2666666667vw;
    font-weight: bold;
  }
  #hb_menu a {
    color: #fff;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  }
  #hb_menu .contact_btn {
    font-size: 4.2666666667vw;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 13.3333333333vw auto 4vw;
    border: solid 0.2666666667vw #fff;
    border-radius: 2.1333333333vw;
    width: 64vw;
    height: 13.3333333333vw;
    padding-bottom: 0.5333333333vw;
  }
  #hb_menu .contact_btn + p {
    text-align: center;
    font-size: 3.7333333333vw;
    opacity: 0.8;
  }
  #header {
    z-index: 999;
    position: fixed;
    padding-left: 4vw;
    padding-right: 10.6666666667vw;
    top: 0;
    left: 0;
    width: 100%;
    height: 16vw;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s ease;
  }
  #header.on {
    background: rgba(255, 255, 255, 0.8);
    height: 16vw;
  }
  #header.on + #hb_btn span {
    background: var(--black);
  }
  #header.on #logo svg {
    width: 37.3333333333vw;
  }
  #header #logo svg {
    width: 37.3333333333vw;
  }
  #header a {
    text-decoration: none;
  }
  #header nav {
    display: none;
  }
  #header .contact_btn {
    display: none;
  }
  #mv {
    position: relative;
  }
  #mv .main_text {
    position: absolute;
    color: #fff;
    z-index: 3;
    top: 35%;
    text-shadow: 0 0 2.1333333333vw rgba(0, 0, 0, 0.4);
    left: 8vw;
  }
  #mv .main_text h2 {
    font-size: 6.9333333333vw;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 5.3333333333vw;
  }
  #mv .main_text .en {
    font-size: 4.2666666667vw;
    line-height: 1.4;
  }
  #mv .news_box {
    z-index: 3;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(255, 255, 255, 0.8);
    bottom: 26.6666666667vw;
    border-radius: 2.1333333333vw;
    width: 93.3333333333vw;
    min-width: revert;
    padding: 4.8vw 3.2vw 3.2vw 5.3333333333vw;
    display: block;
  }
  #mv .news_box .en {
    display: block;
    margin-right: 0;
    line-height: 1;
  }
  #mv .news_box .text {
    font-size: 4vw;
    position: relative;
    top: -0.2666666667vw;
  }
  #mv .news_box .btn {
    display: none;
  }
  #mv_slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  #mv_slider .swiper-slide {
    height: calc(100svh + 18.6666666667vw);
  }
  #mv_slider .mv-progress {
    right: revert;
    bottom: 21.3333333333vw;
    left: 50%;
    transform: translate(-50%, 0);
    height: 0.8vw;
    background: #fff;
    z-index: 10;
    overflow: hidden;
    width: 93.3333333333vw;
  }
  #mv_slider .mv-progress__bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: #989898;
    will-change: transform;
  }
  #mv_slider .slide01 {
    background: url(../img/slide01_sp.jpg) no-repeat center/cover;
  }
  #mv_slider .slide02 {
    background: url(../img/slide02_sp.jpg) no-repeat center/cover;
  }
  #mv_slider .slide03 {
    background: url(../img/slide03_sp.jpg) no-repeat center/cover;
  }
  #radius {
    z-index: 2;
    position: relative;
    padding-top: 1.3333333333vw;
  }
  #radius:before {
    position: absolute;
    left: 0;
    top: -16vw;
    width: 100%;
    height: 26.6666666667vw;
    content: "";
    display: block;
    background: #fff;
    border-radius: 6.6666666667vw 6.6666666667vw 0 0;
  }
  #radius > div, #radius > section {
    position: relative;
    z-index: 3;
  }
  #top_about {
    padding-bottom: 66.6666666667vw;
    background: #fff;
  }
  #top_about .w1480 {
    padding-left: 0;
    padding-right: 0;
  }
  #top_about .ab {
    position: absolute;
  }
  #top_about .ab01 {
    width: 32vw;
    left: -2.6666666667vw;
    top: 20vw;
  }
  #top_about .ab02 {
    width: 29.3333333333vw;
    right: -1.3333333333vw;
    top: 0;
  }
  #top_about .ab03 {
    width: 40vw;
    right: 4vw;
    bottom: 16vw;
  }
  #top_about .ab04 {
    width: 53.3333333333vw;
    left: -2.6666666667vw;
    bottom: 24vw;
  }
  #top_about .ab05 {
    display: none;
    width: 28.9473684211vw;
    left: 39.2105263158vw;
    bottom: 6.4210526316vw;
  }
  #top_about .ttl01 {
    margin-left: 8vw;
    margin-bottom: 32vw;
  }
  #top_about .bg {
    width: 100%;
    aspect-ratio: 1/1;
    background: url(../img/bg_top_about.svg) no-repeat center/93.3333333333vw auto;
    margin: 0 auto;
    padding-left: 8vw;
    padding-right: 8vw;
  }
  #top_about .w_text {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }
  #top_about .w_text p {
    font-size: 4vw;
    line-height: 2.5;
    margin-bottom: 1.5em;
  }
  #top_about .w_text p span {
    letter-spacing: 0;
  }
  #top_about .btn01 {
    margin-top: 13.3333333333vw;
  }
  #top_service {
    padding: 18.6666666667vw 0 18.6666666667vw;
    background: #F7F7F7;
  }
  #top_service ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8vw;
    margin-bottom: 10.6666666667vw;
    padding: 0 5.3333333333vw;
  }
  #top_service ul a {
    height: 100%;
    position: relative;
    text-decoration: none;
    color: var(--black);
    display: block;
    background: #fff;
    border-radius: 4vw;
    overflow: hidden;
    box-shadow: 0 0 4vw rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #top_service ul a:hover {
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  #top_service ul a:before {
    position: absolute;
    right: 4vw;
    bottom: 4vw;
    content: "";
    border-radius: 0.8vw;
    display: block;
    width: 5.8666666667vw;
    height: auto;
    aspect-ratio: 1/1;
    background: url(../img/arrow_w.svg) no-repeat 1.6vw center/1.3333333333vw auto;
  }
  #top_service ul a:has(.red):before {
    background: #9E0C1A url(../img/arrow_w.svg) no-repeat 2.1333333333vw 1.3333333333vw/1.8666666667vw auto;
  }
  #top_service ul a:has(.blue):before {
    background: #10408A url(../img/arrow_w.svg) no-repeat 2.1333333333vw 1.3333333333vw/1.8666666667vw auto;
  }
  #top_service ul a:has(.pink):before {
    background: #CD1F5B url(../img/arrow_w.svg) no-repeat 2.1333333333vw 1.3333333333vw/1.8666666667vw auto;
  }
  #top_service .img {
    width: 100%;
    height: auto;
    aspect-ratio: 550/378;
    position: relative;
  }
  #top_service .img .logo {
    width: 45.8666666667vw;
    height: auto;
    aspect-ratio: 172/68;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 0 0 4vw 0;
  }
  #top_service .img .logo img {
    width: 35.7333333333vw;
  }
  #top_service .img01 {
    background: url(../img/top_service01.jpg) no-repeat center/cover;
  }
  #top_service .img02 {
    background: url(../img/top_service02.jpg) no-repeat center/cover;
  }
  #top_service .img03 {
    background: url(../img/top_service03.jpg) no-repeat center/cover;
  }
  #top_service .w_text {
    padding: 8vw 5.3333333333vw 12vw;
  }
  #top_service .label {
    line-height: 1;
    font-size: 3.7333333333vw;
    color: #fff;
    max-width: fit-content;
    border-radius: 13.3333333333vw;
    font-weight: bold;
    padding: 1.6vw 4vw 2.1333333333vw;
  }
  #top_service h3 {
    font-size: 5.8666666667vw;
    font-weight: bold;
    line-height: 1.4;
    margin: 1.3333333333vw 0 2.6666666667vw;
  }
  #top_service .red {
    background: #9E0C1A;
  }
  #top_service .blue {
    background: #10408A;
  }
  #top_service .pink {
    background: #CD1F5B;
  }
  #top_service .text {
    line-height: 1.75;
  }
  #top_reason {
    background: #fff;
    padding-top: 18.6666666667vw;
  }
  #top_reason ul {
    grid-template-columns: 1fr;
  }
  #top_reason ul li {
    background: #fff;
    padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 32vw;
  }
  #top_reason ul li:nth-child(1) {
    background: #fff url(../img/reason01.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li:nth-child(2) {
    background: #fff url(../img/reason02.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li:nth-child(3) {
    background: #fff url(../img/reason03.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li:nth-child(4) {
    background: #fff url(../img/reason04.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li:nth-child(5) {
    background: #fff url(../img/reason05.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li:nth-child(6) {
    background: #fff url(../img/reason06.png) no-repeat 5.3333333333vw 5.3333333333vw/21.3333333333vw auto;
  }
  #top_reason ul li h3 {
    line-height: 1.4;
    font-size: 4.5333333333vw;
    font-weight: bold;
    margin-bottom: 1.3333333333vw;
  }
  #top_reason ul li p {
    line-height: 1.75;
    font-size: 3.7333333333vw;
  }
  #cta_recruit {
    padding: 21.3333333333vw 0;
  }
  #cta_recruit .bg {
    position: relative;
    padding: 16vw 5.3333333333vw;
    height: auto;
    margin: 0 5.3333333333vw;
    background: url(../img/cta_recruit_sp.jpg) no-repeat center/cover;
    border-radius: 4vw;
    display: block;
  }
  #cta_recruit .ttl01 {
    margin-bottom: 8vw;
  }
  #cta_recruit .text {
    color: #fff;
    margin-bottom: 10.6666666667vw;
    line-height: 1.65;
  }
  #cta_recruit .btn01 {
    position: relative;
    right: auto;
    bottom: auto;
  }
  #cta_contact {
    display: grid;
    grid-template-columns: 1fr;
  }
  #cta_contact:before {
    content: "";
    display: block;
    width: 100%;
    height: 53.3333333333vw;
    background: url(../img/cta_contact.jpg) no-repeat center right/cover;
  }
  #cta_contact:after {
    content: none;
  }
  #cta_contact .black {
    background: var(--black);
    color: #fff;
    padding: 16vw 0;
  }
  #cta_contact .w_text {
    max-width: 142.4vw;
    padding: 0 8vw;
    margin: 0 auto;
  }
  #cta_contact .w_text p {
    margin-bottom: 9.3333333333vw;
    line-height: 1.65;
  }
  #cta_contact h2 {
    font-weight: bold;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    margin-bottom: 5.3333333333vw;
  }
  #cta_contact .btn01 {
    margin-left: auto;
  }
  .float_copy {
    mix-blend-mode: difference;
    display: block;
    font-family: var(--en);
    color: #fff;
    font-weight: 600;
    font-size: 3.2vw;
    position: absolute;
    z-index: 900;
    right: 0.5333333333vw;
    transform: rotate(90deg);
    transform-origin: right top;
    transition: 0.2s ease;
  }
  .float_copy.bottom {
    transition: 1s ease;
    mix-blend-mode: revert;
    color: var(--black);
    transform: revert;
    top: auto !important;
    right: 8vw;
  }
  footer nav {
    padding: 13.3333333333vw 0;
    border-bottom: solid 0.2666666667vw #707070;
  }
  footer nav ul {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
    gap: 5.3333333333vw 2.6666666667vw;
    grid-template-columns: repeat(2, 1fr);
  }
  footer nav a {
    text-decoration: none;
  }
  footer .footer_bottom {
    padding: 8vw 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer_bottom .f_logo {
    width: 100%;
    display: block;
    align-items: center;
    gap: 0 6.9333333333vw;
  }
  footer .footer_bottom .f_logo span {
    display: block;
    font-size: 3.4666666667vw;
    font-weight: bold;
    line-height: 1;
  }
  footer .footer_bottom svg {
    max-width: 32vw;
  }
}
.w1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.w1200:has(.company_nav) {
  position: relative;
}

#under_mv {
  height: 620px;
  background: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  line-height: 1;
  padding-top: 240px;
}
#under_mv.company {
  background-image: url(../img/mv_company.jpg);
}
#under_mv.recruit {
  background-image: url(../img/mv_recruit.jpg);
}
#under_mv.information {
  background-image: url(../img/mv_information.jpg);
}
#under_mv.contact {
  background-image: url(../img/mv_contact.jpg);
}
#under_mv.service {
  background-image: url(../img/mv_service.jpg);
}
#under_mv a {
  color: #fff;
}
#under_mv .w_text {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 150px;
}
#under_mv .w_text .ttl {
  font-size: 58px;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 20px;
}
#under_mv .w_text .en {
  font-size: 22px;
  padding-left: 3px;
  letter-spacing: 0.05em;
}

#bread {
  max-width: fit-content;
  display: flex;
  margin-left: auto;
  font-size: 15px;
  gap: 0 50px;
}
#bread li {
  position: relative;
}
#bread li:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: auto;
  aspect-ratio: 5/8;
  background: url(../img/arrow_w.svg) no-repeat left top/100% auto;
  top: 50%;
  transform: translate(0, -50%);
  right: -28px;
}

#philosophy {
  margin-bottom: 180px;
}
#philosophy .text01 {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
#philosophy .box {
  writing-mode: vertical-rl;
  font-family: "kokuryu", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: solid 2px var(--black);
  padding: 50px 60px;
  margin: 0 auto;
}
#philosophy .box h3 {
  font-size: 60px;
  letter-spacing: 0.5em;
  margin-left: 30px;
  position: relative;
  top: -10px;
}
#philosophy .box p {
  font-size: 40px;
  line-height: 2.5;
}

#message {
  padding-bottom: 30.7291666667vw;
}
#message .bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#message .w_text {
  width: 580px;
}
#message .w_text h3 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
#message .w_text p {
  margin-bottom: 1.5em;
}
#message .w_text p:last-child {
  margin-bottom: 0;
}
#message .img {
  position: relative;
  width: 520px;
  height: auto;
  aspect-ratio: 52/56;
  background: url(../img/message.jpg) no-repeat center/cover;
}
#message .img .box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 190px;
  height: 60px;
  line-height: 1;
  padding-top: 12px;
  padding-left: 15px;
  font-weight: bold;
}
#message .img .c_name {
  font-size: 13px;
  margin-bottom: 5px;
}
#message .img .name span:first-child {
  font-size: 13px;
  margin-right: 1em;
}

.company_nav {
  position: absolute;
  right: 0;
  top: 0;
}
.company_nav ul {
  display: flex;
  gap: 0 60px;
  line-height: 1;
}
.company_nav a {
  text-decoration: none;
}
.company_nav .on {
  padding-left: 28px;
  background: url(../img/ic_on.svg) no-repeat left center/16px auto;
}
.company_nav .on span {
  opacity: 0.5;
}
.company_nav .down {
  padding-left: 25px;
  background: url(../img/ic_down.svg) no-repeat left center/10px auto;
}
@media (any-hover: hover) {
  .company_nav .down {
    transition: opacity 0.4s ease;
  }
  .company_nav .down:hover {
    color: var(--black);
    opacity: 0.5;
  }
}
.company_nav .up {
  padding-left: 25px;
  background: url(../img/ic_up.svg) no-repeat left center/10px auto;
}
@media (any-hover: hover) {
  .company_nav .up {
    transition: opacity 0.4s ease;
  }
  .company_nav .up:hover {
    color: var(--black);
    opacity: 0.5;
  }
}

#w_outline {
  background: #F7F7F7;
  padding-top: 29.6875vw;
  padding-bottom: 120px;
  position: relative;
}
#w_outline:before {
  display: block;
  position: absolute;
  content: "";
  width: 81.25vw;
  aspect-ratio: 1560/840;
  background: url(../img/outline.jpg) no-repeat center/cover;
  border-radius: 0 2.6041666667vw 2.6041666667vw 0;
  left: 0;
  top: -21.875vw;
}
#w_outline .box01 {
  background: #fff;
  padding: 40px 80px;
  margin-bottom: 50px;
}
#w_outline .box01 table {
  width: 100%;
}
#w_outline .box01 table tr {
  border-bottom: solid 1px #CDCDCD;
}
#w_outline .box01 table tr:last-child {
  border-bottom: none;
}
#w_outline .box01 th {
  font-weight: bold;
  vertical-align: top;
}
#w_outline .box01 th, #w_outline .box01 td {
  padding: 35px;
}
#w_outline .box01 ul {
  display: grid;
  line-height: 1.6;
  gap: 25px 0;
}
#w_outline .box01 ul span {
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 5px;
}
#w_outline .box02 {
  background: #fff;
  padding: 50px 70px;
  text-align: center;
}

#w_history {
  padding-top: 120px;
  padding-bottom: 50px;
}
#w_history .history_list {
  position: relative;
  display: grid;
  gap: 60px 0;
}
#w_history .history_list:before {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 35px);
  background: var(--black);
  left: 230px;
  top: 20px;
}
#w_history .history_list li {
  display: flex;
  gap: 0 130px;
  align-items: center;
}
#w_history .history_list .en {
  line-height: 1;
  font-size: 40px;
  opacity: 0.5;
  position: relative;
  width: 165px;
}
#w_history .history_list .text {
  position: relative;
  line-height: 1.6;
  font-size: 18px;
}
#w_history .history_list .text:before {
  position: absolute;
  top: 10px;
  left: -71px;
  content: "";
  display: block;
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--black);
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .w1200 {
    max-width: calc(1200 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  .w1200:has(.company_nav) {
    position: relative;
  }
  #under_mv {
    height: calc(620 / 1300 * 100vw);
    background: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    line-height: 1;
    padding-top: calc(240 / 1300 * 100vw);
  }
  #under_mv.company {
    background-image: url(../img/mv_company.jpg);
  }
  #under_mv.recruit {
    background-image: url(../img/mv_recruit.jpg);
  }
  #under_mv.information {
    background-image: url(../img/mv_information.jpg);
  }
  #under_mv.contact {
    background-image: url(../img/mv_contact.jpg);
  }
  #under_mv.service {
    background-image: url(../img/mv_service.jpg);
  }
  #under_mv a {
    color: #fff;
  }
  #under_mv .w_text {
    text-shadow: 0 0 calc(8 / 1300 * 100vw) rgba(0, 0, 0, 0.4);
    margin-bottom: calc(150 / 1300 * 100vw);
  }
  #under_mv .w_text .ttl {
    font-size: calc(50 / 1300 * 100vw);
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: calc(20 / 1300 * 100vw);
  }
  #under_mv .w_text .en {
    font-size: calc(22 / 1300 * 100vw);
    padding-left: calc(3 / 1300 * 100vw);
    letter-spacing: 0.05em;
  }
  #bread {
    max-width: fit-content;
    display: flex;
    margin-left: auto;
    font-size: calc(15 / 1300 * 100vw);
    gap: 0 calc(50 / 1300 * 100vw);
  }
  #bread li {
    position: relative;
  }
  #bread li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: calc(5 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 5/8;
    background: url(../img/arrow_w.svg) no-repeat left top/100% auto;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(-28 / 1300 * 100vw);
  }
  #philosophy {
    margin-bottom: calc(180 / 1300 * 100vw);
  }
  #philosophy .text01 {
    font-size: calc(32 / 1300 * 100vw);
    margin-bottom: calc(50 / 1300 * 100vw);
  }
  #philosophy .box {
    border: solid 2px var(--black);
    padding: calc(50 / 1300 * 100vw) calc(60 / 1300 * 100vw);
  }
  #philosophy .box h3 {
    font-size: calc(60 / 1300 * 100vw);
    letter-spacing: 0.5em;
    margin-left: calc(30 / 1300 * 100vw);
    top: calc(-10 / 1300 * 100vw);
  }
  #philosophy .box p {
    font-size: calc(40 / 1300 * 100vw);
  }
  #message {
    padding-bottom: 30.7291666667vw;
  }
  #message .bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #message .w_text {
    width: calc(580 / 1300 * 100vw);
  }
  #message .w_text h3 {
    font-size: calc(30 / 1300 * 100vw);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: calc(20 / 1300 * 100vw);
  }
  #message .w_text p {
    margin-bottom: 1.5em;
  }
  #message .w_text p:last-child {
    margin-bottom: 0;
  }
  #message .img {
    position: relative;
    width: calc(520 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 52/56;
    background: url(../img/message.jpg) no-repeat center/cover;
  }
  #message .img .box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: calc(190 / 1300 * 100vw);
    height: calc(60 / 1300 * 100vw);
    line-height: 1;
    padding-top: calc(12 / 1300 * 100vw);
    padding-left: calc(15 / 1300 * 100vw);
    font-weight: bold;
  }
  #message .img .c_name {
    font-size: calc(13 / 1300 * 100vw);
    margin-bottom: calc(5 / 1300 * 100vw);
  }
  #message .img .name span:first-child {
    font-size: calc(13 / 1300 * 100vw);
    margin-right: 1em;
  }
  .company_nav {
    position: absolute;
    right: 0;
    top: 0;
  }
  .company_nav ul {
    display: flex;
    gap: 0 calc(60 / 1300 * 100vw);
    line-height: 1;
  }
  .company_nav a {
    text-decoration: none;
  }
  .company_nav .on {
    padding-left: calc(28 / 1300 * 100vw);
    background: url(../img/ic_on.svg) no-repeat left center/calc(16 / 1300 * 100vw) auto;
  }
  .company_nav .on span {
    opacity: 0.5;
  }
  .company_nav .down {
    padding-left: calc(25 / 1300 * 100vw);
    background: url(../img/ic_down.svg) no-repeat left center/calc(10 / 1300 * 100vw) auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .company_nav .down {
    transition: opacity 0.4s ease;
  }
  .company_nav .down:hover {
    color: var(--black);
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .company_nav .up {
    padding-left: calc(25 / 1300 * 100vw);
    background: url(../img/ic_up.svg) no-repeat left center/calc(10 / 1300 * 100vw) auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .company_nav .up {
    transition: opacity 0.4s ease;
  }
  .company_nav .up:hover {
    color: var(--black);
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #w_outline {
    background: #F7F7F7;
    padding-top: 29.6875vw;
    padding-bottom: calc(120 / 1300 * 100vw);
    position: relative;
  }
  #w_outline:before {
    display: block;
    position: absolute;
    content: "";
    width: 81.25vw;
    aspect-ratio: 1560/840;
    background: url(../img/outline.jpg) no-repeat center/cover;
    border-radius: 0 2.6041666667vw 2.6041666667vw 0;
    left: 0;
    top: -21.875vw;
  }
  #w_outline .box01 {
    background: #fff;
    padding: calc(40 / 1300 * 100vw) calc(80 / 1300 * 100vw);
    margin-bottom: calc(50 / 1300 * 100vw);
  }
  #w_outline .box01 table {
    width: 100%;
  }
  #w_outline .box01 table tr {
    border-bottom: solid 1px #CDCDCD;
  }
  #w_outline .box01 table tr:last-child {
    border-bottom: none;
  }
  #w_outline .box01 th {
    font-weight: bold;
  }
  #w_outline .box01 th, #w_outline .box01 td {
    padding: calc(35 / 1300 * 100vw);
  }
  #w_outline .box01 ul {
    gap: calc(25 / 1300 * 100vw) 0;
  }
  #w_outline .box01 ul span {
    font-size: calc(15 / 1300 * 100vw);
    margin-bottom: calc(5 / 1300 * 100vw);
  }
  #w_outline .box02 {
    background: #fff;
    padding: calc(50 / 1300 * 100vw) calc(70 / 1300 * 100vw);
    text-align: center;
  }
  #w_history {
    padding-top: calc(120 / 1300 * 100vw);
    padding-bottom: calc(50 / 1300 * 100vw);
  }
  #w_history .history_list {
    position: relative;
    display: grid;
    gap: calc(60 / 1300 * 100vw) 0;
  }
  #w_history .history_list:before {
    position: absolute;
    content: "";
    display: block;
    width: calc(2 / 1300 * 100vw);
    height: calc(100% - calc(35 / 1300 * 100vw));
    background: var(--black);
    left: calc(230 / 1300 * 100vw);
    top: calc(20 / 1300 * 100vw);
  }
  #w_history .history_list li {
    display: flex;
    gap: 0 calc(130 / 1300 * 100vw);
    align-items: center;
  }
  #w_history .history_list .en {
    line-height: 1;
    font-size: calc(40 / 1300 * 100vw);
    opacity: 0.5;
    position: relative;
    width: calc(165 / 1300 * 100vw);
  }
  #w_history .history_list .text {
    position: relative;
    line-height: 1.6;
    font-size: calc(18 / 1300 * 100vw);
  }
  #w_history .history_list .text:before {
    position: absolute;
    top: calc(10 / 1300 * 100vw);
    left: calc(-71 / 1300 * 100vw);
    content: "";
    display: block;
    width: calc(14 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--black);
  }
}
@media screen and (max-width: 767px) {
  .w1200 {
    padding-left: calc(30 / 375 * 100vw);
    padding-right: calc(30 / 375 * 100vw);
  }
  .w1200:has(.company_nav) {
    position: relative;
    padding-top: calc(70 / 375 * 100vw);
  }
  #under_mv {
    height: calc(400 / 375 * 100vw);
    background: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    line-height: 1;
    padding-top: calc(150 / 375 * 100vw);
  }
  #under_mv.company {
    background-image: url(../img/mv_company.jpg);
  }
  #under_mv.recruit {
    background-image: url(../img/mv_recruit.jpg);
  }
  #under_mv.information {
    background-image: url(../img/mv_information.jpg);
  }
  #under_mv.contact {
    background-image: url(../img/mv_contact.jpg);
  }
  #under_mv.service {
    background-image: url(../img/mv_service.jpg);
  }
  #under_mv a {
    color: #fff;
  }
  #under_mv .w_text {
    text-shadow: 0 0 calc(8 / 375 * 100vw) rgba(0, 0, 0, 0.4);
    margin-bottom: calc(100 / 375 * 100vw);
  }
  #under_mv .w_text .ttl {
    font-size: calc(30 / 375 * 100vw);
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  #under_mv .w_text .en {
    font-size: calc(14 / 375 * 100vw);
    padding-left: calc(3 / 375 * 100vw);
    letter-spacing: 0.05em;
  }
  #bread {
    max-width: fit-content;
    display: flex;
    margin-left: auto;
    font-size: calc(13 / 375 * 100vw);
    gap: 0 calc(30 / 375 * 100vw);
    margin-right: calc(10 / 375 * 100vw);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: calc(5 / 375 * 100vw);
  }
  #bread li {
    position: relative;
  }
  #bread li:last-child {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  #bread li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: calc(5 / 375 * 100vw);
    height: auto;
    aspect-ratio: 5/8;
    background: url(../img/arrow_w.svg) no-repeat left top/100% auto;
    top: 50%;
    transform: translate(0, -50%);
    right: calc(-18 / 375 * 100vw);
  }
  #philosophy {
    margin-bottom: calc(80 / 375 * 100vw);
  }
  #philosophy .text01 {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(35 / 375 * 100vw);
    line-height: 2;
    letter-spacing: 0.1em;
  }
  #philosophy .box {
    padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #philosophy .box h3 {
    font-size: calc(26 / 375 * 100vw);
    margin-left: calc(10 / 375 * 100vw);
    top: 0;
  }
  #philosophy .box p {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.4;
  }
  #message {
    padding-bottom: calc(160 / 375 * 100vw);
  }
  #message .bg {
    display: grid;
    gap: calc(20 / 375 * 100vw);
  }
  #message .w_text {
    width: 100%;
  }
  #message .w_text h3 {
    font-size: calc(22 / 375 * 100vw);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: calc(20 / 375 * 100vw);
  }
  #message .w_text p {
    margin-bottom: 1.5em;
    line-height: 1.65;
  }
  #message .w_text p:last-child {
    margin-bottom: 0;
  }
  #message .img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 52/56;
    background: url(../img/message.jpg) no-repeat center/cover;
  }
  #message .img .box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: calc(190 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    line-height: 1;
    padding-top: calc(12 / 375 * 100vw);
    padding-left: calc(15 / 375 * 100vw);
    font-weight: bold;
  }
  #message .img .c_name {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  #message .img .name span:first-child {
    font-size: calc(13 / 375 * 100vw);
    margin-right: 1em;
  }
  .company_nav {
    position: absolute;
    right: revert;
    top: 0;
    font-size: calc(14 / 375 * 100vw);
  }
  .company_nav ul {
    display: flex;
    gap: 0 calc(30 / 375 * 100vw);
    line-height: 1;
  }
  .company_nav a {
    text-decoration: none;
  }
  .company_nav .on {
    padding-left: calc(24 / 375 * 100vw);
    background: url(../img/ic_on.svg) no-repeat left center/calc(14 / 375 * 100vw) auto;
  }
  .company_nav .on span {
    opacity: 0.5;
  }
  .company_nav .down {
    padding-left: calc(20 / 375 * 100vw);
    background: url(../img/ic_down.svg) no-repeat left center/calc(8 / 375 * 100vw) auto;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .company_nav .down {
    transition: opacity 0.4s ease;
  }
  .company_nav .down:hover {
    color: var(--black);
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .company_nav .up {
    padding-left: calc(20 / 375 * 100vw);
    background: url(../img/ic_up.svg) no-repeat left center/calc(8 / 375 * 100vw) auto;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .company_nav .up {
    transition: opacity 0.4s ease;
  }
  .company_nav .up:hover {
    color: var(--black);
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  #w_outline {
    background: #F7F7F7;
    padding-top: calc(160 / 375 * 100vw);
    padding-bottom: calc(80 / 375 * 100vw);
    position: relative;
  }
  #w_outline:before {
    display: block;
    position: absolute;
    content: "";
    width: calc(345 / 375 * 100vw);
    aspect-ratio: 1560/840;
    background: url(../img/outline.jpg) no-repeat center/cover;
    border-radius: 0 calc(15 / 375 * 100vw) calc(15 / 375 * 100vw) 0;
    left: 0;
    top: calc(-92 / 375 * 100vw);
  }
  #w_outline .box01 {
    background: #fff;
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  #w_outline .box01 table {
    width: 100%;
  }
  #w_outline .box01 table tr {
    border-bottom: solid calc(1 / 375 * 100vw) #CDCDCD;
  }
  #w_outline .box01 table tr:last-child {
    border-bottom: none;
  }
  #w_outline .box01 th {
    font-weight: bold;
    font-size: calc(13 / 375 * 100vw);
    padding-bottom: calc(15 / 375 * 100vw);
  }
  #w_outline .box01 th, #w_outline .box01 td {
    padding: 0;
  }
  #w_outline .box01 tr, #w_outline .box01 th, #w_outline .box01 td {
    display: block;
  }
  #w_outline .box01 tr {
    padding: calc(15 / 375 * 100vw) 0;
  }
  #w_outline .box01 ul {
    line-height: 1.5;
    padding-top: calc(10 / 375 * 100vw);
    gap: calc(25 / 375 * 100vw) 0;
  }
  #w_outline .box01 ul span {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  #w_outline .box02 {
    padding: calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
  #w_history {
    padding-top: calc(80 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
  }
  #w_history .history_list {
    position: relative;
    display: grid;
    gap: calc(60 / 375 * 100vw) 0;
  }
  #w_history .history_list:before {
    position: absolute;
    content: "";
    display: block;
    width: calc(2 / 375 * 100vw);
    height: calc(100% - calc(35 / 375 * 100vw));
    background: var(--black);
    left: calc(5 / 375 * 100vw);
    top: calc(3 / 375 * 100vw);
  }
  #w_history .history_list li {
    display: block;
    gap: revert;
    padding-left: calc(30 / 375 * 100vw);
    position: relative;
  }
  #w_history .history_list li:before {
    position: absolute;
    top: calc(3 / 375 * 100vw);
    left: calc(-1 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(14 / 375 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--black);
  }
  #w_history .history_list .en {
    line-height: 1;
    font-size: calc(20 / 375 * 100vw);
    opacity: 0.5;
    position: relative;
    width: auto;
    margin-bottom: calc(5 / 375 * 100vw);
  }
  #w_history .history_list .text {
    position: relative;
    line-height: 1.6;
    font-size: calc(14 / 375 * 100vw);
  }
  #w_history .history_list .text:before {
    content: none;
  }
}
#business ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px 0;
  border-bottom: solid 1px #CDCDCD;
}
#business ul li:first-child {
  padding-top: 0;
}
#business ul li:last-child {
  border-bottom: none;
}
#business ul li:nth-child(even) {
  flex-direction: row-reverse;
}
#business ul li:nth-child(1):before {
  background: url(../img/business01.jpg) no-repeat center/cover;
}
#business ul li:nth-child(2):before {
  background: url(../img/business02.jpg) no-repeat center/cover;
}
#business ul li:nth-child(3):before {
  background: url(../img/business03.jpg) no-repeat center/cover;
}
#business ul li:before {
  content: "";
  display: block;
  width: 380px;
  height: auto;
  aspect-ratio: 38/29;
  border-radius: 25px;
}
#business ul li .w_text {
  width: 770px;
}
#business ul li .w_text p {
  margin-bottom: 1em;
}
#business ul li .w_text p:last-child {
  margin-bottom: 0;
}
#business ul li h3 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 15px;
}

#office {
  background: #F7F7F7;
  padding: 100px 0 140px;
}

.office_list {
  display: grid;
  gap: 90px 0;
}

.office_detail {
  padding-top: 80px;
  margin-top: -80px;
}
.office_detail h3 {
  line-height: 1.4;
  font-weight: bold;
  font-size: 26px;
  border-left: solid 5px var(--black);
  padding-left: 25px;
  margin-bottom: 25px;
}
.office_detail h3 span {
  font-size: 16px;
  margin-left: 1em;
}
.office_detail .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.office_detail .flex .img {
  width: 490px;
}
.office_detail .flex .w_text {
  width: 670px;
}
.office_detail .flex .w_text p {
  line-height: 1.75;
  margin-bottom: 40px;
}
.office_detail .flex table {
  width: 100%;
  border-top: solid 1px #C6C6C6;
}
.office_detail .flex table tr {
  border-bottom: solid 1px #C6C6C6;
}
.office_detail .flex table th, .office_detail .flex table td {
  font-weight: 500;
  padding: 16px;
}
.office_detail .flex table th {
  font-weight: bold;
  width: 150px;
}
.office_detail .map {
  border: solid 1px #ccc;
  line-height: 1;
}
.office_detail .map iframe {
  aspect-ratio: 5/2;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #business ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(55 / 1300 * 100vw) 0;
    border-bottom: solid 1px #CDCDCD;
  }
  #business ul li:first-child {
    padding-top: 0;
  }
  #business ul li:last-child {
    border-bottom: none;
  }
  #business ul li:nth-child(even) {
    flex-direction: row-reverse;
  }
  #business ul li:nth-child(1):before {
    background: url(../img/business01.jpg) no-repeat center/cover;
  }
  #business ul li:nth-child(2):before {
    background: url(../img/business02.jpg) no-repeat center/cover;
  }
  #business ul li:nth-child(3):before {
    background: url(../img/business03.jpg) no-repeat center/cover;
  }
  #business ul li:before {
    content: "";
    display: block;
    width: calc(380 / 1300 * 100vw);
    height: auto;
    aspect-ratio: 38/29;
    border-radius: calc(25 / 1300 * 100vw);
  }
  #business ul li .w_text {
    width: calc(770 / 1300 * 100vw);
  }
  #business ul li .w_text p {
    margin-bottom: 1em;
  }
  #business ul li .w_text p:last-child {
    margin-bottom: 0;
  }
  #business ul li h3 {
    font-weight: bold;
    font-size: calc(30 / 1300 * 100vw);
    line-height: 1.4;
    margin-bottom: calc(15 / 1300 * 100vw);
  }
  #office {
    background: #F7F7F7;
    padding: calc(100 / 1300 * 100vw) 0 calc(140 / 1300 * 100vw);
  }
  .office_list {
    display: grid;
    gap: calc(90 / 1300 * 100vw) 0;
  }
  .office_detail {
    padding-top: 6.1538461538vw;
    margin-top: -6.1538461538vw;
  }
  .office_detail h3 {
    line-height: 1.4;
    font-weight: bold;
    font-size: calc(26 / 1300 * 100vw);
    border-left: solid calc(5 / 1300 * 100vw) var(--black);
    padding-left: calc(25 / 1300 * 100vw);
    margin-bottom: calc(25 / 1300 * 100vw);
  }
  .office_detail h3 span {
    font-size: calc(16 / 1300 * 100vw);
    margin-left: 1em;
  }
  .office_detail .flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(30 / 1300 * 100vw);
  }
  .office_detail .flex .img {
    width: calc(490 / 1300 * 100vw);
  }
  .office_detail .flex .w_text {
    width: calc(670 / 1300 * 100vw);
  }
  .office_detail .flex .w_text p {
    line-height: 1.75;
    margin-bottom: calc(40 / 1300 * 100vw);
  }
  .office_detail .flex table {
    width: 100%;
    border-top: solid 1px #C6C6C6;
  }
  .office_detail .flex table tr {
    border-bottom: solid 1px #C6C6C6;
  }
  .office_detail .flex table th, .office_detail .flex table td {
    font-weight: 500;
    padding: calc(16 / 1300 * 100vw);
  }
  .office_detail .flex table th {
    font-weight: bold;
    width: calc(150 / 1300 * 100vw);
  }
  .office_detail .map {
    border: solid 1px #ccc;
    line-height: 1;
  }
  .office_detail .map iframe {
    aspect-ratio: 5/2;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #business ul li {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-bottom: solid 1px #CDCDCD;
  }
  #business ul li:first-child {
    padding-top: 0;
  }
  #business ul li:last-child {
    border-bottom: none;
  }
  #business ul li:nth-child(even) {
    flex-direction: row-reverse;
  }
  #business ul li:nth-child(1) h3:after {
    background: url(../img/business01.jpg) no-repeat center/cover;
  }
  #business ul li:nth-child(2) h3:after {
    background: url(../img/business02.jpg) no-repeat center/cover;
  }
  #business ul li:nth-child(3) h3:after {
    background: url(../img/business03.jpg) no-repeat center/cover;
  }
  #business ul li:before {
    content: none;
  }
  #business ul li .w_text {
    width: 100%;
  }
  #business ul li .w_text p {
    margin-bottom: 1em;
    line-height: 1.65;
  }
  #business ul li .w_text p:last-child {
    margin-bottom: 0;
  }
  #business ul li h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  #business ul li h3:after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 38/29;
    border-radius: 15px;
    margin-top: 15px;
  }
  #office {
    background: #F7F7F7;
    padding: 80px 0 80px;
  }
  .office_list {
    display: grid;
    gap: 60px 0;
  }
  .office_detail {
    padding-top: 21.3333333333vw;
    margin-top: -21.3333333333vw;
  }
  .office_detail h3 {
    line-height: 1.4;
    font-weight: bold;
    font-size: 19px;
    border-left: solid 3px var(--black);
    padding-left: 15px;
    margin-bottom: 25px;
  }
  .office_detail h3 span {
    display: block;
    font-size: 14px;
    margin-left: 0.5em;
    position: relative;
    margin-top: 3px;
  }
  .office_detail .flex {
    display: grid;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px 0;
  }
  .office_detail .flex .img {
    width: 100%;
  }
  .office_detail .flex .w_text {
    width: 100%;
  }
  .office_detail .flex .w_text p {
    line-height: 1.75;
    margin-bottom: 40px;
  }
  .office_detail .flex table {
    width: 100%;
    border-top: solid 1px #C6C6C6;
  }
  .office_detail .flex table tr {
    border-bottom: solid 1px #C6C6C6;
  }
  .office_detail .flex table th, .office_detail .flex table td {
    font-weight: 500;
    padding: 16px;
    display: block;
  }
  .office_detail .flex table th {
    font-weight: bold;
    width: 100%;
    padding: 15px 0 10px;
    font-size: 13px;
  }
  .office_detail .flex table td {
    line-height: 1.5;
    padding: 0 0 15px 0;
  }
  .office_detail .map {
    border: solid 1px #ccc;
    line-height: 1;
  }
  .office_detail .map iframe {
    aspect-ratio: 1/1.5;
    width: 100%;
    height: auto;
  }
}
.info-list {
  max-width: 1040px;
  margin: 0 auto;
  border-top: solid 1px #CDCDCD;
  position: relative;
  z-index: 3;
}
.info-list .en {
  font-size: 18px;
}
.info-list li {
  border-bottom: solid 1px #CDCDCD;
  padding: 30px 0;
  display: flex;
}
.info-list li time {
  width: 200px;
}
.info-list li a {
  width: calc(100% - 200px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.not__found {
  max-width: fit-content;
  background: #f8f8f8;
  text-align: center;
  margin: 50px auto;
  padding: 30px;
}

.pager {
  max-width: 1040px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  font-size: 18px;
}
.pager span {
  opacity: 0.5;
}
.pager a {
  text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .info-list {
    max-width: calc(1040 / 1300 * 100vw);
    margin: 0 auto;
    border-top: solid 1px #CDCDCD;
  }
  .info-list .en {
    font-size: calc(18 / 1300 * 100vw);
  }
  .info-list li {
    border-bottom: solid 1px #CDCDCD;
    padding: calc(30 / 1300 * 100vw) 0;
    display: flex;
  }
  .info-list li time {
    width: calc(200 / 1300 * 100vw);
  }
  .info-list li a {
    width: calc(100% - calc(200 / 1300 * 100vw));
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .not__found {
    max-width: fit-content;
    background: #f8f8f8;
    text-align: center;
    margin: calc(50 / 1300 * 100vw) auto;
  }
  .pager {
    max-width: calc(1040 / 1300 * 100vw);
    margin: calc(50 / 1300 * 100vw) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 calc(15 / 1300 * 100vw);
    font-size: calc(18 / 1300 * 100vw);
  }
  .pager span {
    opacity: 0.5;
  }
  .pager a {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .info-list {
    max-width: calc(1040 / 375 * 100vw);
    margin: 0 calc(30 / 375 * 100vw);
    position: relative;
    z-index: 3;
  }
  .info-list .en {
    font-size: calc(18 / 375 * 100vw);
  }
  .info-list li {
    padding: calc(20 / 375 * 100vw) 0 calc(25 / 375 * 100vw);
    display: grid;
  }
  .info-list li time {
    width: 100%;
  }
  .info-list li a {
    width: 100%;
    text-overflow: revert;
    overflow: revert;
    white-space: revert;
  }
  .not__found {
    max-width: fit-content;
    background: #f8f8f8;
    text-align: center;
    margin: calc(50 / 375 * 100vw) auto;
  }
  .pager {
    max-width: calc(1040 / 375 * 100vw);
    margin: calc(50 / 375 * 100vw) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 calc(15 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
  .pager span {
    opacity: 0.5;
  }
  .pager a {
    text-decoration: none;
  }
}
.post_article {
  max-width: 800px;
  margin: 0 auto;
}
.post_article .header {
  display: grid;
  border-bottom: solid 1px #CDCDCD;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.post_article .header h1 {
  order: 2;
  font-weight: bold;
  line-height: 1.4;
  font-size: 30px;
  letter-spacing: 0.05em;
}
.post_article .header time {
  display: block;
  line-height: 1;
  order: 1;
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.post_article .content h2 {
  font-weight: bold;
  font-size: 24px;
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
.post_article .content h2:first-child {
  margin-top: 0;
}
.post_article .content p {
  margin-bottom: 1.5em;
}
.post_article .content p:last-child {
  margin-bottom: 0;
}

.single_pager {
  align-items: center;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .post_article {
    max-width: calc(800 / 1300 * 100vw);
    margin: 0 auto;
  }
  .post_article .header {
    display: grid;
    border-bottom: solid calc(1 / 1300 * 100vw) #CDCDCD;
    padding-bottom: calc(35 / 1300 * 100vw);
    margin-bottom: calc(35 / 1300 * 100vw);
  }
  .post_article .header h1 {
    order: 2;
    font-weight: bold;
    line-height: 1.4;
    font-size: calc(30 / 1300 * 100vw);
    letter-spacing: 0.05em;
  }
  .post_article .header time {
    display: block;
    line-height: 1;
    order: 1;
    font-size: calc(18 / 1300 * 100vw);
    opacity: 0.8;
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  .post_article .content h2 {
    font-size: calc(24 / 1300 * 100vw);
  }
  .post_article .content p {
    margin-bottom: 1.5em;
  }
  .post_article .content p:last-child {
    margin-bottom: 0;
  }
  .single_pager {
    align-items: center;
    margin-top: calc(80 / 1300 * 100vw);
    display: flex;
    justify-content: center;
    gap: 0 calc(40 / 1300 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .post_article {
    margin: 0 calc(30 / 375 * 100vw);
  }
  .post_article .header {
    display: grid;
    border-bottom: solid calc(1 / 375 * 100vw) #CDCDCD;
    padding-bottom: calc(20 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .post_article .header h1 {
    font-size: calc(20 / 375 * 100vw);
  }
  .post_article .header time {
    font-size: calc(15 / 375 * 100vw);
    opacity: 0.8;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  .post_article .content h2 {
    font-size: calc(20 / 375 * 100vw);
  }
  .post_article .content p {
    margin-bottom: 1.8em;
  }
  .post_article .content p:last-child {
    margin-bottom: 0;
  }
  .single_pager {
    align-items: center;
    margin-top: calc(80 / 375 * 100vw);
    display: flex;
    justify-content: center;
    gap: 0 calc(20 / 375 * 100vw);
  }
  .single_pager .btn01 {
    font-size: calc(14 / 375 * 100vw);
    width: calc(160 / 375 * 100vw);
    aspect-ratio: revert;
    height: calc(40 / 375 * 100vw);
    padding-right: calc(15 / 375 * 100vw);
  }
}
.recruit_lead {
  text-align: center;
  margin-bottom: 50px;
}
.recruit_lead p {
  margin-bottom: 1.5em;
}
.recruit_lead p:last-child {
  margin-bottom: 0;
}

.cp_area {
  border: solid 1px #900;
  margin-bottom: 120px;
}
.cp_area .ttl {
  color: #fff;
  background: #900;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px 12px;
  line-height: 1.4;
}
.cp_area .text {
  padding: 20px;
  color: #900;
}
.cp_area .text span {
  display: block;
  font-size: 13px;
}

.recruit-category-list {
  font-size: 15px;
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}
.recruit-category-list a {
  border: solid 1px var(--black);
  border-radius: 50px;
  min-width: 130px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 38px;
}
.recruit-category-list a.on {
  background: var(--black);
  color: #fff;
  pointer-events: none;
}
@media (any-hover: hover) {
  .recruit-category-list a {
    transition: 0.4s ease;
  }
  .recruit-category-list a:hover {
    background: var(--black);
    color: #fff;
  }
}

.recruit_list {
  display: grid;
  gap: 50px 0;
}
.recruit_list .card {
  background: #F7F7F7;
  padding-bottom: 90px;
}
.recruit_list .header {
  padding: 40px 30px 30px;
  border-bottom: solid 1px #C6C6C6;
}
.recruit_list .header h3 {
  font-weight: bold;
  font-size: 20px;
  padding-left: 20px;
  border-left: solid 5px var(--black);
  line-height: 1.4;
}
.recruit_list table {
  width: 100%;
  margin-bottom: 80px;
}
.recruit_list table tr {
  border-bottom: solid 1px #C6C6C6;
}
.recruit_list table th {
  border-right: solid 2px var(--black);
  width: 210px;
  font-weight: bold;
  vertical-align: top;
  padding: 30px 30px;
}
.recruit_list table td {
  width: calc(100% - 210px);
  padding: 30px 30px;
  line-height: 1.65;
}

.adj {
  padding-top: 80px;
  margin-top: -80px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .adj {
    padding-top: calc(80 / 1300 * 100vw);
    margin-top: calc(-80 / 1300 * 100vw);
  }
  .recruit_lead {
    text-align: center;
    margin-bottom: calc(50 / 1300 * 100vw);
  }
  .recruit_lead p {
    margin-bottom: 1.5em;
  }
  .recruit_lead p:last-child {
    margin-bottom: 0;
  }
  .cp_area {
    margin-bottom: calc(120 / 1300 * 100vw);
  }
  .cp_area .ttl {
    color: #fff;
    background: #900;
    text-align: center;
    font-size: calc(18 / 1300 * 100vw);
    font-weight: bold;
    padding: calc(10 / 1300 * 100vw) calc(10 / 1300 * 100vw) calc(12 / 1300 * 100vw);
    line-height: 1.4;
  }
  .cp_area .text {
    padding: calc(20 / 1300 * 100vw);
    color: #900;
  }
  .cp_area .text span {
    display: block;
    font-size: calc(13 / 1300 * 100vw);
  }
  .recruit-category-list {
    font-size: calc(15 / 1300 * 100vw);
    display: flex;
    gap: calc(20 / 1300 * 100vw);
    margin-bottom: calc(80 / 1300 * 100vw);
  }
  .recruit-category-list a {
    border: solid 1px var(--black);
    border-radius: calc(50 / 1300 * 100vw);
    min-width: calc(130 / 1300 * 100vw);
    padding: 0 calc(20 / 1300 * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: calc(38 / 1300 * 100vw);
  }
  .recruit-category-list a.on {
    background: var(--black);
    color: #fff;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) and (any-hover: hover) {
  .recruit-category-list a {
    transition: 0.4s ease;
  }
  .recruit-category-list a:hover {
    background: var(--black);
    color: #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .recruit_list {
    display: grid;
    gap: calc(50 / 1300 * 100vw) 0;
  }
  .recruit_list .card {
    background: #F7F7F7;
    padding-bottom: calc(90 / 1300 * 100vw);
  }
  .recruit_list .header {
    padding: calc(40 / 1300 * 100vw) calc(30 / 1300 * 100vw) calc(30 / 1300 * 100vw);
    border-bottom: solid 1px #C6C6C6;
  }
  .recruit_list .header h3 {
    font-weight: bold;
    font-size: calc(20 / 1300 * 100vw);
    padding-left: calc(20 / 1300 * 100vw);
    border-left: solid calc(5 / 1300 * 100vw) var(--black);
    line-height: 1.4;
  }
  .recruit_list table {
    width: 100%;
    margin-bottom: calc(80 / 1300 * 100vw);
  }
  .recruit_list table tr {
    border-bottom: solid 1px #C6C6C6;
  }
  .recruit_list table th {
    border-right: solid 2px var(--black);
    width: calc(210 / 1300 * 100vw);
    font-weight: bold;
    vertical-align: top;
    padding: calc(30 / 1300 * 100vw) calc(30 / 1300 * 100vw);
  }
  .recruit_list table td {
    width: calc(100% - calc(210 / 1300 * 100vw));
    padding: calc(30 / 1300 * 100vw) calc(30 / 1300 * 100vw);
    line-height: 1.65;
  }
}
@media screen and (max-width: 767px) {
  .adj {
    padding-top: calc(80 / 375 * 100vw);
    margin-top: calc(-80 / 375 * 100vw);
  }
  .recruit_lead {
    text-align: left;
    margin-bottom: calc(40 / 375 * 100vw);
  }
  .recruit_lead p {
    margin-bottom: 1.5em;
    line-height: 1.65;
  }
  .recruit_lead p:last-child {
    margin-bottom: 0;
  }
  .cp_area {
    margin-bottom: calc(80 / 375 * 100vw);
  }
  .cp_area .ttl {
    color: #fff;
    background: #900;
    text-align: center;
    font-size: calc(15 / 375 * 100vw);
    font-weight: bold;
    padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) calc(12 / 375 * 100vw);
    line-height: 1.4;
  }
  .cp_area .text {
    padding: calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
    color: #900;
    line-height: 1.65;
    font-size: calc(14 / 375 * 100vw);
  }
  .cp_area .text span {
    display: block;
    font-size: calc(11 / 375 * 100vw);
  }
  .ttl01#target .en {
    font-size: calc(39 / 375 * 100vw);
    letter-spacing: 0;
  }
  .recruit-category-list {
    font-size: calc(13 / 375 * 100vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(10 / 375 * 100vw);
    margin-bottom: calc(50 / 375 * 100vw);
  }
  .recruit-category-list a {
    border: solid 1px var(--black);
    border-radius: calc(50 / 375 * 100vw);
    min-width: 0;
    padding: 0 calc(10 / 375 * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: calc(32 / 375 * 100vw);
    padding-bottom: calc(2 / 375 * 100vw);
  }
  .recruit_list {
    display: grid;
    gap: calc(50 / 375 * 100vw) 0;
  }
  .recruit_list .card {
    background: #F7F7F7;
    padding-bottom: calc(60 / 375 * 100vw);
    position: relative;
    left: calc(-30 / 375 * 100vw);
    width: calc(100% + calc(60 / 375 * 100vw));
  }
  .recruit_list .header {
    padding: calc(25 / 375 * 100vw) calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-bottom: solid 1px #C6C6C6;
  }
  .recruit_list .header h3 {
    font-weight: bold;
    font-size: calc(18 / 375 * 100vw);
    padding-left: calc(15 / 375 * 100vw);
    border-left: solid calc(3 / 375 * 100vw) var(--black);
    line-height: 1.4;
  }
  .recruit_list table {
    width: 100%;
    margin-bottom: calc(40 / 375 * 100vw);
  }
  .recruit_list table tr, .recruit_list table th, .recruit_list table td {
    display: block;
    width: 100%;
  }
  .recruit_list table tr {
    border-bottom: solid 1px #C6C6C6;
  }
  .recruit_list table th {
    font-size: calc(13 / 375 * 100vw);
    border-right: none;
    width: 100%;
    font-weight: bold;
    vertical-align: top;
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
  .recruit_list table td {
    width: 100%;
    padding: 0 calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
    line-height: 1.65;
    font-size: calc(14 / 375 * 100vw);
  }
}
#contact {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
#contact .lead {
  text-align: center;
  margin-bottom: 60px;
}
#contact .bg {
  background: #F7F7F7;
  padding: 60px 40px;
}
#contact .btn01 {
  cursor: pointer;
  border: none;
}
#contact .pp {
  text-align: center;
  margin: 50px 0;
}

.form_list input[type=text],
.form_list input[type=email],
.form_list input[type=tel],
.form_list textarea {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  background: #fff;
  border: solid 1px #CCCCCC;
  font-weight: 400;
  padding: 12px 15px;
}
.form_list input[type=text]::placeholder,
.form_list input[type=email]::placeholder,
.form_list input[type=tel]::placeholder,
.form_list textarea::placeholder {
  color: #ccc;
}
.form_list textarea {
  resize: vertical;
  min-height: 300px;
}
.form_list .wpcf7-radio {
  display: flex;
  gap: 30px;
}
.form_list .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.form_list .wpcf7-radio .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label:after {
  opacity: 1;
}
.form_list .wpcf7-radio input {
  -webkit-appearance: radio;
  display: none;
}
.form_list .wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
}
.form_list .wpcf7-radio .wpcf7-list-item-label:before, .form_list .wpcf7-radio .wpcf7-list-item-label:after {
  position: absolute;
}
.form_list .wpcf7-radio .wpcf7-list-item-label:before {
  content: "";
  display: block;
  width: 18px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: #fff;
  border: solid 1px var(--black);
  top: 3px;
  left: 0;
}
.form_list .wpcf7-radio .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 12px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: var(--black);
  top: 7px;
  left: 4px;
  transition: 0.4s ease;
  opacity: 0;
  z-index: 2;
}
.form_list dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.form_list dt:before {
  content: "必須";
  display: inline-block;
  width: 50px;
  height: 22px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background: #990000;
  line-height: 22px;
  margin-right: 8px;
}
.form_list dd {
  margin-bottom: 40px;
}
.form_list dd:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #contact {
    max-width: calc(1040 / 1300 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  #contact .lead {
    text-align: center;
    margin-bottom: calc(60 / 1300 * 100vw);
  }
  #contact .bg {
    background: #F7F7F7;
    padding: calc(60 / 1300 * 100vw) calc(40 / 1300 * 100vw);
  }
  #contact .btn01 {
    cursor: pointer;
    border: none;
  }
  #contact .pp {
    text-align: center;
    margin: calc(50 / 1300 * 100vw) 0;
  }
  .form_list input[type=text],
  .form_list input[type=email],
  .form_list input[type=tel],
  .form_list textarea {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: #fff;
    border: solid 1px #CCCCCC;
    font-weight: 400;
    padding: calc(12 / 1300 * 100vw) calc(15 / 1300 * 100vw);
  }
  .form_list input[type=text]::placeholder,
  .form_list input[type=email]::placeholder,
  .form_list input[type=tel]::placeholder,
  .form_list textarea::placeholder {
    color: #ccc;
  }
  .form_list textarea {
    resize: vertical;
    min-height: calc(300 / 1300 * 100vw);
  }
  .form_list .wpcf7-radio {
    display: flex;
    gap: calc(30 / 1300 * 100vw);
  }
  .form_list .wpcf7-radio .wpcf7-list-item {
    margin: 0;
  }
  .form_list .wpcf7-radio .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label:after {
    opacity: 1;
  }
  .form_list .wpcf7-radio input {
    -webkit-appearance: radio;
    display: none;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding-left: calc(30 / 1300 * 100vw);
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:before, .form_list .wpcf7-radio .wpcf7-list-item-label:after {
    position: absolute;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:before {
    content: "";
    display: block;
    width: calc(18 / 1300 * 100vw);
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: #fff;
    border: solid 1px var(--black);
    top: calc(3 / 1300 * 100vw);
    left: 0;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:after {
    content: "";
    display: block;
    width: calc(12 / 1300 * 100vw);
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: var(--black);
    top: calc(7 / 1300 * 100vw);
    left: calc(4 / 1300 * 100vw);
    transition: 0.4s ease;
    opacity: 0;
    z-index: 2;
  }
  .form_list dt {
    font-weight: bold;
    margin-bottom: calc(10 / 1300 * 100vw);
  }
  .form_list dt:before {
    content: "必須";
    display: inline-block;
    width: calc(50 / 1300 * 100vw);
    height: calc(22 / 1300 * 100vw);
    text-align: center;
    color: #fff;
    font-size: calc(12 / 1300 * 100vw);
    background: #990000;
    line-height: calc(22 / 1300 * 100vw);
    margin-right: calc(8 / 1300 * 100vw);
  }
  .form_list dd {
    margin-bottom: calc(40 / 1300 * 100vw);
  }
  .form_list dd:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #contact {
    margin-left: auto;
    margin-right: auto;
  }
  #contact .lead {
    text-align: center;
    margin-bottom: calc(60 / 375 * 100vw);
  }
  #contact .bg {
    background: #F7F7F7;
    padding: calc(40 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
  #contact .btn01 {
    cursor: pointer;
    border: none;
  }
  #contact .pp {
    text-align: center;
    margin: calc(50 / 375 * 100vw) 0;
  }
  #contact .pp p:last-child {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
  .form_list input[type=text],
  .form_list input[type=email],
  .form_list input[type=tel],
  .form_list textarea {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: #fff;
    font-weight: 400;
    padding: calc(12 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  .form_list input[type=text]::placeholder,
  .form_list input[type=email]::placeholder,
  .form_list input[type=tel]::placeholder,
  .form_list textarea::placeholder {
    color: #ccc;
  }
  .form_list textarea {
    resize: vertical;
    min-height: calc(300 / 375 * 100vw);
  }
  .form_list .wpcf7-radio {
    display: grid;
    gap: calc(10 / 375 * 100vw);
  }
  .form_list .wpcf7-radio .wpcf7-list-item {
    margin: 0;
  }
  .form_list .wpcf7-radio .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label:after {
    opacity: 1;
  }
  .form_list .wpcf7-radio input {
    -webkit-appearance: radio;
    display: none;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding-left: calc(30 / 375 * 100vw);
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:before, .form_list .wpcf7-radio .wpcf7-list-item-label:after {
    position: absolute;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:before {
    content: "";
    display: block;
    width: calc(18 / 375 * 100vw);
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: #fff;
    border: solid calc(1 / 375 * 100vw) var(--black);
    top: calc(2 / 375 * 100vw);
    left: 0;
  }
  .form_list .wpcf7-radio .wpcf7-list-item-label:after {
    content: "";
    display: block;
    width: calc(12 / 375 * 100vw);
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: var(--black);
    top: calc(6 / 375 * 100vw);
    left: calc(4 / 375 * 100vw);
    transition: 0.4s ease;
    opacity: 0;
    z-index: 2;
  }
  .form_list dt {
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  .form_list dt:before {
    content: "必須";
    display: inline-block;
    width: calc(50 / 375 * 100vw);
    height: calc(22 / 375 * 100vw);
    text-align: center;
    color: #fff;
    font-size: calc(12 / 375 * 100vw);
    background: #990000;
    line-height: calc(22 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
  }
  .form_list dd {
    margin-bottom: calc(40 / 375 * 100vw);
  }
  .form_list dd:last-child {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=style.css.map */
