@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
  color: rgb(37, 37, 37);
}

*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

body {
  color: #271e12;
  font-weight: 400;
  line-height: 1.6;
  background-color: rgb(255, 250, 226);
}

.grid_container {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: [page-start] 2rem [left-margin content1-start] 1fr [content1-end gap1-start] 0.25fr [gap1-end content2-start] 1fr [content2-end right-margin] 2rem [page-end];
  grid-template-rows: -webkit-max-content -webkit-max-content 1fr 1fr auto 1fr -webkit-min-content;
  grid-template-rows: max-content max-content 1fr 1fr auto 1fr min-content;
  grid-column-gap: 2rem;
  grid-row-gap: 0;
}

.heading-4, .heading-3, .heading-2, .heading-1 {
  font-family: "Shin Go Regular";
  font-weight: 400;
}

body {
  font-family: "Shin Go Regular";
}

p {
  font-family: "Shin Go Regular" !important;
}

.heading-1 {
  font-size: 4.5rem;
  color: #d6d6d6;
  line-height: 1;
}

.heading-2 {
  font-size: 4rem;
  font-style: italic;
  line-height: 1;
}
.heading-2--light {
  color: #d6d6d6;
}
.heading-2--dark {
  color: #271e12;
}

.heading-3 {
  font-size: 1.6rem;
  color: #271e12;
  text-transform: uppercase;
}

.heading-4 {
  font-size: 1.9rem;
}
.heading-4--light {
  color: #d6d6d6;
}
.heading-4--dark {
  color: #271e12;
}

.btn {
  background-color: #f28705;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: "Shin Go Regular";
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1.8rem 3rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  background-color: #f29f05;
}

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 3rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.mb-hg {
  margin-bottom: 5rem;
}

.nav {
  position: fixed;
  top: 0;
  height: 5rem;
  width: 100vw;
  background-color: rgba(254, 254, 254, 0.3);
  font-size: 2rem;
  padding: 5px 0;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  justify-items: center;
  align-items: center;
  z-index: 100;
}
.nav__logo {
  grid-column: 1/2;
  padding-left: 3rem;
  height: 4rem;
  justify-self: left;
  align-self: center;
  padding-bottom: 2px;
}
.nav__logo__img {
  height: 100%;
}
.nav__ul {
  list-style: none;
  justify-self: end;
  padding-right: 6rem;
  font-size: 1.5rem;
}
.nav__ul li {
  grid-column: 1/2;
  background-color: transparent;
}
.nav__ul li a {
  color: rgb(207, 207, 207);
}

.sticky {
  background-color: rgba(254, 254, 254, 0.9);
  color: rgba(255, 255, 255, 0.89);
}

.hero {
  grid-column: 1/-1;
  grid-row: 1/2;
  position: relative;
  overflow: hidden;
  height: 50vw;
  width: 100%;
  margin-bottom: 5rem;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.slide .image {
  grid-column: 1/4;
  grid-row: 1/4;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-animation: anime 25s 0s infinite;
          animation: anime 25s 0s infinite;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.slide .image:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../resources/img/01_small.jpg);
}

.slide .image:nth-of-type(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../resources/img/03_small.jpg);
}

.slide .image:nth-of-type(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../resources/img/05_small.jpg);
}

.slide .image:nth-of-type(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../resources/img/07_small.jpg);
}

@-webkit-keyframes anime {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes anime {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
  }
}
/* パララックスをみるための文字 */
.slide .parallaxString {
  grid-column: 1/4;
  grid-row: 2/3;
  padding: 0px;
  font-size: 7rem;
  font-weight: 200;
  color: #fff;
  background: transparent;
  z-index: 1;
  justify-self: center;
  align-self: center;
}
@media only screen and (max-width: 56.25em) {
  .slide .parallaxString {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide .parallaxString {
    font-size: 4rem;
  }
}

/* Main navi */
.about_title {
  grid-column: 1/-1;
  grid-row: 2/3;
  color: rgb(36, 36, 36);
  display: grid;
}
.about_title p {
  font-size: 2.5rem;
  justify-self: center;
  margin: 1rem 0;
}

.about_title.anchor {
  padding-top: 40px;
  margin-top: -40px;
}

.about {
  grid-column: 1/-1;
  grid-row: 3/4;
  color: rgb(34, 34, 34);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 56.25em) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about__block1 {
  grid-column: 1/2;
  padding: 2rem 5rem 2rem 5rem;
}
.about__block1 p {
  font-size: 2rem;
  margin: 2.5rem 0px;
}
.about__block2 {
  grid-column: 2/3;
  padding: 2rem 5rem 2rem 5rem;
}
@media only screen and (max-width: 56.25em) {
  .about__block2 {
    grid-column: 1/2;
  }
}
.about__block2 p {
  font-size: 2rem;
  margin: 2.5rem 0px;
}

.newrelease {
  display: grid;
  grid-column: 1/6;
  grid-row: 4/5;
  background-color: #fff;
  margin-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
}
.newrelease__items {
  grid-column: 2/3;
  display: grid;
  max-width: 400px;
  justify-self: center;
}
.newrelease__items p {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
.newrelease__items__check {
  height: 3rem;
  margin-bottom: 0.2rem;
  margin-right: 0.5rem;
  justify-self: right;
}
.newrelease__items__a {
  display: grid;
}
.newrelease__items__a__bookcover {
  width: 100%;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;
}
.newrelease__items__whatbook {
  margin-bottom: 14rem;
  background-color: #fff;
  border: 1px solid grey;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  justify-self: center;
}
.newrelease__items__whatbook p {
  font-size: 2rem;
  margin: 1rem;
  text-align: left;
}
@media only screen and (max-width: 56.25em) {
  .newrelease__items__whatbook p {
    font-size: 1.5rem;
  }
}

.keypoints {
  margin-top: 1rem;
  padding-top: 2rem;
  grid-column: 1/6;
  grid-row: 5/6;
  padding-bottom: 10rem;
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
}
.keypoints__title {
  grid-column: 1/2;
  justify-items: center;
}
.keypoints__title p {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
}
.keypoints__point {
  grid-column: 1/2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 56.25em) {
  .keypoints__point {
    grid-template-columns: 1fr;
  }
}
.keypoints__point__card1 {
  grid-column: 1/2;
  background-color: #fff;
  width: 30rem;
  height: 40rem;
  box-shadow: 2px 2px 4px -2px gray;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.3fr 2fr;
}
@media only screen and (max-width: 56.25em) {
  .keypoints__point__card1 {
    grid-column: 1/2;
  }
}
.keypoints__point__card1__image {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keypoints__point__card1__text {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 2rem;
  padding: 2rem 2rem;
  text-align: left;
}
.keypoints__point__card2 {
  grid-column: 2/3;
  background-color: #fff;
  width: 30rem;
  height: 40rem;
  box-shadow: 2px 2px 4px -2px gray;
  margin-top: 2rem;
  display: grid;
  grid-template-rows: 1.3fr 2fr;
}
@media only screen and (max-width: 56.25em) {
  .keypoints__point__card2 {
    grid-column: 1/2;
  }
}
.keypoints__point__card2__image {
  grid-row: 1/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keypoints__point__card2__text {
  font-size: 2rem;
  padding: 2rem 2rem;
  text-align: left;
}
.keypoints__point__card3 {
  grid-column: 3/4;
  background-color: #fff;
  width: 30rem;
  height: 40rem;
  box-shadow: 2px 2px 4px -2px gray;
  margin-top: 2rem;
  display: grid;
  grid-template-rows: 1.3fr 2fr;
}
@media only screen and (max-width: 56.25em) {
  .keypoints__point__card3 {
    grid-column: 1/2;
  }
}
.keypoints__point__card3__image {
  grid-row: 1/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keypoints__point__card3__text {
  font-size: 2rem;
  padding: 2rem 2rem;
  text-align: left;
}

.keypoints__point__card {
  position: realive;
  /*height: 20.69vw;
      width: 33.3vw;*/
  overflow: hidden;
  padding: 0%;
}

.keypoints__point__card img {
  filter: brightness(95%);
  transform: scale(1);
  transition: transform 0.3s, opacity 0.5s;
}

.keypoints__point__card img:hover {
  transform: scale(1.04);
  filter: brightness(105%);
}

.share {
  grid-column: 1/6;
  grid-row: 6/7;
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.share a {
  font-size: 2rem;
  margin: 1rem 2rem;
  color: rgb(255, 254, 215);
}

.share__img {
  height: 3.5rem;
  padding: 0rem;
}
.share__img:link, .share__img:visited {
  transition: all 0.2s;
}
.share__img:hover {
  transform: translateY(-2px);
  cursor: pointer;
}
.share__img:active {
  transform: translateY(0);
}

.footer {
  grid-column: 1/-1;
  grid-row: 7/8;
  margin-top: 10rem;
  background-color: #ffd;
  color: rgb(58, 58, 58);
  display: grid;
}
.footer p {
  font-size: 1.5rem;
  padding: 1rem;
  padding-right: 5rem;
  justify-self: end;
  align-self: center;
}/*# sourceMappingURL=style.css.map */