@charset "UTF-8";
/*
Theme Name: WD-Stocker
Description: WD-Stocker用のテンプレートです
Version: 1.0
Author: mana
*/
html {
  font-size: 62.5%;
}

.fade .animation-bg {
  background: #FFAE0F;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation-name: PageAnimeFadein;
  animation-duration: 0.2s;
  animation-delay: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes PageAnimeFadein {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes PageAnimeFadeout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: black;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 540px;
  margin: auto;
}
@media (min-width: 769px) {
  .header__wrapper {
    max-width: 1200px;
  }
}
.header__logo {
  width: 49vw;
  max-width: 212px;
  padding: 20px;
}
@media (min-width: 769px) {
  .header__logo {
    max-width: 302px;
    padding-left: 40px;
  }
}
.header__logo img {
  width: 100%;
}
.header__btn {
  padding: 22px 20px 10px 0;
}
@media (min-width: 769px) {
  .header__btn {
    padding-right: 40px;
  }
}
.header__btn button {
  width: 44px;
  height: 29px;
  background-color: #7BD979;
  border-radius: 50px;
  outline: 2px solid #121212;
}
@media (min-width: 769px) {
  .header__btn button {
    width: 80px;
    height: 47px;
  }
}
.header__btn button div {
  width: 18px;
  margin: auto;
}
@media (min-width: 769px) {
  .header__btn button div {
    width: 24px;
  }
}
.header__btn button div img {
  width: 100%;
}
.header__btn button:last-of-type {
  margin-left: 10px;
}
.header__btn button:last-of-type div {
  width: 27px;
  padding: 8px 0 4px 4px;
}
@media (min-width: 769px) {
  .header__btn button:last-of-type div {
    width: 42px;
    padding: 12px 0 5px 8px;
  }
}

.search__container {
  display: none;
  line-height: 1;
}
.search__container.open {
  display: block;
  position: fixed;
  overflow-y: scroll;
  z-index: 999;
  top: 20px;
  left: 10px;
  right: 10px;
  height: calc(100vh - 70px);
  background-color: #fff;
  outline: 2px solid #121212;
  border-radius: 43px;
  padding: 40px 20px 0px;
  margin-bottom: 80px;
}
@media (min-width: 769px) {
  .search__container.open {
    left: 20px;
    right: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.search__container__fillter {
  display: none;
}
.search__container__fillter.open {
  display: block;
  position: fixed;
  top: 0;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7);
}
.search__header {
  display: flex;
  justify-content: space-between;
}
.search__title {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.search__close {
  width: 44px;
  height: 29px;
  background-color: #FFAE0F;
  border-radius: 50px;
  outline: 2px solid #121212;
}
@media (min-width: 769px) {
  .search__close {
    width: 80px;
    height: 47px;
  }
}
.search__close::after {
  content: "×";
  display: block;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.8;
}
@media (min-width: 769px) {
  .search__close::after {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
  }
}
.search__box {
  padding-top: 20px;
}
@media (min-width: 769px) {
  .search__box {
    margin-top: 30px;
  }
}
.search__box::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background-color: #d9d9d9;
}
@media (min-width: 769px) {
  .search__box::after {
    margin-top: 30px;
  }
}
.search__box__title {
  font-size: 1.6rem;
  font-weight: bold;
}
.search__box ul {
  display: block;
  padding: 20px 0 0 20px;
  list-style: none;
}
@media (min-width: 769px) {
  .search__box ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.search__box li {
  display: grid;
  grid-template-columns: 20px 1fr;
  padding-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 769px) {
  .search__box li {
    padding: 2px 0 0 12px;
    height: 48px;
  }
}
.search__box li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  outline: 2px solid #121212;
  border-radius: 2px;
  margin: 3px 5px 0 0;
}
.search__box li a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  background-color: #FFAE0F;
  color: #121212;
}

.content__wrapper {
  max-width: 540px;
  margin: auto;
}
@media (min-width: 769px) {
  .content__wrapper {
    max-width: 1200px;
  }
}
.content__container {
  padding: 40px 20px 60px;
  margin: 0 10px;
  background-color: #FDFDFD;
  outline: 2px solid #121212;
  border-radius: 43px;
}
@media (min-width: 769px) {
  .content__container {
    margin: 0 40px;
  }
}
.content__title p:first-of-type {
  font-size: 1.4rem;
}
@media (min-width: 769px) {
  .content__title p:first-of-type {
    font-size: 1.6rem;
  }
}
.content__title__text {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .content__title__text {
    font-size: 2.8rem;
  }
}
.content__title p:last-of-type a {
  text-decoration: none;
  color: #828282;
  font-weight: bold;
}
@media (min-width: 769px) {
  .content__title p:last-of-type a {
    font-size: 1.4rem;
  }
}
.content__img {
  padding-top: 16px;
}
@media (min-width: 769px) {
  .content__img {
    display: flex;
    gap: 5vw;
    flex-wrap: wrap;
    padding-top: 40px;
  }
}
.content__img div:first-of-type {
  width: 100%;
  max-width: 315px;
  height: auto;
}
@media (min-width: 769px) {
  .content__img div:first-of-type {
    max-width: 735px;
    width: 60%;
  }
}
.content__img div:last-of-type {
  padding-top: 16px;
  width: 230px;
  height: auto;
}
@media (min-width: 769px) {
  .content__img div:last-of-type {
    padding-top: 0;
  }
}
.content__img div img {
  outline: 1px solid #bebebe;
  width: 100%;
}
.content__tag {
  padding-top: 40px;
  list-style: none;
  max-width: 610px;
}
.content__tag li {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 8px 14px 0;
  background-color: #7BD979;
  outline: 2px solid #121212;
  border-radius: 30px;
}
.content__tag li a {
  text-decoration: none;
  color: #121212;
  font-weight: bold;
}
.content__share {
  padding-top: 40px;
}
.content__share p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-family: "Alfa Slab One", serif;
  font-size: 2rem;
  color: #888888;
}
@media (min-width: 769px) {
  .content__share p {
    font-size: 2rem;
  }
}
.content__share p::before, .content__share p::after {
  content: "";
  display: block;
  width: clamp(30px, 10vw, 80px);
  height: 1px;
  background-color: #888888;
}
.content__share p::before {
  margin-right: 10px;
}
.content__share p::after {
  margin-left: 10px;
}
.content__share__icon {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.content__back {
  padding-top: 40px;
}
.content__back a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: auto;
}
.content__back a span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #121212;
}
@media (min-width: 769px) {
  .content__back a span {
    font-size: 2rem;
  }
}
.content__back a img {
  width: 80px;
  height: 15px;
}
@media (min-width: 769px) {
  .content__back a img {
    width: auto;
    height: auto;
  }
}

.tag__box {
  margin: 40px 0 0;
  max-width: 735px;
  list-style: none;
}
@media (min-width: 769px) {
  .tag__box {
    margin: 60px 0 0;
  }
}
.tag__item {
  display: inline-block;
  text-decoration: none;
  margin: 0 20px 6px 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: #888888;
}
@media (min-width: 769px) {
  .tag__item {
    margin-bottom: 10px;
  }
}
.tag__item::before {
  content: "#";
  font-size: 1.4rem;
}
.tag__item a {
  text-decoration: none;
  color: #888888;
}

.archive__wrapper {
  display: grid;
  place-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .archive__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    column-gap: min(3%, 35px);
  }
}
.archive__container {
  position: relative;
  list-style: none;
  margin-bottom: 70px;
  max-width: 315px;
}
.archive__container__img img {
  outline: 1px solid #DEDEDE;
  transition: 0.2s;
}
.archive__container__img:hover img {
  box-shadow: 5px 3px #dedede;
  transform: translate(-3px, -3px);
}
@media (min-width: 769px) {
  .archive__container {
    margin-bottom: 40px;
  }
}
.archive__container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
  width: calc(100vw - 20px);
  max-width: 520px;
  height: 74px;
  background-color: #DEDEDE;
  outline: 2px solid #121212;
}
@media (min-width: 769px) {
  .archive__container::after {
    outline: none;
    box-sizing: border-box;
    border-top: 2px solid #121212;
    border-bottom: 2px solid #121212;
    width: calc(100vw - 80px);
  }
}
@media (min-width: 770px) {
  .archive__container::after {
    width: calc(50vw - 30px);
  }
}
@media (min-width: 1111px) {
  .archive__container::after {
    width: calc(50vw + 10px);
  }
}
@media (min-width: 1126px) {
  .archive__container::after {
    width: calc(33.3333333333vw - 20px);
    max-width: 380px;
  }
}
.archive__title {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
@media (min-width: 769px) {
  .archive__title {
    margin-bottom: 60px;
    font-size: 4rem;
  }
}
.archive__btn {
  position: relative;
  z-index: 2;
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-top: 10px;
  padding: 7px 13px 7px 20px;
  background-color: #CEAFEE;
  border-radius: 40px;
  outline: 2px solid #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 769px) {
  .archive__btn {
    margin-top: 8px;
  }
}
.archive__btn div:first-of-type p {
  width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.archive__btn div:first-of-type p:first-of-type {
  font-family: "Zen Kaku Gothic New", serif;
  color: #121212;
  font-weight: bold;
}
.archive__btn div:first-of-type p:nth-of-type(2) {
  color: #FDFDFD;
  font-weight: bold;
}
.archive__btn div:last-of-type {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 2px solid #121212;
  border-radius: 43px;
  background-color: #7BD979;
  width: 42px;
  height: 42px;
}
.archive__btn div:last-of-type p {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: -5px;
}
.archive__btn object {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 2px solid #121212;
  border-radius: 43px;
  background-color: #EDBCBC;
  width: 42px;
  height: 42px;
}
.archive__btn object img {
  outline: none;
}
.archive__btn object .favorite__icon {
  background-color: #EDBCBC;
}
.archive__btn p {
  max-width: 323px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current, .wp-pagenavi .page {
  display: inline-block;
  margin: 20px;
  width: 38px;
  height: 38px;
  color: #121212;
  font-size: 2.8rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 140%;
  text-decoration: none;
  background: #fff;
  transition: 0.3s;
}
.wp-pagenavi .current.current, .wp-pagenavi .current:hover, .wp-pagenavi .page.current, .wp-pagenavi .page:hover {
  border-bottom: 3px solid #888888;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: inline-block;
  font-size: 2.8rem;
  text-decoration: none;
  width: 38px;
  height: 38px;
  color: #121212;
  margin: 20px;
  transition: 0.1s;
}
.wp-pagenavi .previouspostslink:hover {
  transform: translatex(-7px);
}
.wp-pagenavi .nextpostslink:hover {
  transform: translatex(7px);
}

.favorite {
  background-color: #EDCDCD;
  background-image: url(/img/favorite_bg.png);
  background-position: left;
}

.static h1 {
  position: relative;
  margin: 0 0 20px 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.static h1::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -10px;
  background-color: #9C49EF;
  width: 3px;
  height: 20px;
  border-radius: 10px;
}
.static p {
  font-size: 1.4rem;
}
.static__ashirai {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.static__ashirai img {
  width: 26px;
  margin: 0 7px;
}
.static__container {
  padding-top: 40px;
}
.static__container h2 {
  position: relative;
  margin: 0 0 20px 10px;
  font-size: 1.6rem;
  padding-left: 10px;
  font-weight: bold;
  line-height: 1;
}
.static__container h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: -10px;
  background-color: #9C49EF;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}
.static__container h3 {
  padding-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
.static__container p {
  padding-bottom: 20px;
}
.static__container a {
  color: #121212;
  font-weight: bold;
}
.static__box {
  padding-bottom: 60px;
}
.static__box:last-of-type {
  padding-bottom: 0px;
}

@media (min-width: 769px) {
  .static {
    padding: 20px 60px 0;
  }
  .static h1 {
    padding-bottom: 20px;
    margin-left: 30px;
    font-size: 2.8rem;
  }
  .static h1::before {
    top: 2px;
    left: -30px;
    width: 5px;
    height: 28px;
  }
  .static__ashirai {
    margin-top: 60px;
  }
  .static__ashirai img {
    width: 42px;
    margin: 0 12px;
  }
  .static__container {
    padding-top: 60px;
  }
  .static__container h2 {
    margin-left: 30px;
    font-size: 2rem;
  }
  .static__container h2::before {
    top: 2px;
    left: -30px;
    width: 15px;
    height: 15px;
  }
  .static__container h3 {
    padding-bottom: 10px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .static__container p {
    font-size: 1.6rem;
  }
  .static__container__box:last-of-type {
    padding-bottom: 0px;
  }
}
footer {
  max-width: 1200px;
  max-height: 100dvh;
  padding: 80px 10px;
}
@media (min-width: 769px) {
  footer {
    padding: 80px 40px;
    margin: auto;
  }
}

.footer__wrapper {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-columns: 4fr 1fr;
  max-width: 1220px;
}
@media (min-width: 770px) {
  .footer__wrapper {
    margin-right: -30px;
  }
}
@media (min-width: 1111px) {
  .footer__wrapper {
    margin-right: -20px;
  }
}
@media (min-width: 1126px) {
  .footer__wrapper {
    margin-right: -60px;
  }
}
.footer__ad__wrapper {
  padding: 20px;
  background-color: #FDFDFD;
  border-radius: 40px;
  outline: 2px solid #121212;
}
@media (min-width: 769px) {
  .footer__ad__wrapper {
    max-width: 70%;
    padding: 40px 80px 20px;
  }
}
.footer__ad__wrapper a {
  display: inline-block;
  width: 195px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .footer__ad__wrapper a {
    width: 460px;
    margin-bottom: 40px;
  }
}
.footer__ad__wrapper img {
  width: 100%;
}
.footer__ad__text {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
}
@media (min-width: 769px) {
  .footer__ad__text {
    font-size: 1.6rem;
    padding-bottom: 40px;
  }
}
.footer__ad__text p {
  color: #333;
  margin-bottom: 20px;
}
.footer__ad__text a {
  display: inline;
  color: #888;
  text-decoration: underline;
  padding-right: 20px;
}
.footer__coin {
  position: relative;
}
.footer__coin::after {
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  left: -32%;
  transform: rotate(344deg);
  width: 70%;
  min-width: 80px;
  aspect-ratio: 140/73;
  background-image: url("img/click_text_r.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s;
}
@media (min-width: 769px) {
  .footer__coin {
    width: 100%;
    max-width: 200px;
    max-height: 200px;
    margin-top: -30px;
    cursor: pointer;
  }
}
.footer__coin.active::after {
  opacity: 0;
}
.footer__copyright {
  position: relative;
  grid-row: 2/2;
  grid-column: 1/3;
  max-width: 1180px;
  aspect-ratio: 240/37;
}
.footer__copyright img {
  position: relative;
  z-index: 10;
  width: 13%;
  min-width: 80px;
  aspect-ratio: 140/73;
  transform: translate(-150%, 40%) rotate(16deg);
  margin: -87px 0px 20px auto;
  display: none;
  opacity: 0;
}
.footer__copyright img.active {
  transition: 0.3s;
  opacity: 1;
  display: block;
}
.footer__copyright__clickBox {
  position: absolute;
  top: 0;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.footer__copyright__clickBox.active {
  opacity: 1;
  display: block;
}
.footer__copyright__clickBox a {
  display: block;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */