@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #000;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #43729f;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(51.8805309735, 88.2743362832, 123.1194690265);
}

ul {
  list-style: none;
}

.section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  color: #343a40;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 48px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #43729f;
}

.content-section,
.content-section-dark {
  max-width: 315px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .content-section,
  .content-section-dark {
    max-width: 1200px;
  }
}

.content-section-dark {
  background-color: #d4dde6;
  color: #f4f4f4;
}
.content-section-dark h2,
.content-section-dark p {
  color: #ffffff;
}

.js-fadein-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein-scroll.is-fadein-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein-scroll.fade-only {
  transform: translateY(0);
}

.js-fadein-delay-1 {
  transition-delay: 0.2s;
}

.js-fadein-delay-2 {
  transition-delay: 0.4s;
}

.js-fadein-scroll.duration-1s {
  transition-duration: 1s;
}

.header {
  background: #ffffff;
  padding: 5px 10px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 50px;
}
@media (min-width: 768px) {
  .header {
    padding: 1rem 0;
    height: 70px;
  }
}
.header .container {
  display: flex;
  justify-content: start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 768px) {
  .header .container {
    justify-content: space-between;
  }
}
.header .header__logo {
  height: 40px;
}
@media (min-width: 768px) {
  .header .header__logo {
    height: 60px;
  }
}
.header .header__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header .header__logo-text-image {
  width: 100%;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .header .header__logo-text-image {
    height: 30px;
  }
}
.header .header__logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header .header__nav {
    display: block;
  }
}
.header .header__nav ul {
  display: flex;
  gap: 40px;
}
.header .header__nav ul li a {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: #000;
}
.header .header__nav ul li a:hover {
  color: #43729f;
  border-bottom-color: #43729f;
}
.header__hamburger {
  position: absolute;
  right: 15px;
  width: 32px;
  height: 20px;
  z-index: 10001;
}
.header__hamburger div {
  position: relative;
  width: 100%;
  height: 100%;
}
.header__hamburger div span {
  display: block;
  width: 100%;
  height: 4px;
  border: solid 1px #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__hamburger div span:nth-child(1) {
  top: 0;
}
.header__hamburger div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger div span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%; /* 中央に移動 */
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  bottom: 50%; /* 中央に移動 */
  transform: translateY(50%) rotate(-45deg);
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.global-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 768px) {
  .global-nav-overlay {
    display: none;
  }
}
.global-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.global-nav-overlay__inner {
  padding: 50px 30px;
  width: 100%;
  text-align: center;
}
.global-nav-overlay__inner nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-nav-overlay__inner nav ul li {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}
.global-nav-overlay__inner nav ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.global-nav-overlay__inner nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2em;
  display: block;
  padding: 5px 0;
}

#hero {
  width: 100%;
  height: 380px;
  position: relative;
}
@media (min-width: 768px) {
  #hero {
    height: 675px;
  }
}
#hero .hero__image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#hero .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.5;
}
#hero .hero__title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
#hero .hero__title.is-fadein {
  opacity: 1;
  transform: translateX(0);
}
#hero .hero__title h2 {
  padding: 26px;
  font-size: 36px;
  color: #000;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #hero .hero__title h2 {
    padding: 0px;
    font-size: 64px;
  }
}
@media (min-width: 768px) {
  #hero .hero__title h2 .sp-br {
    display: none;
  }
}

#business .business__grid {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (min-width: 768px) {
  #business .business__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 100px;
  }
}
#business .card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  #business .card {
    gap: 30px;
  }
}
#business .card__image {
  width: 100%;
  height: 210px;
}
@media (min-width: 768px) {
  #business .card__image {
    height: 390px;
  }
}
#business .card__image:hover {
  opacity: 0.7;
}
#business .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
#business .card__title {
  font-size: 24px;
  margin-bottom: 1rem;
}
#business .card__text {
  font-size: 16px;
  line-height: 1.6;
}

#philosophy {
  padding: 80px 0;
  background-color: #d4dde6;
}
#philosophy .container {
  max-width: 315px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  #philosophy .container {
    max-width: 1200px;
    flex-direction: row;
    gap: 60px;
  }
}
#philosophy .container .philosophy__left {
  flex: 1;
}
#philosophy .container .philosophy__left p {
  font-size: 16px;
}
#philosophy .container .philosophy__right {
  width: 100%;
  height: 173px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
#philosophy .container .philosophy__right.is-fadein {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  #philosophy .container .philosophy__right {
    width: 350px;
    height: 195px;
  }
}
#philosophy .container .philosophy__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#recruit .section-title,
#about .section-title {
  margin-bottom: 50px;
}

#recruit {
  background-color: #f8f9fa;
}
#recruit .container {
  max-width: 315px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  #recruit .container {
    max-width: 1200px;
  }
}
#recruit .container th::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 33px;
  width: 16px;
  height: 16px;
  background-color: #d4dde6;
  transform: translateY(-50%);
}

#about {
  background-color: #d4dde6;
}
#about .container {
  max-width: 315px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  #about .container {
    max-width: 1200px;
  }
  #about .container .info-table__cell {
    border-bottom: 1px solid #43729f;
  }
  #about .container tr:first-child td {
    border-top: 1px solid #43729f;
  }
}
#about .container th {
  border-bottom: 1px solid #43729f;
}
#about .container th,
#about .container td {
  padding: 20px 10px 40px;
}

.info-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 16px;
}
@media (min-width: 768px) {
  .info-table {
    width: calc(100% - 240px);
  }
}
.info-table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #43729f;
}
.info-table tr:first-child {
  border-top: 1px solid #43729f;
}
@media (min-width: 768px) {
  .info-table tr {
    flex-direction: row;
    border-bottom: none;
  }
  .info-table tr:first-child {
    border-top: none;
  }
}
.info-table th,
.info-table td {
  padding: 20px 40px 40px;
  text-align: left;
  position: relative;
}
@media (min-width: 768px) {
  .info-table tr:first-child th {
    border-top: 1px solid #43729f;
  }
  .info-table tr:first-child td {
    border-top: 1px solid #5b5b5b;
  }
  .info-table td {
    border-bottom: 1px solid #5b5b5b;
    flex: 1;
  }
}
.info-table th {
  width: 100%;
  font-weight: 700;
  position: relative;
  font-weight: 400;
  border-bottom: 1px solid #5b5b5b;
}
@media (min-width: 768px) {
  .info-table th {
    border-bottom: 1px solid #43729f;
    width: 25%;
  }
}
.info-table__cell-map {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .info-table__cell-map {
    width: 380px;
    height: 280px;
  }
}
.info-table__cell-map p {
  font-size: 48px;
  text-align: center;
}

.contact {
  background-color: #f8f9fa;
}
.contact .container {
  max-width: 315px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  .contact .container {
    max-width: 1200px;
  }
}
.contact__form {
  width: 315px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact__form > p {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact__form {
    gap: 35px;
    width: 800px;
  }
}
.contact__item > p {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}
.contact__item > p > br {
  display: none;
}
.contact__item > p > span {
  flex: 1;
}
.contact__item > p > span input,
.contact__item > p > span textarea {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__item > p {
    gap: 100px;
  }
}
.contact__label {
  width: 100%;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact__label {
    width: 155px;
    line-height: 40px;
  }
}
.contact__required {
  color: #ff0000;
  margin-left: 5px;
}
.contact__input,
.contact__textarea {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid #000;
  border-radius: 3px;
  font-size: 16px;
  height: 45px;
  box-sizing: border-box;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .contact__input,
  .contact__textarea {
    height: 40px;
  }
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: black;
}
.contact__textarea {
  height: 205px;
  resize: vertical;
}
@media (min-width: 768px) {
  .contact__textarea {
    height: 205px;
  }
}
.contact__submit-button {
  align-self: center;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  min-width: 100%;
  text-align: center;
  padding: 30px 55px;
}
@media (min-width: 768px) {
  .contact__submit-button {
    padding: 30px 50px;
    min-width: 520px;
    font-size: 18px;
  }
}
.contact__submit-button:hover {
  background-color: #d4dde6;
  border: 1px solid #f8f9fa;
}

.footer {
  background: #fff;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
@media (min-width: 768px) {
  .footer {
    gap: 80px;
  }
}
.footer__content {
  width: 315px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) {
  .footer__content {
    gap: 1.2rem;
    width: 1200px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__info {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer__info {
    gap: 50px;
    width: 60%;
    text-align: left;
  }
}
.footer__logo {
  width: 70px;
  height: 81px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__company {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 20px;
}
.footer__company div {
  text-align: left;
}
.footer__links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  text-align: center;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .footer__links {
    flex: 1;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 150px);
  }
}
.footer__links div {
  padding: 0 20px 10px;
}
.footer__links a {
  text-decoration: none;
  color: #000;
}
.footer__copyright {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0.7em;
  color: #aaa;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 16px;
  }
} /*# sourceMappingURL=style.css.map */
