@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/NotoSans/noto-sans-jp-v52-japanese-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/NotoSans/noto-sans-jp-v52-japanese-900.woff2") format("woff2");
}
:root {
  --contents-margin: 5em;
  --accent-color: #6E3D99;
  --hover-color: #CC2C29;
  --background-color: #fff;
  --main-text-color: #333;
  --header-height: 60px;
  --slide-image-ratio-x: 3;
  --slide-image-ratio-y: 2;
  --slide-width-per: 100%;
  --slide-width-vw: 100vw;
  --contents-title: 6em;
  --contents-text: 1.2em;
  --main-text: 1.6em;
  --description-text: 1.2em;
  --slide-title-font-size: 2.5rem;
  --slide-source-font-size: 1.2rem;
  --circle-size: 100px;
}

@media (min-width: 756px) {
  :root {
    --contents-margin: 15em;
    --header-height: 80px;
    --contents-title: 12em;
    --contents-text: 2em;
    --main-text: 1.8em;
    --description-text: 1.4em;
    --slide-title-font-size: 3rem;
    --slide-source-font-size: 1.6rem;
    --circle-size: 150px;
    --product-book-title: 3em;
    --product-book-text: 1.2em;
  }
}
@media (min-width: 1500px) {
  :root {
    --slide-title-font-size: 4rem;
  }
}
html {
  font-size: 62.5%;
  color: var(--main-text-color);
}

body {
  font-family: "Noto Sans JP", serif;
}

.fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.contents-link-circle {
  margin: 10em auto;
  width: 100px;
  height: 100px;
  border: solid 2px var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contents-link-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  background: var(--accent-color);
  transition: all 0.5s;
  border-radius: 50%;
}
.contents-link-circle:hover:after {
  width: 100%;
  height: 100%;
}
.contents-link-circle:hover a p {
  color: white;
}
.contents-link-circle a {
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents-link-circle a p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--accent-color);
}

.thumbnail {
  width: 100%;
  height: 80vh;
}
@media (min-width: 756px) {
  .thumbnail {
    height: 100vh;
  }
}
.thumbnail .slider {
  margin-bottom: 10vw;
  padding: 0 0 100px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.thumbnail .slider .slider-wrapper {
  width: var(--slide-width-per);
  height: 80vh;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 756px) {
  .thumbnail .slider .slider-wrapper {
    height: 100vh;
  }
}
.thumbnail .slider .slider-wrapper .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 80%;
  height: 100%;
}
.thumbnail .slider .slider-wrapper .slide-image.isShow .slide-image-wrapper a .image-box {
  width: 100%;
}
.thumbnail .slider .slider-wrapper .slide-image.isShow .slide-image-wrapper a .image-box img {
  transform: scale(1) !important;
}
.thumbnail .slider .slider-wrapper .slide-image.isShow .slide-image-wrapper a .text .text-wrapper .description {
  width: 100%;
}
.thumbnail .slider .slider-wrapper .slide-image.isShow .circle-wrapper .inside-image svg {
  animation: rotateCircle 6s linear forwards;
}
.thumbnail .slider .slider-wrapper .slide-image.isShow .circle-wrapper .inside-image a img {
  animation: slideInIcon 1s ease forwards;
}
@keyframes slideInIcon {
  from {
    transform: translateY(150%);
  }
  to {
    transform: translateY(0);
  }
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  transition: all 1s;
  transform-origin: left;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .image-box::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slide-width-vw);
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s linear;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text {
  position: absolute;
  left: 5%;
  font-size: var(--slide-title-font-size);
  bottom: calc(var(--circle-size) / 2 + 25px);
  width: 80%;
  height: calc(var(--slide-title-font-size) * 1.3 * 4 + var(--slide-source-font-size) * 1.5 * 1.5 + 4rem);
}
@media (min-width: 756px) {
  .thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text {
    width: 50%;
  }
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper {
  position: relative;
  height: 100%;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  transition: all 1s;
  transition-delay: 0.6s;
  overflow: hidden;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description .title {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--slide-width-vw) * 0.8);
  padding: 2rem;
  font-size: var(--slide-title-font-size);
  background: white;
}
@media (min-width: 756px) {
  .thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description .title {
    width: calc(var(--slide-width-vw) * 0.5);
  }
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description .title h3 {
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description .source {
  position: absolute;
  bottom: 0;
  line-height: 1.5;
  height: calc(1.5em + 2rem);
  font-size: var(--slide-source-font-size);
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  background: var(--main-text-color);
}
.thumbnail .slider .slider-wrapper .slide-image .slide-image-wrapper a .text .text-wrapper .description .source p {
  color: white;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thumbnail .slider .slider-wrapper .slide-image .circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: calc(var(--circle-size) * 1.2);
  height: calc(var(--circle-size) * 1.2);
  overflow: hidden;
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper .inside-image {
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper .inside-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transform: rotate(180deg);
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper .inside-image:after {
  content: "";
  display: none;
  border: solid 3px white;
  border-bottom: solid 3px transparent;
  width: 100%;
  height: 50%;
  border-radius: calc(var(--circle-size) * 1.2) calc(var(--circle-size) * 1.2) 0 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  z-index: -1;
  animation: rotateCircle 2s linear infinite;
}
@keyframes rotateCircle {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper .inside-image a {
  width: 80%;
  height: 80%;
}
.thumbnail .slider .slider-wrapper .slide-image .circle-wrapper .inside-image a img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-150%);
  z-index: 10;
}
.thumbnail .slider .slider-button {
  margin-top: calc(var(--circle-size) * 1.2 / 2 + 20px);
  display: flex;
  justify-content: center;
}
.thumbnail .slider .slider-button ul {
  display: flex;
}
.thumbnail .slider .slider-button ul li {
  margin: 0 0.5em;
}
.thumbnail .slider .slider-button ul li button {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  text-align: center;
  background: whitesmoke;
}
.thumbnail .slider .slider-button ul li.isShow button {
  background: black;
}

#contents {
  margin-top: 20em;
  background: var(--background-color);
}

.profile {
  margin: 10em 0 20em;
  position: relative;
}
.profile::before {
  content: "";
  position: absolute;
  top: calc(var(--contents-title) / 2);
  left: 0;
  width: 100%;
  height: 100%;
  background: whitesmoke;
}
.profile .wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.profile .wrapper * {
  z-index: 10;
}
.profile .wrapper .title {
  text-align: center;
  position: relative;
}
.profile .wrapper .title h2 {
  font-size: var(--contents-title);
  font-weight: bold;
  text-transform: uppercase;
}
.profile .wrapper .title p {
  font-size: var(--contents-text);
}
.profile .wrapper .member {
  margin-top: 5em;
}
.profile .wrapper .member-wrapper {
  display: flex;
  justify-content: space-around;
  flex-flow: column;
}
@media (min-width: 756px) {
  .profile .wrapper .member-wrapper {
    flex-flow: row;
  }
}
.profile .wrapper .member-wrapper .contents {
  width: 100%;
  display: flex;
  flex-flow: column;
  margin-top: 5em;
}
@media (min-width: 756px) {
  .profile .wrapper .member-wrapper .contents {
    width: 45%;
  }
}
.profile .wrapper .member-wrapper .contents .image, .profile .wrapper .member-wrapper .contents .info {
  display: flex;
}
.profile .wrapper .member-wrapper .contents .image {
  width: 100%;
  text-align: center;
  align-items: center;
  flex-flow: column;
  flex-grow: 1;
}
.profile .wrapper .member-wrapper .contents .image .text-box {
  text-align: center;
  margin: 1em auto 3em;
  display: flex;
  align-items: last baseline;
  flex-grow: 1;
}
.profile .wrapper .member-wrapper .contents .image .text-box p {
  font-size: 10vw;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--main-text-color);
  border-left: 3px solid var(--main-text-color);
  border-radius: 0 0 0 20px;
}
@media (min-width: 756px) {
  .profile .wrapper .member-wrapper .contents .image .text-box p {
    font-size: calc(var(--contents-title) / 2);
  }
}
.profile .wrapper .member-wrapper .contents .image .text-box p:before {
  position: absolute;
  right: 50px;
  bottom: -21px;
  width: 0;
  height: 0;
  content: "";
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: var(--main-text-color) transparent transparent transparent;
}
.profile .wrapper .member-wrapper .contents .image .text-box p:after {
  position: absolute;
  right: 54px;
  bottom: -14px;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 14px 0 0;
  border-style: solid;
  border-color: whitesmoke transparent transparent transparent;
}
.profile .wrapper .member-wrapper .contents .image-box {
  width: 80%;
  aspect-ratio: 1/1;
  max-width: 400px;
  max-height: 400px;
  border-radius: 50%;
  overflow: hidden;
}
.profile .wrapper .member-wrapper .contents .image-box:hover img {
  transform: scale(1.1);
}
.profile .wrapper .member-wrapper .contents .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.5s;
}
.profile .wrapper .member-wrapper .contents .info {
  text-align: center;
  width: 100%;
  align-items: center;
  flex-flow: column;
}
.profile .wrapper .member-wrapper .contents .info section {
  margin: 1em 0;
}
.profile .wrapper .member-wrapper .contents .info .name {
  text-align: center;
  width: 100%;
  flex-grow: 1;
}
.profile .wrapper .member-wrapper .contents .info .name h3 {
  font-size: 4em;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.profile .wrapper .member-wrapper .contents .info .name h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 50%;
  background: var(--accent-color);
  opacity: 0.6;
  z-index: -1;
}
.profile .wrapper .member-wrapper .contents .info .birth {
  width: 100%;
  flex-grow: 1;
}
.profile .wrapper .member-wrapper .contents .info .birth p {
  font-size: 1.4em;
}
.profile .wrapper .member-wrapper .contents .info .description {
  width: 100%;
  flex-grow: 1;
}
.profile .wrapper .member-wrapper .contents .info .description p {
  font-size: 1.6em;
}
.profile .wrapper .member-wrapper .contents .info .link {
  flex-grow: 1;
  width: 100%;
}
.profile .wrapper .member-wrapper .contents .info .link ul {
  display: flex;
  justify-content: center;
}
.profile .wrapper .member-wrapper .contents .info .link ul li {
  margin-right: 1em;
}
.profile .wrapper .member-wrapper .contents .info .link ul li:last-child {
  margin-right: 0;
}
.profile .wrapper .member-wrapper .contents .info .link ul li a:hover svg {
  fill: var(--hover-color);
}
.profile .wrapper .member-wrapper .contents .info .link ul li a svg {
  fill: var(--accent-color);
  transition: fill 0.5s;
}
.profile .wrapper .member-wrapper .contents .info .link-site {
  flex-grow: 1;
  width: 100%;
}
.profile .wrapper .member-wrapper .contents .info .link-site .title {
  margin-bottom: 1em;
}
.profile .wrapper .member-wrapper .contents .info .link-site .title a:hover p {
  color: var(--hover-color);
}
.profile .wrapper .member-wrapper .contents .info .link-site .title a:hover p span svg {
  fill: var(--hover-color);
}
.profile .wrapper .member-wrapper .contents .info .link-site .title a p {
  font-size: 1.6em;
  transition: color 0.5s;
}
.profile .wrapper .member-wrapper .contents .info .link-site .title a p span svg {
  width: 1em;
  height: 1em;
  transition: fill 0.5s;
}

.contents-title {
  position: relative;
  display: flex;
  align-items: center;
}
.contents-title .text {
  margin-right: 5em;
}
.contents-title .text h2 {
  font-size: 40px;
  font-size: 12.5vw;
  font-weight: bold;
  text-transform: uppercase;
}
@media (min-width: 756px) {
  .contents-title .text h2 {
    font-size: var(--contents-title);
  }
}
.contents-title .text p {
  font-size: var(--contents-text);
  font-weight: bold;
}
.contents-title .border {
  flex-grow: 1;
  height: 2px;
  background: var(--main-text-color);
}

.contents-side-title {
  position: relative;
  display: flex;
  align-items: center;
  --contents-title: 12em;
  --contents-text: 1.6em;
}
.contents-side-title .text {
  margin-right: 5em;
}
.contents-side-title .text h2 {
  font-size: var(--contents-title);
  font-weight: bold;
  text-transform: uppercase;
}
.contents-side-title .text p {
  font-size: var(--contents-text);
  font-weight: bold;
}

.new-contents {
  margin-top: var(--contents-margin);
}
.new-contents .wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.new-contents .wrapper .article {
  margin-top: 5em;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media (min-width: 756px) {
  .new-contents .wrapper .article {
    flex-flow: row;
  }
}
.new-contents .wrapper .article-box {
  width: 100%;
  margin-top: 5em;
}
@media (min-width: 756px) {
  .new-contents .wrapper .article-box {
    width: 30%;
  }
}
.new-contents .wrapper .article-box .article-thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.new-contents .wrapper .article-box .article-thumbnail:hover img {
  transform: scale(1.1);
}
.new-contents .wrapper .article-box .article-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s;
}
.new-contents .wrapper .article-box .article-thumbnail .article-category {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 1em;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--main-text-color);
  font-size: var(--main-text);
  padding: 0.5em 1em;
  transition: background 0.5s;
}
.new-contents .wrapper .article-box .article-thumbnail .article-category:hover {
  background: var(--hover-color);
}
.new-contents .wrapper .article-box .article-thumbnail .article-category a p {
  color: white;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.new-contents .wrapper .article-box .article-description .article-title {
  margin-top: 1em;
}
.new-contents .wrapper .article-box .article-description .article-title:hover {
  opacity: 0.6;
}
.new-contents .wrapper .article-box .article-description .article-title a h3 {
  font-size: var(--main-text);
  font-weight: bold;
  line-height: 1.5;
}
.new-contents .wrapper .article-box .article-description .article-source, .new-contents .wrapper .article-box .article-description .article-date {
  margin-top: 1em;
}
.new-contents .wrapper .article-box .article-description .article-source:hover p, .new-contents .wrapper .article-box .article-description .article-date:hover p {
  color: var(--main-text-color);
}
.new-contents .wrapper .article-box .article-description .article-source p, .new-contents .wrapper .article-box .article-description .article-date p {
  font-size: var(--description-text);
  color: gray;
  font-weight: bold;
  transition: all 0.3s;
}
.new-contents .wrapper .article-box .article-description .article-tag {
  margin-top: 1em;
  font-size: 1.2em;
  width: -moz-fit-content;
  width: fit-content;
}
.new-contents .wrapper .article-box .article-description .article-tag:hover a p {
  color: var(--main-text-color);
}
.new-contents .wrapper .article-box .article-description .article-tag a p {
  text-transform: uppercase;
  color: gray;
  font-weight: bold;
  transition: all 0.3s;
}

.category {
  margin-top: var(--contents-margin);
}
.category .wrapper .contents-title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.category .wrapper .article-list {
  margin-top: 5em;
}
.category .wrapper .article-list .article-list-wrapper .list .category-title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.category .wrapper .article-list .article-list-wrapper .list .category-title h3 {
  font-size: calc(var(--main-text) * 2);
  font-weight: bold;
  text-transform: uppercase;
}
.category .wrapper .article-list .article-list-wrapper .list ul {
  margin-top: 2em;
  width: 100%;
  padding: 0 5%;
  white-space: nowrap;
  overflow-x: scroll;
}
.category .wrapper .article-list .article-list-wrapper .list ul::-webkit-scrollbar {
  display: none;
}
.category .wrapper .article-list .article-list-wrapper .list ul li {
  display: inline-block;
  width: 90%;
  margin-right: 5%;
  vertical-align: top;
}
@media (min-width: 756px) {
  .category .wrapper .article-list .article-list-wrapper .list ul li {
    width: 28%;
  }
}
.category .wrapper .article-list .article-list-wrapper .list ul li .image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .image img:hover {
  transform: scale(1.1);
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text {
  width: 95%;
  margin: 1em auto;
  white-space: wrap;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .title {
  white-space: normal;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .title p {
  font-size: var(--main-text);
  font-weight: bold;
  transition: color 0.5s;
  white-space: normal;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .title p:hover {
  color: var(--hover-color);
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .source {
  margin-top: 1em;
  white-space: normal;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .source p {
  color: gray;
  font-weight: bold;
  font-size: var(--description-text);
  white-space: normal;
}
.category .wrapper .article-list .article-list-wrapper .list ul li .text .source p:hover {
  color: var(--hover-color);
}
.category .wrapper .article-list .article-list-wrapper .list .link {
  margin-top: 2.5em;
  display: flex;
  justify-content: end;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.category .wrapper .article-list .article-list-wrapper .list .link a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
.category .wrapper .article-list .article-list-wrapper .list .link a:hover p {
  color: var(--hover-color);
}
.category .wrapper .article-list .article-list-wrapper .list .link a:hover svg {
  fill: var(--hover-color);
  transform: translateX(0.5em);
}
.category .wrapper .article-list .article-list-wrapper .list .link a p {
  font-size: 1.4em;
  font-weight: bold;
  transition: color 0.5s;
}
.category .wrapper .article-list .article-list-wrapper .list .link a svg {
  width: 1.4em;
  transition: all 0.5s;
}

.pickup {
  margin-top: var(--contents-margin);
  padding: 5em 0;
  background: whitesmoke;
}
.pickup .wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.pickup .wrapper .article {
  margin-top: 5em;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media (min-width: 756px) {
  .pickup .wrapper .article {
    flex-flow: row;
  }
}
.pickup .wrapper .article-box {
  width: 100%;
  position: relative;
  margin-top: 5em;
}
@media (min-width: 756px) {
  .pickup .wrapper .article-box {
    width: 30%;
  }
}
.pickup .wrapper .article-box .article-thumbnail {
  width: 100%;
  aspect-ratio: 37/50;
  position: relative;
  overflow: hidden;
  border-radius: 50px 50px 50px 0;
}
.pickup .wrapper .article-box .article-thumbnail:hover img {
  transform: scale(1.1);
}
.pickup .wrapper .article-box .article-thumbnail::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 50px 50px 50px 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}
.pickup .wrapper .article-box .article-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 50px 50px 0;
  transform: scale(1);
  transition: transform 0.5s;
}
.pickup .wrapper .article-box .article-description {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 90%;
}
.pickup .wrapper .article-box .article-description .article-category {
  margin-top: 1em;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--main-text-color);
  font-size: var(--description-text);
  padding: 0.5em 1em;
  transition: background 0.5s;
}
.pickup .wrapper .article-box .article-description .article-category:hover {
  background: var(--hover-color);
}
.pickup .wrapper .article-box .article-description .article-category a p {
  color: white;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pickup .wrapper .article-box .article-description .article-title {
  margin-top: 1em;
}
.pickup .wrapper .article-box .article-description .article-title:hover a h3 {
  opacity: 0.8;
}
.pickup .wrapper .article-box .article-description .article-title a h3 {
  font-size: var(--main-text);
  font-weight: bold;
  line-height: 1.5;
  color: white;
}
.pickup .wrapper .article-box .article-description .article-source, .pickup .wrapper .article-box .article-description .article-date {
  margin-top: 1em;
}
.pickup .wrapper .article-box .article-description .article-source:hover, .pickup .wrapper .article-box .article-description .article-date:hover {
  opacity: 0.8;
}
.pickup .wrapper .article-box .article-description .article-source p, .pickup .wrapper .article-box .article-description .article-date p {
  font-size: var(--description-text);
  color: white;
  font-weight: bold;
}
.pickup .wrapper .article-box .article-description .article-tag {
  margin-top: 1em;
  font-size: var(--description-text);
  width: -moz-fit-content;
  width: fit-content;
}
.pickup .wrapper .article-box .article-description .article-tag:hover {
  opacity: 0.8;
}
.pickup .wrapper .article-box .article-description .article-tag a p {
  text-transform: uppercase;
  color: white;
  font-weight: bold;
}

.product-book {
  margin-top: var(--contents-margin);
  padding: 5em 0;
  background: whitesmoke;
  border-radius: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.product-book .wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}
@media (min-width: 756px) {
  .product-book .wrapper {
    flex-flow: row;
  }
}
.product-book .wrapper .contents-side-title {
  --contents-title: 10vw;
  --contents-text: 1.6em;
  width: 100%;
}
@media (min-width: 756px) {
  .product-book .wrapper .contents-side-title {
    --contents-title: 6vw;
    width: 50%;
  }
}
.product-book .wrapper .contents-side-title span {
  display: block;
}
.product-book .wrapper .show-product {
  margin-top: 2.5em;
  width: 100%;
  border-radius: 20px;
  background-color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 756px) {
  .product-book .wrapper .show-product {
    width: 50%;
  }
}
.product-book .wrapper .show-product .product-wrapper {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1/1.41;
}
@media (min-width: 756px) {
  .product-book .wrapper .show-product .product-wrapper {
    max-height: 60vh;
  }
}
.product-book .wrapper .show-product .product-wrapper .product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-book .wrapper .show-product .product-wrapper .product-slide.isShow .image .image-box a {
  width: 100%;
}
.product-book .wrapper .show-product .product-wrapper .product-slide:hover .info {
  transform: translateY(0);
}
.product-book .wrapper .show-product .product-wrapper .product-slide .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2.5em 0;
}
.product-book .wrapper .show-product .product-wrapper .product-slide .image .image-box {
  width: 100%;
  aspect-ratio: 1/1.41;
  position: sticky;
}
@media (min-width: 756px) {
  .product-book .wrapper .show-product .product-wrapper .product-slide .image .image-box {
    width: auto;
    height: calc(60vh - 2.2em - 5em);
  }
}
.product-book .wrapper .show-product .product-wrapper .product-slide .image .image-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  display: block;
  overflow: hidden;
  transition: all 0.5s;
}
.product-book .wrapper .show-product .product-wrapper .product-slide .image .image-box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.41;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-book .wrapper .show-product .product-wrapper .product-slide .image .cite {
  margin: 1em 0 0;
  text-align: center;
}
.product-book .wrapper .show-product .info-wrapper {
  display: none;
}
@media (min-width: 756px) {
  .product-book .wrapper .show-product .info-wrapper {
    display: block;
  }
}
.product-book .wrapper .show-product .info-wrapper .info {
  transform: translateY(-101%);
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: scroll;
  border-radius: 20px;
  padding: 5em 10%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  z-index: 100;
}
.product-book .wrapper .show-product .info-wrapper .info::-webkit-scrollbar {
  display: none;
}
.product-book .wrapper .show-product .info-wrapper .info.isShow {
  transform: translateY(0);
}
.product-book .wrapper .show-product .info-wrapper .info .title {
  font-size: var(--product-book-title);
  line-height: 1.5;
  font-weight: bold;
}
.product-book .wrapper .show-product .info-wrapper .info .release-date {
  margin-top: 1em;
}
.product-book .wrapper .show-product .info-wrapper .info .release-date P {
  font-size: var(--product-book-text);
}
.product-book .wrapper .show-product .info-wrapper .info .price {
  margin-top: 1em;
}
.product-book .wrapper .show-product .info-wrapper .info .price P {
  font-size: var(--product-book-text);
}
.product-book .wrapper .show-product .info-wrapper .info .description {
  margin-top: 1em;
  padding: 2em;
  background: rgba(102, 102, 102, 0.6);
}
.product-book .wrapper .show-product .info-wrapper .info .description p {
  font-size: var(--product-book-text);
  line-height: 1.5;
}
.product-book .wrapper .show-product .info-wrapper .info .description cite {
  text-align: right;
  display: block;
  margin-top: 0.5em;
}
.product-book .wrapper .show-product .info-wrapper .info .description cite a {
  font-size: var(--product-book-text);
}
.product-book .wrapper .show-product .info-wrapper .info .product-link {
  margin-top: 1em;
  text-align: center;
}
.product-book .wrapper .show-product .info-wrapper .info .product-link a {
  display: block;
  background: white;
  border-radius: 0.5em;
}
.product-book .wrapper .show-product .info-wrapper .info .product-link a p {
  font-size: var(--product-book-text);
  padding: 0.5em 1em;
  color: var(--main-text-color);
}

.birthplace {
  margin-top: var(--contents-margin);
  --pin-text-size: 4em;
}
.birthplace .wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.birthplace .wrapper .place-list-wrapper {
  display: flex;
  justify-content: space-around;
  flex-flow: column;
}
@media (min-width: 756px) {
  .birthplace .wrapper .place-list-wrapper {
    flex-flow: row;
  }
}
.birthplace .wrapper .place-list-wrapper .contents {
  margin-top: calc(var(--contents-margin) * 2);
  width: 100%;
  background: whitesmoke;
  padding: calc(var(--pin-text-size) / 2);
  border-radius: 20px;
  position: relative;
}
@media (min-width: 756px) {
  .birthplace .wrapper .place-list-wrapper .contents {
    width: 40%;
    padding: 5em;
    margin-top: var(--contents-margin);
  }
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .image:hover img {
  transform: scale(1.1);
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .pin {
  position: absolute;
  top: 0;
  left: calc(var(--pin-text-size) / 2);
  transform: translateY(-70%);
}
@media (min-width: 756px) {
  .birthplace .wrapper .place-list-wrapper .contents-wrapper .pin {
    top: 5%;
    right: 0;
    left: auto;
    transform: translateY(0);
    transform: translateX(70%);
    writing-mode: vertical-rl;
    --pin-text-size: 10em;
  }
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .pin svg, .birthplace .wrapper .place-list-wrapper .contents-wrapper .pin p {
  display: inline-block;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .pin svg {
  width: var(--pin-text-size);
  height: var(--pin-text-size);
  fill: var(--main-text-color);
}
@media (min-width: 756px) {
  .birthplace .wrapper .place-list-wrapper .contents-wrapper .pin svg {
    transform: rotate(90deg);
  }
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .pin p {
  font-size: var(--pin-text-size);
  font-weight: bold;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text {
  margin-top: 2em;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .description {
  padding: 1em;
  background: white;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .description p {
  font-size: var(--description-text);
  font-weight: bold;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents {
  margin-top: 2em;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .title h3 {
  font-size: var(--main-text);
  font-weight: bold;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .link-text {
  margin-top: 1em;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .link-text:hover a {
  color: var(--hover-color);
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .link-text:hover a svg {
  fill: var(--hover-color);
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .link-text a {
  font-size: var(--description-text);
  font-weight: bold;
  transition: all 0.5s;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link-original-contents .link-text a svg {
  margin-left: 0.7em;
  width: 1em;
  height: 1em;
  transition: all 0.5s;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link {
  margin-top: 4em;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link .title h3 {
  font-size: var(--main-text);
  font-weight: bold;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link ul li {
  margin-top: 1em;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link ul li:hover a {
  color: var(--hover-color);
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link ul li a {
  font-size: var(--description-text);
  font-weight: bold;
  transition: all 0.5s;
}
.birthplace .wrapper .place-list-wrapper .contents-wrapper .text .link ul li a span {
  display: block;
  font-size: 0.8em;
  color: gray;
}

.original {
  margin-top: var(--contents-margin);
}
.original .wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.original .wrapper .article {
  margin-top: 5em;
}
.original .wrapper .article-wrapper {
  display: flex;
  justify-content: space-around;
  flex-flow: column;
}
@media (min-width: 756px) {
  .original .wrapper .article-wrapper {
    flex-flow: row;
  }
}
.original .wrapper .article-wrapper .top-article {
  width: 100%;
}
@media (min-width: 756px) {
  .original .wrapper .article-wrapper .top-article {
    width: 45%;
  }
}
.original .wrapper .article-wrapper .top-article-wrapper {
  padding: 2em;
  background: whitesmoke;
}
@media (min-width: 756px) {
  .original .wrapper .article-wrapper .top-article-wrapper {
    padding: 5em;
  }
}
.original .wrapper .article-wrapper .top-article-wrapper .image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.original .wrapper .article-wrapper .top-article-wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.original .wrapper .article-wrapper .top-article-wrapper .image img:hover {
  transform: scale(1.1);
}
.original .wrapper .article-wrapper .top-article-wrapper .text {
  margin: 2em 0;
}
.original .wrapper .article-wrapper .top-article-wrapper .text .title:hover a h3 {
  color: var(--hover-color);
}
.original .wrapper .article-wrapper .top-article-wrapper .text .title a h3 {
  font-size: var(--main-text);
  font-weight: bold;
  transition: all 0.5s;
}
.original .wrapper .article-wrapper .top-article-wrapper .text .descriptopn {
  margin-top: 0.5em;
}
.original .wrapper .article-wrapper .top-article-wrapper .text .descriptopn p {
  font-size: var(--description-text);
  font-weight: bold;
  color: gray;
}
.original .wrapper .article-wrapper .top-article-wrapper .text .date {
  margin-top: 1em;
}
.original .wrapper .article-wrapper .top-article-wrapper .text .date p {
  font-size: var(--description-text);
  color: gray;
}
.original .wrapper .article-wrapper .article-list {
  margin-top: 5em;
  width: 100%;
}
@media (min-width: 756px) {
  .original .wrapper .article-wrapper .article-list {
    width: 45%;
  }
}
.original .wrapper .article-wrapper .article-list ul li {
  border-bottom: solid 1px var(--main-text-color);
  padding: 2em 1em;
}
.original .wrapper .article-wrapper .article-list ul li:first-child {
  border-top: solid 1px var(--main-text-color);
}
.original .wrapper .article-wrapper .article-list ul li .title:hover a p {
  color: var(--hover-color);
  transition: all 0.5s;
}
.original .wrapper .article-wrapper .article-list ul li .title a p {
  font-size: var(--main-text);
  font-weight: bold;
}
.original .wrapper .article-wrapper .article-list ul li .description {
  margin-top: 0.5em;
}
.original .wrapper .article-wrapper .article-list ul li .description p {
  font-size: var(--description-text);
  color: gray;
}/*# sourceMappingURL=style.css.map */