@charset "UTF-8";
/* ===================
 オリジナル
==================== */
/* ===================
 MIXIN
==================== */
/* ====================
design SIZE SET
==================== */
/* ====================
header height
==================== */
.u-inview {
  -webkit-animation: none !important;
          animation: none !important;
}

/*===================================
filter
===================================*/
.u-blur-in {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-animation: animate-filter 1.2s 0.2s forwards;
          animation: animate-filter 1.2s 0.2s forwards;
}

@-webkit-keyframes animate-filter {
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes animate-filter {
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}
/*===================================
translate
===================================*/
.u-fade-in {
  opacity: 0;
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-up {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-filter: blur(12px);
          filter: blur(12px);
  -webkit-animation: blurAnim 1.2s ease-in-out forwards;
          animation: blurAnim 1.2s ease-in-out forwards;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
@-webkit-keyframes blurAnim {
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes blurAnim {
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.u-fade-down {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}

.u-zoom-in {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}

.u-role-in {
  opacity: 0;
  -webkit-transform: translate(-150px, 0) rotate(-360deg);
          transform: translate(-150px, 0) rotate(-360deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: animate-translate 1.3s forwards;
          animation: animate-translate 1.3s forwards;
}

@-webkit-keyframes animate-translate {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-translate {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes animate-translate-out {
  to {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes animate-translate-out {
  to {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
/*===================================
mask
===================================*/
.u-mask-up {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-maskUp 1s ease-out forwards;
          animation: animate-maskUp 1s ease-out forwards;
}
.u-mask-down {
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-animation: animate-maskDown 1s ease-out forwards;
          animation: animate-maskDown 1s ease-out forwards;
}
@media only screen and (max-width: 834px) {
  .u-mask-down-sp {
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
    -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
            mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
            mask-position: bottom;
    -webkit-animation: animate-maskDown 1s ease-out forwards;
            animation: animate-maskDown 1s ease-out forwards;
  }
}
.u-mask-left {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-animation: animate-maskLeft 1s ease-out forwards;
          animation: animate-maskLeft 1s ease-out forwards;
}
.u-mask-right {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-animation: animate-maskRight 1s ease-out forwards;
          animation: animate-maskRight 1s ease-out forwards;
}

/* アニメーション定義 */
@-webkit-keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@-webkit-keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@-webkit-keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@-webkit-keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
@keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
/*===================================
回転
===================================*/
.rotateX {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

.rotateXcenter {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

@-webkit-keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*==================================================
スーッ
===================================*/
.slideIn {
  -webkit-animation: animate-slideIn 0.4s linear forwards;
          animation: animate-slideIn 0.4s linear forwards;
}

@-webkit-keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*==================================================
滑らかに変形して出現
===================================*/
.smooth {
  -webkit-animation: animate-smooth 1s forwards;
          animation: animate-smooth 1s forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/*----------------------------------------
	HEADER
-----------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 !important;
  pointer-events: none;
  z-index: 1000;
}
.l-header__logo {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 100px;
  pointer-events: auto;
}
.l-header-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 100px;
  height: 100px;
  padding: 0;
  background: none;
  border: none;
  pointer-events: visible;
  z-index: 1000;
}
.l-header-hamburger__line {
  width: 30px;
  height: 3px;
}
.l-header-hamburger__line::before, .l-header-hamburger__line::after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-hamburger__line::before {
  margin-top: -5px;
}
.l-header-hamburger__line:after {
  margin-top: 7px;
}
.l-header-hamburger.is-open .l-header-hamburger__line {
  background: none;
}
.l-header-hamburger.is-open .l-header-hamburger__line::before {
  margin: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header-hamburger.is-open .l-header-hamburger__line:after {
  margin: -3px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header-nav {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  pointer-events: visible;
  z-index: 999;
}
.l-header-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-header-nav__list {
  list-style: none;
  margin: 0;
  padding: 60px;
  text-align: left;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.l-header-nav__list li {
  margin: 18px 0;
}
.l-header-nav__list a:hover {
  opacity: 0.7;
}
.l-header-nav__list a:hover::after {
  display: none;
}

@media only screen and (max-width: 834px) {
  .l-header {
    height: 80px;
  }
  .l-header__logo {
    font-size: 28px;
    padding-left: 25px;
  }
  .l-header-hamburger {
    gap: 6px;
    width: 55px;
    height: 80px;
  }
  .l-header-nav {
    width: 50%;
  }
  .l-header-nav__list {
    padding: 5.3333333333vw 3.2vw;
    font-size: 6.8vw;
    position: absolute;
    top: 8vw;
  }
  .l-header-nav__list li {
    margin: 5.3333333333vw 0;
  }
}
/*----------------------------------------
	FOOTER
-----------------------------------------*/
.l-footer {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer__privacy {
  color: #111;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
}
.l-footer__copy {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  text-align: right;
}

@media only screen and (max-width: 834px) {
  .l-footer {
    height: auto;
    padding: 5.3333333333vw 0;
  }
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.6666666667vw;
    padding: 0 5.3333333333vw;
  }
  .l-footer__privacy {
    font-size: 3.2vw;
    text-align: center;
  }
  .l-footer__copy {
    font-size: 2.6666666667vw;
    text-align: center;
    line-height: 1.6;
  }
}
/*----------------------------------------
	MAIN
-----------------------------------------*/
html,
body {
  color: #111;
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
}
html *,
body * {
  font-family: "Forum", "Noto Serif JP", serif !important;
}

h2 {
  font-size: 3.4rem;
}

.breadcrumbs {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}
.about .area_company {
  background: none;
  padding: 0;
}

#top-2026 section {
  margin-bottom: 0 !important;
}
#top-2026 .mv {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
}
#top-2026 .mv__copy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
}
#top-2026 .mv__copy span {
  padding-top: 0.35em;
  font-size: 0.62em;
  margin: 0 0.5em;
}
#top-2026 .mv__copy.is-hidden {
  -webkit-animation: animate-translate-out 1s forwards;
          animation: animate-translate-out 1s forwards;
}
#top-2026 .mv__scroll {
  position: absolute;
  left: 45px;
  bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  color: #111;
  text-decoration: none;
}
#top-2026 .mv__scroll-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.06em;
}
#top-2026 .mv__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: #111;
  position: relative;
}
#top-2026 .mv__scroll-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-right: 1px solid #111;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#top-2026 .statement__inner {
  padding-top: 80px;
}
#top-2026 .statement__title {
  font-size: 24px;
}
#top-2026 .statement__jp {
  margin-top: 48px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 2;
}
#top-2026 .statement__en {
  margin-top: 48px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.9;
}
#top-2026 .statement--philosophy {
  padding-top: 120px;
  padding-bottom: 120px;
}
#top-2026 .statement {
  padding-top: 140px;
}
#top-2026 .statement__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-2026 .statement__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .statement__jp {
  margin: 100px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .statement__en {
  margin: 100px 0 0;
  max-width: 900px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
}
#top-2026 .perspective {
  padding-top: 100px;
  padding-bottom: 240px;
}
#top-2026 .perspective__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-2026 .perspective__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .perspective__block {
  width: 100%;
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-2026 .perspective__block:first-of-type {
  margin-top: 100px;
}
#top-2026 .perspective__subttl {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .perspective__jp {
  margin: 60px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .perspective__en {
  margin: 60px 0 0;
  max-width: 900px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
}
#top-2026 .role {
  /* padding-top: 240px; */
}
#top-2026 .role__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-2026 .role__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .role__jp {
  margin: 100px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .role__en {
  margin: 100px 0 0;
  max-width: 900px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
}
#top-2026 .declaration {
  padding-top: 240px;
  padding-bottom: 240px;
}
#top-2026 .declaration__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-2026 .declaration__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .declaration__title span {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
}
#top-2026 .declaration__jp {
  margin: 100px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
#top-2026 .declaration__en {
  margin: 100px 0 0;
  max-width: 900px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
}
#top-2026 .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 465px;
}
#top-2026 .news__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
#top-2026 .news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top-2026 .news__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
#top-2026 .news__viewall {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}
#top-2026 .news__arrow {
  position: relative;
  display: block;
  width: 37px;
  height: 1px;
  background: #111;
  top: -4px;
}
#top-2026 .news__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #111;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#top-2026 .news__list {
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}
#top-2026 .news__item + .news__item {
  margin-top: 34px;
}
#top-2026 .news__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 28px 1fr;
  grid-template-columns: 140px 1fr;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  color: #111;
  text-decoration: none;
}
#top-2026 .news__date {
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}
#top-2026 .news__text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  #top-2026 .mv__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  #top-2026 .mv__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(35 / 750 * 100vw);
    font-size: 8vw;
    line-height: 1.35;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  #top-2026 .mv__copy span {
    font-size: 0.8em;
  }
  #top-2026 .mv__scroll {
    left: 1.8666666667vw;
    bottom: 2.6666666667vw;
  }
  #top-2026 .mv__scroll-text {
    font-size: 3.2vw;
  }
  #top-2026 .mv__scroll-line {
    height: 5.3333333333vw;
  }
  #top-2026 .mv__scroll-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 60%;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-right: 1px solid #111;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #top-2026 .statement {
    padding-top: 0;
  }
  #top-2026 .statement__inner {
    padding-top: 64vw;
  }
  #top-2026 .statement__title {
    font-size: 6.8vw;
  }
  #top-2026 .statement__jp {
    margin-top: 21.3333333333vw;
    padding: 0 3.2vw;
    font-size: 4.8vw;
  }
  #top-2026 .statement__en {
    margin-top: 21.3333333333vw;
    padding: 0 3.2vw;
    font-size: 5.3333333333vw;
  }
  #top-2026 .perspective {
    padding-top: 64vw;
    padding-bottom: 64vw;
  }
  #top-2026 .perspective__title {
    font-size: 6.8vw;
  }
  #top-2026 .perspective__block {
    margin-top: 32vw;
  }
  #top-2026 .perspective__subttl {
    font-size: 4.8vw;
  }
  #top-2026 .perspective__jp, #top-2026 .perspective__en {
    margin-top: 16vw;
    padding: 0 3.2vw;
    font-size: 4.8vw;
  }
  #top-2026 .role__title {
    font-size: 6.8vw;
  }
  #top-2026 .role__jp, #top-2026 .role__en {
    margin-top: 6.4vw;
    padding: 0 3.2vw;
    font-size: 4.8vw;
  }
  #top-2026 .declaration {
    padding: 64vw 0;
  }
  #top-2026 .declaration__title {
    font-size: 6.8vw;
  }
  #top-2026 .declaration__jp, #top-2026 .declaration__en {
    margin-top: 21.3333333333vw;
    padding: 0 3.2vw;
    font-size: 4.8vw;
  }
  #top-2026 .news {
    height: auto;
    /* 固定高さやめる（これ超重要） */
    padding: 10.6666666667vw 0;
  }
  #top-2026 .news__inner {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
  #top-2026 .news__head {
    margin-bottom: 8vw;
  }
  #top-2026 .news__title {
    font-size: 5.3333333333vw;
  }
  #top-2026 .news__viewall {
    font-size: 2.6666666667vw;
  }
  #top-2026 .news__item a {
    display: block;
    /* gridやめる */
  }
  #top-2026 .news__item + #top-2026 .news__item {
    margin-top: 6.4vw;
  }
  #top-2026 .news__date {
    display: block;
    font-size: 2.6666666667vw;
    margin-bottom: 2.1333333333vw;
  }
  #top-2026 .news__text {
    font-size: 3.2vw;
    line-height: 1.6;
  }
}