@font-face {
  font-family: "D-DIN";
  src: url("../fonts/D-DIN-Bold.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "D-DIN";
  src: url("../fonts/D-DIN.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Condensed";
  src: url("../fonts/Futura-Condensed-Medium.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: "D-DIN", "DIN Alternate", "DIN 2014", "DIN Pro", "DIN", sans-serif;
}
@media only screen and (max-width: 766px) {
  body.menu-open {
    overflow: hidden;
  }
}

h1,
h2,
h3 {
  font-family: "Futura Condensed", sans-serif;
  font-feature-settings: "ss01" 1;
}

.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

header .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header h1 {
  margin: 0 0 3.5rem;
}
header h1 img {
  display: block;
  width: min(18rem, 52vw);
  height: auto;
}

.site-nav-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.site-nav-pc a {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-family: "Futura", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-align: center;
  text-decoration: none;
  color: #181E2F;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.site-nav-pc a.active, .site-nav-pc a:hover {
  background-color: #181E2F;
  color: #fff;
}
@media only screen and (max-width: 766px) {
  .site-nav-pc a.active, .site-nav-pc a:hover {
    background-color: transparent;
    color: #181E2F;
  }
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle__line {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  background-color: #181E2F;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.menu-toggle__line:first-child {
  transform: translateY(calc(-50% - 0.21875rem));
}
.menu-toggle__line:last-child {
  transform: translateY(calc(-50% + 0.21875rem));
}

header.set {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: url(../images/bg.jpg) center center/cover no-repeat;
  transition: all 0.6s ease;
}
@media only screen and (max-width: 766px) {
  header.set {
    position: relative;
    height: auto;
    min-height: 100svh;
    background-size: cover;
    background-position: center top;
  }
}

header.scroll {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(../images/bg.jpg) center center/cover no-repeat;
  transition: all 0.6s ease;
}
header.scroll .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
header.scroll h1 {
  width: 100%;
  margin: 0 0 2rem;
}
header.scroll h1 img {
  width: min(14rem, 80%);
  margin: 0 auto;
}

.sp-header-bar {
  display: none;
}

.site-nav-sp {
  display: none;
}

@media only screen and (max-width: 766px) {
  .sp-header-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(247, 251, 253, 0.95);
  }
  .sp-header-bar.is-visible {
    display: flex;
  }
  .sp-header-bar__logo {
    display: block;
    line-height: 0;
  }
  .sp-header-bar__logo img {
    display: block;
    height: 1.125rem;
    width: auto;
  }
  .sp-header-bar .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }
  .sp-header-bar.menu-open .menu-toggle__line:first-child {
    transform: translateY(-50%) rotate(45deg);
  }
  .sp-header-bar.menu-open .menu-toggle__line:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }
  .site-nav-sp {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 5rem 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.79);
  }
  .site-nav-sp.is-open {
    display: flex;
  }
  .site-nav-sp a {
    padding: 0;
    font-family: "Futura Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: center;
    text-decoration: none;
    color: #181E2F;
  }
  .site-nav-sp a.active, .site-nav-sp a:hover {
    color: #181E2F;
  }
}
section {
  width: 100%;
  padding: 120px 40px 100px 54%;
  scroll-margin-top: 80px;
}
@media only screen and (max-width: 766px) {
  section {
    padding: 5.5rem 1.25rem 6.25rem;
    scroll-margin-top: 3.5rem;
  }
}

h2 {
  font-size: 50px;
  line-height: 1.15;
  margin: 0 0 40px;
  font-weight: normal;
}
@media only screen and (max-width: 766px) {
  h2 {
    font-size: 34px;
  }
}

p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

#message {
  padding-top: 60%;
}
@media only screen and (max-width: 766px) {
  #message {
    padding-top: 5.5rem;
  }
}

#message, #mission, #contact {
  background: #F7FBFD;
}
#message h2, #mission h2, #contact h2 {
  color: #207C9D;
}
#message p, #mission p, #contact p {
  color: #207C9D;
}

#service, #company {
  background: #4194B0;
  color: #fff;
}
#service h2, #company h2 {
  color: #fff;
}

.company-list {
  margin: 0;
  padding: 0;
}

.company-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #fff;
}
.company-row dt {
  flex-shrink: 0;
  min-width: 5rem;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.company-row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: right;
}
@media only screen and (max-width: 766px) {
  .company-row dd {
    font-size: 12px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 766px) {
  .company-row {
    gap: 1rem;
    padding: 1.25rem 0;
  }
  .company-row dt {
    min-width: 4.5rem;
    font-size: 12px;
  }
}

.mvv-block {
  margin-bottom: 1rem;
}
.mvv-block:last-child {
  margin-bottom: 0;
}
.mvv-block > p:not(.mvv-label) {
  margin: 0;
  color: #207C9D;
}

#mission .mvv-label {
  display: inline-block;
  min-width: 8rem;
  margin: 0 0 0.5rem;
  padding: 0.45rem 2rem;
  background-color: #207C9D;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
}

.mvv-value-item {
  margin-bottom: 2.5rem;
}
.mvv-value-item:last-child {
  margin-bottom: 0;
}

.mvv-value-title {
  margin: 0 0 0.75rem;
  color: #207C9D;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.mvv-value-lead {
  margin: 0 0 0.75rem;
  color: #207C9D;
}

.mvv-value-item p:last-child {
  margin: 0;
  color: #207C9D;
}

.contact-form-item {
  margin-bottom: 1.75rem;
}
.contact-form-item--error input,
.contact-form-item--error textarea {
  border-color: #c0392b;
}

#contact .contact-form-error {
  margin: 0.5rem 0 0;
  color: #c0392b;
  font-size: 14px;
  line-height: 1.6;
}
@media only screen and (max-width: 766px) {
  #contact .contact-form-error {
    font-size: 12px;
  }
}

.contact-form label {
  display: block;
  margin-bottom: 0.625rem;
  color: #207C9D;
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (max-width: 766px) {
  .contact-form label {
    font-size: 13px;
  }
}

.contact-required {
  display: inline-block;
  margin-right: 0.625rem;
  padding: 0.125rem 0.375rem;
  background-color: #207C9D;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 3px;
  vertical-align: middle;
}
@media only screen and (max-width: 766px) {
  .contact-required {
    font-size: 12px;
  }
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "D-DIN", "DIN Alternate", "DIN 2014", "DIN Pro", "DIN", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181E2F;
  background-color: #fff;
  border: 1px solid #9A9A9A;
  border-radius: 4px;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #207C9D;
}
@media only screen and (max-width: 766px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 0.625rem 0.75rem;
  }
}

.contact-form input {
  height: 2.75rem;
}

.contact-submit {
  display: block;
  width: 100%;
  height: 3.75rem;
  margin-top: 0.5rem;
  padding: 0;
  background-color: #207C9D;
  color: #fff;
  font-family: "D-DIN", "DIN Alternate", "DIN 2014", "DIN Pro", "DIN", sans-serif;
  font-size: 16px;
  line-height: 1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-submit:hover {
  opacity: 0.85;
}
@media only screen and (max-width: 766px) {
  .contact-submit {
    height: 3.25rem;
    font-size: 14px;
  }
}

.thanks-page {
  min-height: 100vh;
  padding: 120px 40px 100px 54%;
  background: #F7FBFD;
}
@media only screen and (max-width: 766px) {
  .thanks-page {
    padding: 5.5rem 1.25rem 6.25rem;
  }
}
.thanks-page h2 {
  color: #207C9D;
}
.thanks-page p {
  color: #207C9D;
  margin: 0 0 1.5rem;
}

.thanks-lead {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 766px) {
  .thanks-lead {
    font-size: 14px;
  }
}

.thanks-back {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #207C9D;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.thanks-back:hover {
  opacity: 0.85;
}
@media only screen and (max-width: 766px) {
  .thanks-back {
    font-size: 14px;
  }
}

header.scroll h1 a {
  display: block;
}

/*# sourceMappingURL=style.css.map */
