@charset "UTF-8";
:root {
  --color-primary: #00aae5;
  --color-primary-dark: #008cd0;
  --color-green: #5b8f57;
  --color-yellow: #ffd400;
  --color-dark: #4c4c4c;
  --color-black: #222222;
  --color-white: #ffffff;
  --font-base: Zen Kaku Gothic New, sans-serif;
  --font-en: Afacad, sans-serif;
  --container-width: 1440px;
  --container-padding-pc: 240px;
  --container-padding-sp: 20px;
  --transition-base: 0.3s ease;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100vh;
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-color: #ffffff;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 0;
    display: flex;
    align-items: center;
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5% 0;
}
@media (min-width: 768px) {
  .hero__inner {
    padding: 200px 20px 0;
    width: 100%;
    max-width: calc(1440px + 240px * 2);
    margin: 0 auto;
  }
}

.hero__catchcopy {
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
  word-break: auto-phrase;
}
@media (min-width: 768px) {
  .hero__catchcopy {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
.hero__catchcopy strong {
  font-weight: 500;
  background-color: #ffd400;
}

.hero__logo {
  width: 100%;
  margin: 0 auto;
  height: 196px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .hero__logo {
    height: 445px;
    max-width: 800px;
    overflow: visible;
    transform: translateX(2px);
  }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: -23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, -15px);
  animation: heroScrollFadeDown 0.8s ease forwards;
  animation-delay: 4.1s;
}
.hero__scroll.is-hidden {
  animation: heroScrollFadeOut 1.2s ease forwards;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero__scroll {
    bottom: -20%;
    bottom: max(-20%, -80px);
    gap: 12px;
  }
}

@keyframes heroScrollFadeDown {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes heroScrollFadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}
.hero__scroll-text {
  font-family: "Afacad", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #222222;
}
@media (min-width: 768px) {
  .hero__scroll-text {
    font-size: 1rem;
  }
}

.hero__scroll-line {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroScrollBounce 1.5s ease-in-out infinite;
  animation-delay: 4.9s;
}
.hero__scroll-line svg {
  display: block;
}

@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.hero__side-text {
  display: none;
}
@media (min-width: 768px) {
  .hero__side-text {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(76, 76, 76, 0.4);
    white-space: nowrap;
  }
}

.stage {
  position: relative;
  width: 100%;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .stage {
    max-width: 1440px;
    margin: 0 auto;
    aspect-ratio: 1440/3087;
  }
}
@media (max-width: 767px) {
  .stage {
    margin: 0 auto;
    aspect-ratio: 350/1370;
  }
}
.stage::before {
  content: "";
  display: block;
  height: var(--stage-intro, 0);
}

.decoration-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.decoration-layer svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  visibility: hidden;
}
.decoration-layer svg.is-ready {
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .decoration-layer svg {
    visibility: visible !important;
  }
}
.decoration-layer--pc {
  display: none;
}
@media (min-width: 768px) {
  .decoration-layer--pc {
    display: block;
  }
}

.decoration-layer--sp {
  display: block;
}
@media (min-width: 768px) {
  .decoration-layer--sp {
    display: none;
  }
}

.deco-illust {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center center;
}
.deco-illust.is-illust-enabled {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
}
.deco-illust.is-visible {
  opacity: 1;
  transform: scale(1);
}

.category-group__inner,
.news__content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.category-group.is-visible .category-group__inner,
.news.is-visible .news__content {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .deco-line {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
  .deco-illust {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .category-group__inner,
  .news__content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.category-group,
.news,
.about {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stage .container {
    max-width: none;
    padding: 0;
  }
}
.category-group--energize-japan .category-group__inner,
.category-group--energize-team .category-group__inner {
  padding-right: 35%;
}

.category-group--better-setouchi .category-group__inner,
.category-group--energize-world .category-group__inner {
  padding-left: 35%;
}

@media (min-width: 768px) {
  .category-group--energize-japan .category-group__inner,
  .category-group--energize-team .category-group__inner {
    padding-right: 0;
    padding-left: 12.916%;
  }
  .category-group--better-setouchi .category-group__inner,
  .category-group--energize-world .category-group__inner {
    padding-left: 39.31%;
  }
}
.news {
  min-height: var(--section-height, 0);
  padding: 0;
}
@media (min-width: 768px) {
  .news {
    padding-top: min(60px, 5vw);
  }
}
.news > .container {
  display: grid;
  align-items: center;
  min-height: inherit;
}

.news__content {
  margin-left: 40%;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news__content {
    margin-top: 0;
    margin-left: 39.31%;
    max-width: 47.92%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.news__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin-bottom: 3%;
}
@media (min-width: 768px) {
  .news__title {
    font-size: 2.25rem;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .news__list {
    gap: 15px;
  }
}

.news__item a {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .news__item a {
    font-size: 1.175rem;
  }
}
.news__item a:hover {
  color: #00aae5;
}

.category-group {
  height: var(--section-height, auto);
  padding: 0;
}
.category-group > .container {
  display: grid;
  align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .category-group__inner {
    width: min(54.16%, 700px);
    height: 100%;
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .category-group__inner .btn-wrap {
    margin-top: 10px;
  }
}

.category-group__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 2.5%;
}
@media (min-width: 768px) {
  .category-group__title {
    font-size: 2.25rem;
    line-height: 1.45;
  }
}

.category-group__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .category-group__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.company-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #222222;
  transition: opacity 0.3s ease;
}
.company-card a:hover {
  opacity: 0.85;
}
.company-card a:hover .company-card__img {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .company-card a {
    display: block;
  }
}

.company-card__img {
  width: 40%;
  flex-shrink: 0;
  aspect-ratio: 13/9;
  background-color: #4c4c4c;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .company-card__img {
    width: 100%;
    height: 160px;
    aspect-ratio: unset;
    border-radius: 15px;
    margin-bottom: 12px;
  }
}

.company-card__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .company-card__name {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .category-group__title,
  .news__title {
    font-size: clamp(1.5rem, 2.667px + 2.778vw, 2.25rem);
  }
  .company-card__img {
    height: clamp(120px, 48.89px + 9.26vw, 160px);
  }
  .category-group .btn--primary {
    height: clamp(40px, 24px + 2.083vw, 49px);
    font-size: clamp(1rem, 8.889px + 0.926vw, 1.25rem);
  }
  .category-group .btn-wrap {
    margin-top: clamp(16px, -12.44px + 3.704vw, 32px);
  }
  .category-group__inner {
    width: calc(60% - 13.84% * (100vw - 768px) / 432px);
  }
  .category-group--energize-japan .category-group__inner,
  .category-group--energize-team .category-group__inner {
    padding-left: calc(6% + 6.916% * (100vw - 768px) / 432px);
  }
  .category-group--better-setouchi .category-group__inner,
  .category-group--energize-world .category-group__inner {
    padding-left: calc(32% + 14.31% * (100vw - 768px) / 432px);
  }
}
.about {
  padding: clamp(50px, 5vw, 80px) 0 clamp(80px, 7vw, 120px);
}

.about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: clamp(24px, 2.5vw, 30px);
}

.about__title {
  font-family: "Afacad", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: #008cd0;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.33;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 3.25rem;
  }
}

.about__title-line {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: url("../images/border-top_sp.svg") no-repeat center center;
  background-size: 100% auto;
  aspect-ratio: 1024/176;
}
@media (min-width: 768px) {
  .about__title-line {
    background-image: url("../images/border-top_pc.svg");
    aspect-ratio: 1024/115;
  }
}

.about__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: clamp(40px, 4.5vw, 70px);
}
@media (min-width: 768px) {
  .about__text {
    font-size: 1.5rem;
  }
}

.operator {
  border: 1px solid #4c4c4c;
  border-radius: 15px;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .operator {
    border-color: #008cd0;
    border-radius: 20px;
    padding: 30px 100px;
  }
}

.operator__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .operator__header {
    gap: 30px;
    margin-bottom: 20px;
  }
}

.operator__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #008cd0;
  color: #008cd0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .operator__badge {
    padding: 5px 20px;
    font-size: 1.375rem;
  }
}

.operator__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #008cd0;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .operator__name {
    font-size: 1.75rem;
  }
}

.operator__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media (min-width: 768px) {
  .operator__text {
    font-size: 1.125rem;
  }
}

.book-wrapper {
  margin-top: 2px;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  transform: scale(0.44);
  transform-origin: top center;
}
@media (min-width: 768px) {
  .book-wrapper {
    transform: none;
  }
}

.book-container {
  position: relative;
  width: 800px;
  height: 445px;
  transform-style: preserve-3d;
}

.page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  overflow: visible;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.page-left {
  left: 0;
  transform-origin: right center;
  animation: openLeftPage 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-right {
  right: 0;
  transform-origin: left center;
  animation: openRightPage 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.page-left .page-inner {
  justify-content: flex-end;
}
.page-right .page-inner {
  justify-content: flex-start;
}

.open-line {
  position: absolute;
}
.page-left .open-line {
  right: 0;
  bottom: 0;
}
.page-right .open-line {
  left: 0;
  bottom: 0;
}

.page-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.page-left .page-shadow {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 20%, transparent 60%);
  animation: shadowLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.page-right .page-shadow {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 20%, transparent 60%);
  animation: shadowRight 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes openLeftPage {
  0% {
    transform: rotateY(85deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes openRightPage {
  0% {
    transform: rotateY(-85deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes shadowLeft {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shadowRight {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.corner-top-left {
  position: absolute;
  top: 32px;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: top left;
  animation: cornerShow 0.3s ease-out forwards;
  animation-delay: 1.3s;
}

.corner-bottom-right {
  position: absolute;
  top: 250px;
  right: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  animation: cornerShow 0.3s ease-out forwards;
  animation-delay: 1.4s;
}

@keyframes cornerShow {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 本の中身（文字） */
.book-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  animation: bookContentFadeIn 1.2s ease forwards;
  animation-delay: 1.8s;
}

@keyframes bookContentFadeIn {
  to {
    opacity: 1;
  }
}
.book-content svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 文字のフェードイン（data-index で時間差・0.4sごと） */
.text-element {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
}
.text-element[data-index="0"] {
  animation-delay: 2s;
}
.text-element[data-index="1"] {
  animation-delay: 2.4s;
}
.text-element[data-index="2"] {
  animation-delay: 2.8s;
}
.text-element[data-index="3"] {
  animation-delay: 3.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.open-line svg {
  display: block;
}/*# sourceMappingURL=top.css.map */