@charset "utf-8";
/* common style
-------------------------------------------------------------- */

/* introLoader
-------------------------------------------------------------- */
.introLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.introLoaderSweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 250vw;
  height: 100%;
}

.introLoaderPanel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.introLoaderPanel--white {
  background: var(--white);
  clip-path: polygon(0 0, 60% 0, 55% 100%, 0 100%);
  z-index: 2;
}

.introLoaderPanel--green {
  background: var(--green);
  clip-path: polygon(60% 0, 100% 0, 95% 100%, 55% 100%);
  z-index: 1;
}

body.isIntroActive {
  overflow: hidden;
}

/* mv
-------------------------------------------------------------- */
.mv {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--headerHeight, 96px));
}

.mvIntroPanel {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  width: 130vw; 
  height: 100%;
  background: var(--green);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%); 
  z-index: 10;
  pointer-events: none; 
}

.mvSlider {
  height: 100%;
}

.mvSliderImg {
   height: 100%;
}

.mvSliderImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvSlider,
.mvText {
  position: relative;
  z-index: 1;
}

.mvText {
  position: absolute;
  inset: 0;
  left: 8.4rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  transition: color 1s ease;
}

.mvText h1 {
  width: 100%;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.5rem;
}

.mvText.isWhite h1 { 
  color: var(--white);
  text-shadow: 0 0 10px #0164B7;
}

.mvText.isGreen h1 {
  color: var(--green);
}

.mvText p {
  width: 100%;
}

.mvText p span {
  display: inline-block;
  margin-bottom: .5rem;
  padding: 1rem 0 1rem 2rem;
  background-color: var(--white);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .3rem;
  line-height: 1;
}

.mvText p span:lat-child {
  margin-bottom: 0;
}

.mvText.isWhite p span { 
  color: var(--blue);
}

.mvText.isGreen p span {
  color: var(--black);
}

.mvBtn {
  position: absolute;
  bottom: 9rem;
  right: 0;
  width: 34rem;
  z-index: 2;
}

.mvBtn .box {
  padding: 2.5rem;
  background: rgba(255,255,255,.9);
  border-radius: 5px 0 0 5px;
  text-align: center;
}

.mvBtn .box:first-child {
  margin-bottom: 1rem;
}

.mvBtn .box strong {
  display: block;
  font-size: 1.8rem;
}

.mvBtn .box.boxDoc strong {
  color: var(--green);
}

.mvBtn .box.boxFaq strong {
  color: var(--lightBlue);
}

.mvBtn .box span {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.mvBtn .btn {
  margin: auto;
  width: 250px;
}

.mvBtn .btn a {
  aspect-ratio: 250 / 65;
}

.mvBtn .btn a::before {
  width: 25px;
}

@media (width <= 1200px) {
  .mvText h1 {
    font-size: 7rem;
  }

  .mvText p span {
    font-size: 2rem;
  }

  .mvBtn {
    bottom: 5rem;
    width: 33rem;
  }

  .mvBtn .box {
    padding: 2rem;
  }
}

@media (width <= 960px) {
  .mvText {
    left: 4.4rem;
  }
  .mvText h1 {
    font-size: 5rem;
  }

  .mvText p span {
    font-size: 1.4rem;
  }

  .mvBtn {
    bottom: 3rem;
    width: 29rem;
  }

  .mvBtn .box {
    padding: 1.5rem;
  }

  .mvBtn .box strong {
    font-size: 1.6rem;
  }

  .mvBtn .box span {
    font-size: 1.2rem;
  }

  .mvBtn .btn {
    width: 200px;
  }
  
}

@media (width <= 767px) {
  .mv {
    height: calc(100vh - var(--headerHeight, 60px) - var(--floatingBnrHeight, 0px));
    height: calc(100svh - var(--headerHeight, 60px) - var(--floatingBnrHeight, 0px));
  }

  .mvText {
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
  }

  .mvText h1 {
    font-size: 4rem;
    letter-spacing: .5rem;
  }

  .mvText p span {
    padding: 1rem 0 1rem 1rem;
    font-size: 1.6rem;
    letter-spacing: .2rem;
  }

  .mvText p .span2 {
    padding: 1rem;
  }

}

/* about
-------------------------------------------------------------- */
.about {
  padding: 11rem 0;
}

.about .aboutWrap {
  justify-content: space-between;
}

.about .aboutWrap figure {
  width: 47.9%;
}

.about .aboutWrap .txtArea {
  width: 47%;
}

.about .aboutWrap .txtArea p {
  padding-bottom: 4rem;
  font-size: 1.8rem;
  line-height: 2;
}

@media (width <= 767px) {
  .about {
    padding: 5rem 0;
  }
  
  .about .aboutWrap {
    gap: .5rem;
  }
  
  .about .aboutWrap figure {
    width: 100%;
    order: 1;
  }
  
  .about .aboutWrap .txtArea {
    width: 100%;
  }
  
  .about .aboutWrap .txtArea p {
    padding-bottom: 2rem;
    font-size: 1.5rem;
  }

  .about .btnMore a {
    margin: 5rem auto 0;
  }
}


/* scrollArea
-------------------------------------------------------------- */
.scrollArea {
  margin-bottom: 10rem;
  overflow: hidden;
  width: 100%;
}

.scrollTrack {
  display: flex;
  width: max-content;
  animation: scrollLoop var(--scrollDuration, 40s) linear infinite;
}

.scrollGroup {
  display: flex;
  flex-shrink: 0;
}

.scrollItem {
  height: 229px;
  width: auto;
  margin-left: -15px;
}

@keyframes scrollLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--scrollGroupWidth, 50%))); }
}

@media (width <= 767px) {
  .scrollArea {
    margin-bottom: 5rem;
  }
  .scrollItem {
    height: 130px;
    margin-left: -13px;
  }
}

/* service
-------------------------------------------------------------- */
.service {
  padding: 8rem 0 10rem;
  background-color: var(--lightGray);
}

.service .serviceWrap {
  justify-content: space-between;
}

.service .serviceWrap .txtArea {
  width: 42.3%;
}

.service .serviceWrap .txtArea p {
  padding-bottom: 6rem;
  font-size: 1.8rem;
  line-height: 2;
}

.service .serviceWrap figure {
  width: 50.5%;
}
@media (width <= 767px) {
  .service {
    padding: 5rem 0 4rem;
  }
  
  .service .serviceWrap {
    gap: 4rem;
  }
  
  .service .serviceWrap .txtArea {
    width: 100%;
  }
  
  .service .serviceWrap .txtArea p {
    padding-bottom: 4rem;
    font-size: 1.5rem;
  }
  
  .service .serviceWrap figure {
    width: 100%;
  }
}

/* news
-------------------------------------------------------------- */
.news {
  padding: 10rem 0;
}

.news .newsWrap {
  justify-content: space-between;
}

.news .newsWrap h2 {
  text-align: left;
  width: 23%;
}

.news .newsWrap h2 .jp {
  text-indent: -0.5rem;
}

.news .newsWrap .newsListWrap {
  position: relative;
  overflow: hidden;
  width: 77%;
  min-height: 0;
}

.news .newsWrap .newsListWrap::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3rem;
  background-color: var(--lightGray);
  content: "";
  pointer-events: none;
}

.news .newsWrap .newsListWrap::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background-color: var(--lightGray);
  content: "";
  pointer-events: none;
}

.news .newsWrap .newsList {
  padding: 3rem 4rem 3rem 7rem;
  overflow-y: auto;
  width: 100%;
  max-height: 222px;
  border-radius: .5rem;
  background-color: var(--lightGray);
}

.newsList {
  scrollbar-width: none; /* Firefox */
}

.newsList::-webkit-scrollbar {
  display: none; /* Chrome, Edge, Safari */
}

.customScrollbar {
  position: absolute;
  top: 3rem; 
  right: 2rem;
  width: 8px;
  height: calc(222px - 6rem);
  background: #c6e4d5;
  border-radius: 5rem;
}

.customScrollbarThumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--green);
  border-radius: 5rem;
  cursor: pointer;
}

.news .newsWrap .newsList dl {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .2rem;
}

.news .newsWrap .newsList dt {
  padding: 1.2rem 0;
  width: 15rem;
}

.news .newsWrap .newsList dd {
  padding: 1.2rem 0;
  width: calc(100% - 15rem);
}

.news .newsWrap .newsList dd a {
  display: inline-block;
  position: relative;
  line-height: 1.6;
}

.news .newsWrap .newsList dd a.pdf::after {
  display: inline-block;
  margin-left: 1rem;
  width: 16px;
  height: 16px;
  background: url(../img/common/ico_pdf.svg) no-repeat center / contain;
  vertical-align: middle;
  content: "";
}

@media (width <= 960px) {
  .news .newsWrap h2 {
    width: 30%;
  }

  .news .newsWrap .newsListWrap {
    width: 70%;
  }

  .news .newsWrap .newsList {
    padding: 3rem 4rem;
  }
}
@media (width <= 767px) {
  .news {
    padding: 5rem 0 4rem;
  }
    
  .news .newsWrap h2 {
    text-align: center;
    width: 100%;
  }
  
  .news .newsWrap .newsListWrap {
    width: 100%;
  }
  
  .news .newsWrap .newsListWrap::before,
  .news .newsWrap .newsListWrap::after {
    height: 2rem;
  }
  
  .news .newsWrap .newsList {
    padding: 2rem 3rem 2rem 2.5rem;
    max-height: 233px;
  }
  
  .customScrollbar {
    top: 2rem;
    right: 1rem;
    height: calc(222px - 4rem);
  }
  
  .news .newsWrap .newsList dl {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .1rem;
  }
  
  .news .newsWrap .newsList dt {
    padding: 0;
    width: 100%;
    color: #888;
    font-size: 1.2rem;
  }
  
  .news .newsWrap .newsList dd {
    padding: .2rem 0 1rem;
    width: 100%;
  }
  
  .news .newsWrap .newsList dd a.pdf::after {
    margin-left: .5rem;
    width: 12px;
    height: 12px;
  }
}