@charset "UTF-8";

/* -------------------------------------------------
:root（CSS変数）
---------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #193C64;
  --color-primary-green: #85B231;
  --color-secondary: rgba(177, 206, 123, 0.8);
  --color-bg-light: #F4F9E9;
  --color-bg-service: #F5F6F7;
  --color-bg-table-category: #F3F7EA;
  --color-text-main: #3c3c3c;
  --color-border: #ccc;
  --color-white: #fff;
  --color-orange: #F29443;
  --color-orange-dark: #f48324;
  --color-beige-light: #fde6d3;
  --color-green: #008D4E;
  --color-bg-nike: #edf6f2;
  --color-nike-green: #007a46;
  --color-nike-table-first: #d9ebe3;
  --color-text-note: #8a8a8a;
  --color-bg-placeholder: #0066cc;
  --color-bg-philosophy: #f8f9f9;
  --color-bg-catalog: #f6faf1;
}

/* -------------------------------------------------
リセット
---------------------------------------------------- */
* {
  box-sizing: border-box;
}

/* -------------------------------------------------
html, body
---------------------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
}

/* html */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* body */
body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #3c3c3c;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* img */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* -------------------------------------------------
ul, ol
---------------------------------------------------- */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* -------------------------------------------------
h1, h2, h3, h4, h5, h6
---------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

/* p */
p {
  margin: 0;
}

/* -------------------------------------------------
フォント（Noto Sans JP / Oswald）
---------------------------------------------------- */
/* Noto Sans JP
   ========================================================================== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Thin.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Light.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Regular.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Medium.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Oswald
   ========================================================================== */
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff2") format("woff2 supports variations"), url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff2") format("woff2"), url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------------
レイアウト・共通（ヘッダー / mixin由来）
---------------------------------------------------- */
/* -------------------------------------------------
SP共通デザイン調整用のmixin（PC版には影響しません）
---------------------------------------------------- */
/* sp-sub-mainvisual-height - サブページMVの高さ共通化（SPのみ） */
/* sp-section-title-ja - セクション日本語タイトルの共通スタイル（SPのみ） */
/* sp-section-title-en - セクション英語タイトルの共通スタイル（SPのみ） */
/* description-text - 説明文の共通スタイル */
/* heading-line - 緑背景のラベルデザイン（親要素） */
/* heading-line-item - 背景色付きのラベルデザイン（各ラベル） */
/* primary-heading - プライマリーカラーの見出しスタイル */
/* -------------------------------------------------
.l-header
---------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.4s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
  transform: translateY(-100%);
}
body.is-subpage .l-header {
  background-color: #fff;
}

.l-header.is-header-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------
.l-header.is-scrolled
---------------------------------------------------- */
.l-header.is-scrolled {
  background-color: #fff;
}

/* -------------------------------------------------
.l-header__inner
---------------------------------------------------- */
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 38px;
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    max-width: none;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__inner {
    padding: 24px 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__inner {
    max-width: 100%;
    padding: 24px 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    min-height: 80px;
    padding: 20px;
  }
}

.pc-none {
  display: none!important;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block!important;
  }
}

.sp-none {
  display: inline-block!important;
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none!important;
  }
}

/* -------------------------------------------------
.l-header__left
---------------------------------------------------- */
.l-header__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  margin-right: 170px;
}
@media screen and (max-width: 1200px) {
  .l-header__left {
    margin-right: 120px;
    gap: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__left {
    margin-right: 80px;
    gap: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__left {
    margin-right: 60px;
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__left {
    margin-right: 40px;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__left {
    margin-right: 0;
    gap: 12px;
  }
}

/* -------------------------------------------------
.l-header__logo
---------------------------------------------------- */
.l-header__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
.l-header__logo a {
  position: relative;
  display: block;
}

/* -------------------------------------------------
.l-header__logo-img
---------------------------------------------------- */
.l-header__logo-img {
  width: 280px;
  height: auto;
  margin: 0;
  transition: opacity 0.4s ease;
}
.l-header__logo-img--black {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.l-header.is-scrolled .l-header__logo-img--white,
body.is-subpage .l-header__logo-img--white {
  opacity: 0;
}
.l-header.is-scrolled .l-header__logo-img--black,
body.is-subpage .l-header__logo-img--black {
  opacity: 1;
}
@media screen and (max-width: 1230px) {
  .l-header__logo-img {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__logo-img {
    width: 220px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__logo-img {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__logo-img {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-img {
    width: 200px;
    margin: 0;
  }
}

/* -------------------------------------------------
.l-header__navigation
---------------------------------------------------- */
.l-header__navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__navigation {
    gap: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__navigation {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__navigation {
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__navigation {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navigation {
    gap: 18px;
  }
}

/* -------------------------------------------------
.l-header__nav-list
---------------------------------------------------- */
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__nav-list {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__nav-list {
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__nav-list {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: none;
    gap: 18px;
  }
}

/* -------------------------------------------------
.l-header__nav-item
---------------------------------------------------- */
.l-header__nav-item {
  list-style: none;
}

/* -------------------------------------------------
.l-header__nav-link
---------------------------------------------------- */
.l-header__nav-link {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  text-decoration: none;
  letter-spacing: 0.13em;
  color: #fff;
  transition: color 0.4s ease, opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-link {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 900px) {
  .l-header__nav-link {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-link {
    font-size: 1.3rem;
  }
}
.l-header__nav-link:hover {
  opacity: 0.7;
}
.l-header.is-scrolled .l-header__nav-link {
  color: #3c3c3c;
}
body.is-subpage .l-header__nav-link {
  color: #3c3c3c;
}

/* -------------------------------------------------
.l-header__nav-arrow
---------------------------------------------------- */
.l-header__nav-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}
.l-header.is-scrolled .l-header__nav-arrow {
  border-right-color: #193C64;
  border-bottom-color: #193C64;
}
body.is-subpage .l-header__nav-arrow {
  border-right-color: #193C64;
  border-bottom-color: #193C64;
}

/* -------------------------------------------------
.l-header__menu-button
---------------------------------------------------- */
.l-header__menu-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.l-header__menu-button:focus:not(:focus-visible) {
  outline: none;
}
body.is-subpage .l-header__menu-button {
  border-color: #193C64;
}
@media screen and (max-width: 1200px) {
  .l-header__menu-button {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__menu-button {
    width: 40px;
    height: 40px;
    margin-left: 6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__menu-button {
    width: 38px;
    height: 38px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__menu-button {
    width: 36px;
    height: 36px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu-button {
    width: 36px;
    height: 36px;
    margin-left: 0;
  }
}
.l-header__menu-button.is-active {
  background-color: #fff;
  border-color: #fff;
}
.l-header.is-scrolled .l-header__menu-button {
  background-color: #193C64;
  border-color: #193C64;
}
body.is-subpage .l-header__menu-button {
  background-color: #193C64;
  border-color: #193C64;
}

/* -------------------------------------------------
.l-header__menu-hamburger
---------------------------------------------------- */
.l-header__menu-hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 15px;
  margin-top: -7.5px;
  margin-left: -12px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__menu-hamburger {
    width: 20px;
    height: 13px;
    margin-top: -6.5px;
    margin-left: -10px;
    gap: 5px;
  }
}
.l-header__menu-button.is-active .l-header__menu-hamburger {
  opacity: 0;
  visibility: hidden;
}

/* -------------------------------------------------
.l-header__menu-line
---------------------------------------------------- */
.l-header__menu-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

/* -------------------------------------------------
.l-header__menu-close
---------------------------------------------------- */
.l-header__menu-close {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__menu-close {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
  }
}
.l-header__menu-button.is-active .l-header__menu-close {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------------------------
.l-header__menu-close-icon
---------------------------------------------------- */
.l-header__menu-close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 1px;
  margin-top: -1px;
  margin-left: -12px;
  background-color: #193C64;
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .l-header__menu-close-icon {
    width: 20px;
    height: 1px;
    margin-left: -10px;
  }
}
.l-header__menu-close-icon:nth-child(1) {
  transform: rotate(45deg);
}
.l-header__menu-close-icon:nth-child(2) {
  transform: rotate(-45deg);
}

/* -------------------------------------------------
.l-footer
---------------------------------------------------- */
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
  background-color: var(--color-primary);
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer {
    height: auto;
    min-height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    height: auto;
    min-height: auto;
    padding: 0;
  }
}

/* -------------------------------------------------
.l-footer__inner
---------------------------------------------------- */
.l-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 40px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__inner {
    padding: 42px 35px 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 24px 15px 8px;
  }
}

/* -------------------------------------------------
.l-footer__logo
---------------------------------------------------- */
.l-footer__logo {
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin: 0;
  }
}

/* -------------------------------------------------
.l-footer__logo-img
---------------------------------------------------- */
.l-footer__logo-img {
  display: block;
  width: 311px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__logo-img {
    width: 275px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo-img {
    width: 200px;
  }
}

/* -------------------------------------------------
.l-footer__navigation
---------------------------------------------------- */
.l-footer__navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__navigation {
    gap: 16px 24px;
    margin: 24px 0;
  }
}

/* -------------------------------------------------
.l-footer__nav-link
---------------------------------------------------- */
.l-footer__nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.13em;
  white-space: nowrap;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
}

.l-menu__nav-link {
  position: relative;
}

.l-menu__nav-link::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFF;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  opacity: 0.8;
}

@media (hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.3rem;
  }
}

/* -------------------------------------------------
.l-footer__address
---------------------------------------------------- */
.l-footer__address {
  margin: 0 0 24px;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer__address {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin: 0;
  }
}

/* -------------------------------------------------
.l-footer__address-item
---------------------------------------------------- */
.l-footer__address-item {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.84;
  letter-spacing: 0.13em;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-footer__address-item {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__address-item {
    margin: 0 0 2px;
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.13em;
  }
}

/* -------------------------------------------------
.l-footer__address-link
---------------------------------------------------- */
.l-footer__address-link {
  color: inherit;
  text-decoration: none;
}
.l-footer__address-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------------
.l-footer__copyright
---------------------------------------------------- */
.l-footer__copyright {
  margin: 0;
  padding: 20px 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    padding: 20px 0 5px;
    font-size: 0.9rem;
  }
}

/* -------------------------------------------------
.l-footer__copyright-spacer
---------------------------------------------------- */
.l-footer__copyright-spacer {
  display: inline-block;
  width: 1.5em;
}

/* -------------------------------------------------
.l-main
---------------------------------------------------- */
.l-main {
  margin: 0;
  padding: 0;
  background-color: #fff;
  min-height: 100vh;
}

/* -------------------------------------------------
.l-menu
---------------------------------------------------- */
.l-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: #193C64;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-menu.is-active {
  opacity: 1;
  visibility: visible;
}

/* メニュー表示時のスクロールバー表示 */
html.is-menu-open {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}

body.is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* -------------------------------------------------
.l-menu__inner
---------------------------------------------------- */
.l-menu__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 80px 120px 60px;
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.l-menu.is-active .l-menu__inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .l-menu__inner {
    max-width: none;
    padding: 100px 180px 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-menu__inner {
    padding: 80px 120px 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__inner {
    padding: 80px 40px 24px;
  }
}

/* -------------------------------------------------
.l-menu__header
---------------------------------------------------- */
.l-menu__header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 114px;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .l-menu__header {
    min-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__header {
    min-height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}

/* -------------------------------------------------
.l-menu__header-inner
---------------------------------------------------- */
.l-menu__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 38px;
}
@media screen and (min-width: 1024px) {
  .l-menu__header-inner {
    max-width: none;
    padding: 28px 38px;
  }
}
@media screen and (max-width: 1200px) {
  .l-menu__header-inner {
    padding: 24px 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__header-inner {
    padding: 20px;
  }
}

/* -------------------------------------------------
.l-menu__logo-img
---------------------------------------------------- */
.l-menu__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
  transform: translateY(-12px);
}
@media screen and (min-width: 1024px) {
  .l-menu__logo {
    transform: none;
  }
}
.l-menu__logo a {
  position: relative;
  display: block;
}
.l-menu__logo-img {
  width: 280px;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 1230px) {
  .l-menu__logo-img {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__logo-img {
    width: 220px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-menu__logo-img {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__logo-img {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__logo {
    transform: none;
  }
  .l-menu__logo-img {
    width: 200px;
    margin: 0;
  }
}

/* -------------------------------------------------
.l-menu__close
---------------------------------------------------- */
.l-menu__close {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.l-menu.is-active .l-menu__close {
  display: flex;
}
.l-menu__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .l-menu__close {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__close {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-menu__close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__close {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__close {
    width: 36px;
    height: 36px;
  }
}

/* -------------------------------------------------
.l-menu__close-icon
---------------------------------------------------- */
.l-menu__close-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #193C64;
  transform: rotate(45deg);
}
.l-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #193C64;
  transform: rotate(90deg);
}
@media screen and (max-width: 1200px) {
  .l-menu__close-icon {
    width: 22px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__close-icon {
    width: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-menu__close-icon {
    width: 19px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__close-icon {
    width: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__close-icon {
    width: 20px;
  }
}

/* -------------------------------------------------
.l-menu__navigation
----------------------------------------------------- */
.l-menu__navigation {
  flex: 0 0 auto;
  width: 100%;
  margin: 24px 0 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .l-menu__navigation {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
}

/* -------------------------------------------------
.l-menu__nav-list
----------------------------------------------------- */
.l-menu__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* -------------------------------------------------
.l-menu__nav-item
----------------------------------------------------- */
.l-menu__nav-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------
.l-menu__nav-link
----------------------------------------------------- */
.l-menu__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 48px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.13em;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.l-menu__nav-link::after {
  display: none;
}
.l-menu__nav-link:hover {
  opacity: 0.85;
}
.l-menu__nav-link:hover .l-menu__nav-link-icon {
  transform: translateX(6px);
}
@media screen and (max-width: 1300px) {
  .l-menu__nav-link {
    font-size: 1.7rem;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__nav-link {
    font-size: 1.4rem;
    padding: 18px 0;
  }
}

/* -------------------------------------------------
.l-menu__nav-link-icon
----------------------------------------------------- */
.l-menu__nav-link-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1300px) {
  .l-menu__nav-link-icon {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }
}
@media screen and (max-width: 767px) {
  .l-menu__nav-link-icon {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }
}

/* -------------------------------------------------
.c-menu-banner
----------------------------------------------------- */
.c-menu-banner {
  flex: 0 0 auto;
  width: 630px;
  max-width: 100%;
  height: 160px;
  margin: 100px auto 120px;
  border-radius: 12px;
  overflow: hidden;
}
.c-menu-banner__link {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 160px;
  text-decoration: none;
}
.c-menu-banner__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 380px;
  width: 380px;
  padding: 24px 28px;
  background-color: #b5d336;
  text-align: center;
}
.c-menu-banner__logo {
  display: block;
  margin: 0;
}
.c-menu-banner__logo-img {
  display: block;
  width: 310px;
  height: auto;
  margin: -6px 0 0 0;
}
.c-menu-banner__link-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.13em;
  color: #fff;
}
.c-menu-banner__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 0 3px;
  vertical-align: middle;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  transition: transform 0.25s ease;
}
.c-menu-banner__link:hover .c-menu-banner__arrow {
  transform: translateX(2px);
}
.c-menu-banner__right {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.c-menu-banner__image {
  transform-origin: center center;
  transform: scale(1.65);
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center 85%;
  transition: transform 0.5s ease;
}
.c-menu-banner__link:hover .c-menu-banner__image {
  transform: scale(1.8);
}
@media screen and (max-width: 767px) {
  .c-menu-banner {
    width: 92%;
    height: 70px;
    margin: 32px auto 60px;
    border-radius: 4px;
  }
  .c-menu-banner__link {
    flex-direction: row;
    height: 70px;
  }
  .c-menu-banner__left {
    flex: 0 0 auto;
    width: 52%;
    padding: 6px 12px;
  }
  .c-menu-banner__logo-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0;
  }
  .c-menu-banner__link-text {
    font-size: 10px;
    margin: 4px 0 0;
  }
  .c-menu-banner__arrow {
    margin: 0 0 0 2px;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 4px;
  }
  .c-menu-banner__link:hover .c-menu-banner__arrow {
    transform: translateX(1px);
  }
  .c-menu-banner__right {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 70px;
  }
  .c-menu-banner__image {
    min-height: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .c-menu-banner {
    width: 560px;
    height: 120px;
    margin: 80px auto 120px;
  }
  .c-menu-banner__link {
    height: 120px;
  }
  .c-menu-banner__left {
    flex: 0 0 340px;
    width: 340px;
    padding: 14px 24px;
  }
  .c-menu-banner__logo-img {
    width: 240px;
  }
  .c-menu-banner__link-text {
    margin: 8px 0 0;
    font-size: 16px;
  }
  .c-menu-banner__image {
    min-height: 120px;
  }
}

/* -------------------------------------------------
.p-contact
---------------------------------------------------- */
.p-contact {
  width: 100%;
  padding: 100px 0 70px;
  background-color: #e8ebef;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact {
    padding: 80px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 40px 0 40px;
  }
}

/* -------------------------------------------------
.p-contact__inner
---------------------------------------------------- */
.p-contact__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__inner {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-contact__title-en
---------------------------------------------------- */
.p-contact__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
.p-contact__title-en {
  color: #a3b1c1;
}

/* -------------------------------------------------
.p-contact__title-ja
---------------------------------------------------- */
.p-contact__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 15px 0 0;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-contact__title-ja {
    font-size: 1.4rem;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-contact__description
---------------------------------------------------- */
.p-contact__description {
  margin: 40px 0 60px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-contact__description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__description {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__description {
    margin: 35px 0 55px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__description {
    font-size: 1.25rem;
    margin: 20px 0 20px;
  }
}

/* -------------------------------------------------
.p-contact__list
---------------------------------------------------- */
.p-contact__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  justify-items: center;
  gap: 2.8rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-contact__list {
    grid-template-columns: repeat(3, minmax(0, 34rem));
    gap: 2.4rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__list {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-contact__item
---------------------------------------------------- */
.p-contact__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34rem;
  height: 8.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  border: 1px solid #193C64;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .p-contact__item {
    width: 100%;
    max-width: 34rem;
    height: auto;
    min-height: 7.75rem;
    padding: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__item {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 8.5rem;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__item {
    width: 80%;
    height: auto;
    min-height: auto;
    padding: 6px;
  }
}
.p-contact__item--link:hover {
  background-color: #193C64;
}
.p-contact__item--link:hover .p-contact__label,
.p-contact__item--link:hover .p-contact__value {
  color: #fff;
}

/* -------------------------------------------------
.p-contact__label
---------------------------------------------------- */
.p-contact__label {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #193C64;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__label {
    font-size: 1.45rem;
  }
}

/* -------------------------------------------------
.p-contact__value
---------------------------------------------------- */
.p-contact__value {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #484848;
  word-break: break-all;
  overflow-wrap: break-word;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-contact__value {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__value {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------------
.p-contact__scroll-top
---------------------------------------------------- */
.p-contact__scroll-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #93a3b6;
}

/* -------------------------------------------------
.p-contact__scroll-top-link
---------------------------------------------------- */
.p-contact__scroll-top-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-contact__scroll-top-link:hover {
  opacity: 0.7;
}

/* -------------------------------------------------
.p-contact__scroll-top-icon
---------------------------------------------------- */
.p-contact__scroll-top-icon {
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px 0 0;
  border-top: 2px solid #193C64;
  border-left: 2px solid #193C64;
  transform: rotate(45deg);
}

/* -------------------------------------------------
.p-mainvisual
---------------------------------------------------- */
.p-mainvisual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 760px;
  padding: 100px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-mainvisual {
    --width: 1280;
    height: calc(760 / var(--width) * 100vw);
    max-height: 100vh;
    min-height: 760px;
    padding: 100px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual {
    height: 70vh;
    min-height: 500px;
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
  }
}

/* -------------------------------------------------
.p-mainvisual__image
---------------------------------------------------- */
.p-mainvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* -------------------------------------------------
.p-mainvisual__image-img
---------------------------------------------------- */
.p-mainvisual__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__image-img {
    object-position: center 55%;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__image-img {
    object-position: 25% 65%;
    object-fit: cover;
    transform: scale(1.1);
    transform-origin: center center;
  }
}

/* -------------------------------------------------
.p-mainvisual__overlay
---------------------------------------------------- */
.p-mainvisual__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------
.p-mainvisual__diamond-wrapper（平行四辺形オーバーレイ・NIKKENSEIZOの背後）
---------------------------------------------------- */
.p-mainvisual__diamond-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* -------------------------------------------------
.p-mainvisual__diamond（平行四辺形・上辺短め・斜めの線長め・線しか見えないほど大きく）
---------------------------------------------------- */
.p-mainvisual__diamond {
  position: absolute;
  bottom: 0;
  width: 28vw;
  height: 220vh;
  max-width: 400px;
  max-height: none;
  background: rgba(17, 25, 83, 0.4);
  transform: skewX(-28deg);
  transform-origin: bottom right;
}

.p-mainvisual__diamond--back {
  right: -200px;
  width: 30vw;
  height: 240vh;
  max-width: 440px;
  background: rgba(17, 25, 83, 0.4);
  transform: skewX(-28deg);
  transform-origin: bottom right;
}

.p-mainvisual__diamond--front {
  z-index: 1;
  right: -40px;
  width: 36vw;
  height: 220vh;
  max-width: 560px;
  background: rgba(17, 25, 83, 0.4);
  transform: skewX(-28deg);
  transform-origin: bottom right;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__diamond {
    width: 30vw;
    height: 200vh;
  }
  .p-mainvisual__diamond--back {
    width: 32vw;
    height: 220vh;
    right: -210px;
  }
  .p-mainvisual__diamond--front {
    width: 38vw;
    height: 200vh;
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .p-mainvisual__diamond-wrapper {
    display: none;
  }
}

/* -------------------------------------------------
.p-mainvisual__content
---------------------------------------------------- */
.p-mainvisual__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__content {
    max-width: none;
    padding: 0 80px;
  }
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__content {
    padding: 0 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__content {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__content {
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }
}

/* -------------------------------------------------
.p-mainvisual__left
---------------------------------------------------- */
.p-mainvisual__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__left {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__left {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

/* -------------------------------------------------
.p-mainvisual__heading
---------------------------------------------------- */
.p-mainvisual__heading {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__heading {
    gap: 26px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__heading {
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-mainvisual__heading-line
---------------------------------------------------- */
.p-mainvisual__heading-line {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: #fff;
}
.p-mainvisual__heading-line:first-child {
  font-size: 2.7rem;
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 2.35rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 1.3rem;
  }
}
.p-mainvisual__heading-line:last-child {
  font-size: 4.5rem;
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 3.85rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__heading-line {
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-mainvisual__button
---------------------------------------------------- */
.p-mainvisual__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 252px;
  height: 42px;
  padding: 0;
  margin: 0;
  gap: 8px;
  overflow: hidden;
  text-decoration: none;
  background-color: #193C64;
  border-radius: 6px;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__button {
    width: 252px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__button {
    width: 200px;
    height: 38px;
    margin: 16px 0 0;
  }
}
.p-mainvisual__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.p-mainvisual__button:hover {
  color: #193C64;
}
.p-mainvisual__button:hover::after {
  transform: scale(1, 1);
}
.p-mainvisual__button:hover .p-mainvisual__button-text {
  color: #193C64;
}
.p-mainvisual__button:hover .p-mainvisual__button-arrow {
  color: #193C64;
}

/* -------------------------------------------------
.p-mainvisual__button-text
---------------------------------------------------- */
.p-mainvisual__button-text {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #fff;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__button-text {
    font-size: 18px;
    letter-spacing: 0.16em;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__button-text {
    font-size: 1.4rem;
    letter-spacing: 0.16em;
  }
}

/* -------------------------------------------------
.p-mainvisual__button-arrow
---------------------------------------------------- */
.p-mainvisual__button-arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__button-arrow {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__button-arrow {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
.p-mainvisual__right
---------------------------------------------------- */
.p-mainvisual__right {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 2;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .p-mainvisual__right {
    right: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .p-mainvisual__right {
    right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__right {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__right {
    position: absolute;
    top: 50%;
    right: 3rem;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    width: auto;
  }
}

/* -------------------------------------------------
.p-mainvisual__vertical-text
---------------------------------------------------- */
.p-mainvisual__vertical-text {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-size: 7.6vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__vertical-text {
    font-size: 7.6vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1700px) {
  .p-mainvisual__vertical-text {
    font-size: 130px;
  }
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__vertical-text {
    font-size: 8rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainvisual__vertical-text {
    font-size: 8rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual__vertical-text {
    margin: 0;
    padding: 0;
    font-size: 6.4rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    line-height: 0.4;
    opacity: 0.8;
    text-align: right;
  }
}

/* -------------------------------------------------
.p-message
---------------------------------------------------- */
.p-message {
  position: relative;
  width: 100%;
  height: 700px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message {
    height: 680px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message {
    height: auto;
    min-height: auto;
  }
}

/* -------------------------------------------------
.p-message__bg
---------------------------------------------------- */
.p-message__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.p-message__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------
.p-message__bg-inner
---------------------------------------------------- */
.p-message__bg-inner {
  position: absolute;
  top: 50%;
  right: -130px;
  display: grid;
  grid-template-columns: repeat(2, 240px);
  grid-auto-rows: 170px;
  gap: 8px;
  width: max-content;
  transform: translateY(-50%) rotate(35deg) scale(1.2);
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .p-message__bg-inner {
    right: -460px;
  }
}

/* -------------------------------------------------
.p-message__bg-inner-item
---------------------------------------------------- */
.p-message__bg-inner-item {
  width: 240px;
  height: 170px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* -------------------------------------------------
.p-message__bg-inner-img
---------------------------------------------------- */
.p-message__bg-inner-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  object-fit: cover;
}

/* -------------------------------------------------
.p-message__inner
---------------------------------------------------- */
.p-message__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 125px 40px 100px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__inner {
    max-width: 100%;
    padding: 107px 45px 85px;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 60px 0 40px 16px;
    box-sizing: border-box;
  }
}

/* -------------------------------------------------
.p-message__left
---------------------------------------------------- */
.p-message__left {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  gap: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__left {
    flex: 0 0 auto;
    gap: 50px;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    gap: 0;
  }
}

/* -------------------------------------------------
.p-message__heading
---------------------------------------------------- */
.p-message__heading {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__heading {
    margin: 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-message__heading {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------------------
.p-message__content
---------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-message__content {
    margin: 0;
    padding: 0;
  }
}

/* -------------------------------------------------
.p-message__title-ja-in-right (スマホ版のみ表示)
---------------------------------------------------- */
.p-message__title-ja-in-right {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-message__title-ja-in-right {
    display: block;
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #193C64;
  }
}

/* -------------------------------------------------
.p-message__title-en
---------------------------------------------------- */
.p-message__title-en {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 2.3043478261;
  letter-spacing: 0.16em;
  color: #193C64;
  writing-mode: horizontal-tb;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__title-en {
    font-size: 2.05rem;
    line-height: 2.4634146341;
  }
}

/* -------------------------------------------------
.p-message__title-en-pc
---------------------------------------------------- */
.p-message__title-en-pc {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-message__title-en-pc {
    display: none;
  }
}

/* -------------------------------------------------
.p-message__title-en-sp
---------------------------------------------------- */
.p-message__title-en-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-message__title-en-sp {
    display: inline;
    writing-mode: vertical-rl;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
    white-space: nowrap;
    margin-top: -20px;
  }
}

/* -------------------------------------------------
.p-message__title-ja
---------------------------------------------------- */
.p-message__title-ja {
  margin: 12px 0 20px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.2em;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__title-ja {
    font-size: 1.5rem;
    margin: 11.5px 0 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__title-ja {
    display: none;
  }
}

/* -------------------------------------------------
.p-message__line
---------------------------------------------------- */
.p-message__line {
  width: 1px;
  height: 445px;
  flex-shrink: 0;
  background-color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__line {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__line {
    position: absolute;
    top: calc(15.4rem + 1.5em - 0.3rem);
    left: calc(0.4rem + 0.5px);
    width: 1px;
    height: 150px;
    min-height: 0;
    max-height: 180px;
    margin: 0;
    flex-shrink: 0;
    align-self: auto;
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
  }
}

/* -------------------------------------------------
.p-message__right
---------------------------------------------------- */
.p-message__right {
  flex: 1;
  padding: 0 0 0 60px;
  min-width: 0;
}
@media screen and (max-width: 1180px) {
  .p-message__right {
    padding: 0 0 0 50px;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__right {
    padding: 0 0 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__right {
    flex: 1;
    padding: 0 0 0 50px;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__right {
    flex: 1;
    width: auto;
    max-width: 100%;
    padding: 0 0 0 25px;
    text-align: left;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-message__text
---------------------------------------------------- */
.p-message__text {
  margin: -10px 0 0;
  padding: 0;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 59px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 1180px) {
  .p-message__text {
    font-size: 1.75rem;
    line-height: 3em;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__text {
    font-size: 1.6rem;
    line-height: 2.8em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__text {
    font-size: 1.65rem;
    line-height: 2.75em;
    letter-spacing: 0.1em;
    margin: -9px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__text {
    margin: 0;
    font-size: 1.3rem;
    line-height: 2.5;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-message__slogan
---------------------------------------------------- */
.p-message__slogan {
  position: absolute;
  top: 40px;
  right: 60px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1180px) {
  .p-message__slogan {
    right: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__slogan {
    right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__slogan {
    position: absolute;
    top: 56px;
    right: 45px;
    flex: 0 0 auto;
    width: auto;
    max-width: 50px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__slogan {
    position: absolute;
    top: calc(2.25rem + 15px + 5.72rem - 4.2rem);
    left: calc(25px + (1.3rem * 1.05 * 19) + 30px);
    right: auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 50px;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-message__slogan-text
---------------------------------------------------- */
.p-message__slogan-text {
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 4.5rem;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #193C64;
}
@media screen and (max-width: 1180px) {
  .p-message__slogan-text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__slogan-text {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-message__slogan-text {
    writing-mode: vertical-rl;
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-message__slogan-text {
    writing-mode: vertical-rl;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 8px;
  }
}

/* -------------------------------------------------
.p-message__slogan-punctuation
---------------------------------------------------- */
.p-message__slogan-punctuation {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-feature-settings: normal;
  transform: translate(0.4em, -0.6em);
}

/* -------------------------------------------------
.c-link-nihonkenko（メッセージ内・日本建工サイトへのリンク・緑・下線・別タブ）
---------------------------------------------------- */
.c-link-nihonkenko {
  color: var(--color-primary-green);
  text-decoration: underline;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.c-link-nihonkenko:hover {
  color: var(--color-primary-green);
  opacity: 0.8;
}

/* -------------------------------------------------
.p-whats
---------------------------------------------------- */
.p-whats {
  width: 100%;
  padding: 80px 0 96px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-whats {
    padding: 40px 0;
  }
}

/* -------------------------------------------------
.p-whats__inner
---------------------------------------------------- */
.p-whats__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__inner {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-whats__inner {
    padding: 0 20px;
  }
}

/* -------------------------------------------------
.p-whats__header
---------------------------------------------------- */
.p-whats__header {
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .p-whats__header {
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-whats__title-group
---------------------------------------------------- */
.p-whats__title-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-whats__title-group {
    gap: 10px;
    margin: 0 0 5px;
  }
}

/* -------------------------------------------------
.p-whats__title-en
---------------------------------------------------- */
.p-whats__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-whats__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-whats__title-ja
---------------------------------------------------- */
.p-whats__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 6px 0 0;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-whats__title-ja {
    font-size: 1.4rem;
    margin: 4px 0 0;
  }
}

/* -------------------------------------------------
.p-whats__company-name
---------------------------------------------------- */
.p-whats__company-name {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__company-name {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-whats__company-name {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-whats__description
---------------------------------------------------- */
.p-whats__description {
  margin: 0 0 50px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-whats__description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__description {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__description {
    margin: 0 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-whats__description {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 20px 0;
  }
}

/* -------------------------------------------------
.p-whats__card-list
---------------------------------------------------- */
.p-whats__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
@media screen and (min-width: 1024px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, minmax(0, 520px));
    justify-content: center;
    gap: 33px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 31px;
  }
}
@media screen and (max-width: 767px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* -------------------------------------------------
.c-card
---------------------------------------------------- */
.c-card {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #193C64;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .c-card {
    width: 100%;
    max-width: 520px;
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .c-card {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* -------------------------------------------------
.c-card__link
---------------------------------------------------- */
.c-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-card__link {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
}

/* -------------------------------------------------
.c-card__overlay
---------------------------------------------------- */
.c-card__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 50%;
  padding: 40px 20px;
  background-color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-card__overlay {
    padding: 32px 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-card__overlay {
    flex: 0 0 auto;
    padding: 18px 12px;
    order: 2;
  }
}

/* -------------------------------------------------
.c-card__title
---------------------------------------------------- */
.c-card__title {
  margin: 26px 0 0;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-card__title {
    font-size: 2.9rem;
    margin: 23px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-card__title {
    margin: 0 0 2px;
    font-size: 1.6rem;
    letter-spacing: 0.25em;
  }
}

/* -------------------------------------------------
.c-card__text
---------------------------------------------------- */
.c-card__text {
  margin: 0 0 45px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-card__text {
    font-size: 1.6rem;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-card__text {
    margin: 0 0 6px;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }
}

/* -------------------------------------------------
.c-card__arrow
---------------------------------------------------- */
.c-card__arrow {
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 1199px) {
  .c-card__arrow {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-card__arrow {
    width: 26px;
    margin-top: 4px;
  }
}
.c-card__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: right center;
}
@media screen and (max-width: 767px) {
  .c-card__arrow::after {
    width: 8px;
  }
}
.c-card:hover .c-card__arrow {
  transform: translateX(5px);
}

/* -------------------------------------------------
.c-card__image
---------------------------------------------------- */
.c-card__image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card__image {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1/0.72;
    order: 1;
  }
}

/* -------------------------------------------------
.c-card__image-img
---------------------------------------------------- */
.c-card__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 0.5s;
}
@media screen and (max-width: 767px) {
  .c-card__image-img {
    height: 100%;
  }
}
.c-card:hover .c-card__image-img {
  transform: scale(1.2);
}
.p-whats__card-list .c-card:nth-child(2) .c-card__image-img {
  object-position: 48% center;
}

/* -------------------------------------------------
.p-topics
---------------------------------------------------- */
.p-topics {
  width: 100%;
  padding: 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-topics {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-topics__inner
---------------------------------------------------- */
.p-topics__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}
.p-topics__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ccc;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__inner::before {
    left: 45px;
    right: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__inner::before {
    left: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__inner {
    max-width: 100%;
    padding: 80px 45px 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__inner {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 40px;
  }
}

/* -------------------------------------------------
.p-topics__left
---------------------------------------------------- */
.p-topics__left {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  flex: 0 0 auto;
  gap: 98px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__left {
    gap: 79px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__left {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-topics__heading
---------------------------------------------------- */
.p-topics__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topics__heading {
    align-items: center;
  }
}

/* -------------------------------------------------
.p-topics__title-en
---------------------------------------------------- */
.p-topics__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-topics__title-ja
---------------------------------------------------- */
.p-topics__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 15px 0 0;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-topics__title-ja {
    font-size: 1.4rem;
    margin: 0;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-topics__line
---------------------------------------------------- */
.p-topics__line {
  width: 1px;
  height: 100%;
  background-color: #193C64;
}
@media screen and (max-width: 767px) {
  .p-topics__line {
    display: none;
  }
}

/* -------------------------------------------------
.p-topics__right
---------------------------------------------------- */
.p-topics__right {
  flex: 0 0 auto;
  padding: 0 0 0 70px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__right {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__right {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-topics__list
---------------------------------------------------- */
.p-topics__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__list {
    gap: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__list {
    align-items: center;
    width: 100%;
    gap: 12px;
  }
}

/* -------------------------------------------------
.p-topics__item
---------------------------------------------------- */
.p-topics__item {
  display: flex;
  align-items: baseline;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__item {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__item {
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* -------------------------------------------------
.p-topics__title
---------------------------------------------------- */
.p-topics__title {
  display: none;
}

/* -------------------------------------------------
.p-topics__date
---------------------------------------------------- */
.p-topics__date {
  flex: 0 0 120px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__date {
    flex: 0 0 100px;
    font-size: 1.55rem;
    line-height: 1.55em;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__date {
    flex: 0 0 auto;
    margin: 0 20px 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-topics__text
---------------------------------------------------- */
.p-topics__text {
  flex: 1;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-topics__text {
    font-size: 1.55rem;
    line-height: 1.55em;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-topics__text {
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: normal;
  }
}

/* -------------------------------------------------
.p-sub-mainvisual
---------------------------------------------------- */
.p-sub-mainvisual {
  position: relative;
  width: 100%;
  height: 475px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-sub-mainvisual {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual {
    height: 25vh;
  }
}
.p-sub-mainvisual {
  margin: 100px 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-sub-mainvisual {
    margin: 92px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual {
    margin: 88px 0 20px;
  }
}

.p-sub-mainvisual__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-sub-mainvisual--privacy .p-sub-mainvisual__image::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  content: "";
}
.p-sub-mainvisual--privacy .p-sub-mainvisual__image-img {
  object-position: center 53%;
}
.p-sub-mainvisual--privacy .p-sub-mainvisual__content {
  z-index: 2;
  background: transparent;
}
.p-sub-mainvisual--privacy .p-sub-mainvisual__title,
.p-sub-mainvisual--privacy .p-sub-mainvisual__title-ja,
.p-sub-mainvisual--privacy .p-sub-mainvisual__title-en {
  color: #fff;
}

.p-sub-mainvisual__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual__image-img {
    object-position: 50% 85%;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual--privacy .p-sub-mainvisual__image-img {
    object-position: center 40%;
  }
}

.p-sub-mainvisual__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.p-sub-mainvisual__title {
  text-align: center;
  color: #fff;
}

.p-sub-mainvisual__title-ja {
  display: block;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual__title-ja {
    font-size: 3rem;
  }
}

.p-sub-mainvisual__title-en {
  display: block;
  margin: 10px 0 0;
  font-size: 25px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual__title-en {
    margin: 5px 0 0;
    font-size: 1.6rem;
  }
}

/* -------------------------------------------------
.p-breadcrumb
---------------------------------------------------- */
.p-breadcrumb {
  width: 100%;
  background-color: #fff;
}

.p-breadcrumb__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    width: 100%;
    padding: 20px 16px;
  }
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-breadcrumb__item {
  font-size: 1.6rem;
  color: #3c3c3c;
  /* 1200px以下での流動的な調整 */
}
@media screen and (max-width: 1200px) {
  .p-breadcrumb__item {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__item {
    font-size: 1.4rem;
  }
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "▶";
  margin: 0 2.1rem;
  font-size: 1.6rem;
  color: #606060;
}
@media screen and (max-width: 1200px) {
  .p-breadcrumb__item + .p-breadcrumb__item::before {
    font-size: 1.33vw;
    margin: 0 1.75vw;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__item + .p-breadcrumb__item::before {
    font-size: 1.2rem;
    margin: 0 1.5rem;
  }
}
.p-breadcrumb__item[aria-current=page] {
  color: #193C64;
}

.p-breadcrumb__link {
  color: #3c3c3c;
  text-decoration: none;
  transition: color 0.3s;
}
.p-breadcrumb__link:hover {
  color: #193C64;
}

/* -------------------------------------------------
.p-about
---------------------------------------------------- */
.p-about {
  width: 100%;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 10px 0 0;
  }
}

.p-about__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    width: 100%;
    padding: 0 16px;
  }
}

/* -------------------------------------------------
.p-about-section
---------------------------------------------------- */
.p-about-section {
  margin: 10rem 0 0;
}
.p-about-section:first-of-type {
  margin: 10rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-about-section {
    margin: 8.33vw 0 0;
  }
  .p-about-section:first-of-type {
    margin: 8.33vw 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-section {
    margin: 8rem 0 0;
  }
  .p-about-section:first-of-type {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section {
    margin: 6rem 0 0;
  }
  .p-about-section:first-of-type {
    margin: 6rem 0 0;
  }
}

.p-about-section__header {
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .p-about-section__header {
    margin: 0 0 3.33vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-section__header {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section__header {
    margin: 0 0 2rem;
  }
}

.p-about-section__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-section__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section__title-en {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section__title-en {
    font-size: 3rem;
  }
}

.p-about-section__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0.8rem 0 0;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-about-section__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}

.p-about-service__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 6rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-about-service__heading {
    margin: 0 0 6rem;
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-service__heading {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-service__heading {
    margin: 0 0 3.5rem;
    font-size: 1.8rem;
  }
}

.p-about-service__heading-line {
  display: inline-block;
  height: 5.2rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #193C64;
  white-space: nowrap;
}
.p-about-service__heading-line:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-service__heading-line {
    height: 4.3vw;
    margin: 0 0 1vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-service__heading-line {
    font-size: 2.8rem;
    margin: 0 0 1.6rem;
    padding: 0 13px;
  }
}
.p-about-service__heading-line {
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-service__heading-line {
    height: 3.6rem;
    margin: 0 0 0.8rem;
    padding: 0 10px;
    line-height: 3.6rem;
    font-size: 1.55rem;
    letter-spacing: 0.04em;
  }
}

/* -------------------------------------------------
.p-about-service
---------------------------------------------------- */
.p-about-service {
  margin: 0;
  padding: 0 0 100px;
  background-color: #fff;
}
.p-about-section.p-about-service {
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-service {
    padding: 0 0 8.33vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-service {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-service {
    padding: 0 0 40px;
  }
}

.p-about-service__item {
  max-width: 900px;
  margin: 0 0 0;
  padding: 0;
}

.p-about-service__item-number {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #bac4d0;
}
@media screen and (max-width: 767px) {
  .p-about-service__item-number {
    font-size: 1.5rem;
    margin: 0 0 0.6rem;
  }
}

.p-about-service__item-title {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #193C64;
}
@media screen and (max-width: 1200px) {
  .p-about-service__item-title {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-service__item-title {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-about-service__item-title {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 1rem;
  }
}

.p-about-service__item-text {
  max-width: 900px;
  margin: 0 0 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-service__item-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-service__item-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-service__item-text {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    max-width: 100%;
  }
}

.p-about-service__item-divider {
  margin: 4rem 0;
  padding: 0;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-about-service__item-divider {
    margin: 3.6rem 0;
  }
}

.p-about-service__item:last-child .p-about-service__item-text {
  margin-bottom: 0;
}

/* -------------------------------------------------
.p-about-company
---------------------------------------------------- */
.p-about-section.p-about-company {
  margin: 0;
  padding: 100px 0 120px;
  background-color: #f3f5f7;
}
@media screen and (max-width: 1200px) {
  .p-about-section.p-about-company {
    padding: 8.33vw 0 6.67vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-section.p-about-company {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-section.p-about-company {
    padding: 60px 0 40px;
  }
}

.p-about-company__content {
  width: 90%;
  max-width: 1280px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1200px) {
  .p-about-company__content {
    margin: 8.33vw auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__content {
    margin: 3rem auto 0;
  }
}

.p-about-company__flex {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__flex {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__flex {
    flex-direction: column;
    gap: 0;
  }
}

/* -------------------------------------------------
.p-about-company__label
---------------------------------------------------- */
.p-about-company__label {
  position: relative;
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__label {
    margin: 0 0 1.17vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__label {
    width: 80px;
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    flex-shrink: 0;
  }
}
.p-about-company__label::after {
  content: "";
  display: block;
  width: min(560px, 100%);
  height: 1px;
  margin: 14px 0 0;
  background-color: #193C64;
}
@media screen and (max-width: 1200px) {
  .p-about-company__label::after {
    margin: 1.17vw 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__label::after {
    display: none;
  }
}
.p-about-company__sub .p-about-company__label {
  margin: 0 0 18px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub .p-about-company__label {
    margin: 0 0 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__sub .p-about-company__label {
    margin: 0;
  }
}
.p-about-company__sub .p-about-company__label::after {
  margin: 18px 0 0;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub .p-about-company__label::after {
    margin: 1.5vw 0 0;
  }
}

.p-about-company__value {
  margin: 14px 0 0;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1.79;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__value {
    margin: 1.17vw 0 0;
    font-size: 1.58vw;
    line-height: 1.79;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__value {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
    flex: 1;
  }
}
.c-link-email {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.c-link-email:hover {
  color: #193C64;
}

.c-link-tel {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.c-link-tel:hover {
  color: #193C64;
}

.p-about-company__address-block {
  display: block;
  margin: 0 0 24px;
}
.p-about-company__address-block:last-child {
  margin: 0;
}
.p-about-company__address-detail {
  display: block;
  margin: 0 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__address-detail {
    margin: 0 0 2rem;
  }
  .p-about-company__factory-name {
    font-weight: bold;
  }
}
.p-about-company__address-block:last-child .p-about-company__address-detail {
  margin-bottom: 0;
}

/* -------------------------------------------------
.p-about-company__main
---------------------------------------------------- */
.p-about-company__main {
  width: 580px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__main {
    width: 42.2vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__main {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__main {
    width: 100%;
  }
}

.p-about-company__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.p-about-company__item {
  margin: 0 0 62px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__item {
    margin: 0 0 5.17vw;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #193C64;
  }
  .p-about-company__item:first-child {
    border-top: none;
    padding: 0 0 15px;
  }
  .p-about-company__item:last-child {
    border-bottom: none;
  }
}
.p-about-company__item:last-child {
  margin: 0;
}

/* -------------------------------------------------
.p-about-company__sub
---------------------------------------------------- */
.p-about-company__sub {
  width: 560px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub {
    width: 42.2vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-about-company__sub {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__sub {
    width: 100%;
  }
  .p-about-company__sub::before {
    content: "";
    display: block;
    margin: 0 0 15px;
    border-top: 1px solid #193C64;
  }
}

/* -------------------------------------------------
.p-privacy-policy
---------------------------------------------------- */
.p-privacy-policy {
  width: 100%;
  padding: 60px 0 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding: 40px 0 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__inner
---------------------------------------------------- */
.p-privacy-policy__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__inner {
    width: 100%;
    padding: 0 16px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__title-en
---------------------------------------------------- */
.p-privacy-policy__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #193C64;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
.p-privacy-policy__title-en {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title-en {
    margin: 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__title-ja
---------------------------------------------------- */
.p-privacy-policy__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0.8rem 0 4rem;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title-ja {
    margin-bottom: 20px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__content
---------------------------------------------------- */
.p-privacy-policy__content {
  width: 100%;
  font-weight: 500;
}

/* -------------------------------------------------
.p-privacy-policy__text
---------------------------------------------------- */
.p-privacy-policy__text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text {
    margin: 0 0 30px;
  }
}

/* Border共通スタイル */
.p-privacy-policy__text--border {
  margin: 0 0 52px;
  padding: 0 0 52px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text--border {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__text--border {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text--border {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.p-privacy-policy__text--border {
  border-bottom: 1px solid #9D9D9D;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text--border {
    margin: 0 0 30px;
    padding: 0 0 40px;
  }
}
.p-privacy-policy__text--border--top {
  margin: 52px 0 0;
  padding: 52px 0 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.p-privacy-policy__text--border--top {
  border-bottom: none;
  border-top: 1px solid #9D9D9D;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text--border--top {
    margin: 40px 0 0;
    padding: 40px 0 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__heading
---------------------------------------------------- */
.p-privacy-policy__heading {
  margin: 50px 0 20px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__heading {
    margin: 40px 0 15px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/* -------------------------------------------------
.p-privacy-policy__list
---------------------------------------------------- */
.p-privacy-policy__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-privacy-policy__list:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list {
    margin: 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__list-item
---------------------------------------------------- */
.p-privacy-policy__list-item {
  position: relative;
  margin: 0;
  padding: 0 0 0 25px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__list-item {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__list-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-item {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-item {
    margin: 0 0 12px;
    padding: 0 0 0 20px;
  }
}
.p-privacy-policy__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #3c3c3c;
  content: "・";
}

/* -------------------------------------------------
.p-privacy-policy__contact
---------------------------------------------------- */
.p-privacy-policy__contact {
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------
.p-privacy-policy__contact-line
---------------------------------------------------- */
.p-privacy-policy__contact-line {
  margin: 5rem 0 0;
  padding: 0 0 5rem;
  border-bottom: none;
  border-top: 1px solid #9D9D9D;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__contact-line {
    margin: 2rem 0 0;
    padding: 0 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__contact {
    margin: 0;
    padding: 0;
    text-align: left;
  }
}

/* -------------------------------------------------
.p-privacy-policy__contact-heading
---------------------------------------------------- */
.p-privacy-policy__contact-heading {
  margin: 2.4rem 0 0.8rem;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #193C64;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__contact-heading {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* -------------------------------------------------
.p-privacy-policy__contact-text
---------------------------------------------------- */
.p-privacy-policy__contact-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__contact-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-privacy-policy__contact-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__contact-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__contact-text {
    margin: 0 0 40px;
  }
}

/* -------------------------------------------------
.p-recruit
---------------------------------------------------- */
.p-sub-mainvisual--recruit .p-sub-mainvisual__image-img {
  object-position: center 60%;
}
@media screen and (max-width: 767px) {
  .p-sub-mainvisual--recruit .p-sub-mainvisual__image-img {
    object-position: center 80%;
  }
}
.p-recruit {
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 0 0 6rem;
  }
}

.p-recruit__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__inner {
    width: 100%;
    padding: 0 16px;
  }
}

/* -------------------------------------------------
.p-recruit-section
---------------------------------------------------- */
.p-recruit-section {
  margin: 10rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-section {
    margin: 6rem 0 0;
  }
}

/* -------------------------------------------------
.p-recruit__heading
---------------------------------------------------- */
.p-recruit__heading {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #193C64;
}
@media screen and (max-width: 1200px) {
  .p-recruit__heading {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit__heading {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__heading {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.p-recruit__heading {
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__heading {
    margin: 0 0 1rem;
  }
}

/* -------------------------------------------------
.c-title-label
---------------------------------------------------- */
.c-title-label {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #193C64;
  white-space: nowrap;
}
.c-title-label:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .c-title-label {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-title-label {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-title-label {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}
.c-title-label {
  margin: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-title-label {
    margin: 0 0 2rem;
  }
}

/* -------------------------------------------------
.c-primary-heading
---------------------------------------------------- */
.c-primary-heading {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #193C64;
}
@media screen and (max-width: 1200px) {
  .c-primary-heading {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-primary-heading {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .c-primary-heading {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 0.5rem;
  }
}

/* -------------------------------------------------
.p-recruit-education
---------------------------------------------------- */
.p-recruit-education {
  margin: 8rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education {
    margin: 8.33vw 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-education {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-education {
    margin: 6rem 0 0;
  }
}

/* -------------------------------------------------
.p-recruit-jobs
---------------------------------------------------- */
.p-recruit-jobs {
  margin: 8rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs {
    margin: 8.83vw 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-jobs {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs {
    margin: 3rem 0 0;
  }
}

.p-recruit-jobs__intro {
  margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__intro {
    margin: 0 0 30px;
  }
}

.p-recruit-jobs__intro-text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.p-recruit-jobs__list {
  margin: 0 0 38px;
}

.p-recruit-jobs__item {
  margin: 0 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item {
    margin: 0 0 4rem;
  }
}
.p-recruit-jobs__item:last-child {
  margin: 0;
}

.p-recruit-jobs__item-header {
  display: flex;
  align-items: center;
  margin: 0 0 2rem;
}

.p-recruit-jobs__item-number {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #8c9db1;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item-number {
    font-size: 30px;
  }
}
.p-recruit-jobs__item-number::after {
  display: block;
  width: 1px;
  height: 3.2rem;
  margin: 0 22px;
  content: "";
  background-color: #8c9db1;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item-number::after {
    height: 2.4rem;
    margin: 0 15px;
  }
}

.p-recruit-jobs__item-title {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

.p-recruit-jobs__item-description {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__item-description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-jobs__item-description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item-description {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.p-recruit-jobs__item-description {
  margin: 0 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__item-description {
    margin: 0 0 2rem;
  }
}

/* -------------------------------------------------
.p-recruit-contact
---------------------------------------------------- */
.p-recruit-contact {
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-recruit-contact {
    margin: 3rem 0 0;
    padding: 0;
  }
}

.p-recruit-contact__section + .p-recruit-contact__section {
  border-top: 1px solid #ccc;
}

.p-recruit-contact .c-primary-heading {
  padding: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-contact .c-primary-heading {
    padding: 2rem 0 0;
  }
}

.p-recruit-contact__text {
  padding: 0 0 5rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}

.p-recruit-contact__text-note {
  color: #8a8a8a;
}

.p-recruit-contact__text--no-padding-bottom {
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-contact__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-contact__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    padding: 0 0 2rem;
  }
}

.p-recruit-contact__info {
  margin: 3rem 0 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__info {
    font-size: 1.42vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-contact__info {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-contact__info {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.p-recruit-contact__info-mail-link {
  color: #0000ee;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-recruit-contact__info-mail-link:hover {
  opacity: 0.8;
}

.c-link-email {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.c-link-email:hover {
  color: #193C64;
}

/* -------------------------------------------------
スクロールアニメーション（フェードイン）
---------------------------------------------------- */
.js-fade-in {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------
スマホ版専用改行
---------------------------------------------------- */
.u-br-sp {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-br-sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-br-sp {
    display: block;
  }
}

/* -------------------------------------------------
PC版専用改行
---------------------------------------------------- */
.u-br-pc {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-br-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
}

/* -------------------------------------------------
表示・非表示切り替え
---------------------------------------------------- */
@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

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

/* -------------------------------------------------
強制的に調整
---------------------------------------------------- */
.fancybox-title-float #fancybox-title {
  font-weight: normal!important;
  line-height: 1.5!important;
  font-size: 13px!important;
}