@charset "UTF-8";
/*---------------------------------------
	スマホファースト
----------------------------------------*/
html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased; /* Webkit系ブラウザで適用 */
  -moz-osx-font-smoothing: grayscale; /* macOSで適用 */
  background-color: #f1f2f4;
  color: #eee6d8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.l-wrapper {
  margin-inline: auto;
  overflow-x: hidden;
  width: min(100%, 800px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ブラウザの標準マージンを削除 */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* bodyの基本設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* ul, ol のリストマークと余白を削除（クラス指定がある場合） */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* クラスがないaタグの下線スタイルを整える */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* 全てのaタグの下線を消し、親要素の色を引き継ぐ */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像のサイズ調整しやすく */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* addressタグの斜体を通常に戻す */
address {
  font-style: normal;
}

/* article内の要素間に適度な余白を追加 */
article > * + * {
  margin-top: 1em;
}

/* フォーム要素に親と同じフォントを使う */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォーム要素のリセット（装飾や見た目を初期化） */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

/* textareaのみリサイズを縦方向のみに */
textarea {
  resize: vertical;
}

/* チェックボックスとラジオボタンを非表示（後でカスタムスタイルを当てる想定） */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* ボタンやラベルのカーソルをポインターに */
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* IEのセレクトボックス右側の矢印を非表示 */
select::-ms-expand {
  display: none;
}

/* アニメーションやスクロールを無効に（視覚的に配慮が必要なユーザー向け） */
.l-footer {
  align-items: center;
  background-color: #004e5d;
  display: flex;
  flex-direction: column;
  padding-block: 2rem;
  padding-inline: 1.5625rem;
  width: 100%;
}

.l-footer__corporate {
  align-items: center;
  background-color: #f1f2f4;
  border: 0.0625rem solid #89a6aa;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  padding-inline: 1rem;
  transition: opacity 0.3s ease;
  width: min(100%, 25rem);
}

.l-footer__corporate-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.l-footer__logo {
  flex-shrink: 0;
  height: auto;
  width: 2.5rem;
}

.l-footer__corporate-text {
  color: #004e5d;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.l-footer__arrow {
  flex-shrink: 0;
  height: 2.5rem;
  width: 2.5rem;
}

.l-footer__info {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-top: 2rem;
  width: min(100%, 14.6875rem);
}

.l-footer__company {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-footer__address {
  display: flex;
  flex-direction: column;
  font-style: normal;
  line-height: 1.5;
  margin-top: 0.9375rem;
}

.l-footer__address p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: inherit;
  margin-top: 0.375rem;
}

.l-footer__address p:first-child {
  margin-top: 0;
}

.l-footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.2;
  margin-top: 2rem;
  text-align: center;
}

.l-header {
  -webkit-transform: translateX(-50%);
  align-items: center;
  backdrop-filter: blur(0px);
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
  left: 50%;
  padding-block: 0.75rem;
  padding-inline: 1.5625rem;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 50rem);
  z-index: 100;
}

.l-header__icons {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.l-header__icon-link {
  align-items: center;
  background-color: #f1f2f4;
  border: 0.125rem solid #89a6aa;
  border-radius: 0.625rem;
  display: flex;
  height: 2.75rem;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 2.75rem;
}

.l-header__icon-link img {
  -o-object-fit: contain;
  height: 1.75rem;
  object-fit: contain;
  width: 1.75rem;
}

.l-header__save-btn {
  align-items: center;
  background-color: #204659;
  border: 0.125rem solid transparent;
  border-radius: 0.625rem;
  display: inline-flex;
  gap: 0.5rem;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.l-header__save-icon {
  color: #f1f2f4;
  flex-shrink: 0;
  height: 1.25rem;
  transition: color 0.3s ease;
  width: 1.25rem;
}

.l-header__save-text {
  color: #f1f2f4;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.l-header--on-dark .l-header__save-btn {
  background-color: #eee6d8;
  border-color: #89a6aa;
}
.l-header--on-dark .l-header__save-icon {
  color: #004e5d;
}
.l-header--on-dark .l-header__save-text {
  color: #004e5d;
}

.c-back-to-top {
  align-items: center;
  bottom: 2.8125rem;
  cursor: pointer;
  display: flex;
  height: 3.125rem;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1.25rem;
  transition: opacity 0.3s ease;
  width: 3.125rem;
  z-index: 90;
}

.c-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.c-back-to-top img {
  height: 2.8125rem;
  width: 2.8125rem;
}

.c-scroll-guide {
  -webkit-animation: scrollGuidFloat 1.6s ease-in-out infinite;
  align-items: center;
  animation: scrollGuidFloat 1.6s ease-in-out infinite;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transition: opacity 0.6s ease;
}
.c-scroll-guide.is-hidden {
  opacity: 0;
}

.c-scroll-guide__robot {
  height: auto;
  width: 3.5rem;
}

.c-scroll-guide__text {
  color: #004e5d;
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.c-scroll-guide__arrow {
  height: auto;
  width: 0.75rem;
}

@-webkit-keyframes scrollGuidFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.375rem);
    transform: translateY(-0.375rem);
  }
}

@keyframes scrollGuidFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.375rem);
    transform: translateY(-0.375rem);
  }
}
.p-about {
  align-items: center;
  background-color: #004e5d;
  display: flex;
  flex-direction: column;
  padding-block: 2rem;
  padding-inline: 1.5625rem;
}

.p-about__message-card {
  align-items: center;
  background-color: #f1f2f4;
  border: 0.0625rem solid #89a6aa;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding-block: 1.875rem;
  padding-inline: 1.5rem;
  width: 100%;
}

.p-about__message-card:first-child {
  margin-top: 0;
}

.p-about__heading-wrap {
  border-bottom: 0.125rem solid #004e5d;
  padding-bottom: 0.375rem;
}

.p-about__heading-wrap--light {
  border-bottom-color: #eee6d8;
}

.p-about__profile-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-top: 2.5rem;
  width: min(100%, 34.375rem);
}

.p-about__heading {
  color: #004e5d;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-about__heading--light {
  color: #eee6d8;
}

.p-about__message-text {
  color: #004e5d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.875rem;
  text-align: center;
}

.p-about__profile-body {
  display: flex;
  flex-direction: column;
  margin-top: 1.875rem;
}

.p-about__profile-text {
  color: #eee6d8;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-about__profile-list {
  margin-top: 1rem;
}

.p-about__profile-row {
  align-items: baseline;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 4.375rem 1fr;
  margin-top: 1rem;
}

.p-about__profile-row:first-child {
  margin-top: 0;
}

.p-about__profile-label {
  color: #eee6d8;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 3.75rem;
}

.p-about__profile-value {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-mv {
  flex: 1;
  padding-bottom: clamp(4.375rem, 5dvh, 3.75rem);
  position: relative;
}

.p-mv__bg {
  height: 100%;
  width: 100%;
}

.p-mv__bg-img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-mv__profile {
  -webkit-transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}

.p-mv__profile-img {
  -o-object-fit: cover;
  border-radius: 50%;
  display: block;
  height: 11.875rem;
  object-fit: cover;
  width: 11.875rem;
}

.p-profile {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-block: clamp(0.75rem, 2dvh, 2.5rem) clamp(3.75rem, 2dvh, 3.75rem);
  padding-inline: 1rem;
  position: relative;
  text-align: center;
}

.p-profile__name-wrap {
  display: flex;
  flex-direction: column;
  margin-top: clamp(0.75rem, 2dvh, 2rem);
  width: 100%;
}

.p-profile__name-block {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.p-profile__name-ja {
  color: #004e5d;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-profile__name-en {
  color: #004e5d;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.5rem;
}

.p-profile__title-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.p-profile__department {
  color: #004e5d;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-profile__position {
  color: #004e5d;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.p-profile__position-row {
  margin-top: 0.5rem;
}

.p-profile__contact {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: clamp(0.75rem, 2dvh, 2rem);
}

.p-profile__contact-link {
  align-items: center;
  background-color: #004e5d;
  border: 0.125rem solid #89a6aa;
  border-radius: 1.25rem;
  display: flex;
  height: 4rem;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 4rem;
}

.p-profile__contact-link img {
  -o-object-fit: contain;
  height: 2rem;
  object-fit: contain;
  width: 2rem;
}

.p-service {
  align-items: center;
  background-color: #f1f2f4;
  display: flex;
  flex-direction: column;
  padding-block: 2.5rem 2rem;
  padding-inline: 1.5625rem;
}

.p-service__heading-wrap {
  border-bottom: 0.125rem solid #204659;
  padding-bottom: 0.375rem;
}

.p-service__heading {
  color: #004e5d;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-service__list {
  margin-top: 1.875rem;
  width: 100%;
}

.p-service__item {
  margin-top: 1.875rem;
}

.p-service__item:first-child {
  margin-top: 0;
}

.p-service__video-wrap {
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-service__video-wrap iframe {
  border: none;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  .l-footer__corporate:hover {
    opacity: 0.8;
  }
  .l-header__icon-link:hover {
    opacity: 0.8;
  }
  .l-header__save-btn:hover {
    opacity: 0.8;
  }
  .p-profile__contact-link:hover {
    opacity: 0.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */