* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button_text {
  color: #434da2;
}
.button--border {
  border: 1px solid #fff;
}
.button--border .button_text {
  color: #fff;
}
.button_icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}
.button_icon-path {
  fill: #fff;
}
.button_icon-path--contact {
  fill: #434da2;
}
.button_text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.header .header,
.header .header_container,
.header .header_contents,
.header .header_nav-list,
.header .header_nav-item {
  background: transparent !important;
  background-color: transparent !important;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent !important;
}
.header_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header_logo {
  display: inline-block;
  width: 120px;
  height: auto;
  padding: 14px 24px;
  font-size: 20px;
  color: #fff8dc;
}
.header_menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}
.header_menu-button.is-checked {
  background: url(../img/img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}
.header_contents {
  display: none;
  height: calc(100vh - 88px);
  padding-top: 60px;
  margin-left: auto;
  width: auto;
}
.header_nav-item + .header_nav-item {
  margin-top: 24px;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  margin-bottom: 0;
  overflow: hidden;
}
.fv_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  -webkit-animation: fvZoom 40s ease-in-out infinite alternate;
          animation: fvZoom 40s ease-in-out infinite alternate;
}
.fv_contents {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: min(627px, 90%);
  height: auto;
  padding: 32px 40px 32px 96px;
  background: url(../img/img/bg_fv.png) center center no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.fv_heading-main {
  display: block;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #001e43;
}
.fv_heading-small {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.4;
}
.fv_heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
}
.fv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 160%;
  height: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 160' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,90 C240,140 480,40 720,90 C960,140 1200,40 1440,90 V160 H0 Z'/%3E%3C/svg%3E");
  z-index: 3;
  pointer-events: none;
}

@-webkit-keyframes fvZoom {
  0% {
    -webkit-transform: scale(1.02) translate(0, 0);
            transform: scale(1.02) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.08) translate(-2%, -1%);
            transform: scale(1.08) translate(-2%, -1%);
  }
}

@keyframes fvZoom {
  0% {
    -webkit-transform: scale(1.02) translate(0, 0);
            transform: scale(1.02) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.08) translate(-2%, -1%);
            transform: scale(1.08) translate(-2%, -1%);
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100vh;
    min-height: 560px;
  }
  .fv_contents {
    left: 50%;
    bottom: 80px;
    width: calc(100% - 40px);
    padding: 24px 24px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
  .fv_heading {
    -webkit-transform: none;
            transform: none;
    text-align: left;
    padding-left: 10px;
  }
  .fv_heading-main {
    font-size: 24px;
    text-align: left;
  }
  .fv_heading-small {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .fv_heading-sub {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
  .fv::after {
    height: 80px;
    bottom: -6px;
  }
}
.section {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 80px 0;
}
.section_inner {
  padding: 0 48px;
}
.section_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section--center {
  text-align: center;
}
.section_head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #26499d;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.4s ease, -webkit-transform 1.4s ease;
  transition: opacity 1.4s ease, -webkit-transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease, -webkit-transform 1.4s ease;
}
.section_head-sub {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.4s ease, -webkit-transform 1.4s ease;
  transition: opacity 1.4s ease, -webkit-transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease, -webkit-transform 1.4s ease;
}
.section_head-main--text {
  color: #fff8dc;
}
.section_lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}
.section_contents {
  margin-top: 40px;
}

.section_head.is-show .section_head-main {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.section_head.is-show .section_head-sub {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.section.contact {
  margin-bottom: 0;
}

.concept {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.concept_container {
  position: relative;
  padding: 200px 20px 300px;
  z-index: 2;
}
.concept_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
.concept_main-img {
  width: 700px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.concept_main-img img {
  display: block;
  width: 100%;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.concept .section_head {
  margin-bottom: 0;
  text-align: left;
}
.concept_text-contents {
  position: relative;
  z-index: 2;
  text-align: center;
}
.concept_text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.4;
  text-align: center;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.concept_text-large {
  color: #001e43;
  display: inline-block;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
}
.concept_deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.96);
          transform: translateY(40px) scale(0.96);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}
.concept_deco img {
  display: block;
  width: 100%;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.concept_deco--01 {
  width: 300px;
  top: 160px;
  left: 40px;
}
.concept_deco--02 {
  width: 320px;
  bottom: 240px;
  left: -40px;
}
.concept_deco--03 {
  width: 320px;
  top: 80px;
  right: -40px;
}
.concept_deco--04 {
  width: 300px;
  bottom: 200px;
  right: 20px;
}
.concept.is-active .concept_deco {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.works {
  position: relative;
  background-image: url(../img/img/backimg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 180px;
  padding-bottom: 180px;
  overflow: hidden;
}
.works_item + .works_item {
  margin-top: 40px;
  margin-bottom: 40px;
}
.works_item-img {
  margin-bottom: 12px;
}
.works_item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.works_item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.works_item-link {
  text-decoration: underline;
  font-size: 14px;
  margin-bottom: 40px;
}

.wave-section {
  position: relative;
  padding: 180px 20px;
  overflow: hidden;
}
.wave-section::before, .wave-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120%;
  height: 165px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}
.wave-section::before {
  top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 160' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0 H1440 V70 C1200,120 960,20 720,70 C480,120 240,20 0,70 Z'/%3E%3C/svg%3E");
}
.wave-section::after {
  bottom: -2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 160' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,90 C240,140 480,40 720,90 C960,140 1200,40 1440,90 V160 H0 Z'/%3E%3C/svg%3E");
}
.wave-section_inner {
  position: relative;
  z-index: 2;
}

.flow .section_head {
  position: relative;
  padding: 60px 0;
  overflow: visible;
  background-image: none;
}
.flow .section_head::before {
  content: "";
  position: absolute;
  top: 45%;
  left: -90px;
  width: 470px;
  height: 320px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.flow_list {
  margin-top: 64px;
}
.flow_item {
  position: relative;
  border: 1px solid #4a4a4a;
  padding: 46px 16px 24px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translateY(40px) rotateX(60deg);
          transform: translateY(40px) rotateX(60deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.flow_item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0) rotateX(0);
          transform: translateY(0) rotateX(0);
}
.flow_item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.flow_item:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.flow_item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.flow_item:nth-child(4) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.flow_item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  text-align: center;
  background-color: #434da2;
  color: #fff8dc;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow_item-img {
  margin-bottom: 24px;
  text-align: center;
  background-color: #fff;
}
.flow_item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow_item-text {
  font-size: 14px;
  line-height: 1.6;
}

@-webkit-keyframes flowPatapata {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) rotateX(60deg);
            transform: translateY(40px) rotateX(60deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
}

@keyframes flowPatapata {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) rotateX(60deg);
            transform: translateY(40px) rotateX(60deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
}
.contact {
  position: relative;
  z-index: 1;
  background-image: url(../img/img/backimg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
  text-align: left;
}
.contact_box {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.contact_text {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin-bottom: 32px;
}
.contact_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact_button {
  min-width: 220px;
  padding: 16px 28px;
  border-radius: 999px;
  background-color: #26499d;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.contact_button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.85;
}
.contact_button--mail {
  background-color: #001e43;
}

.section.contact {
  margin-top: 0;
  margin-bottom: 0;
}

.contact::after,
.contact.wave-section::after,
.wave-section.contact::after {
  content: none;
  display: none;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .contact_box {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .contact_text {
    font-size: 14px;
    text-align: left;
  }
  .contact_buttons {
    display: block;
  }
  .contact_button {
    width: 100%;
  }
  .contact_button + .contact_button {
    margin-top: 16px;
  }
}
.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.footer_main {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: -webkit-gradient(linear, left top, left bottom, from(#26499d), to(#001e43));
  background: linear-gradient(180deg, #26499d 0%, #001e43 100%);
  padding: 80px 20px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 0;
}
.footer_inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.footer_info {
  text-align: left;
}
.footer_logo {
  margin-bottom: 12px;
}
.footer_logo img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0;
}
.footer_logo-sub {
  font-size: 18px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}
.footer_sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.footer_sns-link {
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f7f4ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.footer_sns-link img {
  display: block;
  width: 46px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_sns-link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.85;
}
.footer_company {
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
}
.footer_address {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}
.footer_nav {
  min-width: 220px;
  text-align: left;
}
.footer_nav-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer_nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_nav-item + .footer_nav-item {
  margin-top: 12px;
}
.footer_nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer_nav-link:hover {
  opacity: 0.7;
}
.footer_bottom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0d1726;
  padding: 18px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Noto Sans JP", sans-serif;
}

.about_img {
  margin-bottom: 32px;
}
.about_img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about_text-contents {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.about_text {
  font-size: 17px;
  line-height: 1.8;
}
.about_text + .about_text {
  margin-top: 1em;
}
.about_text-name {
  display: block;
  text-align: right;
  margin-top: 16px;
}

.company {
  padding: 20px 0;
}
.company .section_head {
  text-align: left;
  margin-bottom: 64px;
}
.company_table-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.company_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.8;
}
.company_table th,
.company_table td {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  vertical-align: top;
}
.company_table th {
  width: 180px;
  font-weight: 700;
  text-align: left;
  color: #000;
}
.company_table td {
  color: #000;
}

.about_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.about_img {
  margin-bottom: 0;
}
.about_img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.about_text-contents {
  width: 100%;
  -webkit-transform: none;
          transform: none;
}
.about_text {
  font-size: 15px;
  line-height: 1.8;
}

.company_table-wrap {
  width: 100%;
  overflow-x: auto;
}
.company_table {
  width: 100%;
}
.company_table th,
.company_table td {
  display: block;
  width: 100%;
  padding: 16px 0;
}
.company_table th {
  padding-bottom: 4px;
}
.company_table td {
  padding-top: 4px;
}

.contact-page {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 120px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 248, 255, 0.72) 50%, rgba(255, 255, 255, 0.88) 100%), url(../img/img/backimg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
}
.contact-page::before, .contact-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(70px);
          filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.contact-page::before {
  top: 120px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(38, 73, 157, 0.18);
}
.contact-page::after {
  right: -60px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  background: rgba(0, 30, 67, 0.14);
}
.contact-page .section_inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-page .section_head {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-page_lead {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #333333;
}
.contact-page_cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.contact-page_card {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 32px;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  text-decoration: none;
  color: #333333;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(38, 73, 157, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(38, 73, 157, 0.08);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.contact-page_card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 24px 70px rgba(38, 73, 157, 0.12);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 24px 70px rgba(38, 73, 157, 0.12);
  opacity: 0.95;
}
.contact-page_card-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #26499d;
  font-weight: bold;
}
.contact-page_card-title {
  font-size: 22px;
  margin-bottom: 16px;
  color: #001e43;
}
.contact-page_card-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.contact-page_card-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 14px 24px;
  border-radius: 999px;
  background-color: #26499d;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-top: auto;
}
.contact-page_card-button--line {
  background-color: #06c755;
}
.contact-page_tel-number {
  display: block;
  margin-top: auto;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #26499d;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.contact-page .contact-page_card-button--line:hover {
  background-color: #05b84f;
}

.contact-form-page {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 120px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 248, 255, 0.72) 50%, rgba(255, 255, 255, 0.88) 100%), url(../img/img/backimg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
}
.contact-form-page::before, .contact-form-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(70px);
          filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.contact-form-page::before {
  top: 120px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(38, 73, 157, 0.18);
}
.contact-form-page::after {
  right: -60px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  background: rgba(0, 30, 67, 0.14);
}
.contact-form-page .section_inner {
  position: relative;
  z-index: 1;
}
.contact-form-page .section_head {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-page_lead {
  margin-top: 32px;
  margin-bottom: 56px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #333333;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(38, 73, 157, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(38, 73, 157, 0.08);
}
.contact-form_item + .contact-form_item {
  margin-top: 24px;
}
.contact-form_item label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #001e43;
}
.contact-form_item input,
.contact-form_item select,
.contact-form_item textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 15px;
  font-family: inherit;
}
.contact-form_item textarea {
  resize: vertical;
}
.contact-form_label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #001e43;
}
.contact-form_check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.contact-form_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 15px;
}
.contact-form_check input {
  width: 18px;
  height: 18px;
  accent-color: #26499d;
}
.contact-form_check span {
  color: #333333;
}
.contact-form_submit {
  margin-top: 40px;
  text-align: center;
}
.contact-form_submit button {
  width: 100%;
  max-width: 280px;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  background-color: #26499d;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-form_submit button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.85;
}

@media screen and (max-width: 767px) {
  .contact-form-page {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .contact-form-page::before {
    width: 180px;
    height: 180px;
    top: 100px;
    left: -60px;
  }
  .contact-form-page::after {
    width: 200px;
    height: 200px;
    right: -50px;
    bottom: 60px;
  }
  .contact-form-page_lead {
    text-align: left;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .contact-form {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .contact-form_check-list {
    grid-template-columns: 1fr;
  }
}
.section.contact-form-page {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 140px;
}

@media screen and (max-width: 767px) {
  .contact-form-page {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.form-thanks {
  display: none;
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 12px;
  background-color: #f0f6ff;
  color: #26499d;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/*-------------------------------------
// pc
-------------------------------------*/
@media screen and (min-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .wrapper {
    display: block;
    width: 100%;
    overflow-x: hidden;
  }
  .main {
    width: 100%;
  }
  .header,
  .header_container,
  .header_contents,
  .header_nav-list,
  .header_nav-item {
    background: transparent !important;
    background-color: transparent !important;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0;
    background: transparent !important;
  }
  .header .header_nav-link {
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header .button_text {
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header.is-scrolled {
    background: transparent !important;
  }
  .header.is-scrolled .header_nav-link {
    color: #26499d;
  }
  .header.is-scrolled .button_text {
    color: #26499d;
  }
  .header .header_nav-link:not(.button--bg) {
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header .header_nav-link:not(.button--bg) .button_text {
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header .header_nav-link:not(.button--bg) .button_text:hover {
    color: #26499d;
  }
  .header.is-scrolled .header_nav-link:not(.button--bg) {
    color: #26499d;
  }
  .header.is-scrolled .header_nav-link:not(.button--bg) .button_text {
    color: #26499d;
  }
  .header .header_nav-link.button--bg,
  .header .header_nav-link.button--bg .button_text {
    color: #26499d;
  }
  .header_container {
    width: 100%;
    margin: 0;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 40px;
  }
  .header_logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header_menu-button {
    display: none;
  }
  .header_contents {
    display: block;
    height: auto;
    padding-top: 0;
    border: none;
    margin-left: auto;
    width: auto;
  }
  .header_nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 8px;
  }
  .header_nav-item + .header_nav-item {
    margin-top: 0;
  }
  .button {
    width: auto;
    margin: 0;
    padding: 6px 8px;
    gap: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button_icon-path {
    fill: #26499d;
    width: 18px;
  }
  .button:hover .button_text {
    color: #26499d;
    margin-left: 2px;
    font-size: 14px;
  }
  .button--bg {
    color: #26499d;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
  .button_icon {
    display: none;
  }
  .section_inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section_head {
    margin-bottom: 24px;
  }
  .section_head-main {
    font-size: 60px;
    white-space: nowrap;
  }
  .works_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works_item {
    opacity: 0;
    -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
    transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
  }
  .works_item + .works_item {
    margin-top: 0;
  }
  .works_item:nth-child(3n+1) {
    -webkit-transform: translateX(-120px);
            transform: translateX(-120px);
  }
  .works_item:nth-child(3n+2) {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  .works_item:nth-child(3n) {
    -webkit-transform: translateX(120px);
            transform: translateX(120px);
  }
  .works_item.is-show {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  .about_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about_img {
    overflow: hidden;
    border-radius: 24px;
  }
  .about_img img {
    display: block;
    width: 100%;
    -webkit-animation: aboutZoom 8s ease-in-out infinite alternate;
            animation: aboutZoom 8s ease-in-out infinite alternate;
  }
  @-webkit-keyframes aboutZoom {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.08);
              transform: scale(1.08);
    }
  }
  @keyframes aboutZoom {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.08);
              transform: scale(1.08);
    }
  }
  .flow_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow_item + .flow_item {
    margin-top: 0;
  }
  .page-bottom_item {
    padding: 54px 10px;
  }
  .footer {
    padding: 0;
  }
  .footer_nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}
.section.contact {
  margin-top: 0;
  margin-bottom: 0;
}

.contact {
  padding-top: 160px;
  padding-bottom: 120px;
}

.footer {
  padding: 0;
  margin-top: 0;
}

.footer_main {
  margin-top: 0;
}

.contact-page_cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.contact-page_card {
  width: 100%;
  min-width: 0;
}
.contact-page_card-button {
  width: 100%;
  min-width: 0;
}

@media screen and (max-width: 1200px) {
  .concept_deco--01 {
    width: 240px;
    left: 80px;
  }
  .concept_deco--02 {
    width: 280px;
    left: 20px;
  }
  .concept_deco--03 {
    width: 280px;
    right: 20px;
  }
  .concept_deco--04 {
    width: 240px;
    right: 40px;
  }
}
@media screen and (max-width: 1600px) {
  .concept_deco--01 {
    width: 260px;
    left: 20px;
  }
  .concept_deco--02 {
    width: 280px;
    left: -60px;
  }
  .concept_deco--03 {
    width: 280px;
    right: -60px;
  }
  .concept_deco--04 {
    width: 260px;
    right: 0;
  }
}
/*-------------------------------------
// tb
-------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_head-main {
    font-size: 54px;
  }
  .flow_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .contact {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (max-width: 767px) {
  .contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .contact-page .section_inner {
    max-width: none;
  }
  .contact-page_lead {
    text-align: left;
    font-size: 14px;
  }
  .contact-page_cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
  }
  .contact-page_card {
    padding: 32px 24px;
  }
  .contact-page_card-title {
    font-size: 20px;
  }
  .contact-page_tel-number {
    font-size: 24px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .contact-form-page::before {
    width: 180px;
    height: 180px;
    top: 100px;
    left: -60px;
  }
  .contact-form-page::after {
    width: 200px;
    height: 200px;
    right: -50px;
    bottom: 60px;
  }
  .contact-form-page_lead {
    text-align: left;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .contact-form {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .contact-form_check-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .contact-page,
  .contact-form-page {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .section.contact {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .section.contact-page {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .section.contact-form-page {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .concept_head {
    display: block;
    text-align: center;
    margin-bottom: 64px;
  }
  .concept_main-img {
    width: 80%;
    max-width: 560px;
    margin: 40px auto 0;
  }
  .concept .section_head {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .concept_deco {
    display: none;
  }
  .concept_text {
    -webkit-transform: none;
            transform: none;
  }
}
.section.contact-page,
.section.contact-form-page {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-page,
.contact-form-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

.section.contact,
.section.contact-page,
.section.contact-form-page {
  margin-top: 0;
  margin-bottom: 0;
}

.section.contact {
  padding-top: 160px;
  padding-bottom: 120px;
}

.section.contact-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

.section.contact-form-page {
  padding-top: 80px;
  padding-bottom: 140px;
}

.footer {
  padding: 0;
  margin-top: 0;
}

/*-------------------------------------
  responsive
-------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 60px 0;
  }
  .section_inner {
    padding: 0 20px;
  }
  .section_head-main {
    font-size: 36px;
    white-space: normal;
  }
  .section_head-sub {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .section_contents {
    margin-top: 40px;
  }
  .concept {
    width: 100%;
    margin-left: 0;
  }
  .concept_container {
    padding: 80px 0 100px;
  }
  .concept_head {
    display: block;
    margin-bottom: 48px;
  }
  .concept_main-img {
    width: 100%;
    margin-top: 32px;
  }
  .concept_main-img img {
    width: 100%;
  }
  .concept_text {
    -webkit-transform: none;
            transform: none;
    text-align: left;
    font-size: 14px;
    line-height: 2;
  }
  .concept_text-large {
    font-size: 20px;
    line-height: 1.8;
  }
  .concept_deco {
    display: none;
  }
  .works {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .works_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .works_item + .works_item {
    margin-top: 0;
    margin-bottom: 0;
  }
  .works_item-img img {
    width: 100%;
    display: block;
  }
  .flow_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flow_item + .flow_item {
    margin-top: 0;
  }
  .contact {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .contact_box {
    padding: 40px 20px;
  }
  .contact_text {
    font-size: 14px;
    text-align: left;
  }
  .contact_button {
    width: 100%;
  }
  .footer_main {
    padding: 60px 20px 40px;
  }
  .footer_inner {
    display: block;
    padding: 0 20px;
  }
  .footer_info {
    text-align: center;
    margin-bottom: 40px;
  }
  .footer_logo img {
    margin: 0 auto;
  }
  .footer_sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_nav {
    text-align: center;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .contact-page {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .contact-page .section_inner {
    max-width: none;
    padding: 0 20px;
  }
  .contact-page_lead {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }
  .contact-page_cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .contact-page_card {
    padding: 32px 24px;
  }
  .contact-page_card-title {
    font-size: 20px;
  }
  .contact-page_card-button {
    font-size: 16px;
  }
  .contact-page_tel-number {
    font-size: 24px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-page {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .contact-form-page .section_inner {
    padding: 0 20px;
  }
  .contact-form-page_lead {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .contact-form {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .contact-form_check-list {
    grid-template-columns: 1fr;
  }
  .contact-form_submit button {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .header_contents {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 40px 24px;
    display: none;
    z-index: 9998;
  }
  .header_contents.is-open {
    display: block;
  }
  .header_nav-list {
    display: block;
  }
  .header_nav-item + .header_nav-item {
    margin-top: 20px;
  }
  .header_nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    color: #ffffff;
  }
  .header_menu-button {
    display: block;
    z-index: 9999;
  }
  .header_logo {
    width: 76px !important;
    padding: 0 !important;
  }
  .header_logo a {
    display: block;
  }
  .header_logo img {
    width: 100% !important;
    height: auto;
    display: block;
  }
}
.works_item-img {
  text-align: center;
}
.works_item-img img {
  width: 80%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .header_contents {
    background: #ffffff !important;
  }
  .header_nav-link {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: #26499d !important;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .header_nav-link .button_text {
    color: #26499d !important;
    font-size: 18px;
    font-weight: 700;
    margin-left: 0;
  }
  .header_nav-item + .header_nav-item {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header_nav-link.button {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: auto;
    margin: 0 auto;
    padding: 12px 24px;
  }
  .header_nav-link.button .button_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_nav-link.button .button_text {
    margin-left: 0 !important;
    color: #26499d !important;
  }
  .header_nav-link.button .button_icon-path {
    fill: #26499d !important;
  }
}