@charset "UTF-8";

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

:root {
  --ja: "Shippori Mincho", serif;
  --en: "Shippori Mincho", serif;
  --def: "Noto Sans JP", serif;
  --blue: #1E5199;
  --light-blue: #5398CE;
  --text-color: #333333;
  --red: #A52323;
}

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.7vw, 2rem);
  line-height: 1.8;
  text-align: center;
}

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;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger {
  opacity: 0;
}

/* header */
header {
  width: 100%;
  height: 60px;
  position: absolute;
  z-index: 100;
  transition: 0.5s all;
  top: 0;
}

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

header .logo {
  width: 60%;
  max-width: 350px;
}

header .pc_nav {
  display: none;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
  margin: 0;
  top: 8px;
  right: 8px;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 8px;
  height: 2px;
  background: var(--text-color);
  width: 25px;
  top: 20px;
}

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

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

.ham_btn.active span:nth-of-type(1) {
  top: 14px;
  left: 8px;
  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: 26px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.nav_wrap {
  padding: 60px 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  transition: opacity .6s ease, visibility .6s ease;
  line-height: 1.45;
}

.nav_wrap ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: left;
  line-height: 1.2;
  width: auto;
  margin: 0 auto 0 0;
}

.nav_wrap li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2rem;
  font-weight: 900;
  width: auto;
  margin: 0 auto;
  position: relative;
}

.nav_wrap li a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  /* アニメーションの起点を左に設定 */
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.nav_wrap li a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav_wrap li a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

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

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

.more {
  width: 80%;
  max-width: 350px;
  background-color: #ffffff;
  border: 1px solid var(--blue);
  margin: min(3vw, 40px) auto;
  line-height: 1;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.more a {
  padding: min(4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  position: relative;
  font-weight: 900;
  font-size: min(5vw, 2.4rem);
  letter-spacing: 0.1em;
}

.more a:hover {
  opacity: 1;
  background-color: var(--blue);
  color: #ffffff;
}

.more a:hover:after {
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

/* MV */
.MV {
  position: relative;
  aspect-ratio: 430/730;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
}

.MV .mv_01 {
  position: absolute;
  width: 80%;
  height: 35%;
  top: 1vw;
  left: 1vw;
  background-image: url(../img/mv_01.webp);
  background-size: cover;
  background-position: center;
}

.MV .mv_02 {
  position: absolute;
  width: 60%;
  height: 35%;
  bottom: 0;
  right: 1vw;
  background-image: url(../img/mv_02.webp);
  background-size: cover;
  background-position: center;
}

.MV .mv_deco {
  position: absolute;
  width: 80%;
  aspect-ratio: 876/620;
  top: 50%;
  right: 0;
  background-image: url(../img/mv_logo.webp);
  background-size: contain;
  transform: translateY(-55%);
}

.MV_text {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  z-index: 10;
}

.MV_text h2 {
  font-family: var(--ja);
  font-weight: 600;
  text-align: left;
  font-size: clamp(1.4rem, 8vw, 6rem);
}

.MV_text h2 span {
  font-family: var(--def);
  font-weight: 400;
  display: block;
  font-size: clamp(1.2rem, 3.2vw, 2rem);
}

/* 共通 */
section {
  position: relative;
  padding: min(12vw, 100px) 0 min(14vw, 120px);
}

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

.section_ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.5;
  font-size: clamp(2.4rem, 5vw, 5rem);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: left;
}

.section_ttl span {
  font-size: clamp(1.2rem, 3.7vw, 2rem);
  color: var(--text-color);
  font-family: var(--ja);
  font-weight: 400;
}

.content_textWrap {
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: min(4vw, 40px);
  line-height: 2.4;
}

.section_lead {
  font-family: var(--ja);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
}

.line {
  position: relative;
}

.line::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--blue);
  position: absolute;
  top: min(2vw, 10px);
  left: max(-2vw, -10px);
  z-index: 1;
}

.line:nth-of-type(2):before {
  left: min(2vw, 10px);
}

.content_imgWrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#top_company .content_img {
  width: 80%;
}

#top_company .content_img:nth-of-type(2) {
  width: 60%;
  margin: 0 0 0 auto;
  transform: translateY(-10%);
  z-index: 2;
}

#top_service {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 10px 0;
}

#top_service .inner {
  width: 100%;
}

#top_service .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#top_cometo {
  border-bottom: 1px solid #333333;
  padding: 10px 0;
}

#top_cometo .inner {
  width: 100%;
}

#top_cometo .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#top_work .section_ttl {
  align-items: center;
}

#top_work .content_wrap {
  display: flex;
  flex-direction: column;
  gap: min(8vw, 80px);
}

#top_work .content_wrap .content {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 40px);
  text-align: justify;
  max-width: 400px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  font-weight: 400;
}

#top_work .content_wrap .content h3 {
  font-size: clamp(1.4rem, 3.4vw, 1.8rem);
}

.contact {
  color: #ffffff;
  border-top: 1px solid #333333;
  position: relative;
}

.contact .bg {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-image: url(../img/contact_bg.webp);
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 10px;
}

.contact .inner {
  position: relative;
  z-index: 2;
}

.contact .section_ttl {
  color: #ffffff;
  align-items: center;
}

.contact .section_ttl span {
  color: #ffffff;
}

.contact p {
  display: flex;
  flex-direction: column;
  word-break: keep-all;
}

.map {
  padding: 10px;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.footer_inner {
  width: 80%;
  margin: min(5vw, 40px) auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer_left {
  width: 80%;
  max-width: 370px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.pc_nav {
  width: 100%;
  margin: min(5vw, 40px) auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8vw;
}

.pc_nav li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.4rem 3.4vw, 2.0rem);
  font-weight: 900;
  width: auto;
  margin: 0 auto;
  position: relative;
}

.pc_nav li a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  /* アニメーションの起点を左に設定 */
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.pc_nav li a:hover {
  opacity: 1;
  color: var(--blue);
}

.pc_nav li a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

#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 {
  border-top: 1px solid #333333;
  padding: 10px;
  font-size: 1.2rem;
}

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

  .pc_none {
    display: none;
  }

  header {
    height: 120px;
    background: none;
    line-height: 1.2;
  }

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

  header .logo {
    width: 400px;
  }

  .header_inner .more {
    position: fixed;
    top: -20%;
    right: 1vw;
    margin: 0 0 0 auto;
    width: 30%;
    transition: 1s top;
  }

  .header_inner .more.fixed {
    top: 1vw;
    z-index: 100;
  }

  .header_inner .more a {
    padding: min(2.2vw, 35px);
    font-size: min(2vw, 2.4rem);
  }

  header .pc_nav {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    top: 8vw;
    right: 0;
  }

  header .pc_nav:before {
    content: "";
    width: 1px;
    height: 140%;
    background-color: var(--text-color);
    position: absolute;
    top: 0;
    left: -14px;
    z-index: 1;
  }

  .pc_nav li {
    position: relative;
    height: 100%;
  }

  .pc_nav li a {
    padding: 0;
    height: 100%;
    font-size: min(1.6vw, 1.6rem);
    line-height: 1;
  }

  .pc_nav li a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
    font-weight: 900;
    width: auto;
    margin: 0 auto;
    position: relative;
    line-height: 1.5;
  }

  .pc_nav li a::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--blue);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s ease, opacity 0.7s ease;
  }

  .pc_nav li a:hover {
    opacity: 1;
    color: var(--blue);
  }

  .pc_nav li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .MV {
    aspect-ratio: 1920/1000;
    margin-bottom: 5vw;
  }

  .MV .mv_01 {
    position: absolute;
    width: 50%;
    height: 65%;
    top: 10px;
    left: 10px;
  }

  .MV .mv_02 {
    width: 40%;
    height: 40%;
    right: 10px;
  }

  .MV .mv_deco {
    width: 50%;
    top: 0%;
    transform: none;
  }

  .MV_text {
    top: auto;
    bottom: 0;
    transform: translate(-50%, 0);
  }

  .MV_text h2 {
    font-weight: 500;
    font-size: clamp(1.4rem, 4vw, 6rem);
  }

  .inner {
    max-width: 1200px;
  }

  #top_company .inner {
    max-width: 1560px;
    flex-direction: row-reverse;
    align-items: center;
  }

  #top_company .content_textWrap {
    width: 50%;
  }

  #top_company .content_imgWrap {
    width: 50%;
  }

  #top_company .more {
    margin: 0 auto 0 0;
  }

  #top_service .inner {
    max-width: 1920px;
    flex-direction: row;
    align-items: center;
  }

  #top_service .content_textWrap {
    width: 50%;
    padding: 0 2vw 1vw;
    justify-content: space-evenly;
    gap: 20px;
  }

  #top_service .content_img {
    width: 50%;
  }

  #top_service .more {
    margin: 0 auto 0 0;
  }

  #top_cometo .inner {
    max-width: 1920px;
    flex-direction: row-reverse;
    align-items: center;
  }

  #top_cometo .content_textWrap {
    width: 50%;
    padding: 0 2vw 1vw 0;
    justify-content: space-evenly;
    gap: 20px;
  }

  #top_cometo .content_img {
    width: 50%;
  }

  #top_cometo .more {
    margin: 0 auto 0 0;
  }

  #top_work .inner {
    max-width: 1400px;
  }

  #top_work .content_wrap {
    flex-direction: row;
  }

  #top_work .content_wrap .content {
    gap: 20px;
  }

  .contact {
    padding: min(12vw, 100px) 0 min(14vw, 80px);
  }

  .contact .inner {
    gap: 40px;
  }

  .contact .more {
    margin: 0 auto;
  }

  .footer_inner {
    width: 90%;
    max-width: 1800px;
    margin: 40px auto;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer_left {
    width: 370px;
    text-align: left;
    font-size: 1.6rem;
    margin: 0;
  }

  footer ul.pc_nav {
    position: relative;
    height: auto;
    max-width: none;
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    top: 0;
    width: auto;
    gap: 3vw;
  }

  .cr {
    position: relative;
  }

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

.MV.h2_ttl {
  aspect-ratio: auto;
  padding: max(8vw, 6rem) 0 max(18vw, 4rem);
  color: var(--blue);
  font-size: min(5vw, 5.0rem);
}

.MV.h2_ttl .mv_01 {
  width: 60%;
  height: 80%;
}

.MV.h2_ttl .mv_deco {
  width: 40%;
  top: auto;
  bottom: 0;
  transform: translateY(10%);
}

.MV.h2_ttl h2 {
  width: 38%;
  margin: 0 0 0 auto;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.1em;
}

#about_01 {
  border-bottom: 1px solid var(--text-color);
  padding-top: 0;
}

#about_01 .section_ttl {
  align-items: center;
}

#about_01 .content_wrap {
  display: flex;
  flex-direction: column;
  gap: min(8vw, 80px);
}

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

#about_01 .content_inner {
  display: flex;
  flex-direction: column;
  gap: min(4vw, 40px);
}

#about_01 .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#about_01 .content_ttl {
  display: flex;
  flex-direction: row;
  gap: min(2vw, 20px);
  margin-bottom: min(2vw, 10px);
  font-family: var(--en);
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 900;
}

#about_01 .content_ttl .num {
  font-family: var(--def);
  width: 10%;
  max-width: 56px;
  display: flex;
  align-items: center;
}

#about_01 p.content_lead {
  font-size: clamp(1.2rem, 3.7vw, 2rem);
  font-weight: 500;
}

#about_01 p {
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
  font-weight: 400;
}

#about_02 {
  padding: min(5vw, 40px) 0 min(10vw, 80px);
}

#about_02 .inner {
  gap: 0;
  max-width: 440px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .MV.h2_ttl {
    padding-top: 20vw;
    aspect-ratio: 1920/1000;
    margin-bottom: 5vw;
  }

  header .pc_nav.u_nav {
    width: 18%;
  }

  .MV.h2_ttl .mv_deco {
    background-image: url(../img/u-mv_deco.webp);
  }

  #about_01 .content_inner {
    flex-direction: row;
    align-items: center;
  }

  #about_01 .content_inner:nth-child(even) {
    flex-direction: row-reverse;
  }

  #about_01 .content_textWrap {
    width: 68%;
  }

  #about_01 .content_img {
    width: 32%;
  }

  #about_01 li:nth-child(3) .content_inner {
    flex-direction: row-reverse;
  }

  #about_01 li:nth-child(3) .content_inner:nth-child(even) {
    flex-direction: row;
  }

  #about_01 li:nth-child(4) .content_inner {
    flex-direction: row-reverse;
  }
}

#company_concept {
  padding-top: 0;
}

#company_concept .section_ttl {
  align-items: center;
}

#company_concept .inner {
  width: 100%;
  max-width: 1660px;
}

#company_concept .content {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 80px);
}

#company_concept .content_textWrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#company_concept .content_lead {
  font-family: var(--en);
  display: flex;
  flex-direction: column;
  font-size: clamp(1.6rem, 4.4vw, 3.6rem);
}

#company_concept .content_lead span {
  font-size: clamp(1.4rem, 3.7vw, 2rem);
}

#company_concept p {
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
  font-weight: 400;
}

#company_info .section_ttl {
  align-items: center;
}

#company_info .bg .inner .content_img {
  width: 100%;
  aspect-ratio: 3/1;
  background-image: url(../img/company_img.webp);
  background-size: cover;
  background-position: center;
}

dl {
  width: 100%;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.description-item {
  display: flex;
  width: 100%;
}

.description-item dt {
  width: max(120px, 20%);
  padding: 8px;
  border-bottom: 2px solid #1D1D1D;
}

.description-item dd {
  width: calc(100% - min(120px, 20%));
  padding: 8px 5%;
  border-bottom: 2px solid #CCCCCC;
  text-align: left;
  word-break: keep-all;
}

.description-item:first-of-type dt {
  border-top: 2px solid #1D1D1D;
}

.description-item:first-of-type dd {
  border-top: 2px solid #CCCCCC;
}

.map {
  width: 100%;
  height: 50vw;
  max-height: 500px;
}

iframe {
  display: block;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  dl {
    max-width: 1200px;
    font-size: 2.4rem;
    line-height: 2.4;
  }

  .description-item dt {
    width: max(120px, 25%);
    padding: 10px;
  }

  .description-item dd {
    width: calc(100% - min(120px, 25%));
    padding: 10px 5%;
  }
}

/* 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%;
  }
}

#work_01 {
  padding-top: 0;
}

#work_01 .section_ttl {
  align-items: center;
}

#work_01 .content_itemWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(10vw, 40px) min(5vw, 20px);
}

#work_01 .content_item {
  width: clamp(120px, 40vw, 400px);
}

#work_01 .content_itemWrap p {
  text-align: center;
  font-size: clamp(1.2rem, 3.7vw, 2.2rem);
}

@media screen and (min-width: 960px) {
  #work_01 .content_item {
    width: 23%;
  }
}

/* モーダル */
.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 {
  padding-top: 0;
}

#contact_01 .section_ttl {
  align-items: center;
}

.contact_lead {
  word-break: keep-all;
}

#contact_01 .outer {
  width: 100%;
  margin: 0 auto;
  background-color: #F4F4F4;
  padding: 0;
  margin-bottom: min(8vw, 80px);
}

#contact_01 .content_textWrap {
  text-align: left;
  gap: min(5vw, 40px);
}

#contact_01 h4 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  position: relative;
  padding-left: min(5%, 20px);
  line-height: 1;
  text-align: left;
}

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

#contact_01 .tel_btn {
  width: 80%;
  max-width: 345px;
  margin: 0 auto;
}

.form_outer {
  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;
}

.form_item--ttl {
  line-height: 2;
  font-weight: 500;
}

.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;
}

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

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

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

.form_submit button {
  display: inline-block;
  width: 80%;
  max-width: 350px;
  background-color: #ffffff;
  border: 1px solid var(--blue);
  margin: 40px auto;
  line-height: 1;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: min(4vw, 24px);
  font-size: min(5vw, 2.4rem);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  transition: all 0.7s;
  font-weight: 600;
}

.form_submit button:hover {
  opacity: 1;
  background-color: var(--blue);
  color: #ffffff;
}

#contact_wrapper #top_recruit {
  display: none;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #contact_01 .inner {
    max-width: 1280px;
  }

  #contact_01 .outer {
    width: 96%;
    max-width: 1820px;
  }

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

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

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

  .form_item--ttl {

    width: 190px;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: calc(100% - 190px);
    margin: 0;

    line-height: 1;
    height: 80px;
  }

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

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

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

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