@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  font-size: 1rem;
  gap: 15px;
}
.keyvisual {
  /* display: none; */
  background-image: url(../images/rsrv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 20%;
}

.keyvisual p {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #394c51;
  /* text-shadow: 5px 5px 0px #394c51; */
  background-image: linear-gradient(180deg, transparent 10%, #98989b 80%);
  padding-left: 4%;
  /* background: none; */
}
/* メニューオープン時 */
@media (max-width: 599px) {
  body.menu-open {
    overflow: clip; /* 固定 */
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}

/* HEADER ---------------- */
/* headerを固定 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 600px) {
  .header {
    position: static;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.header-logo {
  width: 120px;
  line-height: 0;
}
.header-logo a {
  display: block;
}

#gnav ul {
  display: flex;
}
#gnav a {
  color: #383e45;
}
@media (max-width: 599px) {
  #gnav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 50%;
    background: rgb(255 255 255 / 0.8);
    /* background-image: linear-gradient(90deg, transparent 0%, #fff 70%); */
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s;
  }
  .menu-open #gnav {
    translate: -100%;
    visibility: visible;
  }
  #gnav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
  }
  #gnav li {
    text-align: center;
    height: 80px;
    line-height: 80px;
  }
  #gnav a {
    display: block;
  }
}
@media (min-width: 600px) {
  #gnav ul {
    font-size: 1rem;
    gap: 2rem;
  }
}

#menu-btn {
  width: 44px;
  height: 44px;
  background: transparent; /* 背景色を透明に */
  border: none;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 999; /* #gnavより上のレイヤーに */
}
.bar,
.bar::before,
.bar::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #5b5b5b;
  position: absolute;
  transition: all 0.4s ease-out;
}
.bar::before {
  bottom: 8px;
}
.bar::after {
  top: 8px;
}
.menu-open .bar {
  rotate: 180deg;
}
.menu-open .bar::before {
  bottom: 0;
  width: 18px;
  rotate: 45deg;
  translate: -2px 6px;
}
.menu-open .bar::after {
  top: 0;
  width: 18px;
  rotate: -45deg;
  translate: -2px -6px;
}

@media (min-width: 600px) {
  #menu-btn {
    display: none;
  }
}
/* MAIN CONTENTS ---------------- */
/* main {
  background: url(../images/) repeat center;
} */

.keyvisual {
  /* background-image: url(../images/riyou.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100svh; */
  /* 縦横比固定: min-height指定を削除し aspect-ratio設定 */
  /* aspect-ratio: 16/6; */
  /* padding-top: 20%;
  padding-left: 5%; */
  /* display: none; */
  background-image: url(../images/rsrv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 20%;
  /* height: 60vh; */
  width: 100%;
}
.keyvisual p {
  /* font-size: clamp(3rem, 7vw, 6rem);
  font-family: serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 2px #aaa;
  height: 60vh;
  padding-left: 4%; */

  font-size: clamp(2rem, 5vw, 5rem);
  color: #fff;
  text-shadow: 5px 5px 0px #394c51;
  /* background-image: linear-gradient(180deg, transparent 10%, #98989b 80%); */
  padding-left: 4%;
  /* background: none; */
}

.about {
  padding: 2rem 0 2rem;
  text-align: center;
  text-transform: uppercase;
}
.sub-title {
  display: inline-block;
  /* border-bottom: 1px solid #383e45; */
  margin: 0 0 3rem;
  text-align: center;
  /* background: linear-gradient(transparent 50%, rgba(108, 225, 249, 0.5) 50%); */
  margin-top: 20px;
  /* margin: 15px; */
  /* width: 340px;
  max-height: 500px; */
  /* height: 450px; */
  /* padding: 12px 6px 12px 6px; */
  /* background-color: #daebf8; */
  overflow: hidden;
  background: linear-gradient(transparent 50%, rgba(108, 225, 249, 0.5) 50%);
}

/* About */
.about-container img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 0 0.75rem;
  text-align: center;
}
.about-text {
  max-width: 400px;
  text-align: justify;
}
.about-text h3 {
  text-align: justify;
  margin: 0 0 0.75rem;
}

.text-left {
  text-align: left;
  margin-top: 1rem;
}
.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item img {
  object-fit: contain;
}

/* Bicycle */
/* .bicycle-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 600px) {
  .bicycle-container {
    flex-direction: row;
    gap: 1rem;
  }
  .bicycle-container li {
    flex: 1;
  }
}
.bicycle-container h3 {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
} */

/* FOOTER ---------------- */

.copyright {
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

@media (min-width: 600px) {
  .about-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .keyvisual {
    /* display: block; */
    background-image: url(../images/riyou.webp);
  }
  .keyvisual p {
    background: none;
    padding: 1rem 0 1rem;
  }

  .item {
    flex-direction: row;
    gap: 2rem;
  }
}
