@charset "UTF-8";

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

:root {
  --en: "Noto Serif JP", serif;
  --ja: "Yuji Syuku", serif;
  --def: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 Pro", " ヒラギノ明朝 Pro", "  MS P明朝", "MS P明朝", serif;
  --text-blue: #17375D;
  --bg-blue: #16375D;
  --text_color: #5F5F5F
}

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

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

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

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

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(--text-blue);
}

.red {
  color: #ff0000;
}

.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: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
}

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

header .logo {
  width: 180px;
}

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

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: var(--text_color);
  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 {
  background-color: #F5F5F5;
}

.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: var(--text_color);
  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: #ffffff;
  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;
  margin-bottom: 20px;
  gap: 10px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
}

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

.nav_wrap li a span {
  color: var(--text_color);
  font-size: min(4.6vw, 2.0rem);
}

.insta a {
  display: inline-block;
  margin: 0 auto;
}

.insta img {
  width: 30px;
}

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

.MV_slide {
  width: 100%;
}

.MV_catch {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  max-width: 900px;
}

/* 共通 */
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.2;
  font-size: min(18vw, 16.2rem);
  color: #1E4367;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.section_ttl span {
  color: #ffffff;
  font-size: min(4vw, 2.8rem);
  letter-spacing: 0.2em;
  position: relative;
}

.section_ttl span::before {
  content: "";
  width: 40vw;
  max-width: 255px;
  height: 1px;
  background-color: #C4C4C4;
  position: absolute;
  top: 50%;
  left: 120%;
  z-index: 1;
}

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

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

#top_service .section_lead {
  text-align: left;
}

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

.anchor_wrap li {
  width: 100%;
  position: relative;
}

#top_service h3 {
  font-size: clamp(3.0rem, 8vw, 6.6rem);
  text-align: left;
  line-height: 1;
  font-family: var(--ja);
  position: relative;
  z-index: 3;
}

.anchor_wrap li .anchor_img {
  width: 100%;
  margin-top: -2%;
}

.more {
  width: 80%;
  max-width: 550px;
  margin: 0 auto;
  background-color: #2C2C2C;
  border: 2px solid #ffffff;
  padding: 4px 10px;
}

.anchor_wrap li .more {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
  background-color: #2C2C2C;
  border: 2px solid #ffffff;
  padding: 4px 10px;
}

.more a {
  text-align: center;
  color: #ffffff;
  position: relative;
}

.more a::before {
  content: "";
  width: 20%;
  aspect-ratio: 18/4;
  background-image: url(../img/more_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

#top_cases {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-height: 1030px;
}

#top_cases .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
}

#top_cases li {
  width: 50%;
  height: 50%;
  background-image: url(../img/case01.png);
  background-size: cover;
  background-position: center;
}

#top_cases li:nth-child(2) {
  background-image: url(../img/case02.png);
}

#top_cases li:nth-child(3) {
  background-image: url(../img/case03.png);
}

#top_cases li:nth-child(4) {
  background-image: url(../img/case04.png);
}

#top_cases .section_ttl {
  width: 50%;
  max-width: 411px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top_cases .more {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8%;
  background-color: #2C2C2C;
  border: 2px solid #ffffff;
  padding: 4px 10px;
}

#top_flow {
  padding-top: 60px;
}

#top_flow .section_ttl {
  color: var(--text-blue);
  font-size: clamp(3.0rem, 10vw, 6.0rem);
  position: relative;
  line-height: 1;
  width: auto;
  align-items: center;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

#top_flow .section_ttl::before {
  content: "Flow";
  font-size: clamp(2.0rem, 7vw, 4.0rem);
  color: #ECF1F7;
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translate(-30%, 40%);
}

#top_flow ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
  gap: 20px 40px;
  margin-top: min(5vw, 40px);
}

#top_flow ol li {
  width: calc((100% - 40px)/ 2);
  list-style: none;
  color: #C4D7ED;
}

#top_flow .flow_icon {
  position: relative;
}

#top_flow .flow_icon::after {
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url(../img/flow_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translate(-50%, -50%);
}

#top_flow ol li:last-child .flow_icon:after {
  display: none;
}

#top_recruit {
  background-color: var(--bg-blue);
  padding: 40px 0;
}

#top_recruit::before {
  content: "";
  width: 35%;
  height: 100%;
  background-image: url(../img/recruit_img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
}

#top_recruit .section_ttl {
  font-size: min(11vw, 16.2rem);
}

#top_recruit .section_ttl span::before {
  content: "";
  width: 30vw;
  height: 1px;
  background-color: #C4C4C4;
  position: absolute;
  top: 50%;
  left: 120%;
  z-index: 1;
}

#top_recruit .text_wrap {
  width: 60%;
}

.coming_soon {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2vw;
  width: 80%;
  margin: 5vw 0 0 auto;
}

.coming_soon p {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 2.0rem);
  font-weight: 400;
  font-family: var(--en);
  line-height: 1;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 30%;
  max-width: 88px;
  height: 1px;
  background-color: white;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid white;
}

.company {
  padding-bottom: 0;
}

.company .section_ttl {
  flex-direction: column-reverse;
  font-size: min(11vw, 7.2rem);
  align-items: center;
}

.company .section_ttl span {
  color: var(--text-blue);
}

.company .section_ttl span::before {
  display: none;
}

dl {
  width: 90%;
  max-width: 480px;
  margin: 0 auto 40px;
  color: var(--text-blue);
  letter-spacing: 0.2em;
}

.description-item {
  display: flex;
  text-align: left;
  padding: 3% 0;
}

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

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

.company .bg {
  aspect-ratio: 430/103;
  background-image: url(../img/company_bg.png);
  background-size: cover;
  background-position: center;
}

.contact {
  background-color: #2C2C2C;
}

.contact .section_ttl {
  flex-direction: column-reverse;
  font-size: min(11vw, 4.3rem);
  align-items: center;
  color: #ffffff;
}

.contact .section_ttl span {
  color: #ffffff;
  padding-top: 10px;
  font-size: min(4vw, 2.0rem);
}

.contact .section_ttl span::before {
  width: 40px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact .section_lead {
  word-break: keep-all;
  text-align: center;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0px auto;
  width: 100%;
}

.contact .contact_btn {
  width: 70%;
  max-width: 446px;
  margin: 0 auto;
}

footer {
  background-color: #07264A;
  padding-top: 40px;
}

#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;
  background-color: #07264A;
  color: #ffffff;
  font-weight: 700;
}

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

  .pc_none {
    display: none;
  }

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

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

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

  .pc_nav {
    width: calc(100% - 400px);
    max-width: 1000px;
    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%;
  }

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

  .pc_nav ul li a span {
    font-size: min(1.2vw, 2.0rem);
    color: var(--text_color);
  }

  .insta {
    padding-left: 3vw;
  }

  .insta a img {
    width: 30px;
  }

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

  .MV_catch img {
    width: 70%;
    max-width: 788px;
  }

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

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

  section {
    padding: 100px 0 120px;
  }

  .inner {
    max-width: 1280px;
  }

  .anchor_wrap {
    flex-direction: row;
    margin-top: min(10vw, 140px);
    gap: min(10vw, 40px);
  }

  .anchor_wrap li {
    display: flex;
    margin-left: 66px;
  }

  #top_service .anchor_wrap li h3 {
    position: absolute;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.1rem;
    line-height: 1;
    text-align: left;
    top: max(-5vw, -120px);
    right: 100%;
  }

  #top_cases {
    width: 100%;
    height: 100%;
  }

  #top_cases .more {
    padding: 8px 10px;
  }

  #top_cases .more p {
    font-size: 3.0rem;
  }

  #top_flow {
    padding-top: 120px;
  }

  #top_flow ol {
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 auto;
    gap: 20px 40px;
    margin-top: min(5vw, 40px);
  }

  #top_flow ol li {
    width: calc((100% - 40px)/ 2);
    list-style: none;
    color: #C4D7ED;
  }

  #top_recruit {
    padding: 80px 0;
  }

  #top_company {
    padding: min(10vw, 120px) 0;
  }

  #top_company .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10%;
  }

  #top_company .section_ttl {
    flex-direction: column;
    font-size: min(11vw, 7.2rem);
    align-items: flex-start;
  }

  #top_company .section_ttl span {
    color: var(--text-blue);
  }

  #top_company .section_ttl span::before {
    display: block;
  }

  dl {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-blue);
    font-size: 2.2rem
  }

  .description-item {
    display: flex;
    text-align: left;
    padding: 3% 0;
  }

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

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

  .company .bg {
    display: none;
  }

  .contact {
    padding: 80px 0;
  }

  .contact_btn--wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: 977px;
  }

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

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

  .footer_nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    height: 100%;
    font-size: min(1vw, 1.2rem);
    color: #A7A7A7;
    text-transform: uppercase;
    line-height: 1;
  }

  .footer_nav li a span {
    font-size: min(1.2vw, 2.0rem);
    color: #ffffff;
  }

  .cr {
    position: relative;
  }

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

.u_container {
  background-color: var(--bg-blue);
}

.u_container header {
  background-color: var(--bg-blue);
}

.u_container .header_inner {
  filter: invert(100%);
}

.u_container .header_inner ul li a span {
  color: #000000;
}

.u_container .h2_ttl {
  margin-top: 65px;
  background: url("../img/mv_service.png") no-repeat center / cover;
  padding: max(10vw, 6rem) 0;
  letter-spacing: 0.08em;
}

.u_section_ttl {
  color: var(--text-blue);
  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(--text-blue);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

#service_01 {
 
}

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

#service_01 .inner {
  width: 100%;
}

#service_01 .section_ttl {
  font-size: clamp(1.6rem, 4.2vw, 4rem);
  align-items: center;
  margin-bottom: 20px;
}

#service_01 .section_lead {
  word-break: keep-all;
}

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

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

#service_01 .service_wrap .content_textWrap {
  width: 94%;
  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;
  font-family: var(--ja);
  color: var(--text-blue);
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

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

@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 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #service_01 .service_img {
    width: 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: 94%;
  margin: 5vw auto;
  padding: 40px 0 60px;
}

#company_01 .outer .description-item {
  border-bottom: 1px solid var(--text-blue);
}

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

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

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

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

#recruit_01 .section_lead {
  display: flex;
  flex-direction: column;
  font-size: clamp(3rem, 6vw, 5rem);
}

#recruit_01 .section_lead span {
  font-size: clamp(1.2rem, 3.4vw, 2rem);
}

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

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

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

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

  #case_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 .outer {
  width: 94%;
  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(--text-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;
}

.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;
  background-color: var(--blue);
  padding: 14px;
  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;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #contact_01 {
    padding-bottom: 0;
  }

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