@charset "UTF-8";

.first-view {
  position: relative;
  display: grid;
  grid-template-columns: 100%;

  grid-template-rows: 100vh 300vh;

  width: 100%;
  height: auto;
}

.first-view-heading {
  position: sticky;
  grid-row: 1 / 2;
  top: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.first-view h1 {
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 2.8rem;
  font-family: "HiraMinProN-W3", "'Hiragino Kaku Gothic ProN'", serif;
  color: #FFFFFF;
  opacity: 1;
  animation: fadeUp 2.5s ease-out forwards;
  animation-play-state: paused;
  pointer-events: none;
}

.first-view-ripples {
  grid-row: 1 / 2;
}

#ripples {
  position: absolute;
  top: 0;
  left: 50%;

  width: 100vw;

  height: 100vh;
  transform: translateX(-50%);

  z-index: 9;
  pointer-events: none;
}

#color-switch-trigger {
  position: absolute;
  top: 80vh;

  left: 0;
  width: 100%;
  height: 1px;

  pointer-events: none;
}

.first-view h1.is-white {
  color: #000000;

  transition: color .3s ease;

}

.first-view h1.visible {
  opacity: 1;
  animation-play-state: running;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

.keyword {
  display: inline-block;

  transform: scale(1.3);

  transform-origin: center;

  opacity: 0;

  filter: blur(10px);

  letter-spacing: .2em;

  transition: opacity .9s ease-out;

}

.keyword.visible {
  animation: blurSharp .9s ease-out forwards;
}

@keyframes blurSharp {
  0% {
    opacity: 0;
    filter: blur(10px);
    letter-spacing: .2em;
  }

  45% {
    opacity: 1;

  }

  100% {
    opacity: 1;
    filter: blur(0);

    letter-spacing: 0;

  }
}

#hero {
  position: relative;
  grid-row: 2 / 3;
  width: 100%;

  height: 100%;
}

.hero-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;

  background: #001E1E;
}

.hero-container video {
  position: relative;
  top: 0;
  left: 50%;

  width: 100vw;

  height: 100%;
  transform: translateX(-50%);

  object-fit: cover;

  filter: brightness(60%);
  z-index: 0;
}

.hero-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 100vw;

  height: 600px;

  transform: translateX(-50%);

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%,

      #001E1E 100%);
  pointer-events: none;
  z-index: 1;

}

.hero-content-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-content-wrapper img.hero-content {
  position: absolute;
  width: auto;
  opacity: 0;
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.hero-content-wrapper img.hero-content.hero02 {
  transform: translate(-50%, -50%) translateY(40px);
}

.hero-content-wrapper img.hero-content.hero02.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.hero-content-wrapper img.hero-content.right-side {
  transform: translate(50%, -50%) translateY(40px);
}

.hero-content-wrapper img.hero-content.right-side.active {
  opacity: 1;
  transform: translate(50%, -50%) translateY(0);
}

.hero-content-wrapper img.hero-content.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.hero01 {
  top: 20%;
  right: 25%;
  height: 490px;
}

.hero02 {
  top: 45%;
  left: 25%;
  height: 450px;
}

.hero03 {
  top: 75%;
  right: 25%;
  height: 520px;
}

@media (max-width: 760px) {
  .first-view h1 {
    font-size: 1.8rem;
  }

  .hero01 {
    height: 310px;
  }

  .hero02 {
    height: 280px;
  }

  .hero03 {
    height: 330px;
  }
}

.section-business {
  width: 100%;
}

.section-business-top {
  position: relative;
  left: 50%;

  width: 100vw;

  height: 200px;
  transform: translateX(-50%);

  background: #001E1E;
}

.business {
  position: relative;
  display: flex;
  flex-direction: column;

  margin-top: 100px;
  align-items: flex-start;

  padding-left: 100px;
  color: #001E1E;
}

.business h2 {
  position: relative;
  left: -4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 8rem;
  font-weight: bold;
  pointer-events: none;
  padding-bottom: 40px;
}

.business h3 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  pointer-events: none;
  line-height: 3.4rem;
  margin: 0;
}

.business-header {
  display: flex;
  flex-direction: column;
}

.business-hero {
  width: 100%;
  max-width: 900px;
  margin-top: 7.5px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
}

.business-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.business-hero-tag::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: #001E1E;
}

.business-hero h1 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0;
}

.business-hero-lead {
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0;
}

.business-hero-brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: inline-block;
  letter-spacing: 0.05em;
}

.business-inner {
  display: table;
  width: 100%;
  margin-top: 50px;
  padding-left: 100px;
}

.business-content-img,
.business-content {
  display: table-cell;
  vertical-align: top;

}

.business-content-img {
  position: relative;
  flex: 0 0 300px;

  top: -10px;
  width: 300px;
  height: 100%;
  overflow: hidden;
}

.business-content-img .biz-img {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.business-content-img .biz-img.active {
  transform: translateX(0);
  opacity: 1;
}

.business-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 0 auto;
  list-style: none;
  padding-left: 20px;
}

.business-content .biz-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;

}

.business-title {
  display: block;

  text-align: left;

  align-self: flex-start;

  width: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  padding-bottom: 5px;

  border-bottom: 0.5px solid #000000;

  margin-bottom: 5px;

  pointer-events: none;
}

.business-section {
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 5px;

  pointer-events: none;
}

.biz-desc {
  text-align: left;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  margin-top: 10px;

  padding-right: 20px;
  pointer-events: none;
}

.business-viewmore {
  display: inline-flex;

  width: auto;
  align-items: center;

  align-self: flex-start;
}

.business-viewmore a {
  position: relative;
  padding-left: 50px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 5rem;
  text-decoration: none;
  color: #001E1E;
  transition: 0.3s ease-in-out;
  align-self: flex-start;
}

.business-viewmore a:before,
.business-viewmore a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.business-viewmore a:before {
  left: 11px;
  width: 5px;
  height: 5px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.business-viewmore a:after {
  left: 0;
  width: 30px;
  height: 30px;
  background: #001E1E;
  z-index: 1;
  border-radius: 40px;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.business-viewmore a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.business-viewmore-text {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media(hover: hover) {

  .business-content .biz-item:hover::before {
    content: "";
    position: absolute;
    top: -5px;

    bottom: -5px;

    left: -10px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: -1;

    pointer-events: none;
  }

  .business-viewmore a:hover span {
    color: #FFFFFF;
  }

  .business-viewmore a:hover:before {
    left: 25px;
    border-top: solid 2px #FFFFFF;
    border-right: solid 2px #FFFFFF;
  }

  .business-viewmore a:hover:after {
    right: 0;
    width: 120%;
    background: #001E1E;
  }
}

@media (min-width: 761px) {
  .business-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .business h3 {
    flex: 0 0 auto;
    margin-right: 64px;
    padding-right: 193px;

  }

  .business-hero {
    flex: 1 1 auto;
    max-width: 980px;
  }
}

@media (max-width: 760px) {

  .section-business {
    flex-direction: column;

    align-items: flex-start;

  }

  .section-business-top {
    height: 100px;
  }

  .business {
    margin-top: 100px;
    padding-left: 20px;
  }

  .business h2 {
    font-size: 5rem;
  }

  .business h3 {
    font-size: 1.6rem;
    padding-right: 20px;
    text-align: left;
    line-height: 2.4rem;
  }

  .business-hero {
    max-width: none;
    margin: 20px 0px 30px;
    gap: 10px;
  }

  .business-hero-tag {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  .business-hero-tag::before {
    width: 48px;
    height: 1px;
  }

  .business-hero h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .business-hero-lead {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .business-inner {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    padding-left: 20px;
  }

  .business-content {
    padding-left: 0px;
  }

  .business-content-img {
    display: none;
  }

  .business-content .biz-item {
    margin-bottom: 20px;
  }

  .business-title {
    font-size: 1.4rem;
    padding-bottom: 3px;

    margin-bottom: 3px;

  }

  .business-section {
    font-size: 1.6rem;
    margin-top: 3px;
    padding: 2px 0;
  }

  .biz-desc {
    font-size: 1.4rem;
    margin-top: 3px;

  }

  .business-viewmore-text {
    font-size: 1.6rem;
  }

  .business-viewmore a {
    font-size: 1.4rem;
  }

  .business-viewmore a::before {
    left: 25px;

    transition: none;

  }

  .business-viewmore a::after {
    right: 0;

    width: 120%;

    transition: none;
  }

  .business-viewmore a span {
    color: #FFFFFF;
  }
}

.section-news {
  display: flex;
  margin-top: 250px;
  padding-left: 100px;
  align-items: flex-start;

}

.news {
  position: relative;
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  color: #001E1E;
}

.news h2 {
  position: relative;
  left: -4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 8rem;
  font-weight: bold;
  pointer-events: none;
  padding-bottom: 40px;
}

.news h3 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  pointer-events: none;
}

.news-content {
  display: flex;
  flex: 1;

  flex-direction: column;
  align-items: stretch;
  margin: 160px 0 0 300px;
  gap: 32px;
}

.news-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
  transition: background-color 0.3s ease;

  align-self: stretch;

  box-sizing: border-box;

}

.news-item-link {
  display: block;

  text-decoration: none;

  color: inherit;

  transition: color 0.2s ease;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 8px;
  text-align: left;
}

.news-item-date {
  font-size: 1rem;
  color: #999999;
}

.news-item-category {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: none;
  color: #999999;
  border: 0.5px solid #999999;
  padding: 0px 20px;
  border-radius: 60px;
  font-size: 1rem;
}

.news-item-body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  text-align: left;

}

.news-viewmore {
  align-self: flex-start;

  width: auto;

}

.news-viewmore a {
  position: relative;
  padding-left: 50px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 5rem;
  text-decoration: none;
  color: #001E1E;
  transition: 0.3s ease-in-out;
  align-self: flex-start;
}

.news-viewmore a:before,
.news-viewmore a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.news-viewmore a:before {
  left: 11px;
  width: 5px;
  height: 5px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.news-viewmore a:after {
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 40px;
  background: #001E1E;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.news-viewmore a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

@media(hover: hover) {

  .news-item-link:hover .news-item {
    background: rgba(0, 0, 0, .03);
  }

  .news-item-link:hover .news-item-body {
    text-decoration: underline;
    color: #000;

  }

  .news-viewmore a:hover span {
    color: #FFFFFF;
  }

  .news-viewmore a:hover:before {
    left: 25px;
    border-top: solid 2px #FFFFFF;
    border-right: solid 2px #FFFFFF;
  }

  .news-viewmore a:hover:after {
    right: 0;
    width: 120%;
    background: #001E1E;
  }
}

@media (max-width: 960px) {
  .news-content {
    margin-left: 100px;
  }
}

@media (max-width: 760px) {

  .section-news {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 150px;
    padding-left: 20px;

    gap: 10px;

  }

  .news h2 {
    font-size: 5rem;
  }

  .news h3 {
    font-size: 1.6rem;
  }

  .news-content {
    margin: 40px 0 0;
    gap: 24px;
  }

  .news-item {
    padding-bottom: 20px;
  }

  .news-item-date {
    font-size: 0.9rem;
  }

  .news-item-category {
    padding: 2 14px;
    font-size: 0.75rem;
  }

  .news-item-body {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  .news-viewmore a {
    font-size: 1.4rem;
  }

  .news-viewmore a::before {
    left: 25px;

    transition: none;

  }

  .news-viewmore a::after {
    right: 0;

    width: 120%;

    transition: none;
  }

  .news-viewmore a span {
    color: #FFFFFF;
  }
}
