:root {
  --header-height: 96px;
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 72px;
    --nav-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --header-height: 48px;
    --nav-height: 28px;
  }
}

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

* {
  padding: 0;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-anchor: none;
}

body {
  overflow-x: hidden;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  font-weight: 400;
  line-height: 2;
  color: #1a2a3a;
  background-color: #f9f9f7;
  transition: color 0.8s ease, background-color 0.8s ease;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

img {
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

.l-main {
  display: block;
  max-width: 1920px;
  padding: 0 clamp(16px, 2vw, 48px);
  padding-bottom: 20vw;
  margin: 0 auto;
}

@media print {
  * {
    opacity: 1 !important;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1920px;
  height: var(--header-height);
  padding: 0 clamp(16px, 2vw, 48px);
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header {
    justify-content: center;
    background-color: rgba(249, 249, 247, 0.1);
    backdrop-filter: blur(5px);
  }
}
@media print {
  .l-header {
    position: absolute;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.l-header__logo img {
  display: block;
  height: 50%;
  filter: brightness(1) invert(0);
  transition: filter 0.4s ease-in-out;
}
@media print {
  .l-header__logo img {
    filter: brightness(1) invert(0) !important;
  }
}
body.p-page--theme-dark .l-header__logo img {
  filter: brightness(0) invert(1);
}
@media print {
  body.p-page--theme-dark .l-header__logo img {
    filter: brightness(1) invert(0) !important;
  }
}

.l-footer {
  width: 100%;
  height: auto;
  padding: 48px 0;
}
.l-footer .l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-footer .l-footer__inner .l-footer__group-links {
  width: 100%;
}
.l-footer .l-footer__inner .l-footer__group-links ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner .l-footer__group-links ul {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
.l-footer .l-footer__inner .l-footer__group-links ul li {
  flex-shrink: 0;
}
.l-footer .l-footer__inner .l-footer__group-links ul li a {
  font-size: clamp(0.625rem, 0.564rem + 0.26vw, 0.875rem);
  color: #f9f9f7;
}
@media print {
  .l-footer .l-footer__inner .l-footer__group-links ul li a {
    color: #1a2a3a !important;
  }
}
.l-footer .l-footer__inner .l-footer__copyright {
  width: 100%;
}
.l-footer .l-footer__inner .l-footer__copyright p {
  font-size: clamp(0.625rem, 0.564rem + 0.26vw, 0.875rem);
  color: #f9f9f7;
  text-align: center;
}
@media print {
  .l-footer .l-footer__inner .l-footer__copyright p {
    color: #1a2a3a !important;
  }
}

.l-nav {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  padding: 0 clamp(16px, 2vw, 48px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .l-nav {
    top: var(--header-height);
    height: var(--nav-height);
    padding: 0;
    background-color: rgba(52, 108, 63, 0.1);
    backdrop-filter: blur(5px);
    transform: translate(-50%, 0);
  }
}
@media print {
  .l-nav {
    display: none;
  }
}
.l-nav nav {
  position: relative;
  padding-left: 48px;
}
@media screen and (max-width: 1024px) {
  .l-nav nav {
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
.l-nav nav .l-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .l-nav nav .l-nav__list {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    width: 100%;
    height: 100%;
  }
}
.l-nav__item {
  position: relative;
  font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  color: #1a2a3a;
  letter-spacing: clamp(0.063rem, 0.047rem + 0.06vw, 0.125rem);
  pointer-events: all;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .l-nav__item {
    flex-shrink: 0;
    font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  }
}
@media screen and (max-width: 480px) {
  .l-nav__item {
    font-size: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  }
}
.l-nav__item.is-active {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__item:hover {
    opacity: 0.7;
  }
}
body.p-page--theme-dark .l-nav__item {
  color: #f9f9f7;
}
.l-nav__track {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .l-nav__track {
    top: 100%;
    width: 100%;
    height: 2px;
  }
}
body.p-page--theme-dark .l-nav__track {
  background: rgba(255, 255, 255, 0.1);
}
.l-nav__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #c9a063;
  transform: scaleY(0.1);
  transform-origin: top;
}
@media screen and (max-width: 1024px) {
  .l-nav__progress {
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0.1);
    transform-origin: left;
  }
}

body.p-page--theme-dark {
  color: #f9f9f7;
}
@media print {
  body.p-page--theme-dark {
    color: #1a2a3a !important;
  }
}

.p-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: min(100dvh, 1440px);
  padding-top: calc(var(--header-height) * 2);
  padding-bottom: var(--header-height);
}
@media screen and (max-width: 1024px) {
  .p-section {
    padding-top: calc(var(--header-height) + var(--nav-height) + 72px);
  }
}
@media screen and (max-width: 480px) {
  .p-section {
    padding-top: calc(var(--header-height) + var(--nav-height) + 48px);
  }
}
@media print {
  .p-section {
    padding-top: var(--header-height);
  }
}
.p-section#sec2 {
  padding-bottom: 0;
}
.p-section__inner {
  width: 100%;
  margin: 0 auto;
}
.p-section__inner--max-width-960 {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-section__inner--max-width-960 {
    width: 100%;
  }
}
@media print {
  .p-section__inner--max-width-960 {
    width: 100%;
  }
}
.p-section__content {
  width: 70%;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .p-section__content {
    width: 100%;
  }
}
@media print {
  .p-section__content {
    width: 100%;
  }
}
.p-section__line-deco {
  width: 48px;
  height: 1px;
  margin-bottom: 32px;
  background: #c9a063;
  opacity: 0;
  transform-origin: left;
}
.p-section__title {
  margin-bottom: clamp(1.125rem, 0.913rem + 0.91vw, 2rem);
  font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
  line-height: 1;
  opacity: 0;
}

.p-message__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-message__signature {
  margin-top: 48px;
}
.p-message__signature span {
  display: block;
}
.p-message__signature .p-message__position {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}
.p-message__signature .p-message__name {
  font-size: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
}

.p-outline__list {
  margin-top: 2rem;
}
.p-outline__item {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  opacity: 0;
}
.p-outline__item:last-of-type {
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}
@media screen and (max-width: 768px) {
  .p-outline__item {
    flex-direction: column;
  }
}
.p-outline__term {
  width: clamp(9rem, 7.544rem + 6.21vw, 15rem);
  font-weight: 500;
  color: #c9a063;
}
@media screen and (max-width: 768px) {
  .p-outline__term {
    width: 100%;
  }
}
.p-outline__description {
  flex: 1;
  margin: 0;
}
.p-outline__description--grid {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: clamp(3rem, 2.272rem + 3.11vw, 6rem);
       column-gap: clamp(3rem, 2.272rem + 3.11vw, 6rem);
  align-items: baseline;
}
.p-outline__description--grid .p-member__role {
  white-space: nowrap;
}
.p-outline__note {
  margin-top: 24px;
  font-size: clamp(0.625rem, 0.564rem + 0.26vw, 0.875rem);
  opacity: 0;
}
.p-outline__note a {
  text-decoration: underline;
}

.p-subsidiary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 144px;
  margin-bottom: 144px;
}
@media screen and (max-width: 480px) {
  .p-subsidiary {
    margin-top: 72px;
  }
}
@media print {
  .p-subsidiary {
    margin-top: 72px;
  }
}
.p-subsidiary__parent {
  width: 100%;
}
.p-subsidiary__parent-logo {
  width: 480px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-subsidiary__parent-logo {
    width: 80%;
    max-width: 480px;
  }
}
.p-subsidiary__parent-logo img {
  width: 100%;
  filter: brightness(1) invert(0);
  transition: filter 0.4s ease-in-out;
}
body.p-page--theme-dark .p-subsidiary__parent-logo img {
  filter: brightness(0) invert(1);
}
@media print {
  body.p-page--theme-dark .p-subsidiary__parent-logo img {
    filter: brightness(1) invert(0) !important;
  }
}
.p-subsidiary__children {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-left: 30%;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-subsidiary__children {
    gap: 48px;
  }
}
.p-subsidiary__connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
}
.p-subsidiary__line {
  fill: none;
  stroke: #c9a063;
  stroke-width: 0.2;
}
.p-subsidiary__card {
  opacity: 0;
}
.p-subsidiary__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-subsidiary__link {
    gap: 16px;
  }
}
.p-subsidiary__children-logo {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .p-subsidiary__children-logo {
    width: 80%;
    max-width: 320px;
  }
}
.p-subsidiary__children-logo img {
  width: 100%;
  filter: brightness(1) invert(0);
  transition: filter 0.4s ease-in-out;
}
body.p-page--theme-dark .p-subsidiary__children-logo img {
  filter: brightness(0) invert(1);
}
@media print {
  body.p-page--theme-dark .p-subsidiary__children-logo img {
    filter: brightness(1) invert(0) !important;
  }
}
.p-subsidiary__children-logo--dci img {
  width: 80%;
}
.p-subsidiary__children-logo--dpi img {
  width: 95%;
}
.p-subsidiary__children-logo--dei img {
  width: 100%;
}
.p-subsidiary__children-desc p {
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
}

.p-bg-pulse {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-50%);
}
.p-bg-pulse__label {
  display: inline-block;
  font-size: clamp(15rem, 12rem + 15vw, 30rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(0, 0, 0, 0.03);
}
.p-bg-pulse__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  font-size: clamp(15rem, 12rem + 15vw, 30rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.2;
  transform: translate(-50%, -50%);
}
@media print {
  .p-bg-pulse__ripple {
    display: none;
  }
}
body.p-page--theme-dark .p-bg-pulse__label, body.p-page--theme-dark .p-bg-pulse__ripple {
  color: rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=style.css.map */