body {
  background-color: #F0F0F0;
}

/* --------------------------
  opening
-------------------------- */
.opening {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  background: #1f1f1f;
  animation: fadeout 1s forwards;
  animation-delay: 3.6s;
}

.opening__bg {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  background: url(../img/opening_bg.jpg) no-repeat center;
  background-size: cover;
}

.opening__main {
  width: 80%;
  height: 130px;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}

.opening__logo {
  width: 100%;
  height: 100%;
  max-width: 150px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.opening__logo img,
.opening__logo svg{
  height: 130px;
  max-width: 100%;
  transform: translateY(150%);
  animation: textanimation-before 1.2s forwards, textanimation-after 1.2s forwards;
  animation-delay: 0.5s, 3s;
  object-fit: contain;
}
.opening__logo svg path {
  fill: #e6e6e6
}

.opening__tagline {
  margin: .6rem 0 0;
  width: 100%;
  height: 1em;
  margin: 1.5em 0 0;
  font-size: 20px;
  overflow: hidden;
}

.opening__tagline span{
  display: block;
  height: 1em;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1em;
  color: #e6e6e6;
  transform: translateY(100%);
  animation: textanimation-before 1s forwards, textanimation-after 1s forwards;
  animation-delay: 1.2s, 3s;
}

@media screen and (max-width: 768px) {
  .opening__main{
    width: 70%;
    left: 15%;
  }
  .opening__logo{
    height: auto;
    max-width: 200px;
  }
  .opening__logo img,
  .opening__logo svg{
    height: auto;
  }
  .opening__tagline{
    margin: 1em 0 0;
    font-size: 3vw;
  }
}

@keyframes textanimation-before {
  0% {
    transform: translateY(110%);
  }

  100% {
    transform: translateY(0);
  }
}
@keyframes textanimation-after {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeout{
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* --------------------------
  top
-------------------------- */
#container.toppage {
  max-width: none;
}

.fade-in {
  opacity: 0;
/*  transform: translateY(10px);*/
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}
.fade-in.is-visible {
  opacity: 1;
/*  transform: none;*/
  visibility: visible;
}
.fade-in.--2 {
  transition-delay: 300ms;
}
.fade-in.--3 {
  transition-delay: 500ms;
}

.header_box {
  display: none;
}
.top__sec{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #F0F0F0;
    margin-bottom: 0;
    overflow: hidden;
}
.top-clip__title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-60%);
    display: inline-block;
    width: 50vw;
    max-width: 840px;
    color: transparent;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
    text-align: left;
    z-index: 100;
}
.top-clip__title p {
  transform: translateX(0);
  opacity: 0;
  animation: textanimation-before2-pc 2s forwards;
  animation-delay: 0s;
  text-align: center;
}
.top-clip__title img,
.top-clip__title svg {
  max-width: 25%;
  object-fit: contain;
}
.top-scroll__text{
    position: absolute;
    bottom: 0px;
    /* left: calc(50% - 25.8px); */
    left: calc((50vw / 2) - 25.8px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    height: calc(6em + 20px);
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 400;
    font-size: 20px;
    rotate: 90deg;
    color: rgb(26,26,26);
    z-index: 20;
}
.top-scroll__text::after{
    position: absolute;
    left: 70px;
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: rgb(26,26,26);
    animation:scroll 2s ease 0s infinite normal;
}
.top__movie {
  position: absolute;
  right: 0;
  top: 0;
  background: #1f1f1f;
  display: block;
  height: 100vh;
  width: 100vh;
  max-width: 50vw;
  z-index: 1;
  overflow: hidden;
}
.top__movie::after {
  content: "";
  background: #f0f0f0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  animation: fadeout 2s ease 2.5s forwards;
}
.top__movie video {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}
@keyframes scroll{
  0%{
    width: 0;
  }
  50%{
    width: 50px;
    margin-left: 0;
  }
  100%{
    margin-left: 150px;
    width: 50px;
  }
}
@keyframes textanimation-before2 {
  0% {
    color: #010101;
    opacity: 0;
    transform: translateX(0);
  }
  40% {
    color: #010101;
    opacity: 1;
    transform: translateX(0);
  }
  55% {
    color: #010101;
    opacity: 1;
    transform: translateX(0);
  }
  80% {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textanimation-before2-pc {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textanimation-colorSP {
  0% {
    fill: #010101;
  }
  55% {
    fill: #010101;
  }
  80% {
    fill: #ffffff;
  }
  100% {
    fill: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .top__sec{
    height: 100vh;
  }
  .top-clip__title {
    width: 50%;
    top: 55%;
    left: 25%;
    transform: translateY(-50%);
    z-index: 200;
  }
  .top-clip__title p {
    color: #010101;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0;
    animation: textanimation-before2 2s forwards;
    animation-delay: 0s;
  }
  .top-clip__title img,
  .top-clip__title svg {
    fill: #010101;
    max-width: 120px;
    object-fit: contain;
    animation: textanimation-colorSP 3s forwards;
    animation-delay: 0s;
    position: relative;
    z-index: 20;
  }
  .top-scroll__text {
    color: #fff;
    left: calc(50% - 25.8px);
  }
  .top-scroll__text::after {
    background-color: #fff;
  }
  .top__movie {
    height: 100vh;
    width: 56.25vh;
    max-width: 100vw;
  }
  .top__movie::after {
    animation: fadeout 2s ease 2s forwards;
  }
}

.service-sec{
    width: 100%;
    height: 100vh;
}

.indexmenuList {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.indexmenuList li {
    position: relative;
    list-style: none;
    display: flex;
    width: 50%;
}
.indexmenuList li img {
    max-width: 100%;
}
.indexmenuList li h3 {
    position: absolute;
    left: 80px;
    bottom: 30px;
    font-size: 40px;
    color: #fff;
    margin: auto;
}
.indexmenuList li h3:before {
  position: absolute;
  left: -35px;
  bottom: 16px;
  border: 0;
  content: "";
  display: block;
  width: 15px;
  height: 33px;
  background: url(../img/top/w_arrow.svg) no-repeat;
  transition: 0.3s;
}
.indexmenuList li a:hover h3:before {
  left: -30px;
}
.indexmenuList li a {
  display: flex;
  overflow:hidden;
}
.indexmenuList li h3 span {
    display: block;
    font-size: 20px;
}
.indexmenuList li a img {
  transition: 1s;
  transform:scale(1.1,1.1);
}
.indexmenuList li a:hover img {
  transform:scale(1.2,1.2);
}
@media screen and (max-width: 768px) {
  .indexmenuList {
  }
  .indexmenuList li {
    width: 100%;
  }
  .indexmenuList li h3 {
    left: 45px;
    bottom: 10px;
    font-size: 30px;
  }
  .indexmenuList li h3:before {
    left: -25px;
    bottom: 16px;
    width: 8px;
    height: 17px;
  }
  .indexmenuList li a:hover h3:before {
    left: -30px;
  }
  .indexmenuList li h3 span {
    font-size: 14px;
  }
}

.top_newsSec {
    background: #F0F0F0;
}
.top_newsSec .top_news_inner {
    max-width: 1000px;
    margin: auto;
}
.top_news_title {
    text-align: left;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 35px;
}
.top_news_title span {
    display: block;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}
.top_newsList {
    display: flex;
    list-style: none;
    gap: 0 20px;
    justify-content: center;
    max-width: 900px;
    margin: auto;
}
.top_newsList li {
    padding: 15px;
    background: #fff;
    max-width: calc((100% - 40px) / 3);
}
.top_newsList li p {
    margin: auto;
    font-size: 12px;
    font-weight: bold;
}
.top_newsList li img {
    max-width: 100%;
}
.top_newsList li .top_news_info {
    margin: 10px 0 15px;
}
.top_newsList li .top_news_info .top_news_date {
    display: block;
    margin-bottom: 3px;
}
.top_newsList li .top_news_btn {
    position: relative;
    background: #F2F2F2;
    line-height: 30px;
    padding-left: 35px;
}
.top_newsList li .top_news_btn:before {
  position: absolute;
  left: 18px;
  bottom: 11px;
  border: 0;
  content: "";
  display: block;
  width: 4px;
  height: 9px;
  background: url(../img/top/b_arrow.svg);
  transition: 0.3s;
}
.top_newsList li .top_news_btn:hover:before {
  left: 23px;
}
.top_news_morebtn {
    text-align: center;
    margin: 45px 0 0;
}
.top_news_morebtn a {
    background: #fff;
    display: inline-block;
    width: 400px;
    line-height: 66px;
    font-size: 16px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top_newsSec .top_news_inner {
    padding: 0 15px;
  }
  .top_news_title {
      font-size: 31px;
  }
  .top_news_title span {
      font-size: 14px;
      margin-bottom: 8px;
  }
  .top_newsList {
    flex-wrap: wrap;
    gap: 15px;
  }
  .top_newsList li {
      padding: 20px;
      max-width: 100%;
  }
  .top_newsList li p {
      font-size: 14px;
  }
  .top_newsList li .top_news_info {
      margin: 20px 0;
  }
  .top_newsList li .top_news_btn {
      line-height: 45px;
      padding-left: 45px;
  }
  .top_newsList li .top_news_btn:before {
    position: absolute;
    left: 18px;
    bottom: 17px;
    border: 0;
    content: "";
    display: block;
    width: 4px;
    height: 9px;
    background: url(../img/top/b_arrow.svg);
    transition: 0.3s;
  }
  .top_newsList li .top_news_btn:hover:before {
    left: 23px;
  }
  .top_news_morebtn {
      margin: 45px 0 0;
  }
  .top_news_morebtn a {
      background: #fff;
      display: inline-block;
      width: 100%;
      line-height: 66px;
      font-size: 16px;
      font-weight: bold;
  }
}