/* reset */
html, body {
  margin: 0;
  font-style: normal;
  font-size: 14px;
  color: #262626;
  background-color: #eaeaea;
}

a {
  text-decoration: none;
  color: #262626;
}

.mainImageArea {
  margin-left: 0;
  height: calc(100% + 40px);
  transition: margin-left 0.5s ease-in-out;
  width: 200%;
  perspective: 50em;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 740px) {
  .mainImageArea {
    height: calc(100% - 80px);
  }
}
.mainImageArea.transitionOff {
  transition: none;
}

.mainImageAreaLayout {
  flex-basis: 50%;
  perspective: 50em;
}
.mainImageAreaLayout > div {
  margin: 0 auto;
}

.mainImageController {
  position: absolute;
  top: 50%;
  margin-top: 10px;
  right: 5px;
  z-index: 100;
  rotate: 90deg;
}
@media (max-width: 740px) {
  .mainImageController {
    display: none;
  }
}
.mainImageController__button {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  border-radius: 50%;
  border: solid 0.8px #555555;
}
.mainImageController__button:hover {
  cursor: pointer;
}
.mainImageController__button--on {
  background-color: #555555;
}
.mainImageController__button--sp {
  display: inline-block;
  margin: 0 30px;
}
.mainImageController__button--sp img {
  width: 9px;
}
.mainImageController__button--sp:hover {
  cursor: pointer;
}
.mainImageController__button--sp--off {
  opacity: 0.3;
}
.mainImageController__button--sp--off:hover {
  cursor: default;
}
.mainImageController--sp {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 51.5vw;
  margin-left: -71.5px;
  z-index: 100;
}
@media (min-width: 740px) {
  .mainImageController--sp {
    display: none;
  }
}

.mainImage, .mainImage--book, .mainImage--record {
  perspective: 50em;
  display: grid;
  transition: all ease 0.5s;
  transform: rotateX(1deg) rotateY(-1deg);
}
.mainImage img, .mainImage--book img, .mainImage--record img {
  width: 100%;
}
.mainImage > div, .mainImage--book > div, .mainImage--record > div {
  grid-area: 1/1;
}
.mainImage--record {
  width: 93%;
  max-width: 820px;
}
.mainImage--book {
  width: 58.5%;
  max-width: 540px;
}
@media (max-width: 740px) {
  .mainImage--book {
    width: 78.5%;
  }
}
.mainImage__wrap, .mainImage__wrap--book, .mainImage__wrap--record {
  display: grid;
}
.mainImage__wrap > *, .mainImage__wrap--book > *, .mainImage__wrap--record > * {
  grid-area: 1/1;
}
.mainImage__wrap--record {
  width: 74.3%;
}
@media (max-width: 740px) {
  .mainImage__wrap--record {
    width: 85%;
    margin: 120px auto 0;
  }
}
.mainImage__wrap--book {
  width: 100%;
}
@media (max-width: 740px) {
  .mainImage__wrap--book {
    width: 95%;
    margin: 35px auto 0;
  }
}
.mainImage__vinyl {
  width: 72%;
  margin-top: 10px;
  margin-left: 28%;
}
.mainImage__vinyl__link {
  line-height: 1;
}
@media (max-width: 740px) {
  .mainImage__vinyl {
    width: 80%;
    margin: 20px auto;
  }
}
.mainImage__text {
  z-index: 1;
}
.mainImage__animationArea {
  display: grid;
}
.mainImage__animationItem {
  grid-area: 1/1;
  z-index: 1;
  animation: image-switch-animation 10.5s infinite;
}
.mainImage__animationItem:nth-of-type(1) {
  animation-delay: 7s;
}
.mainImage__animationItem:nth-of-type(2) {
  animation-delay: 3.5s;
}
.mainImage__animationItem:nth-of-type(3) {
  animation-delay: 0s;
}

@keyframes image-switch-animation {
  0% {
    opacity: 1;
  }
  32% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  98% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.postItem {
  display: flex;
  align-items: center;
  transition: all ease-out 0.05s;
}
.postItem--on {
  transform: scale(1.3);
  z-index: 100;
}
.postItem__imageBox {
  width: 100%;
  max-height: 400px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  opacity: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.postItem__imageBox--neutral {
  transform: translate(0px) !important;
}
.postItem__imageWrap {
  display: inline-block;
  height: 100%;
  transition: all ease-out 0.5s;
}
.postItem__image {
  display: block;
  margin: 0 auto;
  width: 100%;
  transition: all ease-out 0.4s;
  transition-delay: 0.05s;
}
.postItem__image--on {
  transform: rotateZ(1deg) !important;
}
.postItem__image--off {
  opacity: 0.1 !important;
  transform: scale(0.93) rotateZ(0deg) !important;
}
.postItem__text {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 10px 15px 10px 30px;
  margin-left: -100px;
  position: absolute;
  left: 100%;
  background-color: #555555;
  border-radius: 1px;
  color: #ffffff;
  text-align: right;
  opacity: 0;
  transition: all ease-out 0.02s;
  transition-delay: 0.305s;
  visibility: hidden;
}
@media (min-width: 741px) {
  .postItem:nth-child(3n) .postItem__text {
    padding: 10px 30px 10px 15px;
    left: auto;
    right: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: -100px;
  }
}
@media (max-width: 740px) {
  .postItem__text {
    max-width: 30.76vw;
    padding: 10px 3.076vw 10px 4.614vw;
    margin-left: -50px;
  }
  .postItem:nth-child(2n) .postItem__text {
    padding: 10px 4.614vw 10px 3.076vw;
    left: auto;
    right: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: -50px;
  }
}
.postItem__title {
  margin: 0 0 1px;
  font-size: 13.842px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 1px;
  font-family: "Sarabun", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
}
@media (max-width: 740px) {
  .postItem__title {
    font-size: 10.3815px;
  }
}
.postItem__caption {
  font-size: 9.228px;
  margin: 0;
}

.page--profile .wrap {
  height: auto;
}
@media (max-width: 740px) {
  .page--profile .wrap {
    overflow: hidden;
  }
}
.page--profile main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 740px) {
  .page--profile main {
    padding-top: 80px;
  }
}
.page--profile .languageSelecter {
  text-align: right;
  padding: 0 20px;
}
.page--profile .languageSelecter span {
  margin: 0 5px;
}
.page--profile .profileBox {
  display: grid;
  grid-template-columns: 150px 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  padding: 0 20px;
}
@media (max-width: 740px) {
  .page--profile .profileBox {
    grid-template-columns: 1fr;
  }
}
.page--profile .profileBefore {
  margin-bottom: 10px;
}
.page--profile .profileBefore__imgBox {
  margin-right: 20px;
  margin-bottom: 12px;
  margin-top: 15px;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 740px) {
  .page--profile .profileBefore__imgBox {
    margin-top: 0;
    margin-right: 40px;
  }
}
.page--profile .profileBefore__textBox {
  display: inline-block;
  vertical-align: top;
}
.page--profile .profileBefore__img {
  width: 200px;
}
@media (max-width: 740px) {
  .page--profile .profileBefore__img {
    width: 100%;
  }
}
.page--profile .profileBefore__name {
  font-weight: bold;
  font-size: 16px;
}
.page--profile .profileBefore__links {
  margin: 2px 0 7px;
  line-height: 1.6;
}
.page--profile .profileBefore__link {
  display: block;
}
.page--profile .profileBefore__link a {
  text-decoration: underline;
}
@media (max-width: 740px) {
  .page--profile .profileAfter {
    margin-top: 40px;
    border-top: 1px solid #666666;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sarabun", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  height: 100dvh;
  margin: 0 auto;
  position: relative;
}

.page--home .main {
  height: 100dvh;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.page--home .footer {
  display: none;
}

.header {
  position: fixed;
  background-color: #eaeaea;
  z-index: 100;
  width: 100%;
  max-width: 1200px;
  height: 80px;
  display: flex;
}
@media (max-width: 740px) {
  .header {
    height: 60px;
    bottom: 0;
    z-index: 1000;
  }
}
.page--home .header {
  position: absolute;
  z-index: 100;
}

.header h1 {
  width: 110px;
  padding-left: 20px;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-family: "Futura PT";
  font-weight: 400;
}
@media (max-width: 740px) {
  .header h1 {
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
  }
}
.header__links {
  width: calc(100% - 130px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 740px) {
  .header__links {
    width: 100%;
  }
}
.header__workLinks {
  height: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-family: "Sarabun", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
}
.header__workLink {
  margin-left: 20px;
}
.header__workLink--on {
  font-weight: 500;
  margin-left: 20px;
  padding: 2px 0;
  border-bottom: 2px solid #262626;
}
.header__profileLinks {
  height: 100%;
  display: flex;
  align-items: center;
  width: 105px;
  justify-content: space-evenly;
}
.header__profileLink {
  line-height: 1;
}
.header__profileLink--on {
  border-bottom: 1.5px solid #333333;
  padding-bottom: 2px;
}
.header__profileLink img {
  width: 24px;
}

.page--category .wrap {
  height: auto;
}
@media (max-width: 740px) {
  .page--category .wrap {
    overflow: hidden;
  }
}
.page--category main {
  padding-top: 120px;
}
@media (max-width: 740px) {
  .page--category main {
    padding-top: 80px;
  }
}

.page--single main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px;
}
@media (max-width: 740px) {
  .page--single main {
    padding-top: 80px;
  }
}

.postContent {
  padding: 0 20px;
}
.postContent__before {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 740px) {
  .postContent__before {
    position: static;
  }
}
.postContent__before p {
  margin-top: 5px;
}
.postContent__after {
  width: calc(100% - 280px);
  margin-left: 280px;
  padding-top: 100px;
}
@media (max-width: 740px) {
  .postContent__after {
    width: calc(100% - 40px);
    margin-left: 40px;
    padding-top: 20px;
  }
}
.postContent__after img {
  width: 100%;
  display: block;
  margin-bottom: 50px;
}
.postContent__after h2 {
  margin-top: 50px;
}
.postContent__after p {
  line-height: 1.6;
}
.postContent__after p span {
  font-weight: bold;
}
.postContent__after a {
  text-decoration: underline;
  display: inline-block;
  margin: 0 2px;
  font-weight: bold;
}
.postContent__after hr {
  margin: 30px 0;
}
.postContent__title {
  background-color: rgba(234, 234, 234, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 40px;
  margin: 0;
  padding: 10px 10px 10px 0;
  font-family: "Libre Baskerville", serif;
  line-height: 1.25;
}
.postContent__subText {
  width: 235px;
}

.postList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 75px;
  width: 100%;
}
.postList--loading {
  filter: grayscale(100%) opacity(0.1);
}
.postList--loading .postItem {
  pointer-events: none;
}
@media (max-width: 740px) {
  .postList--loading {
    row-gap: 0;
    margin-top: -80px;
  }
}
@media (max-width: 740px) {
  .postList {
    grid-template-columns: 1fr 1fr;
  }
}

.footer {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 740px) {
  .footer {
    height: 300px;
    padding-bottom: 60px;
  }
}
.footer__content {
  font-size: 34px;
  text-align: center;
  font-family: "Sarabun", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 100;
}/*# sourceMappingURL=style.css.map */