@charset "utf-8";
/* ===================================================
	EVENT css
=================================================== */
.event-fv{
  height: 200px;
  padding: 0;
  background: url("../images/about-BG.jpg") center center / cover no-repeat;
  position: relative;
  box-sizing: border-box;
}

.event-fv::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,246,242,0.55);
}

.event-fv{
  height: 200px;
  padding: 0;
  background: url("../images/about-BG.jpg") center center / cover no-repeat;
  box-sizing: border-box;
}

.event-fv::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,246,242,0.55);
}

.event-fv .ja-title{
  display: inline-block;
  line-height: 1;
  text-shadow:
    1px 1px 0 #F7F6F2,
   -1px 1px 0 #F7F6F2,
    1px -1px 0 #F7F6F2,
   -1px -1px 0 #F7F6F2;
}

.event-fv .EN-Alt{
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  color: rgba(74, 143, 168, 0.8);
  text-shadow:
    1px 1px 0 #1A1A18,
   -1px 1px 0 #1A1A18,
    1px -1px 0 #1A1A18,
   -1px -1px 0 #1A1A18;
}


/* ===================================================
	EVENT DETAIL.CSS
=================================================== */
.event-detail-fv{
  height: 150px;
  padding: 0;
  background: url("../images/about-BG.jpg") center center / cover no-repeat;
  position: relative;
  box-sizing: border-box;
}

.event-detail-fv::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,246,242,0.55);
}

.event-detail-fv h1{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.event-detail-fv .EN-Alt{
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(127, 191, 178, 0.8);
  text-shadow:
    1px 1px 0 #1A1A18,
   -1px 1px 0 #1A1A18,
    1px -1px 0 #1A1A18,
   -1px -1px 0 #1A1A18;
}

.event-detail-fv .ja-title{
  display: block;
  margin-top: 5px;
  line-height: 1;
  text-shadow:
    1px 1px 0 #F7F6F2,
   -1px 1px 0 #F7F6F2,
    1px -1px 0 #F7F6F2,
   -1px -1px 0 #F7F6F2;
}

.event-detail-all{
  padding-top: 50px;
  padding-bottom: 50px;
    max-width: 950px;
    margin: 0 auto;
}

.event-detail-article{
  width: 85%;
  margin: 0 auto;
}

.event-detail-article h2{
  line-height: 1.5;
}

.event-detail-date{
  margin-top: 15px;
  color: #5D5D58;
}

.event-detail-image{
  margin-top: 20px;
}

.event-detail-image img{
  width: 80%;
    max-width: 500px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
    margin: 0 auto;
}

.event-detail-body{
  margin-top: 20px;
}

.event-detail-body p + p{
  margin-top: 15px;
}

.back-link-wrap{
  width: 85%;
  margin: 0 auto 20px;
}

.back-link{
  position: relative;
  display: inline-block;
  color: #5D5D58;
  line-height: 1;
}

.back-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #5D5D58;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.back-link:hover::after,
.back-link:active::after{
  transform: scaleX(1);
}