@charset "UTF-8";
:root {
  --main_color: #eb5f4e;
  --sub_color_1: #ffa3a1;
  --sub_color_2: #ffcecc;
  --bg_color: #ffffff;
  --font_color: #ffffff;
  --sec_padding: 128px;
  --hdr_height: 148px;
}
html {
  scroll-padding-top: calc(var(--sec_padding) - var(--hdr_height));
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--font_color);
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  text-decoration: underline;
}
a:hover,
button:hover {
  -webkit-transition: 0.2s ease-in-out all;
  -o-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --hdr_height: 108px;
  }
}
/* ------------------------------ */
/* header
------------------------------ */
#hdr {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
  overflow-x: hidden;
}
.hdr_inner_1 {
  padding: 16px 32px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  border-radius: 64px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.2s ease-in-out all;
  -o-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.hdr_change .hdr_inner_1 {
  background-color: var(--bg_color);
  border: 1px solid var(--sub_color_2);
}
.hdr_logo {
  width: 50px;
  height: 50px;
  background: url(./img/logo_default.png) center center no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
#hdr_nav_btn {
  display: none;
}
.hdr_nav_list {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main_color);
  -webkit-transition: 0.2s ease-in-out all;
  -o-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.hdr_nav_list li {
  padding-right: 48px;
  position: relative;
}
.hdr_nav_list li::after {
  position: absolute;
  right: 16px;
  display: inline-block;
  content: "/";
  -webkit-transform: rotate(-48deg);
  -ms-transform: rotate(-48deg);
  transform: rotate(-48deg);
}
.hdr_nav_list li:nth-last-child(1) {
  padding-right: 0;
}
.hdr_nav_list li:nth-last-child(1)::after {
  content: "";
}
.hdr_nav_list li span {
  display: inline-block;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
@media screen and (max-width: 1300px) {
  .hdr_inner_1 {
    padding: 0;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .hdr_change .hdr_inner_1 {
    background: none;
    border: none;
    border-radius: 0%;
  }
  .hdr_inner_2,
  .hdr_inner_3 {
    background-color: var(--bg_color);
    -webkit-transition: 0.4s ease-in-out all;
    -o-transition: 0.4s ease-in-out all;
    transition: 0.4s ease-in-out all;
  }
  .hdr_inner_2 {
    padding: 16px 16px 16px 32px;
    border-top-right-radius: 64px;
    border-bottom-right-radius: 64px;
  }
  .hdr_inner_3 {
    padding: 16px 32px 16px 16px;
    border-top-left-radius: 64px;
    border-bottom-left-radius: 64px;
  }
  .hdr_change .hdr_inner_2 {
    padding: 16px;
    border-top: 1px solid var(--sub_color_2);
    border-bottom: 1px solid var(--sub_color_2);
    border-right: 1px solid var(--sub_color_2);
  }
  .hdr_change .hdr_inner_3 {
    padding: 16px;
    border-top: 1px solid var(--sub_color_2);
    border-bottom: 1px solid var(--sub_color_2);
    border-left: 1px solid var(--sub_color_2);
  }
  #hdr_nav_btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 999;
  }
  #hdr_nav_btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    width: 40px;
    height: 4px;
    background: url(./img/menu_default.png) center center no-repeat;
    background-size: contain;
    -webkit-transition: 0.2s ease-in-out all;
    -o-transition: 0.2s ease-in-out all;
    transition: 0.2s ease-in-out all;
  }
  #hdr_nav_btn.hdr_change span {
    background: url(./img/menu_white.png) center center no-repeat;
    background-size: contain;
  }
  #hdr_nav_btn span:nth-of-type(1) {
    top: 30%;
  }
  #hdr_nav_btn span:nth-of-type(3) {
    top: 70%;
  }
  .nav_on #hdr_nav_btn span {
    width: 40px;
    height: 1px;
    background: none;
    background-color: var(--main_color);
  }
  .nav_on #hdr_nav_btn span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .nav_on #hdr_nav_btn span:nth-child(2) {
    opacity: 0;
  }
  .nav_on #hdr_nav_btn span:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
  }
  #hdr_nav {
    display: none;
  }
  .nav_on #hdr_nav {
    padding: 148px 32px 32px 32px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: block;
    background-color: var(--bg_color);
    -webkit-animation: nav_on 0.2s ease-in-out;
    animation: nav_on 0.2s ease-in-out;
    z-index: 99;
  }
  .hdr_nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 32px;
    color: var(--main_color);
  }
  .hdr_nav_list li {
    padding-right: 0;
  }
  .hdr_nav_list li::after {
    content: "";
  }
}
@media screen and (max-width: 450px) {
  #hdr {
    top: 16px;
  }
  .nav_on #hdr_nav {
    padding: 96px 32px 32px 32px;
  }
  .hdr_inner_2 {
    padding: 12px 12px 12px 24px;
  }
  .hdr_inner_3 {
    padding: 12px 24px 12px 12px;
  }
  .hdr_change .hdr_inner_2,
  .hdr_change .hdr_inner_3 {
    padding: 12px;
  }
}
@-webkit-keyframes nav_on {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes nav_on {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
/* ------------------------------ */
/* main > #mv
------------------------------ */
#mv {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#mv::before {
  position: absolute;
  bottom: -4px;
  content: "";
  width: 100%;
  max-width: 100%;
  height: 8px;
  background-color: var(--main_color);
  z-index: 1;
}
#mv video {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  max-width: 100%;
}
#mv .mv_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #mv::before {
    bottom: -8px;
    height: 16px;
  }
  #mv .mv_pc {
    display: none;
  }
  #mv .mv_sp {
    display: block;
  }
}
/* ------------------------------ */
/* main > .sec_container
------------------------------ */
.sec_container {
  background-color: var(--main_color);
}
.sec_container section {
  padding: 128px 0;
}
.sec_content {
  padding: 0 48px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.sec_h2_container {
  padding-top: 64px;
  position: relative;
  line-height: 1.5;
}
.sec_h2_container h2 {
  position: relative;
  font-size: 48px;
  z-index: 1;
}
.sec_h2_strong {
  position: absolute;
  top: 0;
  left: 48px;
  font-size: 80px;
  opacity: 0.3;
  color: var(--sub_color_2);
  -webkit-text-stroke: 1px #ffffff;
  z-index: 0;
}
.sec_h2_container h2 span,
.sec_h2_strong span {
  display: inline-block;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
.sec_item_container {
  margin-top: 64px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 128px;
}
.sec_text_1,
.sec_text_2,
.sec_text_3 {
  line-height: 1.8;
}
.sec_text_1,
.sec_text_3 {
  min-height: 500px;
}
.sec_text_1 {
  padding-right: 83px;
  position: relative;
}
.sec_text_1::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 500px;
  content: "";
  background: url(./img/image_wave_v.png) center center no-repeat;
  background-size: contain;
}
.sec_text_3 {
  padding-left: 83px;
  position: relative;
}
.sec_text_3::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 500px;
  content: "";
  background: url(./img/image_wave_v.png) center center no-repeat;
  background-size: contain;
}
.sec_text_strong {
  margin-bottom: 24px;
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1300px) {
  .sec_content {
    padding: 0;
    width: calc(100% - 128px);
  }
}
@media screen and (max-width: 768px) {
  .sec_h2_container {
    padding-top: 48px;
  }
  .sec_h2_container h2 {
    font-size: 32px;
  }
  .sec_h2_strong {
    left: 32px;
    font-size: 64px;
  }
  .sec_text_strong {
    margin-bottom: 18px;
    font-size: 24px;
  }
}
@media screen and (max-width: 450px) {
  .sec_container section {
    padding: 64px 0;
  }
  .sec_content {
    width: calc(100% - 64px);
  }
  .sec_h2_container {
    padding-top: 18px;
  }
  .sec_h2_strong {
    left: 24px;
    font-size: 24px;
  }
  .sec_item_container {
    margin-top: 32px;
    row-gap: 64px;
  }
  .sec_text_1 {
    padding-right: 29px;
  }
  .sec_text_3 {
    padding-left: 29px;
  }
  .sec_text_1,
  .sec_text_3 {
    min-height: 150px;
  }
  .sec_text_1::after,
  .sec_text_3::after {
    width: 11px;
    height: 150px;
  }
}
/* ------------------------------ */
/* main > #overview
------------------------------ */
.acc_head {
  margin: 0 48px;
  position: relative;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.acc_head::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: var(--font_color);
  z-index: 0;
}
.acc_head h3 {
  padding-right: 48px;
  position: relative;
  display: inline-block;
  background-color: var(--main_color);
  font-size: 32px;
  z-index: 1;
}
.acc_btn {
  position: relative;
  width: 98px;
  height: 50px;
  background-color: var(--main_color);
  z-index: 1;
}
.acc_btn:hover {
  opacity: 1;
}
.acc_btn span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--font_color);
  -webkit-transition: 0.2s ease-in-out all;
  -o-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
}
.acc_btn span:nth-of-type(2) {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.acc_on .acc_btn span {
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.acc_on .acc_btn span:nth-of-type(2) {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.acc_content {
  display: none;
  -webkit-animation: acc_on 0.2s ease-in-out;
  animation: acc_on 0.2s ease-in-out;
}
.acc_on .acc_content {
  padding: 48px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 48px;
  line-height: 1.8;
}
.acc_dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5em 48px auto;
  grid-template-columns: 5em auto;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}
.acc_dl dt {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
.origin {
  font-size: 16px;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  #overview {
    margin-top: -4px;
  }
}
@media screen and (max-width: 450px) {
  .acc_head {
    margin: 0;
    position: relative;
    display: -webkit-box;
    /* display: -ms-flexbox; */
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
  }
  .acc_head h3 {
    padding-right: 24px;
    font-size: 24px;
  }
  .acc_btn {
    width: 54px;
    height: 30px;
  }
  .acc_btn span {
    width: 30px;
  }
  .acc_on .acc_content {
    padding: 32px 0;
    row-gap: 32px;
  }
  .acc_dl {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .acc_dl dt {
    margin-top: 18px;
    display: inline-block;
  }
  .acc_dl dt:nth-of-type(1) {
    margin-top: 0;
  }
  .origin {
    font-size: 14px;
  }
}
@-webkit-keyframes acc_on {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes acc_on {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}
/* ------------------------------ */
/* main > #business
------------------------------ */
.business_inner {
  width: 100%;
  max-width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--main_color)),
    color-stop(50%, var(--main_color)),
    color-stop(50%, var(--font_color)),
    to(var(--font_color))
  );
  background: -o-linear-gradient(
    left,
    var(--main_color) 0%,
    var(--main_color) 50%,
    var(--font_color) 50%,
    var(--font_color) 100%
  );
  background: linear-gradient(
    to right,
    var(--main_color) 0%,
    var(--main_color) 50%,
    var(--font_color) 50%,
    var(--font_color) 100%
  );
}
#business .sec_content {
  padding: 48px;
  color: var(--main_color);
  background-color: var(--font_color);
  border-radius: 48px;
}
#business .sec_item_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.business_image {
  max-width: 600px;
}
#business .sec_h2_strong {
  -webkit-text-stroke: 1px var(--main_color);
}
@media screen and (max-width: 450px) {
  #business .sec_content {
    padding: 32px 0 32px 32px;
    border-radius: 32px;
  }
}

/* ------------------------------ */
/* main > #massage
------------------------------ */
.message_h2_continer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 64px auto;
  grid-template-columns: 200px auto;
  -webkit-column-gap: 64px;
  -moz-column-gap: 64px;
  column-gap: 64px;
}
.sec_h2_container h2 span.message_h2_head {
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 24px;
}
.sec_h2_container h2 span.kana {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 24px;
}
.message_signature {
  margin-top: 48px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .message_h2_continer {
    -ms-grid-columns: 150px auto;
    grid-template-columns: 150px auto;
  }
}
@media screen and (max-width: 450px) {
  .message_h2_continer {
    display: -webkit-box;
    /* display: -ms-flexbox; */
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 24px;
  }
  .message_h2_continer img {
    max-width: 200px;
  }
  .sec_h2_container h2 span.message_h2_head {
    font-size: 18px;
  }
  .sec_h2_container h2 span.kana {
    font-size: 18px;
    -webkit-transform: translateY(-8px) rotate(0deg);
    -ms-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
  .message_signature {
    margin-top: 32px;
  }
}
/* ------------------------------ */
/* main > #recruit
------------------------------ */
.sec_detail_container {
  height: 500px;
  overflow-y: hidden;
}
.sec_detail_container.detail_on {
  height: auto;
  overflow-y: inherit;
}
.detail_head {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 83px);
  height: 200px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(235, 95, 78, 0)),
    color-stop(70%, rgba(235, 95, 78, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(235, 95, 78, 0) 0%,
    rgba(235, 95, 78, 1) 70%
  );
  background: linear-gradient(
    to bottom,
    rgba(235, 95, 78, 0) 0%,
    rgba(235, 95, 78, 1) 70%
  );
  cursor: pointer;
}
.detail_on .detail_head {
  display: none;
}
.detail_toggle_btn {
  border-bottom: 1px solid var(--font_color);
}
.detail_content dt {
  margin-top: 48px;
}
.detail_content dt:nth-of-type(1) {
  margin-top: 0;
}
.detail_foot {
  margin-top: 48px;
  text-align: right;
}
@media screen and (max-width: 450px) {
  .sec_h2_container h2 span.message_h2_head {
    font-size: 18px;
  }
  .detail_head {
    width: calc(100% - 39px);
  }
  .detail_content dt {
    margin-top: 24px;
  }
  .detail_content dt:nth-of-type(1) {
    margin-top: 0;
  }
  .detail_foot {
    margin-top: 32px;
  }
}
/* ------------------------------ */
/* main > #contact
------------------------------ */
#contact_form {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 32px;
}
.form_item {
  width: 100%;
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12em 48px auto;
  grid-template-columns: 12em auto;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}
.form_item input,
.form_item textarea {
  padding: 8px;
  width: 100%;
  max-width: 100%;
  background-color: var(--font_color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
  resize: none;
}
.form_item input[type="radio"] {
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 1px solid var(--font_color);
  background-color: var(--main_color);
}
.form_item input[type="radio"]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url(./img/check-solid.svg) center center no-repeat;
  background-size: contain;
}
.input_label {
  text-align: right;
}
.input_required::after {
  margin-left: 8px;
  padding: 0 8px;
  content: "必須";
  font-size: 0.8em;
  color: var(--main_color);
  background-color: var(--font_color);
  letter-spacing: normal;
}
.form_subject_container {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 16px;
  height: 1em;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.form_subject {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 9px;
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.form_btn_container {
  text-align: right;
}
.btn_1 {
  padding: 8px 32px;
  display: inline-block;
  border-radius: 32px;
  color: var(--main_color);
  background-color: var(--font_color);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .form_item {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 1em;
  }
  .input_label {
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .form_subject_container {
    height: auto;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
  }
}
/* ------------------------------ */
/* footer
------------------------------ */
#ftr {
  padding-top: 14.63vw;
  width: 100%;
  max-width: 100%;
  background-color: var(--main_color);
}
.ftr_inner {
  padding: 128px 0 64px 0;
  position: relative;
  background-color: var(--bg_color);
  color: var(--main_color);
}
.ftr_inner::before {
  position: absolute;
  top: calc(-14.63vw + 2px);
  left: 0;
  content: "";
  width: 100%;
  max-width: 100%;
  height: 14.63vw;
  background: url(./img/image_wave_footer.png) center center no-repeat;
  background-size: cover;
}
.ftr_content {
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 128px;
}
.ftr_info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 128px auto;
  grid-template-columns: 200px auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 128px;
  -moz-column-gap: 128px;
  column-gap: 128px;
}
.ftr_logo {
  width: 200px;
  height: 200px;
  background: url(./img/logo_default.png) center center no-repeat;
  background-size: contain;
}
.ftr_address {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  line-height: 1.8;
}
.ftr_address_item_1 h2 {
  margin-bottom: 1em;
  font-weight: 700;
}
.ftr_address_item_2 {
  margin-left: 48px;
  padding-left: 48px;
  border-left: 1px solid var(--main_color);
}
.ftr_address_item_2 a {
  text-decoration: none;
}
.ftr_copylight {
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .ftr_info {
    -ms-grid-columns: 150px 64px auto;
    grid-template-columns: 150px auto;
    -webkit-column-gap: 64px;
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
  .ftr_logo {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 450px) {
  .ftr_inner {
    padding: 64px 0 32px 0;
  }
  .ftr_content {
    row-gap: 64px;
  }
  .ftr_info {
    display: -webkit-box;
    /* display: -ms-flexbox; */
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 64px;
  }
  .ftr_address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .ftr_address_item_1 {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--main_color);
  }
  .ftr_address_item_2 {
    margin: 0;
    padding: 0;
    border-left: none;
  }
  .ftr_copylight {
    font-size: 14px;
  }
}
/* ------------------------------ */
/* main > #contacted
------------------------------ */
.back_btn_container {
  margin-top: 64px;
  text-align: right;
}
@media screen and (max-width: 450px) {
  .sec_container section#contacted {
    padding-top: var(--hdr_height);
  }
  .back_btn_container {
    margin-top: 32px;
  }
}
