@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
:root {
  --pink: #ff5885;
  --wh: #fff ;
}

.journal {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 0;
  /* サイドメニュー */
}
.journal-list {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  z-index: 4;
  color: #000;
  padding: 14rem 50rem 14rem 10rem;
  width: 90%;
  max-width: 1580px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .journal-list {
    padding: 7rem 38vw 7rem 7rem;
  }
}
@media screen and (max-width: 1200px) {
  .journal-list {
    padding: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-list {
    padding: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-list {
    padding: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-list {
    padding: 2rem;
  }
}
.journal-list-item {
  background-color: #e9e9e9;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 1500px) {
  .journal-list-item {
    gap: 5rem;
  }
}
@media screen and (max-width: 1300px) {
  .journal-list-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .journal-list-item {
    flex-direction: row;
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-list-item {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-list-item {
    padding: 2rem;
  }
}
.journal-list-item:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 1200px) {
  .journal-list-item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-list-item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-list-item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.journal-list-item:hover {
  box-shadow: 0 8px 16px rgba(255, 88, 133, 0.4);
  transform: translateY(-4px);
  transition: all 0.5s ease;
}
.journal-list-item:hover img {
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.journal-list-item-link {
  flex-shrink: 0;
}
.journal-list-item-wrapper {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 1500px) {
  .journal-list-item-wrapper {
    gap: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .journal-list-item-wrapper {
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-list-item-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-list-item-wrapper {
    gap: 2rem;
  }
}
.journal-list-item-thumbnail {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-align: center;
}
.journal-list-item-thumbnail img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1500px) {
  .journal-list-item-thumbnail img {
    max-width: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .journal-list-item-thumbnail img {
    max-width: 280px;
  }
}
@media screen and (max-width: 1200px) {
  .journal-list-item-thumbnail img {
    max-width: 250px;
  }
}
.journal-list-item-title {
  font-size: 27px;
  font-weight: 500 !important;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .journal-list-item-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .journal-list-item-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 639px) {
  .journal-list-item-title {
    font-size: 20px;
  }
}
.journal-list-item-text {
  margin-top: 5rem;
  font-size: 18px;
  font-weight: 500 !important;
}
@media screen and (max-width: 1200px) {
  .journal-list-item-text {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-list-item-text {
    margin-top: 2rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 376px) {
  .journal-list-item-text {
    margin-top: 1rem;
    font-size: 14px;
  }
}
.journal-list-meta-date {
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
}
@media screen and (max-width: 639px) {
  .journal-list-meta-date {
    font-size: 18px;
  }
}
.journal-list-meta-date .week {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .journal-list-meta-date .week {
    font-size: 14px;
  }
}
.journal-aside {
  position: absolute;
  top: 500px;
  right: 0;
  z-index: 5;
  /* アーカイブ */
  /* 人気記事ランキング */
}
@media screen and (max-width: 1200px) {
  .journal-aside {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 10rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 639px) {
  .journal-aside {
    margin-top: 5rem;
  }
}
.journal-aside-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.journal-aside-archive {
  display: flex;
  background-color: var(--pink);
  border-radius: 30px 0 0 30px;
  padding: 7rem 10rem 7rem 15rem;
  height: 380px;
  color: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .journal-aside-archive {
    padding: 5rem 5rem 10rem 12rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-aside-archive {
    padding: 5rem 5rem 10rem 12rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-aside-archive {
    padding: 5rem 5rem 10rem 8rem;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside-archive {
    padding: 3rem 5rem 8rem 8rem;
  }
}
.journal-aside-archive.is-open {
  height: 700px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .journal-aside-archive.is-open {
    height: 700px;
  }
}
@media screen and (max-width: 639px) {
  .journal-aside-archive.is-open {
    height: 700px;
  }
}
.journal-aside-archive a {
  color: #fff;
}
.journal-aside-archive-list {
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 639px) {
  .journal-aside-archive-list {
    font-size: 18px;
  }
}
@media screen and (max-width: 376px) {
  .journal-aside-archive-list {
    font-size: 16px;
  }
}
.journal-aside .archive-header {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 3rem;
  height: 100%;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .journal-aside .archive-header {
    gap: 2rem;
    top: -1.5rem;
    left: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside .archive-header {
    left: 0;
  }
}
.journal-aside .archive-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .journal-aside .archive-title {
    font-size: 18px;
  }
}
.journal-aside .archive-subtitle {
  font-size: 60px;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
  color: #fff;
  /* 文字の塗りの色を白に設定 */
  -webkit-text-stroke: 1px var(--pink);
  /* 縁取りの太さを1px、色を--pink変数で指定 */
}
.journal-aside .archive-subtitle img {
  width: 30px;
}
@media screen and (max-width: 639px) {
  .journal-aside .archive-subtitle img {
    width: 25px;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside .archive-subtitle img {
    width: 20px;
  }
}
.journal-aside-popular {
  display: flex;
  background-color: #C2F40F;
  border-radius: 30px 0 0 30px;
  padding: 7rem 7rem 7rem 15rem;
  height: -moz-max-content;
  height: max-content;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .journal-aside-popular {
    padding: 5rem 4rem 5rem 12rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-aside-popular {
    padding: 4rem 4rem 4rem 12rem;
    min-height: 400px;
  }
}
@media screen and (max-width: 639px) {
  .journal-aside-popular {
    min-height: 400px;
    padding: 3rem 3rem 3rem 10rem;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside-popular {
    padding: 3rem 3rem 3rem 6rem;
  }
}
.journal-aside-popular a {
  color: #fff;
}
.journal-aside-popular-list {
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 639px) {
  .journal-aside-popular-list {
    font-size: 18px;
  }
}
@media screen and (max-width: 376px) {
  .journal-aside-popular-list {
    font-size: 16px;
  }
}
.journal-aside .popular-header {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: 3rem;
  height: 100%;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .journal-aside .popular-header {
    top: -1.5rem;
    left: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside .popular-header {
    left: 0;
  }
}
.journal-aside .popular-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 3rem;
}
@media screen and (max-width: 639px) {
  .journal-aside .popular-title {
    font-size: 18px;
  }
}
.journal-aside .popular-subtitle {
  font-size: 60px;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
  color: #fff;
  /* 文字の塗りの色を白に設定 */
  -webkit-text-stroke: 1px #C2F40F;
  /* 縁取りの太さを1px、色を--pink変数で指定 */
}
.journal-aside .popular-subtitle img {
  width: 30px;
}
@media screen and (max-width: 639px) {
  .journal-aside .popular-subtitle img {
    width: 25px;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside .popular-subtitle img {
    width: 20px;
  }
}
.journal-aside .popular-journal-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 500px;
}
.journal-aside .popular-journal-list-item {
  background-color: #fff;
  border-radius: 20px;
  font-weight: 600;
  padding: 2rem 3rem 2rem 6rem;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .journal-aside .popular-journal-list-item {
    padding: 2rem 3rem 2rem 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-aside .popular-journal-list-item {
    padding: 2rem 1rem 2rem 1rem;
  }
}
@media screen and (max-width: 499px) {
  .journal-aside .popular-journal-list-item {
    padding: 1rem;
  }
}
.journal-aside .popular-journal-list-item a {
  color: #000;
}
.journal-aside .popular-journal-list-item::before {
  content: attr(data-rank);
  position: absolute;
  left: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  background-color: #FE9DB0;
  border-radius: 50%;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 23px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .journal-aside .popular-journal-list-item::before {
    left: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.journal-aside-arrow {
  font-size: 30px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  cursor: pointer;
  transform: rotate(90deg) translateX(-50%);
}
.journal-aside-arrow.is-open {
  transform: rotate(270deg);
}

.journal-tag {
  display: flex;
  font-size: 18px;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .journal-tag {
    font-size: 14px;
  }
}
.journal-tag-item {
  line-height: 1.5;
}
.journal-tag a {
  color: var(--pink);
}

.pagination {
  color: var(--pink);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 10rem;
}
@media screen and (max-width: 834px) {
  .pagination {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .pagination {
    font-size: 15px;
    gap: 1.5rem;
  }
}
.pagination a {
  color: var(--pink);
}
.pagination .current {
  color: #fff;
  background-color: var(--pink);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 639px) {
  .pagination .current {
    width: 35px;
    height: 35px;
  }
}
.pagination .prev-arrow img {
  transform: rotate(180deg);
}
.pagination .circle {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  border: 1px solid #FF5885;
}
@media screen and (max-width: 639px) {
  .pagination .circle {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 639px) {
  .pagination .circle img {
    width: 35%;
  }
}
.pagination .next:hover .circle {
  transition: 0.5s ease;
  transform: translateX(7px);
}
.pagination .prev:hover .circle {
  transition: 0.5s ease;
  transform: translateX(-7px);
}

.journal-detail-container {
  width: 90%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 20rem 50rem 20rem 15rem;
  background-color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 1200px) {
  .journal-detail-container {
    padding: 7rem 5rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-detail-container {
    padding: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail-container {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail-container {
    padding: 3rem 2rem;
  }
}
.journal-detail-heading {
  padding-bottom: 3rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 834px) {
  .journal-detail-heading {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail-heading {
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
  }
}
.journal-detail-title {
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .journal-detail-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .journal-detail-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail-title {
    font-size: 22px;
  }
}
.journal-detail .date {
  text-align: right;
  font-size: 18px;
  font-family: "Unbounded", sans-serif;
  color: #727171;
  line-height: 1;
  margin-top: 2rem;
}
@media screen and (max-width: 639px) {
  .journal-detail .date {
    font-size: 16px;
  }
}
.journal-detail .go-back {
  color: var(--pink);
  font-size: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 10rem;
}
@media screen and (max-width: 834px) {
  .journal-detail .go-back {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail .go-back {
    font-size: 16px;
    gap: 2rem;
  }
}
.journal-detail .go-back .circle {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  border: 1px solid #FF5885;
}
@media screen and (max-width: 639px) {
  .journal-detail .go-back .circle {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail .go-back .circle img {
    width: 35%;
  }
}
.journal-detail-content div#ez-toc-container {
  background-color: #f5f5f5;
  padding: 5rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1200px) {
  .journal-detail-content div#ez-toc-container {
    padding: 3rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .journal-detail-content div#ez-toc-container {
    padding: 2rem;
    margin-bottom: 5rem;
  }
}
.journal-detail-content div#ez-toc-container .ez-toc-title {
  color: var(--pink);
  font-size: 32px;
  font-weight: 500;
  font-family: "Unbounded", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1200px) {
  .journal-detail-content div#ez-toc-container .ez-toc-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .journal-detail-content div#ez-toc-container .ez-toc-title {
    font-size: 24px;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .journal-detail-content div#ez-toc-container .ez-toc-title {
    font-size: 20px;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
}
.journal-detail-content div#ez-toc-container ul.ez-toc-list a {
  color: #000;
  font-size: 20px;
}
@media screen and (max-width: 639px) {
  .journal-detail-content div#ez-toc-container ul.ez-toc-list a {
    font-size: 16px;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail-content div#ez-toc-container ul.ez-toc-list a {
    font-size: 14px;
  }
}
.journal-detail p {
  font-size: 16px;
}
.journal-detail h2.wp-block-heading {
  line-height: 1.2;
  color: var(--pink);
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--pink);
  font-size: 28px;
  margin-top: 4rem;
}
@media screen and (max-width: 639px) {
  .journal-detail h2.wp-block-heading {
    font-size: 22px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail h2.wp-block-heading {
    font-size: 20px;
  }
}
.journal-detail h3.wp-block-heading {
  line-height: 1.2;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #333;
  font-size: 28px;
  margin-top: 4rem;
}
@media screen and (max-width: 639px) {
  .journal-detail h3.wp-block-heading {
    font-size: 22px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail h3.wp-block-heading {
    font-size: 20px;
  }
}
.journal-detail h4.wp-block-heading {
  line-height: 1.2;
  margin-bottom: 4rem;
  border-left: 14px solid #000;
  padding-left: 3rem;
  font-size: 26px;
  margin-top: 3rem;
}
@media screen and (max-width: 639px) {
  .journal-detail h4.wp-block-heading {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail h4.wp-block-heading {
    font-size: 18px;
  }
}
.journal-detail h5.wp-block-heading {
  line-height: 1.2;
  color: var(--pink);
  margin-bottom: 4rem;
  font-size: 26px;
  margin-top: 4rem;
}
@media screen and (max-width: 639px) {
  .journal-detail h5.wp-block-heading {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail h5.wp-block-heading {
    font-size: 18px;
  }
}
.journal-detail h6.wp-block-heading {
  line-height: 1.2;
  margin-bottom: 4rem;
  font-size: 26px;
  margin-top: 4rem;
}
@media screen and (max-width: 639px) {
  .journal-detail h6.wp-block-heading {
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .journal-detail h6.wp-block-heading {
    font-size: 18px;
  }
}/*# sourceMappingURL=journal.css.map */