@charset "UTF-8";

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

:root {
  --en: "Oswald", sans-serif;
  --def: "Noto Sans JP", serif;
  --blue: #008AD1;
  --bg-blue: #E8F7FF;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.4rem, 3.7vw, 1.8rem);
  line-height: 2;
  text-align: center;
}

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

.ja {
  font-family: var(--def);
}

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

a {
  color: #333333;
}

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: #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: 60px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  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 {
  max-width: 230px;
  width: calc(100% - 100px);
}

.header_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 52px;
  height: 52px;
  z-index: 999;
  margin: 0;
  top: 4px;
  right: 4px;
  background-color: var(--blue);
}

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

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

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

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

.ham_btn.active span:nth-of-type(2) {
  top: 29px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}

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

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

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

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap.show {
  right: 0;
}

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

.nav_wrap .tel a {
  font-size: 2.0rem;
  color: #ffffff;
}

.nav_wrap .tel a span {
  font-size: 1.4rem;
}

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

.MV_slide {
  width: 100%;
}

.MV_text {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(8vw, 4.0rem);
  font-weight: 900;
  line-height: 1.5;
}

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

.section_ttl {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.0rem, 9vw, 6.0rem);
  color: var(--blue);
  line-height: 1.5;
  font-family: var(--en);
  text-transform: uppercase;
}

.section_ttl span {
  color: #333333;
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  font-weight: 400;
  font-family: var(--def);
}

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

#top_greeting {
  background-image: url(../img/top_greeting-bg.png);
  color: #ffffff;
  margin-top: 40px;
  padding: 80px 0 60px;
}

#top_greeting .section_ttl {
  color: #ffffff;
}

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

.more_btn a {
  width: 80vw;
  max-width: 350px;
  background-color: var(--blue);
  color: #ffffff;
  padding: min(8%, 20px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 120px;
  position: relative;
  line-height: 1;
}

.more_btn a::after {
  content: "";
  width: 9px;
  aspect-ratio: 9/16;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

.more_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}

.more_btn a:hover {
  opacity: 1;
}

.more_btn a:hover:before {
  opacity: 0.3;
}

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

#top_business .inner {
  width: 100%;
}

#top_business .content {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  margin-bottom: 40px;
}

#top_business h4 {
  font-family: var(--en);
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
  font-size: min(2.0rem, 5.8vw, 2.4rem);
}

#top_business h4 span {
  font-family: var(--en);
  color: #333333;
  font-weight: 600;
  line-height: 1.5;
}

#top_area .inner {
  width: 100%;
}

.area_head {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.area_head h4 {
  font-size: clamp(2.0rem, 5.8vw, 2.4rem);
}

.area_img {
  aspect-ratio: 480/330;
  background-image: url(../img/sp_area_img.png);
  background-size: cover;
}

#top_news {
  background-color: #F2F2F2;
}

#top_news .section_ttl {
  color: #333333;
  text-shadow: 1px 1px 0 var(--blue), -1px -1px 0 var(--blue),
    -1px 1px 0 var(--blue), 1px -1px 0 var(--blue),
    0px 1px 0 var(--blue), 0-1px 0 var(--blue),
    -1px 0 0 var(--blue), 1px 0 0 var(--blue);
  width: 80%;
  max-width: 177px;
  align-items: center;
  margin: 0 auto;
  position: relative;
  border-bottom: 3px solid var(--blue);
  padding-bottom: min(2%, 10px);
}

.news_list_wrap {
  max-height: 250px;
  overflow-y: scroll;
}

.news_list_wrap ul li {
  border-bottom: 1px dotted var(--blue);
}

.news_list_wrap ul li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--blue);
  padding: 20px 0;
}

#top_news .section_ttl span {
  color: var(--blue);
  text-shadow: none;
}

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

#top_works .inner {
  width: 100%;
  max-width: none;
}

#top_slide {
  padding: 40px 0;
}

#top_slide .slide {
  margin-left: 2vw;
  width: 60vw;
}

#contact {
  background-image: url(../img/contact_bg.png);
  background-size: cover;
  background-position: center;
}

#contact .inner {
  gap: min(14vw, 130px);
}

#contact .section_lead {
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
  text-align: center;
}

#contact .section_ttl {
  color: #ffffff;
  font-size: clamp(4.0rem, 12vw, 6.0rem);
}

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

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

.contact_btn {
  max-width: 286px;
  margin: 0 auto;
}

#access {
  padding: 0;
}

#access iframe {
  display: block;
}

footer {
  background-color: #ffffff;
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.footer_inner {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}

.footer_logo {
  max-width: 270px;
  margin: 0 auto;
}

.footer_tel a {
  color: var(--blue);
  font-size: 2.4rem;
  font-family: var(--en);
}

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

.cr {
  padding: 10px;
  background-color: var(--blue);
  color: #ffffff;
  font-weight: 700;
}

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

  .pc_none {
    display: none;
  }

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

  .header_inner {
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 5;
  }

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

  .header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: calc(100% - 200px);
    max-width: 680px;
    height: 100%;
    gap: 10px;
  }

  .header_right--upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 48px;
  }

  .header_right--upper .header_tel a {
    color: var(--blue);
    font-size: 2.4rem;
    font-family: var(--en);
  }

  .header_right--upper .header_contact a {
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 220px;
  }

  .header_right--upper .header_contact a:hover {
    opacity: 1;
  }

  .header_right--upper .header_contact a img {
    width: 136px;
  }

  .header_right--bottom {
    width: 100%;
    align-items: flex-end;
  }

  .pc_nav {
    width: 100%;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .pc_nav ul li {
    width: calc((100% - 80px)/ 5);
    position: relative;
  }

  .pc_nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    color: var(--blue);
    font-family: var(--en);
  }

  .pc_nav ul li a span {
    font-size: 1.6rem;
    color: #333333;
    font-family: var(--ja);
  }

  .MV {
    margin-top: 120px;
  }

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

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

  section {
    padding: 100px 0 120px;
  }

  .inner {
    max-width: 1600px;
  }

  #top_slide .slide {
    width: 25vw;
  }

  #top_business .content_wrap.flex {
    gap: 0;
  }

  #top_business .content {
    gap: 0;
  }

  #top_area {
    padding: 0;
  }

  #top_area .inner {
    flex-direction: row;
  }

  #top_area .area_head {
    width: 20%;
    padding-top: 80px;
  }

  #top_area .area_img {
    width: 80%;
    aspect-ratio: 1000/ 750;
    background-image: url(../img/area_img.png);
    background-position: center;
  }

  #top_news .inner {
    max-width: 1000px;
    gap: 40px;
  }

  #top_news .section_ttl {
    align-items: flex-start;
    margin: 0 auto 0 0;
  }

  .news_list_wrap ul li a {
    flex-direction: row;
  }

  .news_list_wrap ul li a .date {
    width: 200px;
    text-align: left;
  }

  #top_works {
    overflow: hidden;
  }

  #top_works .inner {
    max-width: none;
    gap: 40px;
    flex-direction: row;
  }

  #top_works .works_head {
    width: 30%;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-left: 5vw;
  }

  #top_slide {
    width: 80%;
  }

  .description-item {
    display: flex;
  }

  dl {
    width: 55%;
    max-width: 570px;
    margin-top: 0;
  }

  dt {
    width: 168px;
  }

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

  @container top_company (max-width: 1200px) {
    #contact .content {
      flex-direction: column;
    }

    #contact dl {
      width: 100%;
    }

    #contact .content_img {
      width: 80%;
    }
  }

  #contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0 140px;
  }

  #contact .inner {
    gap: 80px;
  }

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

  footer {
    container-type: inline-size;
    container-name: footer;
  }

  .footer_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
    margin-bottom: 20px;
  }

  .footer_inner--left {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer_logo {
    width: 100%;
    max-width: 270px;
  }

  footer nav {
    width: 50%;
    max-width: 800px;
    margin: 0 5vw 0 0;
  }

  footer nav ul {
    display: flex;
    gap: 4vw;
    justify-content: flex-end;
  }

  footer nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    color: var(--blue);
    font-family: var(--en);
  }

  footer nav ul li a span {
    font-size: 1.6rem;
    color: #333333;
    font-family: var(--ja);
  }

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

.h2_ttl {
  margin-top: 60px;
  background: url("../img/mv_business.png") no-repeat center / cover;
  text-align: center;
  font-weight: 700;
  padding: max(10vw, 6rem) 0;
  color: #ffffff;
  line-height: 1.5;
}

.h2_ttl h2 {
  font-size: clamp(3.6rem, 12vw, 6rem);
  color: #ffffff;
  display: flex;
  text-transform: uppercase;
  flex-direction: column;
  font-family: var(--en);
}

.h2_ttl h2 span {
  font-size: clamp(1.6rem, 3.7vw, 2rem);
}

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

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

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

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

.U_section_ttl {
  font-family: var(--en);
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
  font-size: min(2.0rem, 5.8vw, 2.4rem);
  text-transform: uppercase;
}

.U_section_ttl span {
  font-family: var(--en);
  color: #333333;
  font-weight: 600;
  line-height: 1.5;
}

.U_section_ttl {
  width: 100%;
  padding: min(2%, 40px);
  font-size: min(5.0vw, 3.0rem);
  color: var(--blue);
  background-size: 100% 100%;
  line-height: 1.5;
  margin-bottom: min(4%, 40px);
  font-family: var(--en);
  display: flex;
  flex-direction: column;
}

#business_wrapper {
  background-color: #E1F6FC;
}

.business {
  margin-bottom: 40px;
  background-size: cover;
  background-position: center;
}

#business_01 {
  background-image: url(../img/business01_bg.png);
}

#business_02 {
  background-image: url(../img/business02_bg.png);
}

#business_03 {
  background-image: url(../img/business03_bg.png);
}

#business_04 {
  background-image: url(../img/business04_bg.png);
}

.business .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 10vw;
}

.business .content {
  padding-bottom: 0;
}

.business .content_textWrap {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 5%;
}

.business .content_textWrap h5 {
  font-size: min(5.0vw, 3.0rem);
}

@media screen and (min-width: 960px) {
  .h2_ttl {
    line-height: 1;
  }

  .U_section_ttl {
    word-break: normal;
    text-wrap: nowrap;
  }

  .business .content {
    gap: 5%;
  }

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

  .business .content_img {
    width: 100%;
  }

  .business .content_textWrap {
    width: 100%;
  }
}

#company_wrapper,
#company_company {
  background-color: var(--bg-blue);
}

#company_greeting .content {
  background-color: #ffffff;
  max-width: 1568px;
  width: 100%;
  margin: 40px auto 0;
  padding: 5%;
}

.company {
  container-type: inline-size;
  container-name: top_company;
}

.company .content {
  margin: 40px auto;
  width: 90%;
  max-width: 1280px;
  flex-direction: row-reverse;
  gap: 80px;
  align-items: center;
}

dl {
  width: 100%;
  margin: 40px auto 0;
}

dl a {
  color: #333333;
}

dt,
dd {
  padding: 14px 2%;
  border-bottom: 1px solid #333333;
}

@container top_company (max-width: 1200px) {
  .company .content {
    flex-direction: column;
  }

  .company dl {
    width: 100%;
  }

  .company .content_img {
    width: 80%;
  }

  .company {
    container-type: inline-size;
    container-name: top_company;
  }

  .company .section_ttl .right {
    text-align: center;
  }

  .company .content {

    width: 90%;
    max-width: 1280px;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
  }

  .company .content_img {
    width: 50%;
  }

  .description-item {
    display: flex;
  }

  dl {
    width: 55%;
    max-width: 570px;
    margin-top: 0;
  }

  dt {
    width: 168px;
  }

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

  @container top_company (max-width: 1200px) {
    .company .content {
      flex-direction: column;
    }

    .company dl {
      width: 100%;
    }

    .company .content_img {
      width: 80%;
    }
  }
}

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

#works_01 .section_lead {
  text-align: justify;
  margin: 0 auto;
}

#works_01 .content {
  width: 100%;
  margin: min(8vw, 60px) auto;
}

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

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

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

/* モーダル */
.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;
  }
}

#recruit_01 {
  background-color: var(--bg-blue);

}

#recruit_01 .section_lead {
  max-width: 940px;
  margin: 0 auto;
}

#recruit_01 .content {
  width: 100%;
  margin: min(8vw, 60px) auto;
}

#recruit_01 .content h4 {
  font-size: min(5.0vw, 3.0rem);
  margin-bottom: min(8vw, 40px);
}

#recruit_01 table {
  border: 1px solid #535353;
  border-bottom: none;
  margin-bottom: min(10vw, 120px);
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

#recruit_01 table tr {
  display: flex;
  flex-direction: column;
}

#recruit_01 table th,
#recruit_01 table td {
  padding: min(2%, 20px);
  text-align: left;
  border-bottom: 1px solid #535353;
}

#recruit_01 table th {
  background-color: var(--blue);
  color: #ffffff;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
}

#recruit_01 table td {
  color: #333333;
}

.recruit_btn {
  width: 80%;
  max-width: 357px;
  margin: 0 auto;
}

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

  #recruit_01 table {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 80px;
  }

  #recruit_01 table tr {
    flex-direction: row;
  }

  #recruit_01 table th {
    width: 220px;
    border-right: 1px solid #535353;
  }

  #recruit_01 table td {
    width: calc(100% - 220px);
  }
}

#contact_01 {
  background-color: #E1F6FC;
}

#contact_01 .inner {
  gap: 40px;
}

#contact_01 .content {
  background-color: #ffffff;
  padding: min(5vw, 60px) 0;
}

form {
  width: 100%;
  margin: 20px auto;
  max-width: 700px;
  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 {
  font-family: "Noto Sans JP", serif;
  background-color: #24507D;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1% 5%;
  margin-right: 5%;
  border-radius: calc(infinity * 1px);
}

.form_item--ttl .optional {
  font-family: "Noto Sans JP", serif;
  background-color: #E1F6FC;
  font-size: 1.4rem;
  padding: 1% 5%;
  margin-right: 5%;
  border-radius: calc(infinity * 1px);
}

.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 {
  width: 100%;
  max-width: 345px;
  margin: 60px auto;
  border: none;
}

.form_submit button {
  background: none;
  border: none;
}

#contact_wrapper #contact {
  display: none;
}

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

  .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--input label {
    line-height: 1;
  }

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

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