@charset "UTF-8";

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

body {
  color: #ffffff;
  /* RGB */
  background-color: #52c3f1;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1rem;
}

.mincho {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-weight: 900
}

a:hover {
  opacity: 0.5;
}

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

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

.blue {
  color: #52c3f1;
}

.white {
  color: #ffffff;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

/* header */
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.header_inner .logo {
  width: 200px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #52c3f1;
}

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

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

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

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.nav_wrap.show {
  right: 0;
}

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

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin-right: 16px;
  background-color: #52c3f1;
  margin: 0;
  top: 0;
}

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

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

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

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

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

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

/* MV */
.MV {
  margin-top: 60px;
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  position: absolute;
  text-align: justify;
  bottom: 20%;
  padding: 0 6vw;
  z-index: 20;

  max-width: 720px;
  font-size: 3.3vw;
}
.MV_text h2{
	font-size: 8rem;
}

.MV_text span {
  font-size: 4.4vw;
  display: block;
  padding-bottom: 10px;
}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 120px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section_inner {
  padding: 0 6vw;
}

.section_ttl--deco {
  width: calc(100% - 6vw);
  margin: 0 0 20px 6vw;

}

.section_ttl {
  font-size: 4.0rem;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 500;
	padding: 0 6vw;
}

.section_ttl span {
  font-size: 2.4rem;
  padding-left: 20px;
}

#top_02 .section_ttl h2,
#top_03 .section_inner.innner02 .section_ttl h2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  line-height: 1.2;

}

#top_02 .section_ttl span,
#top_03 .section_inner.innner02 .section_ttl span {

  padding-left: 0;
  padding-right: 20px
}

#top_02 .section_ttl--deco,
#top_03 .section_ttl--deco.deco02 {
  width: calc(100% - 6vw);
  margin: 0 6vw 20px 0;

}

.section_lead {

  margin-bottom: 80px;
  text-align: justify;
}

h3 {
  font-size: 4.0rem;
  text-align: left;
}

.more a {
  display: block;
  width: 80%;
  max-width: 220px;
  margin: 40px auto;
  padding: 12px 0px;
  position: relative;
  text-align: left;
}

.more a::after {
  content: "";
  width: 83px;
  height: 9px;
  background-image: url(../img/arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 46%;
  right: 0px;
  z-index: 10;
}
.name{
    text-align: right;
    padding: 0 9vw 14vw;
}
.greeting{
	display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 6vw 1vw;
}
.greeting p{
	text-align: left;
	font-size: 20px;
}
.greeting p span{
	text-align: right;
}
.contentInner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}

.top_news {
  position: absolute;
  width: calc(100% - 12vw);
  background-color: #52c3f1;
  top: -20px;
  padding: 20px;
}

.top_news h2 {
  font-size: 4.0rem;
  padding: 20px 0;
  line-height: 1.5;
}

.top_news h2 span {
  font-size: 1.8rem;
  display: block;
}

.top_news--content {
  background-color: #ffffff;
  padding: 20px;
}

.top_news--content a {
  color: #333333;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  margin: 40px 0;
  padding: 0 4px
}

.top_news--content a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../img/dod_line.png);
  background-size: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -10px;
  left: 0;
}

#top_01 {
  background-image: url(../img/sp_top01_bg@2x.png);
  padding-top: 420px;
}

#top_01 .content_item--ttl span {
  display: block;
}

#top_01 .content_item--img {
  overflow: hidden;
}

#top_01 .content_item--img img {
  transition: 1s all;
}

#top_01 .content_item--img img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}

#top_01 .content_item a:hover {
  opacity: 1;
}

dl {
  width: 100%;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  font-size: 2.0rem;
  font-weight: 500;
  color: #ffffff;
}

dt,
dd {
  padding: 20px 8px 16px;
  border-bottom: 1px solid #ffffff;
  line-height: 1.8;
}

#top_02 .more a {
  margin: 0 auto;
}

#top_03 {
  background-image: url(../img/sp_top03_bg@2x.png);
  padding-bottom: 100vw;

}

#top_03 .lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 70%;
  max-width: 290px;
  margin: 0 auto 0 0;
}

#top_03 .content {
  padding: 0;
  margin-bottom: 160px;
}

#top_03 .contentInner {
  border: 1px solid #ffffff;
  padding: 40px 20px;
  margin: 60px 0 100px;
  font-size: 2.0rem;
}

#top_03 .section_inner:nth-of-type(2) .content {
  margin-bottom: 60px;
}

#top_03 .content_lead {
  font-size: 5.6vw;
  padding: 60px 0;

}

#top_03 .section_deco {
  width: calc(100% - 6vw);
  position: absolute;
  left: 13px;

}
#top_03 h3{
	text-align: center;
	font-size: 3rem;
	
}
#contact {
  padding: 50vw 0 100px;
  color: #ffffff;
}

#contact .section_lead {
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  display: inline-block;
  margin-bottom: 120px;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 6vw;
}

.contact_btn a {
  background-color: #ffffff;
  display: flex;
  height: 80px;
  border-radius: 40px;
  align-items: center;
  margin: 0px auto;
  width: 100%;
  max-width: 360px;
  position: relative;
  justify-content: center;
}

.tel a {
  font-size: 3.5rem;
  color: #333;
}

.tel a img {
  width: 214px;
  transform: translateX(10%);
}

.tel a::before {
  content: "";
  position: absolute;
  background-image: url(../img/tel_b@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 39px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a p {
  font-size: 2.4rem;
  padding-left: 50px;
  display: inline-block;
  color: #333333;
}

.contact_btn.mail a::before {
  content: "";
  position: absolute;
  background-image: url(../img/mail@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 34px;
  height: 25px;
  left: 13%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contact_btn a:hover:after {
  opacity: 1;
  visibility: visible;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.5);
}

#access {
  padding: 0;
  margin: 0;
}

#access iframe {
  height: 450px;
  width: 100%;
  display: block;
}

footer {

  color: #333333;
}

.footer_inner {
  background-image: url(../img/footer_bg@2x.png);
  background-size: cover;
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;

}

.footer_item01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  margin: 0 auto;
  font-size: 1.6rem;
  max-width: 480px;
}

.footer_logo {
  width: 70%;
  margin: 0 auto;
}

.footer_inner a {
  color: #333333;

}

.footer_item02 {
  margin: 0 auto;
  font-size: 1.6rem;
  width: 100%;
  max-width: 390px;
  padding: 20px;
}

.footer_nav li {
  margin-bottom: 14px;
  text-align: left;
}

.footer_nav li a {
  color: #333333;
  font-size: 1.6rem;
}

.footer_nav li a span {
  display: block;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 900;
}

.cr {
  padding: 10px 0;
  background-color: #52c3f1;
  color: #333333;
  text-align: center;
}

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

/* spスタイル */
@media screen and (max-width: 480px) {
  .MV_text span {
    font-size: 4.3vw;

  }
	.MV_text h2 {
    font-size: 4rem;
}

  .section_ttl h2 {
    font-size: 7vw;
  }

  .section_ttl h2 span {
    font-size: 5vw;
  }
    .wrap
{
    padding: 3% 0;
}
}

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

  .pc_none {
    display: none;
  }

  header {
    width: 100%;
    height: 150px;
  }

  .header_inner {
    height: 100%;
    padding: 0 2vw;
    container-type: inline-size;
    container-name: header;
  }

  .header_left {
    width: calc(100% - 600px);
    max-width: 310px;
  }

  .header_inner .logo {
    width: 420px;
  }

  .header_right {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
    width: calc(100% - 200px);
    max-width: 750px;
    height: 100%;
    background: none;
    align-items: flex-end;
    min-width: 680px;
    font-weight: 700;
  }

  .header_btnWrap {
    display: flex;
    gap: 20px;
  }

  .header_tel {
    position: relative;
    padding-right: 10px;
  }

  header .tel a {
    color: #333333;
    font-size: 3.0rem;
  }

  .header_tel a::before {
    content: "";
    position: absolute;
    background-image: url(../img/tel@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    left: -18%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_contact a {
    width: 300px;
    height: 58px;
    border-radius: 29px;
    background-color: #52c3f1;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.6rem;
    color: #333333;
    position: relative;

  }

  .header_contact a::before {
    content: "";
    position: absolute;
    background-image: url(../img/mail@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 27px;
    height: 20px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_contact a p {
    padding-left: 2rem;
    font-weight: 500;
  }

  .header_right nav {
    width: 100%;
  }

  .header_right nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 0px;
  }

  .header_right nav ul li {
    padding: 0 0px 4px;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 5);
    position: relative;
    height: 100%;
  }

  .header_right nav ul li a {
    width: 100%;
    color: #333333;
    font-size: 1.8rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
  }

  .header_right nav ul li a::after {
    content: "";
    width: 50%;
    height: 2px;
    background-color: #52c3f1;
    position: absolute;
    left: 25%;
    bottom: 0px;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  .header_right nav ul li a:hover {
    opacity: 1;
  }

  .header_right nav ul li a:hover::after {
    transform: scale(1, 1);
  }

  @container header (min-width: 1600px) {
    .header_right {
      flex-direction: row;
      max-width: 1200px;
      padding-bottom: 14px;
    }

    .header_btnWrap {
      flex-direction: column;
      justify-content: space-around;
      gap: 10px;
    }

    .header_tel a::before {
      left: -10%;
    }
  }

  .MV {
    margin-top: 150px;

  }

  .MV_text {

    bottom: 10%;
    left: 0%;
    z-index: 20;
    width: 100%;
    max-width: 1280px;
  }

  section {
    padding: 160px 0 160px;
  }

  .section_inner {
    padding: 0 6vw;
  }

  .section_ttl {
    margin: 0 auto 120px;
    max-width: 1400px;
  }

  .section_ttl h2 {
    text-align: left;
    font-size: 5.0rem;
    padding-right: 0;
  }

  .section_lead {
    padding: 0;
    text-align: center;
  }

  .contentInner {
    flex-direction: row;
    max-width: 1550px;
    margin: 120px auto;
    gap: 60px;
  }

  .section_ttl--deco {
    position: absolute;
    width: 60%;
    right: 0;
    left: auto;
  }

  .top_news {

    max-width: 1280px;

    background-color: #52c3f1;
    top: -40px;
    display: flex;
    left: 50%;
    transform: translateX(-50%);


  }

  .top_news h2 {
    width: 20%;
    min-width: 130px;

  }

  .top_news--content {
    width: 80%;
    padding: 40px;
  }

  .top_news--content ul li {
    margin-bottom: 40px;
  }

  .top_news--content a {
    flex-direction: row;
    max-width: 830px;
    gap: 100px;
    margin: 0 auto;
    padding: 0 10px;
  }

  #top_01 {
    background-image: url(../img/top01_bg@2x.png);
  }

  #top_01 .content_item {
    width: calc((100% - 120px) / 3);
  }

  #top_02 .section_ttl,
  #top_03 .section_inner.innner02 .section_ttl {
    text-align: left;

  }

  #top_02 .section_ttl span,
  #top_03 .section_inner.innner02 .section_ttl span {
    padding-right: 40px
  }

  #top_02 .section_ttl--deco,
  #top_03 .section_ttl--deco.deco02 {

    width: 60%;
    left: 0;
    right: auto;
  }

  #top_02 .contentInner {
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1550px;
    margin: 120px auto;
    gap: 60px;
  }

  dl {

    max-width: 750px;
    container-type: inline-size;
    container-name: dl;
  }

  @container dl (min-width: 600px) {
    .description-item {
      display: flex;
    }

    dt,
    dd {
      padding: 24px 8px 20px;
      border-bottom: 1px solid #ffffff;
      line-height: 1.8;
    }

    dt {
      width: 250px;

    }

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

    }
  }

  #top_03 {
    background-image: url(../img/top03_bg@2x.png);
    padding: 200px 0 0;
  }

  #top_03 .lines {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 70%;
    max-width: 520px;
    margin: 0 auto 0 0;
  }

  #top_03 .lines span {
    padding-bottom: 8px;
  }

  #top_03 .section_inner {
    margin-bottom: 200px;
  }

  #top_03 .contentInner {
    width: 580px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 160px auto;

  }

  #top_03 .content_lead {
    font-size: 4.0rem;
    padding: 60px 0;

  }

  #top_03 .section_inner.innner02 .content {
    width: 38%;
    padding-bottom: 100px;
    margin: 0 0 160px auto;
  }

  #top_03 .section_inner.innner02 .contentInner {
    height: 240px;
    width: 80%;
    margin: 120px auto;
  }

  #top_03 .section_deco {
    width: 60%;
    bottom: -5vw;
  }

  #contact {
    padding: 100px 0 140px;
  }

  #contact .contact_inner {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  #contact .section_lead {
    margin-bottom: 0;
  }

  .contact_btn--wrap {
    flex-direction: column;
    justify-content: space-between;

    gap: 60px;
    margin: 0 auto;
    padding: 0;
  }

  .contact_btn {
    width: 100%;
    min-width: 390px;
  }

  .footer_inner {
    flex-direction: row;
    gap: 80px;
    justify-content: flex-start;
    padding: 60px 6vw;
  }

  .footer_item01 {
    margin: 0;
    flex-direction: row;
    justify-content: flex-start;

    max-width: 540px;
  }

  .footer_logo {
    max-width: 540px;
    margin: 0;
    width: 100%;
  }

  .footer_item02 {
    max-width: 800px;
    margin: auto 0 0;
    padding: 0;
    gap: 60px;
  }

  .footer_nav {
    width: 100%;
    margin: auto 0 0;
    min-width: 710px;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .footer_nav ul li {
    padding: 0 10px 0px;
    display: flex;
    justify-content: space-around;
    width: calc(100% / 5);
    position: relative;
    text-align: center;
  }

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

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

  .MV_text {
    font-size: 3.0rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    padding: 0;
  }

  .MV_text span {
    font-size: 5.0rem;
  }
    .re
{
    flex-direction: row-reverse;
}
}

/*----------------------------------------------------

下層ページ

------------------------------------------------------*/

.h2_ttl_business
{
    background: url("../img/h2_ttl.png") no-repeat center;
        padding: 16rem 0;
    text-align: center;
    font-size: 5rem;
    margin-top: 150px;
        }
.h2_ttl_company
{
    background:url("../img/h2_ttl_02.png") no-repeat center;
        padding: 16rem 0;
    text-align: center;
    font-size: 5rem;
    margin-top: 150px;
        }
.h2_ttl_contact
{
    background:url("../img/h2_ttl_06.png") no-repeat center;
        padding: 16rem 0;
    text-align: center;
    font-size: 5rem;
    margin-top: 150px;
        }
.h2_ttl_recruit
{
    background:url("../img/h2_ttl_04.png") no-repeat center;
        padding: 16rem 0;
    text-align: center;
    font-size: 5rem;
    margin-top: 150px;
        }
.h2_ttl_request
{
    background:url("../img/h2_ttl_05.png") no-repeat center;
        padding: 16rem 0;
    text-align: center;
    font-size: 5rem;
    margin-top: 150px;
        }
#sec01 .contentInner p
{
    text-align: left;
	font-size: 20px;
}
.content_img2{
	width: 45%;
}
.sample p
{
    width: 580px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
    font-size: 3.0rem;
    border: 1px solid #ffffff;
}
.txt_inner > p
{
    margin-bottom: 5rem;
}
.txt_inner {
    display: flex;
}
@media screen and (max-width: 958px) {
    .h2_ttl
    {
        margin-top: 60px;
        padding: 10rem 0;
        font-size: 4rem;
    }
#sec01 .wrap
{
    padding-bottom: 6%;
}
    .sample p
{
    width: 90%;
  height: 120px;
}
    .content .works
{
    width: 100%;
}
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {

  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
」
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
    text-align: left;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #d04444;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
	.txt_inner {
    display: block;
}
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #004aad;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
    text-align: center;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.form_wrap
{
    width: 100%;
}
.works_inner
{
    justify-content: space-around;
    gap: 2vw;
    flex-wrap: wrap;
}
.works
{
    width: 30%;
}
.works img
{
    max-width: 100%;
}