@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #231815;
  --color-white: #ffffff;
  --color-primary: #0fff00;
  --color-subPrimary: #533fdf;
  --color-pink: #ff009d;

  --noto-sans: "Noto Sans JP", serif;
  --zen-kaku: "Zen Kaku Gothic New", serif;
  --helvetica: "Helvetica", sans-serif;
  --helvetica-b: "Helvetica-B", sans-serif;
}


/*================================================
 *  information
 ================================================*/
#information {
  background: #efefef;
  padding-top: 22rem;
}

#information .inner {
  width: 80rem;
  margin: 0 auto;
}

#information h2 img {
  width: auto;
  height: 5.4rem;
  margin: 2rem auto 0;
}

.info__list {
  margin-top: 10rem;
}

.info__list li {
  margin-top: 2rem;
}

.info__list a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 6rem;
  padding: 3rem 8rem;
  background: var(--color-white);
  font-weight: bold;
  position: relative;
  border-radius: 1.5rem;
}

.info__list a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/arrow_info.png);
  width: 2.3rem;
  height: 2.3rem;
  aspect-ratio: 1/1;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  transition: .4s;
  border: 0.1rem solid #000;
  border-radius: 10000px;
}

.info__list a:hover::before {
  background-image: url(../../images/arrow_info_wt.png);
}

.pnav {
  margin-top: 10rem;
  border-top: 0.05rem solid #b4b5b5;
}

.pnav .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
}


.pnav a,
.pnav span {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 1000px;
  background: var(--color-white);
  border: 0.05rem solid #b4b5b5;
  display: grid;
  place-content: center;
  font-size: 2rem;
}

.pnav span {
  background: url(../../images/information/active_bg.png) no-repeat center/cover;
  color: var(--color-white);
}

a.prev.page-numbers,
a.next.page-numbers {
  display: none;
}

@media screen and (max-width:767px) {

  #information .inner {
    width: 53rem;
  }

  .info__list {
    margin-top: 7rem;
  }

  .info__list a {
    padding: 3rem 10rem 3rem 5rem;
    display: block;
  }

  .info__list a p:first-of-type {
    font-size: 1.8rem;
  }

  .info__list a p:nth-of-type(2) {
    font-size: 1.9rem;
  }

  .info__list a::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .info__list a p {
    font-size: 1.4rem;
  }

  .pnav {
    margin-top: 0;
    border-top: none;
  }
}

/*================================================
 *  detail
 ================================================*/
#detail {
  padding-top: 18rem;
  background: #efefef;
}

#detail .inner {
  width: 85rem;
  margin: 0 auto;
}

#detail .inner h2 {
  font-size: 2rem;
}

#detail .inner .date {
  font-size: 1.4rem;
  color: #8d8d8e;
  font-weight: 200;
}

#detail .inner .contents {
  margin-top: 4rem;
  margin-bottom: 16rem;
}

#detail .inner .contents * {
  font-size: 1.6rem;
  margin-bottom: 1em;
}

#detail .inner .contents img {
  width: 30rem;
  margin-top: 1.6rem;
}


.next-prev {
  margin-top: 10rem;
  padding-top: 10rem;
  border-top: 0.05rem solid #b4b5b5;
}

.next-prev ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}

.next-prev ul li a {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 400;
}

.next-prev ul li a img {
  width: 1.1rem;
}

.next-prev .gradBtn a {
  font-weight: 500;
  padding: 1.5rem 5rem;
}

.next-prev .gradBtn a::before {
  top: 0%;
  right: 20%;
}

.next-prev .gradBtn a::after {
  bottom: 0%;
  left: 20%;
}

@media screen and (max-width:767px) {

  #detail .inner {
    width: 53rem;
  }

  .next-prev {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .next-prev .gradBtn {
    margin-bottom: 3rem;
  }

  .next-prev .gradBtn a {
    width: 35rem;
    margin: 0 auto;
    text-align: center;
  }

  .next-prev .gradBtn a::before {
    top: -80%;
    right: 62%;
  }

  .next-prev .gradBtn a::after {
    bottom: -80%;
    left: 62%;
  }

}