@charset "UTF-8";

.pane-contents,
.edit-format {
  background: #fff;
}

/* .pane-contents--container {
    width: 1200px;
} */
/* .pane-main {
    
} */

@media screen and (max-width: 768px) {}


/* ==================================================
Page Head Custom
================================================== */
#page-head {}

@media screen and (max-width: 768px) {

  #page-head {}

}

/* ==================================================
Page Body
================================================== */
#page-body {

  max-width: 900px;
  position: relative;
}

.none {
  display: none;
}

.flex {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  align-items: flex-start;
}

.articleSet {
  position: relative;
}

#head-title {
  margin-top: 60px;
}

.mainimage {
  position: relative;
}

.logo {
  position: absolute;
  width: 40%;
  left: 50%;
  top: 13%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  animation: popIn 1.3s ease-out forwards;
}

@keyframes popIn {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}



.section {
  display: flex;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.left {
  width: 33%;
  position: sticky;
  top: 120px;
  background: #fff;
  z-index: 1;
  align-self: flex-start;
}

.left-img-container {
  position: relative;
  width: 100%;
  height: auto;
}

.left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.overlay1 {
  position: fixed;
  top: 65%;
  left: 46%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 13px;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  text-align: left;
}

.overlay2 {
  position: fixed;
  top: 40%;
  left: 46%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 13px;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: left;
}

.overlay.active {
  opacity: 1;
}

//*
.right {
  width: 67%;
}
*//

.right img {
  width: 100%;
  display: block;
}

.underline-trigger {
  position: relative;
  display: inline-block;
  font-size: 18px;
  z-index: 11;
}

.underline {
  position: absolute;
  left: -50px;
  bottom: -2px;
  height: 1px;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
  width: calc(100% + 100px);
}

.underline-trigger a {
padding:15px 100px;
}

.underline-trigger.active .underline {
  transform: scaleX(1);
}




.text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-block p {
  margin: 0;
  margin-bottom: 0px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  padding-left: 20%;
  width: 85%;
}

.text-block .tagline {
  font-weight: bold;
}







@media screen and (max-width: 768px) {
  .logo {
    top: 70px;
  }

}

/* SP用 */
@media screen and (max-width: 480px) {

  .left {
 top: 58px;
width: 80%;
  }

  .overlay1 {
    font-size: 11px;
    line-height: 1.3;
  }

  .overlay2 {
    font-size: 11px;
    line-height: 1.3;
  }

  .underline-trigger {
    font-size: 13px;
  }
  
  .underline {
  left: 0px;
  width: calc(100%);
}

.underline-trigger a {
padding:15px 80px;
}

}

.logo {
  width: 50%;
}

.left img {
  height: 100vh;
  object-fit: cover;
}



/* Fade in */
.inView {
  opacity: 0;
}

.imgFade {
  opacity: 0;
}

.imgAnim {
  -webkit-animation-name: imgAnim;
  animation-name: imgAnim;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes imgAnim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.imgFade.fadeT {
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  z-index: 5;
}

.imgAnim.fadeT {
  -webkit-animation-name: imgAnim;
  animation-name: imgAnim;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.imgFade.fadeR {
  opacity: 0;
  transform: translateX(50px);
  position: relative;
  z-index: 5;
}

.imgFade.fadeL {
  opacity: 0;
  transform: translateX(-50px);
  position: relative;
  z-index: 5;
}

.imgAnim.fadeR {
  -webkit-animation-name: imgAnim;
  animation-name: imgAnim;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.imgAnim.fadeL {
  -webkit-animation-name: imgAnim;
  animation-name: imgAnim;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}