/* Fonts
--------------------------------------- */
/* Img Path
--------------------------------------- */
/* Color Scheme
--------------------------------------- */
/* Shadow
--------------------------------------- */
/* Radius
--------------------------------------- */
/* Line Height
--------------------------------------- */
/* Animations
--------------------------------------- */
/* Breakpoints
--------------------------------------- */
/* Fonts
--------------------------------------- */
/* Img Path
--------------------------------------- */
/* Color Scheme
--------------------------------------- */
/* Shadow
--------------------------------------- */
/* Radius
--------------------------------------- */
/* Line Height
--------------------------------------- */
/* Animations
--------------------------------------- */
/* Breakpoints
--------------------------------------- */
/* Fonts
--------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Barlow:wght@400;700&family=Noto+Sans+JP:wght@400;700;900&display=swap");
/* Common
--------------------------------------- */
html {
  background-color: white;
  color: #43495F;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #0670B0;
  text-decoration: none;
}

::-moz-placeholder {
  color: #B3B3B3;
}

::placeholder {
  color: #B3B3B3;
}

img,
canvas,
svg,
video {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

ol,
ul {
  list-style: none;
}

em {
  font-style: normal;
}

strong {
  font-weight: inherit;
}

br.sponly {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sponly {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  br.pconly {
    display: none;
  }
}

/* Button
--------------------------------------- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.icon--xs {
  width: 12px;
  height: 12px;
}

.icon--s {
  width: 16px;
  height: 16px;
}

.icon--m {
  width: 20px;
  height: 20px;
}

.icon--l {
  width: 24px;
  height: 24px;
}

.icon--xl {
  width: 32px;
  height: 32px;
}

.icon--white {
  color: white;
}

.icon--primary {
  color: #000633;
}

.icon--cursor {
  mask-image: url("../img/ic_cursor.svg");
  -webkit-mask-image: url("../img/ic_cursor.svg");
}

.icon--mail {
  mask-image: url("../img/ic_mail.svg");
  -webkit-mask-image: url("../img/ic_mail.svg");
}

.icon--newtab {
  mask-image: url("../img/ic_newtab.svg");
  -webkit-mask-image: url("../img/ic_newtab.svg");
}

.icon--play {
  mask-image: url("../img/ic_play.svg");
  -webkit-mask-image: url("../img/ic_play.svg");
}

.icon--plus {
  mask-image: url("../img/ic_plus.svg");
  -webkit-mask-image: url("../img/ic_plus.svg");
}

.icon--menu {
  mask-image: url("../img/ic_menu.svg");
  -webkit-mask-image: url("../img/ic_menu.svg");
}

.icon--close {
  mask-image: url("../img/ic_close.svg");
  -webkit-mask-image: url("../img/ic_close.svg");
}

/* Main
--------------------------------------- */
.container {
  position: relative;
}

.l-header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0px;
  padding: 24px 12px 0px;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .l-header {
    padding: 12px 12px;
  }
}
.l-header__container {
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
@media only screen and (max-width: 768px) {
  .l-header__container {
    padding: 10px 16px;
  }
}
.l-header__logo {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 160px;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 900px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav__list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-header__nav__item a {
  font-size: 16px;
  font-weight: 700;
  color: #000633;
}
.l-header__btn {
  background-color: #000633;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  border-radius: 24px;
}
.l-header__open {
  display: none;
}
@media only screen and (max-width: 900px) {
  .l-header__open {
    display: block;
  }
}

/* Layout
--------------------------------------- */
.l-section {
  padding: 80px 0px 120px;
}
@media only screen and (max-width: 768px) {
  .l-section {
    padding: 64px 0px 80px;
  }
}
.l-section__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.l-section__title {
  font-family: Barlow, "Inter", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000633;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .l-section__title {
    font-size: 32px;
  }
}
.l-section__desc {
  font-size: 18px;
  line-height: 1.5;
  color: #43495F;
}
@media only screen and (max-width: 768px) {
  .l-section__desc {
    font-size: 16px;
  }
}
.l-section__subtitle {
  font-size: 18px;
  color: #0670B0;
  line-height: 1;
}

.l-footer {
  background-color: #000633;
  color: white;
}
.l-footer__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 12px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-footer__container {
    flex-direction: column;
    justify-content: center;
    padding: 40px 24px;
    gap: 24px;
  }
}
.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 12px 0px 0px;
}
@media only screen and (max-width: 768px) {
  .l-footer__company {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__logo img {
  height: 50px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo img {
    height: 40px;
  }
}
.l-footer__address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .l-footer__address {
    text-align: center;
    gap: 16px;
  }
}
.l-footer__address h2 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.l-footer__address p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.25;
}
.l-footer__nav {
  border-left: 1px solid #43495F;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .l-footer__nav {
    border-left: none;
    border-top: 1px solid #43495F;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    padding-left: 0;
  }
}
.l-footer__link {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 480px) {
  .l-footer__link {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__link li {
  font-weight: 700;
}
.l-footer__link li a {
  color: white;
}
.l-footer__btn {
  background-color: white;
  color: #000633;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
}
.l-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.spmenu {
  position: fixed;
  right: -100%;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000633;
  color: white;
  z-index: 10;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.1s ease-in-out;
}
.spmenu.is-open {
  right: 0px;
}
.spmenu__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spmenu__logo {
  width: 160px;
}
.spmenu__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #43495F;
}
.spmenu__nav__item {
  padding: 16px 8px;
  font-weight: 700;
  border-bottom: 1px solid #43495F;
}
.spmenu__nav__item a {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
}
.spmenu__btn {
  background-color: white;
  color: #000633;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
}
.spmenu__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.spmenu__address h2 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.spmenu__address p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.25;
  text-align: center;
}
.spmenu__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 12px;
}

/* Page
--------------------------------------- */
.hero {
  height: 580px;
  background: #000633 url("../img/hero_bg.jpg") no-repeat 50% 50%;
  background-size: auto 100%;
}
@media only screen and (max-width: 768px) {
  .hero {
    background: #000633 url("../img/hero_bg_sp.jpg") no-repeat 50% 50%;
    background-size: auto 100%;
    height: 440px;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  justify-content: center;
  align-items: flex-start;
  padding: 210px 12px 0px;
  margin: 0 auto;
  gap: 18px;
}
@media only screen and (max-width: 768px) {
  .hero__container {
    padding: 116px 24px 0px;
  }
}
.hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  color: white;
}
@media only screen and (max-width: 768px) {
  .hero__title {
    font-size: 30px;
  }
}
.hero__lead {
  font-size: 24px;
  color: white;
}
@media only screen and (max-width: 768px) {
  .hero__lead {
    font-size: 18px;
  }
}
.hero__action .btn {
  color: white;
  border: 2px solid white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  border-radius: 8px;
  color: white;
}
@media only screen and (max-width: 768px) {
  .hero__action .btn {
    font-size: 18px;
    padding: 8px 16px;
  }
}

.about__container {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.about__desc {
  padding-top: 24px;
}
.about__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .about__list {
    flex-direction: column;
    gap: 32px;
  }
}
.about__item {
  width: 348px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .about__item {
    gap: 16px;
  }
}
.about__img img {
  width: 100%;
  height: auto;
}
.about__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #000633;
  line-height: 1.25;
}
.about__item-text {
  font-size: 16px;
  color: #43495F;
}

.service {
  background: #F6F6FA url("../img/service_bg.png") no-repeat 54% 100%;
  background-size: auto 690px;
  padding: 140px 0px 0px;
}
@media only screen and (max-width: 768px) {
  .service {
    background: #F6F6FA url("../img/service_bg_sp.png") no-repeat 50% 100%;
    background-size: auto 720px;
    padding: 64px 24px 500px;
  }
}
.service__container {
  display: flex;
  gap: 64px;
}
@media only screen and (max-width: 768px) {
  .service__container {
    flex-direction: column;
    gap: 40px;
  }
}
.service__head {
  background: url("../img/service_illust.png") no-repeat 100% 130%;
  background-size: auto 624px;
  width: 40%;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding-top: 32px;
  padding-left: 24px;
  padding-bottom: 600px;
}
@media only screen and (max-width: 768px) {
  .service__head {
    background: none;
    width: 100%;
    padding: 0px;
    gap: 20px;
    justify-content: flex-start;
  }
}
.service__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: Barlow, "Inter", "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #000633;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .service__title {
    font-size: 48px;
  }
}
.service__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service__subtitle {
  max-width: 360px;
  font-size: 24px;
  font-weight: 700;
  color: #0670B0;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .service__subtitle {
    font-size: 20px;
    max-width: unset;
  }
}
.service__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  font-size: 18px;
  color: #43495F;
}
@media only screen and (max-width: 768px) {
  .service__desc {
    font-size: 16px;
    max-width: unset;
  }
}
.service__body {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .service__body {
    width: 100%;
  }
}
.service__list {
  background-color: rgba(255, 255, 255, 0.96);
  border: 2px solid white;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 40px 0px 0px 40px;
}
@media only screen and (max-width: 768px) {
  .service__list {
    border-radius: 32px;
    gap: 24px;
    padding: 24px;
  }
}
.service__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E5E5;
}
@media only screen and (max-width: 768px) {
  .service__item {
    padding-bottom: 24px;
  }
}
.service__item:last-child {
  border: none;
  padding: 0;
}
.service__icon {
  background-color: white;
  border: 2px solid #F2F2F2;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .service__icon {
    flex-direction: column;
    width: 100px;
    height: 100px;
  }
}
.service__icon img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .service__icon img {
    width: 64px;
  }
}
.service__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #000633;
}
@media only screen and (max-width: 768px) {
  .service__item-title {
    font-size: 20px;
  }
}
.service__item-text {
  max-width: 400px;
  font-size: 16px;
  color: #43495F;
}
@media only screen and (max-width: 768px) {
  .service__item-text {
    font-size: 14px;
  }
}

.case {
  background: white url("../img/case_bg.png") no-repeat 50% 50%;
  background-size: 100% auto;
}
.case__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.case__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 1100px;
  margin: 0 auto;
  padding: 0px 16px;
}
@media only screen and (max-width: 1100px) {
  .case__group {
    max-width: unset;
    width: 100%;
  }
}
.case__group .swiper {
  overflow: visible;
}
.case__group .swiper-slide {
  width: 290px;
}
.case__group .swiper-slide:last-child {
  margin-right: 0px !important;
}
.case__group .swiper-slide a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 290px;
}
@media only screen and (max-width: 768px) {
  .case__group .swiper-slide a {
    gap: 12px;
    width: 240px;
  }
}
.case__group-title {
  font-size: 24px;
  font-weight: 700;
  color: #000633;
}
@media only screen and (max-width: 768px) {
  .case__group-title {
    font-size: 20px;
  }
}
.case__item {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  width: 290px !important;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .case__item {
    gap: 12px;
    width: 240px !important;
  }
}
.case__img {
  width: 100%;
  height: auto;
  position: relative;
}
.case__img img {
  width: 100%;
  height: auto;
}
.case__img h3 {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  padding: 8px;
  bottom: 0px;
  left: 0px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: rgba(0, 6, 51, 0.9);
  transition: all 200ms ease-out;
}
@media only screen and (max-width: 768px) {
  .case__img h3 {
    padding: 8px;
    font-size: 15px;
  }
}
.case__text {
  color: #000633;
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .case__text {
    font-size: 14px;
  }
}
.case a .case__text {
  color: #0670B0;
}
.case a:hover {
  opacity: 0.8;
}
.case a:hover h3 {
  padding: 8px 12px;
}
.case a:hover .case__text {
  gap: 12px;
}

.contact {
  background-color: #F6F6FA;
  padding: 80px 24px 120px;
}
@media only screen and (max-width: 768px) {
  .contact {
    padding: 64px 16px 80px;
  }
}
.contact__container {
  max-width: 960px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 56px 40px;
}
@media only screen and (max-width: 768px) {
  .contact__container {
    padding: 32px 16px;
    gap: 32px;
  }
}
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact__title {
  font-family: Barlow, "Inter", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000633;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
}
.contact__subtitle {
  font-size: 18px;
  color: #0670B0;
  line-height: 1;
}
.contact__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 12px;
  gap: 12px;
}
.contact__desc p {
  font-size: 14px;
  color: #43495F;
}
.contact__desc p.error {
  color: #C71919;
  font-weight: 700;
}
.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form .inquiry-mail-result {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form .inquiry-mail-result .contact__label {
  width: 140px;
}
.contact__form .inquiry-mail-result .contact__input {
  font-size: 16px;
  padding-top: 8px;
}
@media only screen and (max-width: 768px) {
  .contact__form .inquiry-mail-result .contact__input {
    font-size: 14px;
    padding-top: 0px;
  }
}
.contact__form .inquiry-mail-result .contact__desc {
  background-color: #F6F6FA;
  padding: 16px 16px;
}
.contact__form .inquiry-mail-result .contact__desc p {
  font-size: 16px;
  font-weight: 700;
  color: #000633;
}
@media only screen and (max-width: 768px) {
  .contact__form .inquiry-mail-result .contact__desc p {
    font-size: 14px;
  }
}
.contact__row {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .contact__row {
    flex-direction: column;
    gap: 8px;
  }
}
.contact__label {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  padding: 12px 0px;
  gap: 6px;
  align-items: center;
  color: #000633;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .contact__label {
    padding: 0px;
  }
}
.contact__label .label-required {
  background-color: #000633;
  font-size: 13px;
  font-weight: 400;
  color: white;
  border-radius: 24px;
  padding: 4px 8px;
}
.contact__input {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.contact__input .input-text,
.contact__input textarea {
  width: 100%;
  border: 1px solid #F2F2F2;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px 14px;
  transition: all 200ms ease-out;
}
.contact__input .input-text:focus,
.contact__input textarea:focus {
  outline: none;
  border-color: #0670B0;
}
.contact__input textarea {
  height: 160px;
}
.contact__input select {
  color: #B3B3B3;
  background-color: white;
  border: 1px solid #F2F2F2;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px 14px;
  transition: all 200ms ease-out;
  min-height: 46px;
}
.contact__input select:valid {
  color: #43495F;
}
.contact__input select:focus {
  outline: none;
  border-color: #0670B0;
}
.contact__input select option {
  color: #43495F;
}
.contact__input .error {
  color: #C71919;
  font-weight: 700;
}
.contact__input input[type=text],
.contact__input input[type=email],
.contact__input input[type=tel],
.contact__input input[type=password],
.contact__input .input-record,
.contact__input textarea {
  background-color: white;
  color: #43495F;
  border: solid 1px #F2F2F2;
}
.contact__input input[type=text]:focus,
.contact__input input[type=email]:focus,
.contact__input input[type=tel]:focus,
.contact__input input[type=password]:focus,
.contact__input .input-record:focus,
.contact__input textarea:focus {
  border-color: #0670B0;
}
.contact__input input[type=text]:hover,
.contact__input input[type=email]:hover,
.contact__input input[type=tel]:hover,
.contact__input input[type=password]:hover,
.contact__input select:hover,
.contact__input textarea:hover {
  background-color: #F6F6FA;
  border-color: #0670B0;
}
.contact__upload {
  border: 1px solid #0670B0;
  padding: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #0670B0;
  font-size: 16px;
  border-radius: 2px;
  transition: all 200ms ease-out;
}
.contact__upload:hover {
  border-color: #000633;
  background-color: #000633;
  color: white;
}
.contact__submit {
  display: flex;
  justify-content: center;
}
.contact__submit .btn {
  background-color: #000633;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 20px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  border-radius: 4px;
  transition: all 200ms ease-out;
}
.contact__submit .btn--submit {
  width: 280px;
}
.contact__submit .btn--submit:hover {
  padding: 20px 16px;
  opacity: 0.9;
}

.company {
  background-color: #F6F6FA;
  padding: 120px 24px 120px;
}
@media only screen and (max-width: 768px) {
  .company {
    padding: 96px 16px 80px;
  }
}
.company__container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.company__member {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .company__member {
    flex-direction: column;
    align-items: center;
  }
}
.company__member__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 320px;
  min-width: 180px;
}
@media only screen and (max-width: 768px) {
  .company__member__item {
    gap: 12px;
  }
}
.company__member__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.company__member__head span {
  font-family: Barlow, "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #0670B0;
}
@media only screen and (max-width: 768px) {
  .company__member__head span {
    font-size: 16px;
  }
}
.company__member__head h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #000633;
}
@media only screen and (max-width: 768px) {
  .company__member__head h3 {
    font-size: 20px;
  }
}
.company__member__profile {
  color: #43495F;
}
.company__info {
  border-collapse: collapse;
  border-top: 1px solid #D4D4D4;
}
.company__info tr th, .company__info tr td {
  padding: 24px;
  border-bottom: 1px solid #D4D4D4;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .company__info tr th, .company__info tr td {
    padding: 16px 8px;
  }
}
.company__info tr th {
  width: 120px;
  color: #000633;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .company__info tr th {
    width: 88px;
    font-size: 13px;
  }
}
.company__info tr td {
  color: #43495F;
}
@media only screen and (max-width: 768px) {
  .company__info tr td {
    font-size: 13px;
  }
}