@charset "UTF-8";

/* セクション毎の記述 ======================== */
.rv-container section{
  padding-block: 4rem;
}

/* 【FV】 ==================== */
.rv-container .sec-fv{
  position: relative;
  z-index: 0;
  padding-block: 0;
  padding-bottom: 60px;
  background-color: var(--color-white);
}

.rv-container .sec-fv::before{
  content: "";
  inset: 0;
  position: absolute;
  background: url(../img/fv-img.jpg) center/cover no-repeat;
  opacity: 1;
  animation: fadeDim 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeDim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}

.sec-fv .unit-box{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
  height: calc(100vh - 60px * 2);
  min-height: 450px;
  animation-delay: 1.5s;
}

.sec-fv .text-block{
  text-shadow: 0 0 .5em var(--color-white);
}
.sec-fv .logo{
  font-size: 350%;
}

.sec-fv .cta-scroll{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 2px solid var(--color-darkgray);
  transition: var(--transitionall);
}

.sec-fv .cta-scroll:hover{
  opacity: var(--hoveropacity);
  transform: translate(-50%, 5%);
}

.sec-fv .scroll{
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, -100%);
  width: fit-content;
}

@container container__global (max-width: 768px) {
  .sec-fv .cta-scroll{
    width: 2.5rem;
  }

  .sec-fv .scroll{
    bottom: 1.25rem;
  }
}

@container container__global (max-width: 600px) {
  .sec-fv .logo{
  font-size: 250%;
  }
}

/* 【Message】 ==================== */
.sec-about .catch{
  text-align: center;
  font-size: 175%;
  margin-block: 3rem;
  line-height: 2;
}

.sec-about .inner-narrow{
  max-width: 820px;
  margin-inline: auto;
}

.sec-about .text-block + .text-block{
  margin-top: 1.5rem;
}

.sec-about .message{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 2rem!important;
  font-size: 120%;
  letter-spacing: 0.1em;
}

@container container__global (max-width: 600px) {
  .sec-about .catch{
    font-size: 150%;
  }
}

@container container__global (max-width: 414px) {
  .sec-about .catch{
    font-size: 125%;
  }
}

/* 【Profile】 ==================== */
.sec-profile .unit-box{
  display: grid;
  grid-template-columns: auto minmax(auto, 300px);
  grid-template-rows: auto auto;
  gap: 1.5rem 1rem;
}

.sec-profile .text-block { grid-area: 1 / 1 / 2 / 2; }
.sec-profile .image-block { grid-area: 1 / 2 / 3 / 3; }
.sec-profile .bio-block { 
  grid-area: 2 / 1 / 3 / 2;
  container-type: inline-size;
  container-name: sec-profile_bio-block;
}

.sec-profile .name-g{
  margin-bottom: 1rem;
}

.sec-profile .name-g h3{
  font-size: 150%;
}

.sec-profile .name-g p{
  font-size: 80%;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: var(--hoveropacity);
}

.sec-profile .separator{
  width: 10rem;
  margin-bottom: 1rem;
}

.sec-profile .sub-heading-bio{
  font-size: 125%;
  font-weight: bold;
  margin-bottom: .5rem;
}

.sec-profile .bio-list{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem;
}

@container sec-profile_bio-block (max-width: 640px) {
  .sec-profile .bio-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sec-profile .bio-list dd + dt{
    margin-top: .5rem;
  }
}

@container container__global (max-width: 1024px) {
  .sec-profile .unit-box{
    grid-template-columns: auto minmax(auto, 250px);
  }
}

@container container__global (max-width: 768px) {
  .sec-profile .unit-box{
    grid-template-columns: auto minmax(auto, 200px);
    gap: 1.5rem .5em;
  }
  .sec-profile .text-block { 
    grid-area: 1 / 1 / 2 / 2; 
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sec-profile .image-block { grid-area: 1 / 2 / 2 / 3; }
  .sec-profile .bio-block  { grid-area: 2 / 1 / 3 / 3; }
}

/* 【News & Topics】 ==================== */
/* .sec-news .news-list-wrapper{
  max-height: 500px;
  overflow-y:auto;
} */

.sec-news .news-list > li{
  position: relative;
  display: flex;
  gap: 1rem;
  padding-block: 1.5rem;
  padding-inline: .5rem;
  border-bottom: 1px solid var(--color-darkgray);
}

.sec-news .news-list > li.has-link{
  padding-right: 4rem;
}

.sec-news .image-block{
  width: 80px;
  height: fit-content;
  aspect-ratio: 1/1;
}

.sec-news .text-block{
  width: calc(100% - 1rem - 80px);
}

.sec-news time{
  display: inline-block;
}

.sec-news .el-label{
  margin-left: .5rem;
  font-size: 90%;
}

.sec-news .desc{
  margin-top: .5rem; 
}

.sec-news .cta-btn{
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(-50% , -50%) rotate(-90deg);
  width: 2rem;
  height: 2rem;
  background: url(../assets/chevron-b.png) center/cover no-repeat;
  transition: var(--transitionall);
}

.sec-news .cta-btn:hover{
  opacity: var(--hoveropacity);
  transform: translate(-45% , -50%) rotate(-90deg);
}

@container container__global (max-width: 600px) {
  .sec-news .news-list > li{
    padding-block: 1rem;
  }
  .sec-news .news-list > li.has-link{
    padding-right: 3rem;
  }

  .sec-news .image-block{
    width: 60px;
  }

  .sec-news .text-block{
    width: calc(100% - 1rem - 60px);
  }

  .sec-news time{
    font-size: 90%;
  }

  .sec-news .el-label{
    font-size: 85%;
  }

  .sec-news .desc{
    margin-top: .25rem;
  }

  .sec-news .cta-btn{
    right: 0;
  }
}

@container container__global (max-width: 414px) {
  .sec-news .image-block{
    display: none;
  }

  .sec-news .text-block{
    width: 100%;
  }
}

/* 【Business】 ==================== */
.sec-business .business-info{
  display: grid;
  grid-template-columns: auto 1fr;
  border: 1px solid var(--color-darkgray);
  width: fit-content;
  margin-inline: auto;
  margin-block: 3rem;
}

.sec-business .business-info dt,
.sec-business .business-info dd{
  padding: .25rem .5rem;
}

.sec-business .business-info dt:not(:last-of-type),
.sec-business .business-info dd:not(:last-of-type){
  border-bottom: 1px solid var(--color-darkgray);
}

.sec-business .business-info dt{
  border-right: 1px solid var(--color-darkgray);
  background-color: var(--color-lightgray);
}

/* 【Other Business】 ==================== */
.sec-otherbusiness .text-block{
  margin-block: 2rem;
}

.sec-otherbusiness .el-cta-btn.not-yet{
  pointer-events: none;
  opacity: 0.3;
}

.sec-otherbusiness .note{
  margin-top: 1rem;
  text-align: center;
}

.sec-otherbusiness .el-cta-btn.not-yet,
.sec-otherbusiness .el-cta-btn.youtube{
  text-align: center;
}
