@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --en: "Sitka Banner", "Segoe UI", Tahoma, sans-serif;
  --def: "Noto Sans JP", sans-serif;
  --ja: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 Pro", " ヒラギノ明朝 Pro", "  MS P明朝", "MS P明朝", serif;
  --blue: #1554A2;
  --light-blue: #5398CE;
  --text_color: #2C2C2C;
  --red: #B40E0E;
}

body {
  color: var(--text_color);
  /* RGB */
  background-color: #ffffff;
  font-family: var(--def);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  line-height: 1.8;
  text-align: center;
}

.en {
  font-family: var(--en);
  font-weight: 700;
  font-style: italic;
}

.ja {
  font-family: var(--ja);
  font-weight: 500;
  font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

a {
  color: var(--text_color);
}

a:hover {
  opacity: 0.7;
}

a.clarity:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.white {
  color: #ffffff;
}

.blue {
  color: var(--blue);
}

.red {
  color: var(--red)
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 60px);
}

.flex.row {
  flex-direction: row;
  justify-content: space-between;
}

header {
  width: 100%;
  height: 65px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 4px 2vw;
}

header .logo {
  width: 108px;
}

.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 55px;
  height: 55px;
  z-index: 999;
  margin: 0;
  top: 5px;
  right: 5px;
  background: var(--blue);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #ffffff;
  width: 27px;
  top: 28px;
}

.ham_btn span:nth-of-type(1) {
  top: 12px;
}

.ham_btn span:nth-of-type(2) {
  top: 20px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 27px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -5px;
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 8px;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--blue);
  overflow-y: auto;
  padding: 60px 10%;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav.sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 3vh;
  height: 80vh;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #ffffff;
}

.nav_wrap li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  justify-content: flex-end;
  padding: 10px 0;
  font-weight: 700;
  line-height: 1;
  font-size: min(4.6vw, 2.0rem);
  color: #ffffff;
  text-transform: uppercase;
}

/* MV */
.MV {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
  overflow: hidden;
  margin-top: 68px;
}

.MV_slide {
  width: 100%;
}

.MV_catch {
  width: 90%;
  position: absolute;
  z-index: 5;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
}

.MV_catch h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}

.MV_catch h2 span {
  font-size: min(3.7vw, 5.4rem);
  margin-left: -2%;
  letter-spacing: 0.1em;
}

.MV_catch h2 div {
  display: flex;
}

.MV_catch h2 div span {
  font-size: min(7.6vw, 11.3rem);
  margin-left: -7%;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
}

/* 共通 */
section {
  position: relative;
  padding: 40px 0 60px;
}

.section_ttl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.5;
  font-size: min(5.5vw, 4.4rem);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--ja);
}

.section_ttl span {
  color: #ffffff;
  font-size: clamp(1.2rem, 3.0vw, 1.8rem);
  letter-spacing: 0.2em;
  position: relative;
  font-family: var(--def);
}

.inner {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
  margin: 0 auto;
}

#top_news .section_ttl {
  color: var(--light-blue);
  font-size: clamp(1.8rem, 5.0vw, 3.6rem);
  position: relative;
  margin: 0 auto 0 0;
  padding-bottom: 8px;
  font-family: var(--def);
}

#top_news .section_ttl span {
  color: var(--red);
}

#top_news .section_ttl::after {
  content: "";
  width: 50%;
  height: 2px;
  background-color: var(--light-blue);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}

.news_wrap li {
  padding: 10px 0;
  text-align: left;
  line-height: 1.5;
  justify-content: flex-start;
}

.news_wrap li a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-weight: 600;
}

.news_wrap li a .cat {
  width: 20%;
  max-width: 105px;
  color: #ffffff;
  background-color: var(--light-blue);
  font-size: clamp(1.0rem, 2.4vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 auto;
  padding: 4px;
}

#top_service {
  background-image: url(../img/bg01.png);
}

#top_service .section_lead {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  word-break: keep-all;
  font-size: clamp(1.6rem, 4.1vw, 4.8rem);
  line-height: 1.5;
}

#top_service .section_lead span {
  font-size: clamp(2.4rem, 6.5vw, 9rem);
}

.anchor_wrap {
  display: flex;
  flex-direction: column;
  margin-top: min(5vw, 40px);
  gap: min(10vw, 60px);
}

.anchor_wrap li {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#top_service h3 {
  font-size: clamp(3.0rem, 8vw, 6.6rem);
  font-weight: 600;
  line-height: 1;
}

.anchor_wrap li .anchor_img {
  width: 100%;
}

.anchor_wrap li p {
  text-align: justify;
}

.more {
  width: 60%;
  max-width: 260px;
  background-color: var(--light-blue);
  margin: 0 auto;
}

.more a {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

#top_reasons {
  padding: 0;
  overflow: hidden;
}

#top_reasons .bg01 {
  padding: 40px 0 60px;
  background-image: url(../img/bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

#top_reasons .bg01::before {
  content: "";
  width: 8%;
  max-height: 80%;
  aspect-ratio: 54/ 925;
  background-image: url(../img/top_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#top_reasons .bg01 .inner {
  padding-left: 5%;
  text-align: left;
}

#top_reasons .bg01 h3 {
  font-size: clamp(5.0rem, 12vw, 6.6rem);
  text-align: left;
  word-break: keep-all;
  line-height: 1.2;
}

#top_reasons .bg02 {
  background-image: url(../img/bg03.png);
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-bottom: 60px;
}

#top_reasons .bg02::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 100px solid var(--blue);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

#top_reasons .bg02 .inner {
  gap: min(10vw, 60px)
}

#top_reasons .bg02 .section_lead {
  padding: 10px 0 20px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 auto;
  word-break: keep-all;
  margin-bottom: min(10vw, 60px);
}

#top_reasons .bg02 .content {
  padding: 40px 0;
  text-align: justify;
  position: relative;
}

#top_reasons .bg02 .content>* {
  position: relative;
  z-index: 2;
}

#top_reasons .bg02 .content::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
}

#top_reasons .bg02 .content:first-of-type {
  color: #ffffff;
}

#top_reasons .bg02 .content:first-of-type .more {
  background-color: #ffffff;
}

#top_reasons .bg02 .content:first-of-type .more a {
  color: var(--light-blue);
}

#top_reasons .bg02 .content:first-of-type:before {
  background-color: var(--blue);
}

#top_reasons .bg02 .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#top_reasons .bg02 .content_textWrap h3 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
}

#top_links {
  padding: 0;
}

#top_links .works_ttl {
  background-image: url(../img/works_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  padding: 12vw;
}

#top_links .works_ttl .section_ttl {
  align-items: center;
}

#top_links .contact_area {
  background-color: #B40E0E;
  padding: 12vw;
}

#top_links .contact_area a {
  display: inline-block;
  width: 60%;
  aspect-ratio: 280/76;
  max-width: 280px;
  background-image: url(../img/contact_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#top_links .sns_btn {
  width: 100%;
  aspect-ratio: 280/100;
  background-color: #fff;
  display: flex;
  align-items: center;
}

#top_links .sns_btn a {
  display: inline-block;
  width: 100%;
  aspect-ratio: 280/76;
  background-image:url("../img/insta_btn.png");
  background-size: cover;
  background-position: center;
}

#top_links .sns_btn:nth-of-type(2) {
  background-color: #305097;
}

#top_links .sns_btn:nth-of-type(2) a {
  display: inline-block;
  width: 100%;
  aspect-ratio: 640/155;
  background-image: url(../img/fb_btn.png);
  background-size: cover;
  background-position: center;
}

.links_bottom {
  background-image: url(../img/bg01.png);
  padding: min(8vw, 100px) 0;
}

.links_bottom .links_inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(4vw, 60vw);
}

.company {
  background-color: var(--blue);
  color: #ffffff;
  padding: 0;
}

.ttl_area {
  position: relative;
  overflow: hidden;
  padding: 11vw 0;
  max-height: 640px;
}

.ttl_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #155098;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.ttl_area .section_ttl {
  align-items: center;
}

.text_area {
  background-image: url(../img/works_bg.png);
  background-size: cover;
  padding: min(6vw, 40px) 0;
}

dl {
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
  line-height: 2.5;
}

.description-item {
  display: flex;
  text-align: left;
}

dt {
  width: 120px;
  font-weight: 400;
  word-break: keep-all;
}

dd {
  width: calc(100% - 120px);
}

#top_recruit {
  background-color: #DD2121;
  color: #ffffff;
  padding: 0;
}

#top_recruit .ttl_area::before {
  background-color: #C92020;
}

#top_recruit .text_area {
  background-image: url(../img/recruit_bg.png);
  background-size: cover;
  background-position: center;
  padding: min(30vw, 200px) 0;
}

#top_recruit .text_area p {
  display: flex;
  flex-direction: column;
}

#top_recruit .text_area p span {
  display: flex;
  flex-direction: column;
}

footer {
  background-color: var(--blue);
  color: #ffffff;
}

footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(4vw, 20px);
  padding: 20px 0;
}

footer ul li {
  border-bottom: 1px solid #ffffff;
}

footer ul li a {
  color: #ffffff;
}

#go_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  z-index: 50;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.cr {
  padding: 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    height: 110px;
    line-height: 1.2;
  }

  .header_inner {
    width: 95%;
    margin: 0 auto;
    justify-content: space-between;
    gap: 4px;
    padding-left: 0;
  }

  header .logo {
    width: calc(100% - 400px);
    max-width: 150px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
    width: calc(100% - 200px);
    max-width: 860px;
    justify-content: space-between;
    padding-bottom: 8px;
  }

  .header_right--upper {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header_contact {
    font-size: 3.5rem;
    font-weight: 900;
  }

  .pc_nav {
    width: 100%;
    display: flex;
    align-items: flex-end;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
  }

  .pc_nav ul li {
    position: relative;
    height: 100%;
    padding-bottom: 4px;
  }

  .pc_nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    height: 100%;
    font-size: min(2vw, 2.0rem);
    line-height: 1;
  }

  .pc_nav ul li a::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--red);
    position: absolute;
    bottom: -4px;
    left: 0;
    opacity: 0;
    transition: all .3s;
  }

  .pc_nav ul li>a:hover:after {
    opacity: 1;
  }

  .pc_nav ul li.active>a::after {
    opacity: 1;
  }

  .MV_catch {
    width: 90%;
    max-width: 1800px;
    top: auto;
    bottom: 10%;
    transform: translateX(-50%);
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .flex.reverse {
    flex-direction: row-reverse;
  }

  section {
    padding: 100px 0 140px;
  }

  .inner {
    max-width: 1280px;
  }

  #top_news {
    padding: 80px 0 60px;
  }

  #top_news .inner {
    align-items: center;
    gap: 10%;
  }

  #top_news .section_ttl {
    width: 20%;
    min-width: 200px;
  }

  #top_news .section_ttl::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 100%;
  }

  .news_wrap {
    width: 80%;
  }

  .news_wrap li {
    padding: 20px 0;
  }

  .news_wrap li a {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    font-weight: 600;
  }

  #top_service .inner {
    max-width: 1800px;
  }

  .anchor_wrap {
    flex-direction: row;
  }

  #top_service h3 {
    font-size: clamp(3.0rem, 4vw, 6.6rem);
  }

  .anchor_wrap li p {
    display: inline-block;
  }

  #top_reasons .bg01 {
    padding: 8vw 0;
  }

  #top_reasons .bg01 .inner {
    max-width: 1300px;
    align-items: flex-start;
    padding: 0;
  }

  #top_reasons .bg01 .inner h3 {
    text-align: left;
    margin-right: auto;
  }

  #top_reasons .bg01::before {
    max-height: 100%;
  }

  #top_reasons .bg02 {
    padding-bottom: min(10vw, 200px);
  }

  #top_reasons .bg02 .section_lead {
    font-size: min(3vw, 3.6rem);
    width: 100%;
    padding: 20px 0;
  }

  #top_reasons .bg02::before {
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 180px solid var(--blue);
  }

  #top_reasons .bg02 .inner {
    gap: min(10vw, 120px);
    width: 100%;
    max-width: 1800px;
  }

  #top_reasons .bg02 .content {
    padding: 0;
    align-items: flex-end;
    gap: 0;
    justify-content: flex-end;
  }

  #top_reasons .bg02 .content>* {
    position: relative;
    z-index: 2;
  }

  #top_reasons .bg02 .content::before {
    display: none;
  }

  #top_reasons .bg02 .content_textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--blue);
    padding: min(5vw, 60px);
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  #top_reasons .bg02 .content_textWrap .more {
    margin: 0 0 0 auto;
  }

  #top_reasons .bg02 .content:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  #top_reasons .bg02 .content:nth-of-type(2) .content_textWrap {
    background-color: #ffffff;
  }

  #top_links .links_upper {
    display: flex;
  }

  #top_links .links_upper>* {
    width: calc(100% / 3);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .links_bottom .links_inner {
    width: 80%;
    max-width: 1066px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: min(4vw, 60vw);
  }

  .company {
    display: flex
  }

  #top_recruit {
    display: flex;
    flex-direction: row-reverse;
  }

  .ttl_area {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text_area {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #top_recruit .text_area {
    font-size: 4.0rem;
  }

  dl {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.2rem
  }

  .description-item {
    display: flex;
    text-align: left;
  }

  dt {
    width: 180px;
    font-weight: 400;
  }

  dd {
    width: calc(100% - 180px);
    word-break: keep-all;
    font-size: 2.4rem
  }

  .footer_nav {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding: 40px;
  }

  .footer_nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer_nav li a {
    font-size: min(2vw, 2.8rem);
  }

  .cr {
    position: relative;
  }

  #go_top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    z-index: 50;
  }
}

.h2_ttl {
  margin-top: 65px;
  background: url("../img/mv_service.png") no-repeat center / cover;
  padding: max(10vw, 4rem) 0;
  letter-spacing: 0.08em;
  font-family: var(--ja);
  color: #ffffff;
  font-size: min(6vw, 5.0rem);
}

#company_wrapper .h2_ttl {
  background: url("../img/mv_company.png") no-repeat center / cover;
}

#case_wrapper .h2_ttl {
  background: url("../img/mv_case.png") no-repeat center / cover;
}

#reasons_wrapper .h2_ttl {
  background: url("../img/mv_reasons.png") no-repeat center / cover;
}

#contact_wrapper .h2_ttl {
  background: url("../img/mv_contact.png") no-repeat center / cover;
}

#reasons_01 {
  background-image: url(../img/bg01.png);
  background-size: cover;
}

.reasons_item .section_lead {
  color: var(--blue);
  font-size: clamp(2.0rem, 6vw, 4.8rem);
  word-break: keep-all;
  border-bottom: 1px solid var(--blue);
}

.reasons_item .content_wrap {
  display: flex;
  flex-direction: column;
  margin: min(5vw, 40px) auto;
  max-width: 500px;
  gap: min(10vw, 60px);
}

.reasons_item .content {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 20px);
}

.reasons_item .content_textWrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.reasons_item .content h4 {
  font-size: clamp(2.8rem, 8vw, 5.1rem);
}

.reasons_item .content h4 span {
  color: #2C9FFA;
}

#reasons_02 {
  background-image: url(../img/bg04.png);
  color: #ffffff;
}

#reasons_02.reasons_item .section_lead {
  color: #ffffff;
  font-size: clamp(2.0rem, 3.6vw, 3.5rem);
  word-break: normal;
  border-bottom: 1px solid #ffffff;
}

#reasons_02.reasons_item .section_lead span {
  color: #FFDD00;
}

#reasons_02.reasons_item .content h4 span {
  color: #FFDD00;
}

@media screen and (min-width: 960px) {
  .h2_ttl {
    margin-top: 110px;
  }

  .reasons_item .content_wrap {
    max-width: none;
  }

  .reasons_item .content {
    gap: min(3%, 80px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .reasons_item .content:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  .reasons_item .content_img {
    width: 40%;
  }

  .reasons_item .content_textWrap {
    width: 50%;
  }
}

#service_01 {
  background-image: url(../img/bg01.png);
}

#service_01 .section_lead {
  font-family: var(--ja);
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  width: 90%;
  margin: 0 auto;
}

#service_01 .inner {
  width: 100%;
}

#service_01 .service_wrap {
  display: flex;
  flex-direction: column;
}

#service_01 .service_wrap li {
  background-color: #ffffff;
}

#service_01 .service_wrap .content_textWrap {
  width: 90%;
  margin: auto;
  padding: min(8vw, 60px) 0;
  display: flex;
  flex-direction: column;
  gap: min(8vw, 60px);
}

#service_01 .service_wrap h3 {
  font-size: clamp(5.0rem, 11vw, 6rem);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #16375D;
}

#service_01 .service_wrap h3 span {
  font-size: clamp(2.0rem, 4vw, 2.5rem);
  font-family: var(--ja);
  font-style: italic;
  letter-spacing: 0;
}

#service_wrapper #top_recruit {
  display: none;
}

@media screen and (min-width: 960px) {
  #service_01 .outer {
    padding: 40px 0 120px;
    margin-bottom: 200px;
  }

  #service_01 .service_wrap {
    gap: 60px;
  }

  #service_01 .service_wrap li {
    display: flex;
    padding: 40px;
    align-items: center;
    gap: min(5vw, 80px);
  }

  #service_01 .service_wrap .content_textWrap {
    width: 50%;
    padding: 0;
    margin: 0;
  }

  #service_01 .service_wrap .content_textWrap h3 {
    align-items: flex-start;
    justify-content: space-between;
  }

  #service_01 .service_img {
    width: 50%;
  }
}

#company_01 {
  background-color: #1554A2;
}

.u_section_ttl {
  color: #1E4367;
  display: flex;
  flex-direction: column;
  font-family: var(--en);
  font-size: min(12vw, 7.5rem);
  line-height: 1.2;
  font-weight: 400;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.u_section_ttl span {
  font-family: var(--en);
  font-size: min(4vw, 2.6rem);
}

.u_section_ttl::after {
  width: min(15vw, 120px);
  content: "";
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

#company_01 .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#company_01 .content {
  text-align: left;
}

#company_01 .section_lead {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}

#company_01 .outer {
  background-color: #F4F4F4;
  width: 90%;
  margin: 5vw auto;
  padding: 40px 0 60px;
  color: var(--blue);
}

#company_01 .outer .content {
  display: flex;
  flex-direction: column;
  gap: min(10vw, 40px);
}

#company_01 dl {
  width: 100%;
}

#company_01 .outer .description-item {
  border-bottom: 1px solid #B8B8B8;
}

#company_wrapper #top_company,
#company_wrapper #top_recruit {
  display: none;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #company_01 .content_textWrap {
    width: 70%;
  }

  #company_01 .content_img {
    width: 30%;
  }

  #company_01 .outer {
    padding: 120px 0 200px;
  }

  #company_01 .inner {
    align-items: center;
  }

  #company_01 .outer .inner {
    max-width: none;
  }

  #company_01 .outer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(10vw, 40px);
  }

  #company_01 .outer .content .content_textWrap {
    width: 100%;
  }

  #company_01 .outer .content .content_img {
    width: 100%;
  }

  #company_01 dl {
    max-width: 630px;
  }
}

/* pcスタイル */
@media screen and (min-width: 1200px) {
  #company_01 .outer .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: min(10vw, 40px);
  }

  #company_01 .outer .content .content_textWrap {
    width: 50%;
  }

  #company_01 .outer .content .content_img {
    width: 50%;
  }
}

#works_01 {
  background-color: #1554A2;
}

#works_01 .outer {
  width: 90%;
  margin: 0 auto;
  background-color: #F4F4F4;
  padding: 40px 0 8vw;
}

#works_01 .content {
  width: 100%;
  margin: 0 auto;
}

#works_01 .content_itemWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3vw;
}

#works_wrapper #top_recruit {
  display: none;
}

@media screen and (min-width: 960px) {
  #works_01 .inner {
    gap: min(5vw, 40px);
    max-width: 1280px;
  }

  #works_01 .content_itemWrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
  }
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  width: 80%;
  background-color: #fefefe;
  padding: 10px;
}

.modal-close {
  position: absolute;
  bottom: 100%;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .modal-content {
    padding: 20px;
  }

  .modal-close {
    position: absolute;
    bottom: 100%;
    right: 0px;
    font-size: 40px;
    cursor: pointer;
    font-weight: 900;
    color: #ffffff;
  }
}

#contact_01 {
  background-color: #1554A2;
}

#contact_01 .outer {
  width: 90%;
  margin: 0 auto;
  background-color: #F4F4F4;
  padding: 40px 0 0;
}

#contact_01 .content_textWrap {
  padding-bottom: 60px;
  text-align: left;
}

#contact_01 h4 {
  font-size: min(5.4vw, 4.1rem);
  font-weight: 500;
  position: relative;
  padding-left: min(5%, 20px);
  line-height: 1;
  margin-bottom: 20px;
  text-align: left;
}

#contact_01 h4::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.form_outer {
  background-color: #F8F8F8;
  padding: 2%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

form {
  margin: 0 auto;
  max-width: 1160px;
  text-align: left;
  line-height: 3;
  container-type: inline-size;
  container-name: form;
  font-size: 1.8rem
}

.form_item--ttl {
  line-height: 2;
  font-size: min(4.8vw, 2.5rem);
  font-weight: 500;
}

.form_item--ttl .must {
  padding-left: 5%;
  color: #FF0000;
  font-family: var(--ja)
}

.form_item--input {
  padding: 0;
  margin-bottom: 1%;
}

.form_item--input span {
  color: #BCBCBC;
  line-height: 1;
  display: block;
  padding: 8px 0;
}

label {
  display: inline-block;
  font-size: 1.8rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border: 1px solid #C6C6C6;
}

input[id="postal_code"],
select {
  max-width: 272px;
}

input[type="tel"] {
  max-width: 400px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
}

.form_submit button {
  width: 100%;
  max-width: 345px;
  margin: 40px auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.3s;
}

.form_submit button:hover {
  opacity: 0.5;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

#contact_wrapper #top_recruit {
  display: none;
}

/* pcスタイル */
@media screen and (min-width: 960px) {


  #contact_01 .inner {
    max-width: 1280px;
  }

  #contact_01 .section_ttl {
    align-items: flex-start;
  }

  #contact_01 .content_textWrap {
    padding: 40px 0 60px;
  }

  #contact_01 .wrap02 h4 {
    margin-bottom: 40px;
  }

  form {
    max-width: 1100px;
    padding-top: 20px;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: calc(100% - 300px);
    margin: 0;
    padding: 20px 60px 20px 30px;
    line-height: 1;
    height: 80px;
  }

  .form_item:nth-of-type(10) .form_item--input {
    padding: 0 60px 0 30px;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(2) .form_item--ttl {
    height: 100px;
    line-height: 1.5;
  }

  .form_item:nth-of-type(2) .form_item--input {
    height: 100px;
  }

  .form_item:nth-of-type(11) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

  .form_item:nth-of-type(11) .form_item--input {
    height: 300px;
  }

  .form_submit button {
    margin: 40px auto 0;
  }
}