@charset "UTF-8";

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

:root {
  --en: "Zen Kaku Gothic Antique", sans-serif;
  ;
  --def: "Zen Old Mincho", serif;
  --red: #b30e0e;
  --text-blue: #009ffb;
  --bg-blue: #e6f6ff;
  --text_color: #333333
}

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

.en {
  font-family: var(--en);
  font-weight: 700;
  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: 55px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bg-blue);
  z-index: 100;
  box-shadow: 0 3px 3px 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;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.2;
  font-size: 2.0rem;
  font-weight: 600;
}

.logo a h1 span {
  font-size: 1.6rem;
}

.logo_icon {
  width: 32px;
}

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

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 8px;
  height: 2px;
  background: #ffffff;
  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;
}

.overlay {
  content: "";
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.6s;
  visibility: hidden;
  opacity: 0;
}

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

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

.nav_wrap.show {
  right: 0;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}

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

.nav_wrap li a {
  text-decoration: none;
  padding: 10px;
  position: relative;
  gap: 10px;
  font-weight: 700;
}

/* 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_catch {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
}

.MV_catch p {
  font-size: min(7.7vw, 6.0rem);
  color: var(--text-blue);
  text-shadow: min(0.5vw, 8px) min(0.5vw, 8px) 0 #ffffff;
  text-align: left;
  line-height: 1.5;
}

.MV_catch p:nth-of-type(2) {
  text-align: right;
}

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

.section_ttl {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 4vw, 3.0rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.section_ttl span {
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 700;
  font-family: var(--en);
  color: var(--text-blue);
}

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

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

.content_textWrap {
  background-color: #ffffff;
  padding: min(5vw, 40px);
  display: flex;
  flex-direction: column;
}

.message .content_textWrap h2 {
  text-align: left;
  word-break: keep-all;
  color: var(--text-blue);
  font-size: clamp(2.0rem, 6vw, 3.6rem);
  line-height: 1.5;
  padding-bottom: min(4%, 20px);
}

.message .content_textWrap p {
  text-align: justify;
  text-indent: 1.8rem
}

#top_area {
  overflow: hidden;
  background-color: #ffffff;
  background-image: url(../img/deco01.webp);
  background-size: cover;
  background-position: 10% bottom;
  padding-bottom: 0;
}

#top_area .content_textWrap {
  background-color: #ffffff;
  border-radius: min(5vw, 30px);
  border: 2px solid var(--text-blue);
  padding: min(5vw, 40px);
  gap: min(5vw, 40px);
  margin-bottom: 80vw;
  position: relative;
  z-index: 2;
  align-items: center;
}

#top_area .content_textWrap p {
  text-align: justify;
  font-size: clamp(1.4rem, 3.7vw, 2.0rem);
}

.areamap {
  position: absolute;
  top: 0;
  width: 100%;
}

#top_links {
  padding: 0;
}

#top_links ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#top_links ul li {
  aspect-ratio: 96/43;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/link_img01.webp);
  background-size: cover;
}

#top_links ul li:nth-child(2) {
  background-image: url(../img/link_img02.webp);
}

#top_links ul li:nth-child(3) {
  background-image: url(../img/link_img03.webp);
}

#top_links ul li:nth-child(4) {
  background-image: url(../img/link_img04.webp);
}

#top_links ul li a h2 {
  display: flex;
  flex-direction: column;
  color: var(--red);
  font-family: var(--en);
  font-size: clamp(1.2rem, 3vw, 3.0rem);
  position: relative;
  z-index: 5;
}

#top_links ul li a h2 span {
  color: #ffffff;
  font-family: var(--def);
  font-size: clamp(2.4rem, 7vw, 6.0rem);
  border-bottom: 2px solid #ffffff;
  line-height: 1.8;
}

#top_links ul li a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#top_links ul li a::before {
  content: "";
  width: calc(100% - 6vw);
  height: calc(100% - 6vw);
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.5s;
}

#top_links ul li a:hover {
  opacity: 1;
}

#top_links ul li a:hover::before {
  width: 100%;
  height: 100%;
}

.contact {
  overflow: hidden;
  background-color: var(--bg-blue);
  text-align: center;
  padding-bottom: min(20vw, 200px);
}

.contact .inner {
  gap: min(8vw, 80px);
}

.contact::before {
  content: "";
  width: 100%;
  height: 30%;
  background-image: url(../img/contact_deco.webp);
  background-size: cover;
  background-position: center;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
}

.contact .section_ttl {
  font-size: clamp(4.0rem, 10vw, 6.4rem);
}

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

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(5vw, 40px);
  margin: 0px auto;
  width: 80%;
}

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

.map {
  height: 120vw;
  max-height: 570px;
}

footer {
  padding: 40px 0 0;
  color: var(--bg-blue);
}

footer .inner {
  width: 80%;
}

.footer_inner--left {
  width: 80%;
  max-width: 330px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer_inner--left .logo a {
  flex-direction: column-reverse;
}

.footer_inner--left .logo a h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 4.0rem;
  font-weight: 600;
}

.footer_inner--left .logo a h2 span {
  font-size: 1.6rem;
}

.footer_inner--left .logo_icon {
  width: 74px;
}

.footer_nav {
  width: 100%;
}

.footer_nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10vw;
}

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

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

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

  .pc_none {
    display: none;
  }

  .MV {
    margin: 0 auto;
  }

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

  .header_inner {
    width: 96%;
    margin: 0 auto;
    justify-content: space-between;
    padding-left: 0;
  }

  .logo a {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 300px;
  }

  .logo a h1 {
    font-size: 4.0rem;
    font-weight: 600;
  }

  .logo_icon {
    width: 58px;
  }

  .header_right {
    width: calc(100% - 300px);
    max-width: 830px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 0;
    height: 100%;
  }

  .pc_nav {
    width: 100%;
    max-width: 540px;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    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: center;
    gap: 4px;
    height: 40px;
    font-size: min(1.2vw, 1.6rem);
  }

  .header_btnWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 4px;
  }

  .MV {
    margin-top: 100px;
  }

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

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

  section {
    padding: 100px 0 120px;
  }

  .inner {
    max-width: 1680px;
  }

  .message .inner {
    max-width: 1540px;
  }

  .message .content {
    display: flex;
    position: relative;
  }

  .message .content_img {
    width: 55%;
  }

  .message .content_textWrap {
    width: 55%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: min(5vw, 120px) min(3vw, 60px);
    background-color: rgba(255, 255, 255, 0.9);
  }

  .content_textWrap {
    width: 50%;
  }

  #top_area .content_textWrap {
    padding: 20px;
    gap: 20px;
    margin-bottom: min(30vw, 500px);
  }

  .areamap {
    right: 5%;
    width: 95%;
    max-width: 1350px;
  }

  #top_links ul {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  #top_links ul li {
    width: 50%;
  }

  #top_links ul li a h2 {
    font-size: clamp(1.2rem, 1.5vw, 3.0rem);
  }

  #top_links ul li a h2 span {
    font-size: clamp(2.4rem, 3vw, 6.0rem);
  }

  .contact {
    padding-bottom: min(20vw, 160px);
  }

  .contact::before {
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 1920/272;
  }

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

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

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

  .footer_inner--left .logo a {
    flex-direction: row;
  }

  .footer_nav ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 800px;
    gap: 20px;
  }

  .footer_inner--left .logo_icon {
    width: 60px;
  }

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

.h2_ttl {
  margin-top: 55px;
  background: url("../img/mv_company.webp") no-repeat center / cover;
  text-align: center;
  font-weight: 700;
  padding: max(10vw, 6rem) 0;
}

.h2_ttl h2 {
  font-size: clamp(3.6rem, 7.7vw, 6.5rem);
  color: var(--text-blue);
  display: flex;
  text-transform: uppercase;
  flex-direction: column;
  line-height: 1.2;
  text-shadow: 2px 2px 0 #ffffff;
  padding: 0 0 10px;
}

#service_wrapper .h2_ttl {
  background: url("../img/mv_service.webp") no-repeat center / cover;
}

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

#partner_wrapper .h2_ttl {
  background: url("../img/mv_partner.webp") no-repeat center / cover;
}

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

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

#company_greeting .content {
  background-color: #ffffff;
  padding: min(5%, 60px) min(5%, 80px) min(5%, 40px);
  text-align: justify;
  border-radius: min(5vw, 70px);
}

#company_greeting .content .name {
  font-size: clamp(1.6rem, 5vw, 3.0rem);
  text-align: right;
  padding-top: min(5vw, 40px);
}

#company_info {
  background-color: #ffffff;
}

#company_info .inner {
  width: 100%;
}

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

#company_info .section_ttl span {
  font-family: var(--def);
}

dl {
  width: 100%;
  max-width: 477px;
  text-align: left;
  margin: 0 auto;
}

.description-item {
  border-bottom: 1px solid var(--text_color);
  padding: min(2%, 20px) 0;
}

@media screen and (min-width: 1200px) {
  #company_info .inner {
    position: relative;
    max-width: none;
    margin-bottom: 100px;
  }

  #company_info .content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  #company_info .content_textWrap {
    width: 45%;
  }

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

  .description-item {
    display: flex;
  }

  dt {
    width: 120px;
  }

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

  #company_info .content_img {
    position: absolute;
    width: 50vw;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

#service_01 {
  padding-bottom: 35vw;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 15vw;
}

#service_01::before,
#service_01::after {
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../img/deco01.webp);
  background-size: cover;
  background-position: center;
  background-position: center bottom;
  position: absolute;
  bottom: 50%;
  left: 0;
}

#service_01::after {
  bottom: 0;
  transform: scaleX(-1);
}

#service_01 .inner {
  width: 100%;
  position: relative;
  z-index: 2;
}

#service_01 .content {
  width: 90%;
  margin: 0 auto;
}

#service_01 .content_textWrap {
  background-color: #ffffff;
  padding: min(5vw, 40px);
  display: flex;
}

#service_01 .content_textWrap-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(4vw, 20px);
  margin: 0 auto;
}

#service_01 .content_textWrap h3 {
  text-align: left;
  word-break: keep-all;
  font-size: clamp(2.0rem, 6vw, 3.6rem);
  line-height: 1.5;
  position: relative;
}

#service_01 .content_textWrap h3::before {
  content: "";
  width: min(2vw, 27px);
  height: 80%;
  background-color: var(--text-blue);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

#service_01 .content_textWrap p {
  text-align: justify;
}

@media screen and (min-width: 960px) {
  #service_01 .inner {
    max-width: none;
  }

  #service_01 .content {
    display: flex;
    max-width: 1540px;
    justify-content: flex-start;
  }

  #service_01 .content_img {
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  #service_01 .content_textWrap {
    width: 55%;
    padding: min(3vw, 60px);
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
  }

  #service_01 .content_textWrap h3::before {
    left: -40px;
  }

  #service_01 .inner:nth-of-type(even) .content {
    justify-content: flex-end;
  }

  #service_01 .inner:nth-of-type(even) .content_img {
    left: 0;
    right: auto;
  }

  #service_01::before {
    height: 60%;
    bottom: auto;
    top: 0;
  }

  #service_01::after {
    height: 60%;
  }
}

#partner_01 {
  padding-bottom: 15vw;
}

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

#partner_01 .content_textWrap {
  background-color: #ffffff;
  padding: min(6vw, 80px) min(5vw, 60px) min(5vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: min(6vw, 80px);
}

#partner_01 .content_textWrap h3 {
  font-weight: 700;
  color: var(--text-blue);
  font-size: clamp(4rem, 8vw, 6.5rem);
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}

#partner_01 .content_textWrap p {
  text-align: justify;
}

#partner_01 .more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 800px;
  padding: min(5%, 20px) min(5%, 40px);
  margin: 40px auto;
  border-radius: calc(infinity * 1px);
  background-color: var(--red);
}

#partner_01 .more a p {
  font-size: clamp(1.2rem, 3vw, 3.3rem);
  color: #ffffff;
  position: relative;
  padding-right: min(3vw, 20px);
  width: 100%;
}

#partner_01 .more a p::before {
  content: "";
  width: 0;
  height: 0;
  border-top: min(2vw, 15px) solid transparent;
  border-bottom: min(2vw, 15px) solid transparent;
  border-left: min(2vw, 15px) solid #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#partner_01::after {
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../img/deco01.webp);
  background-size: cover;
  background-position: center;
  background-position: center bottom;
  position: absolute;
  bottom: 30%;
  left: 0;
}

@media screen and (min-width: 960px) {
  #partner_01 .inner {
    max-width: 1680px;
  }

  #partner_01 .content {
    display: flex;
    position: relative;
  }

  #partner_01 .content_img {
    width: 45%;
  }

  #partner_01 .content_textWrap {
    width: 60%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
  }

  #partner_01::after {
    bottom: 20%;
  }
}

#works_01 .content {
  width: 90%;
  max-width: 830px;
  border: 3px solid var(--red);
  margin: 10vw auto 20vw;
  padding: min(10%, 80px);
  position: relative;
  z-index: 2;
  font-size: clamp(2.0rem, 6vw, 3.6rem);
}

#works_01 .content h3 {
  font-size: clamp(4rem, 8vw, 6.5rem);
}

#works_01::after {
  content: "";
  width: 100%;
  height: 80%;
  background-image: url(../img/deco01.webp);
  background-size: cover;
  background-position: center;
  background-position: center bottom;
  position: absolute;
  bottom: 0%;
  left: 0;
}

#contact_01 {
  overflow: hidden;
}

#contact_01 .inner {
  gap: min(5vw, 20px);
}

#contact_01 h3.content_ttl {
  font-size: clamp(2.0rem, 6vw, 3.6rem);
  margin: 0 auto;
}

#contact_01 .contact_lead {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 20px);
  word-break: keep-all;
}

#contact_01 .contact_tel p {
  color: var(--red);
  font-size: 3.0rem;
  font-weight: 700;
  position: relative;
  padding-left: 45px;
  display: inline-block;
  margin: 0 auto;
}

#contact_01 .contact_tel p::before {
  content: "";
  width: 35px;
  height: 35px;
  background-image: url(../img/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

form {
  width: 100%;
  margin: 40px auto;
  text-align: left;
  font-weight: 900;
}

.must {
  color: #ff0000;
  margin-left: 20px;
  font-size: 1.6rem;
}

.form_item--input.radio {
  display: flex;
  flex-direction: column;
  line-height: 2;
  padding-left: 12px;
  margin: 0 0 20px 0;
}

.form_item--ttl {
  border-bottom: 0.5px solid var(--text-blue);
  padding: 0 4px 20px;
  margin: 0 0 20px;
  line-height: 1;
}

.form_item--input {
  border-bottom: 0.5px solid var(--text-blue);
  padding: 0 4px 20px;
  margin: 0 0 20px;
}

.form_item.last .form_item--input {
  border-bottom: none;
}

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

select {
  display: block;
  height: 48px;
  width: 200px;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
  border-radius: 9px;
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

input[type="number"] {
  max-width: 120px;
}

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

.form_submit button {
  width: 100%;
  max-width: 294px;
  background-color: var(--red);
  font-family: var(--def);
  padding: 16px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.form_submit button:hover {
  opacity: 0.7;
}

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

#contact_wrapper .contact {
  height: min(150vw, 650px);
}

#contact_wrapper .contact .inner {
  display: none;
}

@media screen and (min-width: 960px) {
  #contact_01 .inner {
    max-width: 1050px;
  }

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

  .form_item:first-of-type .form_item--input {
    margin-bottom: 0;
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

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

  .form_item--input {
    width: 60%;
    margin: 0;
    padding: 20px 60px 20px 30px;
    border-left: 0.5px solid var(--text-blue);
    height: 80px;
  }

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

  .form_item:nth-of-type(6) .form_item--ttl {
    border-bottom: none;
    padding-bottom: 260px;
  }

  .form_item:nth-of-type(6) .form_item--input {
    border-bottom: none;
  }

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
    height: 300px;
  }

  .form_submit button {
    margin-top: 60px;
  }
}