@charset "utf-8";

.body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#home {
  background-image: url(../images/background_phone/background_phone_002.jpg);
}
#home::before {
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: fixed;
  position: -webkit-fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

.header-inner.change-color {
  background-color: rgb(232, 219, 225);
  transition: 1s;
}

.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s, transform 30s;
}
.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.inner-text {
  font-size: 17px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  margin-bottom: 200px;
  color: #ffffff;
  position: relative;
}

.news-view h2 {
  font-size: 19px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 10px;
  position: sticky;
  top: 50px;
  z-index: 1;
}

h2::after {
  position: absolute; /*positionをabsoluteに指定*/
  content: "";
  background-color: rgb(255, 255, 255); /*下線の色*/
  width: 220px; /*線の幅*/
  height: 0.5px; /*線の太さ*/
  bottom: -20px; /*線のタテ位置*/
  left: 50%; /*線のヨコ位置*/
  transform: translateX(-50%); /*線のヨコ位置*/
  text-shadow: 1px 0 10px #c1c1c175;
}

.news-view h3 {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ffffffb7;
  padding-top: 20px;
  text-align: center;
  padding: 30px;
  position: sticky;
  top: 140px;
  z-index: 1;
}

.news-view-back {
  width: 100%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #281b11;
}

/* backdrop-filter 非対応ブラウザ用 */
@supports not (
  (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))
) {
  .backdrop {
    background: rgba(100, 148, 185, 0.9);
  }
}

.news-view-back h1 {
  text-align: center;
}

.news-view {
  color: rgb(255, 255, 255);
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-top: 30px;
  max-width: 850px;
  text-align: justify;
  margin: 0 auto;
  max-width: 600px;
}

.news-glid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 100px;
  gap: 25px;
  grid-auto-flow: dense;
}

.news-glid img {
  border-radius: 0px 10px 0px 10px;
}

.topick li {
  margin-top: 70px;
}

.topick dt {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ffffffb7;
  padding-top: 20px;
}

.topick dd {
  font-size: 13px;
  font-family: "Montserrat", serif;
  font-weight: 200;
  font-style: normal;
  text-align: left;
  line-height: 20px;
  padding-top: 10px;
}

.year {
  text-align: center;
}

.year p {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ffffffb7;
  padding: 20px;
}

@media (max-width: 769px) {
  #home {
    background-image: url(../images/background_phone/background_phone_002.jpg);
  }
  #home::before {
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }

  .news-view h2 {
    padding-top: 30px;
    top: 50px;
  }

  .inner-text {
    margin-top: 200px;
    margin-bottom: 300px;
    font-size: 15px;
  }

  .news-glid {
    column-gap: 7%;
    row-gap: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 40px;
    margin: 0 auto;
  }
}
