@charset "UTF-8";
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* 固定ヘッダー分のオフセット：#アンカーでスクロールしたときに対象セクションがヘッダーに隠れないようにする */
  scroll-padding-top: 120px;
}
@media (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
    scroll-padding-top: 100px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 1.7361111111vw;
  }
}
@media (max-width: 420px) {
  html {
    font-size: 2.380952381vw;
  }
}

body {
  margin: 0;
  translate: 0.5s all;
  font-family: "Noto Sans JP", system-ui;
  color: #444444;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: white;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

div,
section,
p,
nav,
header,
button,
a,
ul,
li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.c-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .c-container {
    padding: 0 16px;
  }
}

.sp-only-block {
  display: none;
}
@media (max-width: 768px) {
  .sp-only-block {
    display: block;
  }
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 350px;
  height: auto;
  min-height: 140px;
  pointer-events: none;
}
.l-header__menu-btn {
  position: absolute;
  top: 100px;
  right: calc(50% - 35px);
  z-index: 1002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 70px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.l-header__menu-btn-line {
  display: block;
  width: 70px;
  height: 2px;
  margin: 0;
  background-color: #222222;
  -webkit-transition: opacity 0.25s ease, background-color 0.25s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.25s ease, background-color 0.25s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.25s ease;
  transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.25s ease, -webkit-transform 0.35s ease;
}
.l-header.is-nav-light:not(.is-open) .l-header__menu-btn-line {
  background-color: #fff;
}
.l-header.is-open .l-header__menu-btn .l-header__menu-btn-line {
  background-color: #fff;
}
.l-header.is-open .l-header__menu-btn .l-header__menu-btn-line:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(29deg);
          transform: translateY(12px) rotate(29deg);
}
.l-header.is-open .l-header__menu-btn .l-header__menu-btn-line:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__menu-btn .l-header__menu-btn-line:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-29deg);
          transform: translateY(-12px) rotate(-29deg);
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: min(420px, 100%);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 80px 40px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #5074BB;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.l-header.is-open .l-header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: auto;
}
.l-header__nav-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__nav-link {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Montserrat", system-ui;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: opacity 0.25s ease, padding-left 0.25s ease;
  transition: opacity 0.25s ease, padding-left 0.25s ease;
}
.l-header__nav-link:hover {
  opacity: 0.75;
  padding-left: 8px;
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.l-header.is-open .l-header__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .l-header {
    width: 180px;
  }
  .l-header__menu-btn {
    top: 60px;
    right: 40px;
  }
}
@media (max-width: 992px) {
  .l-header {
    width: 80px;
  }
  .l-header__menu-btn {
    top: 40px;
    right: 20px;
  }
  .l-header__nav {
    width: min(360px, 100%);
    padding: 72px 32px;
  }
  .l-header__nav-link {
    font-size: 20px;
    padding: 14px 0;
  }
}
@media (max-width: 768px) {
  .l-header {
    width: auto;
    min-height: 0;
  }
  .l-header__menu-btn .l-header__menu-btn-line {
    width: 50px;
  }
  .l-header__nav {
    width: 100%;
    max-width: 100%;
    padding: 88px 28px 40px;
  }
  .l-header__nav-link {
    padding: 14px 0;
  }
}
@media (max-width: 576px) {
  .l-header__nav {
    padding: 72px 20px 32px;
  }
  .l-header__nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

section.p-main-top {
  padding: 20px 350px 20px 20px;
}
section.p-main-top .p-main-top__inner {
  position: relative;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
section.p-main-top .p-main-top__inner::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -80px;
  z-index: 2;
  width: 200px;
  height: calc(100% + 10px);
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 900' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M280 0H70C200 220 200 680 70 900H280V0Z'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}
section.p-main-top .mv-slider {
  width: 100%;
  max-height: calc(100vh - 40px);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
section.p-main-top .mv-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}
section.p-main-top .mv-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.p-main-top .p-main-top__title {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1200px) {
  section.p-main-top {
    padding: 20px 180px 20px 20px;
  }
  section.p-main-top .p-main-top__inner::before {
    right: -60px;
    width: 160px;
  }
  section.p-main-top .p-main-top__title {
    font-size: 36px;
    left: 36px;
    bottom: 36px;
  }
}
@media (max-width: 992px) {
  section.p-main-top {
    padding: 16px 80px 16px 16px;
  }
  section.p-main-top .p-main-top__inner::before {
    right: -40px;
    width: 120px;
  }
}
@media (max-width: 768px) {
  section.p-main-top {
    padding: 12px 48px 12px 12px;
  }
  section.p-main-top .p-main-top__title {
    font-size: 28px;
    bottom: 20px;
  }
  section.p-main-top .p-main-top__inner,
  section.p-main-top .mv-slider {
    border-radius: 16px 0 0 16px;
  }
  section.p-main-top .p-main-top__inner::before {
    right: -28px;
    width: 90px;
  }
  section.p-main-top .mv-slider {
    max-height: 70vh;
  }
}
@media (max-width: 576px) {
  section.p-main-top {
    padding: 12px;
  }
  section.p-main-top .p-main-top__title {
    font-size: 24px;
    bottom: 20px;
    left: 20px;
  }
  section.p-main-top .p-main-top__inner,
  section.p-main-top .mv-slider {
    border-radius: 16px;
  }
}

section.p-concept {
  padding: 120px 0;
}
section.p-concept .p-concept__inner .mv-image {
  padding: 75px;
  background-color: #F5F8FF;
  border-radius: 24px;
}
section.p-concept .p-concept__inner .mv-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
section.p-concept .p-concept__inner .p-concept__content {
  position: relative;
  z-index: 1;
  margin: auto;
  margin-top: -45px;
  max-width: 950px;
}
section.p-concept .p-concept__inner .p-concept__content .p-concept__title {
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-size: 50px;
  line-height: 160%;
  letter-spacing: 0;
  color: #5074BB;
}
section.p-concept .p-concept__inner .p-concept__content .p-concept__detail {
  margin-top: 40px;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  letter-spacing: 0;
}
@media (max-width: 992px) {
  section.p-concept {
    padding: 80px 0;
  }
  section.p-concept .p-concept__inner .mv-image {
    padding: 40px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__title {
    font-size: 36px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__detail {
    font-size: 18px;
    margin-top: 28px;
  }
}
@media (max-width: 768px) {
  section.p-concept {
    padding: 60px 0;
  }
  section.p-concept .p-concept__inner .mv-image {
    padding: 24px;
    padding-bottom: 40px;
    border-radius: 16px;
  }
  section.p-concept .p-concept__inner .mv-image img {
    border-radius: 16px;
    max-height: 320px;
  }
  section.p-concept .p-concept__inner .p-concept__content {
    margin-top: -24px;
    padding: 0 8px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__title {
    font-size: 28px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__detail {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  section.p-concept {
    padding: 48px 0;
  }
  section.p-concept .p-concept__inner .mv-image {
    padding: 16px;
    padding-bottom: 40px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__title {
    font-size: 24px;
  }
  section.p-concept .p-concept__inner .p-concept__content .p-concept__detail {
    font-size: 14px;
    line-height: 180%;
  }
}

.p-section-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  font-family: "Montserrat", system-ui;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #5074BB;
  rotate: 180deg;
}
.p-section-title.p-white {
  color: #fff;
}
.p-section-title.ab-bottom {
  bottom: 0;
}
@media (max-width: 1400px) {
  .p-section-title {
    left: 20px;
  }
}
@media (max-width: 1200px) {
  .p-section-title {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    rotate: none;
    text-align: left;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

section.p-business {
  padding: 100px 0 100px;
  background-image: url("../images/business-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.p-business .p-business__inner {
  padding-top: 30px;
}
section.p-business .p-business__inner .business-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 600px;
  min-height: 600px;
  padding: 50px 48px 48px;
  padding-right: calc(50% + 24px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  counter-reset: business-item;
  border-radius: 24px;
  overflow: hidden;
  background-color: #F5F8FF;
}
section.p-business .p-business__inner .business-item {
  counter-increment: business-item;
  cursor: pointer;
}
section.p-business .p-business__inner .business-item + .business-item {
  margin-top: 24px;
}
section.p-business .p-business__inner .business-item__text::before {
  display: block;
  content: counter(business-item, decimal-leading-zero);
  font-family: "Montserrat", system-ui;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #a8c0e0;
  padding-bottom: 16px;
  border-bottom: 1px solid #a8c0e0;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
section.p-business .p-business__inner .business-item__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  opacity: 0;
  -webkit-transition: grid-template-rows 0.45s ease, opacity 0.3s ease;
  transition: grid-template-rows 0.45s ease, opacity 0.3s ease;
  transition: grid-template-rows 0.45s ease, opacity 0.3s ease, -ms-grid-rows 0.45s ease;
}
section.p-business .p-business__inner .business-item__inner {
  overflow: hidden;
  min-height: 0;
}
section.p-business .p-business__inner .business-item__title {
  margin: 20px 0;
  font-family: "Montserrat", system-ui;
  font-weight: 500;
  font-size: 40px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #5074BB;
}
section.p-business .p-business__inner .business-item__detail {
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  color: #444;
}
section.p-business .p-business__inner .business-item__image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 50%;
  height: 48px;
  overflow: hidden;
  will-change: height, top;
  z-index: 1;
}
section.p-business .p-business__inner .business-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
section.p-business .p-business__inner .business-item.is-active {
  cursor: default;
}
section.p-business .p-business__inner .business-item.is-active .business-item__text::before {
  color: #5074BB;
  border-bottom-color: #5074BB;
}
section.p-business .p-business__inner .business-item.is-active .business-item__body {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  opacity: 1;
}
section.p-business .p-business__inner .business-item.is-active .business-item__image img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 1200px) {
  section.p-business .p-business__inner .business-wrapper {
    height: 560px;
    min-height: 560px;
    padding: 36px 36px 40px;
    padding-right: calc(50% + 16px);
  }
  section.p-business .p-business__inner .business-item + .business-item {
    margin-top: 18px;
  }
  section.p-business .p-business__inner .business-item__text::before {
    display: block;
    font-size: 18px;
    padding-bottom: 12px;
  }
  section.p-business .p-business__inner .business-item__title {
    font-size: 32px;
    margin: 12px 0;
  }
  section.p-business .p-business__inner .business-item__detail {
    font-size: 15px;
    line-height: 180%;
  }
}
@media (max-width: 992px) {
  section.p-business {
    padding: 80px 0;
  }
  section.p-business .p-business__inner .business-wrapper {
    height: 520px;
    min-height: 520px;
    padding: 28px 24px 36px;
    padding-right: calc(50% + 12px);
  }
  section.p-business .p-business__inner .business-item + .business-item {
    margin-top: 14px;
  }
  section.p-business .p-business__inner .business-item__text::before {
    display: block;
    font-size: 16px;
    padding-bottom: 10px;
  }
  section.p-business .p-business__inner .business-item__title {
    font-size: 28px;
    margin: 10px 0;
  }
  section.p-business .p-business__inner .business-item__detail {
    font-size: 14px;
    line-height: 170%;
  }
}
@media (max-width: 768px) {
  section.p-business {
    padding: 60px 0;
  }
  section.p-business .p-business__inner {
    padding-top: 20px;
  }
  section.p-business .p-business__inner .business-wrapper {
    height: auto;
    min-height: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
  }
  section.p-business .p-business__inner .business-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.p-business .p-business__inner .business-item + .business-item {
    margin-top: 0;
  }
  section.p-business .p-business__inner .business-item__image {
    position: relative;
    top: auto !important;
    right: auto;
    left: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100% !important;
    height: 40px;
    -webkit-transition: height 0.45s ease;
    transition: height 0.45s ease;
  }
  section.p-business .p-business__inner .business-item__text {
    padding: 16px 20px 0;
  }
  section.p-business .p-business__inner .business-item__text::before {
    font-size: 16px;
    padding-bottom: 10px;
  }
  section.p-business .p-business__inner .business-item__title {
    font-size: 24px;
    margin: 10px 0;
  }
  section.p-business .p-business__inner .business-item__detail {
    font-size: 14px;
    line-height: 170%;
    padding-bottom: 16px;
  }
  section.p-business .p-business__inner .business-item.is-active .business-item__image {
    height: 200px;
  }
  section.p-business .p-business__inner .business-item.is-active .business-item__text {
    padding-bottom: 8px;
  }
}
@media (max-width: 576px) {
  section.p-business {
    padding: 48px 0;
  }
  section.p-business .p-business__inner .business-wrapper {
    border-radius: 16px;
  }
  section.p-business .p-business__inner .business-item__text {
    padding: 12px 14px 0;
  }
  section.p-business .p-business__inner .business-item__text::before {
    font-size: 14px;
  }
  section.p-business .p-business__inner .business-item__title {
    font-size: 20px;
  }
  section.p-business .p-business__inner .business-item__detail {
    font-size: 13px;
    padding-bottom: 12px;
  }
  section.p-business .p-business__inner .business-item__image {
    height: 36px;
  }
  section.p-business .p-business__inner .business-item.is-active .business-item__image {
    height: 250px;
  }
}

section.p-philosophy {
  padding: 100px 0;
  background-image: url("../images/philosophy-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.p-philosophy .p-philosophy__inner {
  padding-top: 30px;
}
section.p-philosophy .p-philosophy_wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
section.p-philosophy .p-philosophy_wrapper .p-philosophy_item {
  padding: 20px 18px;
  background-color: #F5F8FF;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-inner {
  padding: 16px 10px;
  background-color: #fff;
  border-radius: 4px;
}
section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-title {
  margin: 0;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: #5074BB;
}
section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-detail {
  margin-top: 10px;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
  color: #444;
}
@media (max-width: 992px) {
  section.p-philosophy {
    padding: 80px 0;
  }
  section.p-philosophy .p-philosophy_wrapper {
    gap: 28px;
  }
  section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-title {
    font-size: 18px;
  }
  section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-detail {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  section.p-philosophy {
    padding: 60px 0;
  }
  section.p-philosophy .p-philosophy__inner {
    padding-top: 20px;
  }
  section.p-philosophy .p-philosophy_wrapper {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  section.p-philosophy .p-philosophy_wrapper .p-philosophy_item {
    padding: 16px 14px;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  section.p-philosophy {
    padding: 48px 0;
  }
  section.p-philosophy .p-philosophy_wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-title {
    font-size: 16px;
  }
  section.p-philosophy .p-philosophy_wrapper .p-philosophy_item .item-detail {
    font-size: 14px;
    line-height: 180%;
  }
}

footer.p-footer {
  padding: 20px 20px;
  background-color: white;
}
footer.p-footer .copy-right {
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #7F97C7;
}
@media (max-width: 576px) {
  footer.p-footer .copy-right {
    font-size: 14px;
  }
}

section.p-company {
  position: relative;
  padding: 180px 0 150px;
  background-image: url("../images/company-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.p-company::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 316px;
  background-color: #7F97C7;
}
section.p-company .p-company__inner {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background-color: #F5F8FF;
  padding: 24px;
}
section.p-company .p-company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 60px;
  border-radius: 20px;
  background-color: #fff;
  padding: 40px 60px 44px;
}
section.p-company .p-company__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.p-company .p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
  margin: 0;
  padding: 36px 0 28px 0;
  border-bottom: 1px solid #7F97C7;
}
section.p-company .p-company__row:first-child {
  padding-top: 0;
}
section.p-company .p-company__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  margin: 0;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #7F97C7;
}
section.p-company .p-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
section.p-company .p-company__row dd a {
  color: inherit;
  text-decoration: none;
}
section.p-company .p-company__row dd a:hover {
  text-decoration: underline;
}
section.p-company .p-company__profile {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
section.p-company .p-company__photo {
  overflow: hidden;
  border-radius: 8px;
}
section.p-company .p-company__photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.p-company .p-company__role {
  margin-top: 10px;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #7F97C7;
}
section.p-company .p-company__name {
  margin: 0;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}
@media (max-width: 992px) {
  section.p-company {
    padding: 120px 0 100px;
  }
  section.p-company::before {
    height: 240px;
  }
  section.p-company .p-company__wrapper {
    gap: 40px;
    padding: 32px 40px;
  }
}
@media (max-width: 768px) {
  section.p-company {
    padding: 80px 0 60px;
  }
  section.p-company::before {
    height: 180px;
  }
  section.p-company .p-company__inner {
    border-radius: 20px;
    padding: 16px;
  }
  section.p-company .p-company__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
    padding: 28px 20px;
    border-radius: 16px;
  }
  section.p-company .p-company__profile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
  }
  section.p-company .p-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  section.p-company .p-company__row dt {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media (max-width: 576px) {
  section.p-company {
    padding: 56px 0 48px;
  }
  section.p-company::before {
    height: 140px;
  }
  section.p-company .p-company__inner {
    padding: 12px;
    border-radius: 16px;
  }
  section.p-company .p-company__wrapper {
    padding: 20px 16px;
    gap: 24px;
  }
  section.p-company .p-company__profile {
    max-width: 180px;
  }
  section.p-company .p-company__row dt,
  section.p-company .p-company__row dd {
    font-size: 14px;
  }
}