@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: #252525; }

*: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: #fffae2; }

.grid_container {
  height: calc(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: max-content max-content 1fr 1fr min-content;
  grid-column-gap: 2rem;
  grid-row-gap: 0; }

.heading-1, .heading-2, .heading-3, .heading-4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400; }

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

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

.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: "Noto Sans JP", sans-serif;
  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(41, 41, 41, 0.075);
  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: #cfcfcf; }

.sticky {
  background-color: rgba(39, 39, 39, 0.801);
  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%;
  animation: anime 25s 0s infinite;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

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

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

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

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

@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: #242424;
  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: #222222;
  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; }

.share {
  grid-column: 1 / 6;
  grid-row: 4 / 5;
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center; }
  .share a {
    font-size: 2rem;
    margin: 1rem 2rem;
    color: #fffed7; }

.share__img {
  height: 3.5rem;
  padding: 0 0.8rem; }
  .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: 5 / 6;
  margin-top: 10rem;
  background-color: #feba00bd;
  color: #3a3a3a;
  display: grid; }
  .footer p {
    font-size: 1.5rem;
    padding: 1rem;
    padding-right: 5rem;
    justify-self: end;
    align-self: center; }
