@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aldrich&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

header .wrapper {
  background-color: rgb(0, 0, 0);
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 796px) {
  header .wrapper {
    padding: 0 200px;
  }
}
header .wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 14;
  pointer-events: all;
  width: auto;
  height: 36px;
  padding: 17px 0;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 13;
  opacity: 0.8;
}

/* 言語選択ドロップダウン */
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown .lang-button {
  display: flex;
  color: white;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  border-radius: 4px;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
}
.lang-dropdown .lang-button .arrow {
  font-size: 0.8rem;
  margin-left: 4px;
}
.lang-dropdown .lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 14;
  background: #ffffff;
  opacity: 0.9;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.lang-dropdown .lang-menu button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.lang-dropdown .lang-menu button:hover {
  background: #f0f0f0;
}

.header-spacer {
  height: 70px;
  display: none;
}
.header-spacer.fixed {
  display: block;
}

.rsv-rental-btns {
  position: fixed;
  z-index: 13;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  border: 1px solid rgb(252, 93, 38);
}
.rsv-rental-btns div.top {
  color: rgb(255, 255, 255);
  background-color: rgb(252, 93, 38);
}
.rsv-rental-btns div.bottom {
  color: rgb(46, 69, 89);
  background-color: rgb(255, 255, 255);
}
.rsv-rental-btns .btn-wrapper {
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rsv-rental-btns .btn-wrapper span {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.rsv-rental-btns .btn-wrapper span i {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 796px) {
  .rsv-rental-btns .btn-wrapper {
    width: 80px;
    height: 80px;
  }
  .rsv-rental-btns .btn-wrapper span {
    font-size: 16px;
  }
  .rsv-rental-btns .btn-wrapper span i {
    font-size: 20px;
    line-height: 30px;
  }
  .rsv-rental-btns .btn-wrapper:hover {
    opacity: 0.7;
  }
}

div.menu-bg {
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
div.menu-bg.open {
  visibility: visible;
  opacity: 1;
}

/* タブレット以下のメニュースタイル（初期非表示） */
nav.menu {
  display: block;
  position: fixed;
  top: 0;
  left: -100%; /* 初期状態では画面の外に隠れている */
  width: 300px;
  height: 100%;
  background-color: rgb(52, 62, 57);
  color: rgb(255, 255, 255);
  transition: left 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 15;
  /* メニューリストのスタイル */
}
nav.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}
nav.menu ul li {
  padding: 30px 8px;
  text-align: left;
  border-bottom: 1px solid #c0c0c0;
  font-size: 14px;
}
nav.menu ul li.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid #C83D2B;
  cursor: default;
}
nav.menu ul li span.ruby {
  font-size: 12px;
}
nav.menu ul li span.ruby::before {
  content: " - ";
}
nav.menu.open {
  left: 0;
}

/* ハンバーガーメニューのスタイル */
div.hamburger {
  width: 30px;
  cursor: pointer;
}
div.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  margin: 8px 0;
  border-radius: 1000px;
  transition: 0.4s;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.5);
}
div.hamburger.active span {
  height: 1px;
  background-color: rgb(255, 255, 255);
  box-shadow: none;
}
div.hamburger.active span:nth-child(1) {
  transform: rotate(30deg) translate(5px, 8px);
}
div.hamburger.active span:nth-child(2) {
  opacity: 0;
}
div.hamburger.active span:nth-child(3) {
  transform: rotate(-30deg) translate(4px, -8px);
}
div.hamburger.right {
  position: absolute;
  right: 20px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  background-color: rgb(0, 0, 0);
  color: rgb(167, 177, 185);
  padding: 50px 25px 50px;
}
footer img {
  width: 150px;
}
footer div.contact {
  line-height: 28px;
}
footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
footer ul li:hover {
  color: rgb(255, 255, 255);
}
footer div.copyright {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 796px) {
  footer {
    padding: 50px 150px;
  }
}

div.pagination-container {
  width: clamp(320px, 80%, 512px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
div.pagination-container .arrow {
  width: 50px;
  height: 50px;
  background-color: rgb(186, 191, 189);
  cursor: pointer;
  user-select: none;
  border-radius: 1000px;
  position: absolute;
  top: 50%;
  z-index: 12;
}
div.pagination-container .arrow.arrow-right {
  right: -26px;
}
div.pagination-container .arrow.arrow-left {
  left: -26px;
}
div.pagination-container .arrow span {
  display: inline-block;
  width: 50px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 24px;
  line-height: 42px;
}
@media screen and (max-width: 430px) {
  div.pagination-container .arrow {
    width: 36px;
    height: 36px;
  }
  div.pagination-container .arrow.arrow-right {
    right: -18px;
  }
  div.pagination-container .arrow.arrow-left {
    left: -18px;
  }
  div.pagination-container .arrow span {
    width: 36px;
    font-size: 18px;
    line-height: 30px;
  }
}
div.pagination-container .arrow:hover {
  background-color: rgb(209, 216, 213);
}
div.pagination-container .card-list {
  position: relative;
  width: 100%;
  border: 1px solid rgb(186, 191, 189);
  border-radius: 12px;
}
div.pagination-container .card-list .card {
  width: 80%;
  padding: 16px 0;
  margin: 0 auto;
  display: none;
}
div.pagination-container .card-list .card hr {
  margin: 20px 0;
  background-color: rgb(186, 191, 189);
}
div.pagination-container .card-list .card .image-area {
  width: 100%;
  max-width: 394px;
  aspect-ratio: 1;
}
div.pagination-container .card-list .card .image-area .swiper {
  width: 100%;
  height: 100%;
}
div.pagination-container .card-list .card .image-area .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
div.pagination-container .card-list .card .image-area .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
div.pagination-container .card-list .card .image-area .swiper .swiper-pagination {
  margin-top: 5px;
  text-align: center;
}
div.pagination-container .card-list .card .image-area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(76, 89, 82);
}
div.pagination-container .card-list .card .text-area {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}
div.pagination-container .card-list .card .text-area p.name {
  font-weight: bold;
  line-height: 24px;
  color: rgb(62, 62, 62);
}
div.pagination-container .card-list .card .text-area p.summary {
  text-align: left;
  line-height: 24px;
}
div.pagination-container .card-list .card .text-area p.info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
div.pagination-container .card-list .card .text-area p.info span {
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 30px;
  padding: 0 15px;
  border-radius: 1000px;
}
div.pagination-container .card-list .card .text-area p.info span.e-bike {
  background-color: rgb(242, 208, 107);
}
div.pagination-container .card-list .card .text-area p.info span.normal-bike {
  background-color: rgb(46, 69, 89);
}
div.pagination-container .card-list .card .text-area p.info span.stock {
  background-color: rgb(115, 115, 115);
}
div.pagination-container .card-list .card .text-area p.info span.price {
  background-color: rgb(62, 62, 62);
}
div.pagination-container button {
  margin-top: 20px;
}

div.pankuzu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 30px;
  background-color: rgb(228, 228, 228);
  color: rgb(46, 69, 89);
  font-size: 12px;
  font-weight: bold;
  padding: 0 20px;
}
div.pankuzu span {
  display: inline-block;
  line-height: 24px;
}
div.pankuzu span.arrow, div.pankuzu span.no-link {
  color: rgb(62, 62, 62);
}

div.input-area {
  width: 100%;
  text-align: left;
  color: rgb(62, 62, 62);
}
div.input-area.flex-row {
  display: flex;
  gap: 12px;
}
div.input-area label.input-label {
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
div.input-area label.input-label span {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 4px;
  border-radius: 4px;
  color: rgb(255, 255, 255);
}
div.input-area label.input-label span.optional {
  background-color: rgb(115, 115, 115);
}
div.input-area label.input-label span.required {
  background-color: rgb(206, 99, 99);
}
div.input-area p {
  font-size: 13px;
  line-height: 18px;
}
div.input-area div.radio-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
div.input-area div.checkbox-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}
div.input-area div.checkbox-flex a {
  color: rgb(79, 111, 140);
  font-weight: bold;
}
div.input-area div.bottom_summaries {
  font-size: 13px;
  color: rgb(62, 62, 62);
  line-height: 18px;
}
div.input-area span.loader {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
div.input-area span.d-none {
  display: none !important;
}
div.input-area span.file-name {
  display: block;
  margin-bottom: 8px;
}
div.input-area p.list-summary {
  display: flex;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
div.input-area p.list-summary::before {
  content: "・";
  display: block;
}
div.input-area button {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 15px;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 4px;
  padding: 12px 16px;
  color: rgb(62, 62, 62);
  margin-bottom: 8px;
}
div.input-area img.img-preview {
  width: clamp(280px, 60%, 560px);
  aspect-ratio: 1;
  object-fit: contain;
  background-color: rgb(252, 252, 252);
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
}
div.input-area div.select-wrapper {
  position: relative;
}
div.input-area div.select-wrapper::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgb(186, 191, 189);
  content: "";
  position: absolute;
  right: 12px;
  top: 16px;
  width: 0;
}
div.input-area select {
  display: block;
  width: 100%;
  height: 38px;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 4px;
  margin: 8px 0;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 15px;
  color: rgb(62, 62, 62);
  background-color: white;
  -webkit-appearance: none;
  appearance: none;
  /* プレースホルダー（空値）が選ばれている時だけグレーに */
  /* valid になったら元の色に戻す */
}
div.input-area select::-ms-expand {
  display: none;
}
div.input-area select:focus {
  outline: 1.5px solid rgb(196, 196, 196);
}
div.input-area select:invalid {
  color: rgb(196, 196, 196);
}
div.input-area select:valid {
  color: rgb(62, 62, 62);
}
div.input-area div.number_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
div.input-area textarea {
  display: block;
  width: 100%;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 4px;
  margin: 8px 0;
  padding: 12px;
  box-sizing: border-box;
  font-size: 15px;
  color: rgb(62, 62, 62);
}
div.input-area textarea:focus {
  outline: 1.5px solid rgb(196, 196, 196);
}
div.input-area textarea::placeholder {
  color: rgb(196, 196, 196);
}
div.input-area input {
  display: block;
  width: 100%;
  height: 38px;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 4px;
  margin: 8px 0;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 15px;
  color: rgb(62, 62, 62);
}
div.input-area input:focus {
  outline: 1.5px solid rgb(196, 196, 196);
}
div.input-area input::placeholder {
  color: rgb(196, 196, 196);
}
div.input-area input.inline-block label {
  display: inline-block;
}
div.input-area input.inline-block input {
  display: inline-block;
}
div.input-area input.inline label {
  display: inline;
}
div.input-area input.inline input {
  display: inline;
}
div.input-area input[type=radio], div.input-area input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: rgb(79, 111, 140);
}
div.input-area input[type=radio]:focus, div.input-area input[type=checkbox]:focus {
  outline: none;
}
div.input-area input[type=file] {
  display: none;
}
div.input-area input[type=date] {
  line-height: 40px;
  width: 150px;
  background-color: white;
}
div.input-area select.is-invalid,
div.input-area textarea.is-invalid,
div.input-area input.is-invalid {
  border: 1px solid rgb(206, 99, 99);
}
div.input-area select.is-invalid:focus,
div.input-area textarea.is-invalid:focus,
div.input-area input.is-invalid:focus {
  outline: 1.5px solid rgb(206, 99, 99);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal-overlay.is-open {
  opacity: 1;
}

.modal {
  background: rgb(255, 255, 255);
  border-radius: 6px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal__header {
  padding: 16px;
  border-bottom: 1px solid #eee;
}
.modal__header h2 {
  font-family: "Zen Kaku Gothic New", serif;
}
.modal__title {
  margin: 0;
  font-size: 1.25rem;
}
.modal__body {
  padding: 16px;
  flex: 1;
}
.modal__body p {
  font-size: 15px;
  line-height: 24px;
  color: rgb(62, 62, 62);
  padding-bottom: 12px;
}
.modal__body p:last-child {
  padding-bottom: 0;
}
.modal__body p.gray-bg {
  font-size: 14px;
  line-height: 16px;
  background-color: rgb(252, 252, 252);
  border: 0.3px solid rgb(228, 228, 228);
  padding: 8px 12px;
  border-radius: 4px;
}
.modal__body p span.entered {
  color: rgb(206, 99, 99);
}
.modal__footer {
  padding: 16px;
  border-top: 1px solid #eee;
  text-align: right;
}
.modal__footer .mdl-btn {
  margin-left: 8px;
}

.mdl-btn {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 16px;
  color: rgb(62, 62, 62);
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.mdl-btn:hover {
  opacity: 0.7;
}

ul.accordion {
  width: 90%;
}
@media screen and (max-width: 430px) {
  ul.accordion {
    width: 100%;
  }
}
ul.accordion li {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 16px 0px;
  border-bottom: 0.7px solid rgb(0, 0, 0);
}
ul.accordion div.accordion-header {
  display: flex;
  align-items: center;
  gap: 4px;
}
ul.accordion div.accordion-header p {
  display: flex;
  flex: 1;
  gap: 4px;
}
ul.accordion div.accordion-header p .q-icon {
  font-size: 20px;
  color: rgb(115, 115, 115);
}
ul.accordion div.accordion-header p .text {
  font-size: 16px;
  line-height: 20px;
  white-space: pre-wrap;
  font-weight: 500;
  color: rgb(62, 62, 62);
}
ul.accordion div.accordion-header div.open-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
ul.accordion div.accordion-header div.open-icon span {
  position: absolute;
  background-color: rgb(115, 115, 115);
  transition: transform 0.3s ease;
}
ul.accordion div.accordion-header div.open-icon span:nth-child(1) {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  border-radius: 1px;
  transform: translateY(-50%);
}
ul.accordion div.accordion-header div.open-icon span:nth-child(2) {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  border-radius: 1px;
  transform: translateX(-50%);
}
ul.accordion div.accordion-header div.open-icon.active span:nth-child(2) {
  transform: translateX(-50%) rotate(90deg);
}
ul.accordion div.accordion-content {
  margin-top: 12px;
}
ul.accordion div.accordion-content p {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
ul.accordion div.accordion-content p .a-icon {
  font-size: 20px;
  color: rgb(206, 99, 99);
  line-height: 24px;
}
ul.accordion div.accordion-content p .text {
  font-size: 16px;
  line-height: 24px;
  margin-right: 24px;
  white-space: pre-wrap;
}
ul.accordion div.accordion-content p:only-child {
  margin-bottom: 0;
}

main.top div.flex-section-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 60px 0 0 0;
}
main.top div.flex-section-wrapper div.about-card {
  margin: 74px 0 0 0;
}
main.top div.flex-section-wrapper div.pagination-container {
  margin: 0;
}
main.top div.flex-section-wrapper div.pagination-container button {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  main.top div.flex-section-wrapper {
    align-items: center;
    gap: 60px;
    margin: 40px 0 0 0;
  }
  main.top div.flex-section-wrapper div.about-card,
  main.top div.flex-section-wrapper div.pagination-container {
    margin: 0 auto;
  }
}

div.main-visual {
  position: relative;
  background-color: rgb(0, 0, 0);
}
div.main-visual div.heading {
  position: absolute;
  top: calc((100% - 70px) / 2);
  right: 100px;
  transform: translate(0%, -50%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
div.main-visual div.heading.hidden {
  opacity: 0;
  visibility: hidden;
}
div.main-visual div.heading h1,
div.main-visual div.heading h4 {
  color: rgb(255, 255, 255);
  text-align: right;
}
div.main-visual div.heading h1 {
  font-size: 60px;
  letter-spacing: -2px;
  line-height: 60px;
}
div.main-visual div.heading h4 {
  font-size: 36px;
  letter-spacing: -0.5px;
  line-height: 43.2px;
}
@media screen and (min-width: 796px) {
  div.main-visual div.heading {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  div.main-visual div.heading {
    right: 60px;
  }
  div.main-visual div.heading h1 {
    font-size: 48px;
    line-height: 48px;
  }
  div.main-visual div.heading h4 {
    font-size: 28px;
    letter-spacing: -0.2px;
    line-height: 33.6px;
  }
}
@media screen and (max-width: 795px) {
  div.main-visual div.heading {
    right: 40px;
  }
  div.main-visual div.heading h1 {
    font-size: 36px;
    line-height: 36px;
  }
  div.main-visual div.heading h4 {
    font-size: 20px;
    letter-spacing: 0.1px;
    line-height: 24px;
  }
}
@media screen and (max-width: 512px) {
  div.main-visual div.heading {
    opacity: 0;
    visibility: hidden;
  }
}
div.main-visual video {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 796px) {
  div.main-visual::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 70px);
    position: absolute;
    top: 0;
    background-image: radial-gradient(#000 10%, transparent 90%);
    background-color: #333;
    background-position: 0 0;
    background-size: 6px 6px;
    mix-blend-mode: screen;
  }
}
div.main-visual div.letter-box {
  width: 100%;
  height: 70px;
}
@media screen and (max-width: 430px) {
  div.main-visual div.letter-box {
    height: 30px;
  }
}

div.about-card {
  width: clamp(320px, 80%, 512px);
  margin: 0 auto;
  border-radius: 8px;
  border: 0.7px solid rgb(196, 196, 196);
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}
div.about-card div.card-top {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: rgb(76, 89, 82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
div.about-card div.card-top img {
  width: 74%;
  height: auto;
}
div.about-card div.card-top div {
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 2px;
}
div.about-card div.card-top div hr {
  background-color: rgb(196, 196, 196);
  margin: 8px 0 4px;
}
div.about-card div.card-top div h2 {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 300;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 512px) {
  div.about-card div.card-top div h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
div.about-card div.card-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
@media screen and (max-width: 430px) {
  div.about-card div.card-bottom {
    padding: 40px 0;
  }
}
div.about-card div.card-bottom div.text-area {
  width: 80%;
}
div.about-card div.card-bottom div.text-area p {
  line-height: 24px;
}
div.about-card div.card-bottom div.text-area hr {
  background-color: rgb(196, 196, 196);
  margin: 12px 0;
}

div.cycling-route-maps {
  margin: 80px 0 80px 0;
}
@media screen and (max-width: 795px) {
  div.cycling-route-maps {
    margin: 60px 0 60px 0;
  }
}
div.cycling-route-maps h2 {
  margin-bottom: 10px;
}
div.cycling-route-maps div.map-wrapper {
  margin: 0 auto;
}
div.cycling-route-maps div.map-wrapper div.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  gap: 30px;
}
div.cycling-route-maps div.map-wrapper div.flex-container a {
  width: 100%;
}
div.cycling-route-maps div.map-wrapper div.flex-container div.map-card {
  width: 100%;
}
div.cycling-route-maps div.map-wrapper div.flex-container div.map-card img {
  width: 100%;
  height: auto;
}
div.cycling-route-maps div.map-wrapper div.flex-container div.map-card p {
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: rgb(62, 62, 62);
  padding-top: 10px;
}
@media screen and (max-width: 795px) {
  div.cycling-route-maps div.map-wrapper div.flex-container {
    flex-direction: column;
    flex-wrap: unset;
    padding: 0;
  }
  div.cycling-route-maps div.map-wrapper div.flex-container div.map-card {
    width: 80%;
    min-width: 320px;
    margin: 0 auto;
  }
}

main.start-rental {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}
main.start-rental div.sub-header-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
main.start-rental div.sub-header-area h3 {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
}
main.start-rental div.sub-header-area p {
  width: 70%;
  max-width: 600px;
  min-width: 320px;
  margin-top: 12px;
  white-space: pre-wrap;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
main.start-rental div.sub-header-area ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
main.start-rental div.sub-header-area ul li::before {
  content: "・";
}
main.start-rental div.sub-header-area ol {
  width: 85%;
}
main.start-rental div.sub-header-area ol li {
  list-style-type: decimal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  white-space: pre-wrap;
}
main.start-rental form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main.start-rental form div.plan-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
main.start-rental form div.notice {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main.start-rental form div.notice span {
  display: inline-block;
  font-weight: 400;
}
main.start-rental form div.notice ul {
  margin-left: 4px;
}
main.start-rental form div.notice ul li {
  display: flex;
  white-space: pre-wrap;
  margin-bottom: 4px;
}
main.start-rental form div.notice ul li::before {
  content: "・";
}
main.start-rental form input[name=hourly_num] {
  width: 100px;
  margin-left: 25px;
}
main.start-rental .btn-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
main.start-rental .selected-bicycle {
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgb(186, 191, 189);
  border-radius: 12px;
}
main.start-rental .selected-bicycle .card {
  width: 80%;
  padding: 16px 0;
  margin: 0 auto;
  display: block;
}
main.start-rental .selected-bicycle .card hr {
  margin: 20px 0;
  background-color: rgb(186, 191, 189);
}
main.start-rental .selected-bicycle .card .image-area {
  width: 100%;
  max-width: 394px;
  margin: 0 auto;
  aspect-ratio: 1;
}
main.start-rental .selected-bicycle .card .image-area .swiper {
  width: 100%;
  height: 100%;
}
main.start-rental .selected-bicycle .card .image-area .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.start-rental .selected-bicycle .card .image-area .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.start-rental .selected-bicycle .card .image-area .swiper .swiper-pagination {
  margin-top: 5px;
  text-align: center;
}
main.start-rental .selected-bicycle .card .image-area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(76, 89, 82);
}
main.start-rental .selected-bicycle .card .text-area {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}
main.start-rental .selected-bicycle .card .text-area p.name {
  font-weight: bold;
  line-height: 24px;
  color: rgb(62, 62, 62);
}
main.start-rental .selected-bicycle .card .text-area div.info {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
main.start-rental .selected-bicycle .card .text-area div.info div.outer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  gap: 4px;
}
main.start-rental .selected-bicycle .card .text-area div.info div.outer span {
  display: inline-block;
  text-align: left;
}
main.start-rental .selected-bicycle .card .text-area div.info div.outer span:first-child {
  width: 136px;
}
main.start-rental .selected-bicycle .card .text-area div.info div.outer span.pre-wrap {
  white-space: pre-wrap;
}
main.start-rental .selected-bicycle .card .text-area p.summary {
  text-align: left;
  line-height: 24px;
}
main.start-rental .selected-bicycle .card .text-area p.info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
main.start-rental .selected-bicycle .card .text-area p.info span {
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 30px;
  padding: 0 15px;
  border-radius: 1000px;
}
main.start-rental .selected-bicycle .card .text-area p.info span.e-bike {
  background-color: rgb(242, 208, 107);
}
main.start-rental .selected-bicycle .card .text-area p.info span.normal-bike {
  background-color: rgb(46, 69, 89);
}
main.start-rental .selected-bicycle .card .text-area p.info span.stock {
  background-color: rgb(115, 115, 115);
}
main.start-rental .selected-bicycle .card .text-area p.info span.price {
  background-color: rgb(62, 62, 62);
}
main.start-rental h3.note {
  line-height: 36px;
}
@media screen and (max-width: 430px) {
  main.start-rental h3.note {
    line-height: 24px;
  }
}

main.bicycles {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}
main.bicycles .search-area {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #F5F5F5;
  border-radius: 12px;
  padding: 40px 20px;
  margin-bottom: 40px;
  gap: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
main.bicycles .search-area div.flex-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: flex-start;
}
main.bicycles .search-area div.flex-col h6 {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 4px;
  color: rgb(62, 62, 62);
}
main.bicycles .search-area div.flex-col div.checkbox-flex {
  margin-bottom: 0;
  justify-content: flex-start;
  align-items: center;
  padding-left: 4px;
}
main.bicycles .search-area div.flex-col div.checkbox-flex label {
  font-size: 15px;
  font-weight: 500;
}
main.bicycles .search-area div.flex-col div.checkbox-flex input[type=checkbox] {
  width: 16px;
  height: 16px;
}
main.bicycles .search-area div.flex-col.--select {
  width: 120px;
}
main.bicycles .search-area div.btn-area {
  width: 100%;
  text-align: center;
}
main.bicycles .search-area div.btn-area button.btn {
  width: 210px;
}
main.bicycles .card-wrapper {
  position: relative;
  width: 90%;
  min-width: 320px;
  max-width: 480px;
  border: 1px solid rgb(186, 191, 189);
  border-radius: 12px;
}
main.bicycles .card-wrapper .card {
  width: 80%;
  padding: 16px 0;
  margin: 0 auto;
  display: block;
}
main.bicycles .card-wrapper .card hr {
  margin: 20px 0;
  background-color: rgb(186, 191, 189);
}
main.bicycles .card-wrapper .card .image-area {
  width: 100%;
  max-width: 394px;
  margin: 0 auto;
  aspect-ratio: 1;
}
main.bicycles .card-wrapper .card .image-area .swiper {
  width: 100%;
  height: 100%;
}
main.bicycles .card-wrapper .card .image-area .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.bicycles .card-wrapper .card .image-area .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.bicycles .card-wrapper .card .image-area .swiper .swiper-pagination {
  margin-top: 5px;
  text-align: center;
}
main.bicycles .card-wrapper .card .image-area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(76, 89, 82);
}
main.bicycles .card-wrapper .card .text-area {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}
main.bicycles .card-wrapper .card .text-area p.name {
  font-weight: bold;
  line-height: 24px;
  color: rgb(62, 62, 62);
}
main.bicycles .card-wrapper .card .text-area div.info {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
main.bicycles .card-wrapper .card .text-area div.info div.outer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  gap: 4px;
}
main.bicycles .card-wrapper .card .text-area div.info div.outer span {
  display: inline-block;
  text-align: left;
}
main.bicycles .card-wrapper .card .text-area div.info div.outer span:first-child {
  width: 136px;
}
main.bicycles .card-wrapper .card .text-area div.info div.outer span.pre-wrap {
  white-space: pre-wrap;
}
main.bicycles .card-wrapper .card .text-area p.summary {
  text-align: left;
  line-height: 24px;
}
main.bicycles .card-wrapper .card .text-area p.info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
main.bicycles .card-wrapper .card .text-area p.info span {
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 30px;
  padding: 0 15px;
  border-radius: 1000px;
}
main.bicycles .card-wrapper .card .text-area p.info span.e-bike {
  background-color: rgb(242, 208, 107);
}
main.bicycles .card-wrapper .card .text-area p.info span.normal-bike {
  background-color: rgb(46, 69, 89);
}
main.bicycles .card-wrapper .card .text-area p.info span.stock {
  background-color: rgb(115, 115, 115);
}
main.bicycles .card-wrapper .card .text-area p.info span.price {
  background-color: rgb(62, 62, 62);
}

main.faq {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}
main.faq div.sub-header-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
  gap: 12px;
}
main.faq div.sub-header-area h3 {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 24px;
  font-weight: 400;
}

main.pp-tos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}
main.pp-tos section {
  width: 80%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
main.pp-tos section h3,
main.pp-tos section p {
  width: 100%;
}
main.pp-tos section ul,
main.pp-tos section ol {
  width: calc(100% - 40px);
}
main.pp-tos section h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin-top: 20px;
  text-align: left;
}
main.pp-tos section p {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}
main.pp-tos section p a {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: rgb(79, 111, 140);
  font-weight: bold;
  margin-top: 4px;
}
main.pp-tos section p a:hover {
  text-decoration: underline;
}
main.pp-tos section ul {
  list-style: circle;
}
main.pp-tos section ol {
  list-style: decimal;
}
main.pp-tos section ul,
main.pp-tos section ol {
  padding-left: 40px;
}
@media screen and (max-width: 430px) {
  main.pp-tos section ul,
  main.pp-tos section ol {
    padding-left: 20px;
  }
}
main.pp-tos section ul li,
main.pp-tos section ol li {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}
main.pp-tos div.confirm-table {
  width: 90%;
}

body {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Aldrich";
  font-weight: 400;
  color: rgb(62, 62, 62);
  text-align: center;
}

h1 {
  font-size: 40px;
  line-height: 40px;
}

h2 {
  font-size: 32px;
  line-height: 32px;
}

h3 {
  font-size: 28px;
  line-height: 28px;
}

h4 {
  font-size: 24px;
  line-height: 24px;
}

.h-red-line::after {
  position: relative;
  bottom: 12px;
  content: "\aー";
  white-space: pre;
  color: #C83D2B;
  line-height: 10px;
}
@media screen and (max-width: 430px) {
  .h-red-line::after {
    bottom: 8px;
  }
}

p.medium {
  font-size: 16px;
  line-height: 36px;
}

p.small {
  font-size: 14px;
  line-height: 40px;
}

@media screen and (max-width: 430px) {
  h1 {
    font-size: 24px;
    line-height: 24px;
  }
  h2 {
    font-size: 20px;
    line-height: 20px;
  }
  h3 {
    font-size: 18px;
    line-height: 18px;
  }
  h4 {
    font-size: 16px;
    line-height: 16px;
  }
  p.medium {
    font-size: 15px;
    line-height: 30px;
  }
  p.small {
    font-size: 13px;
    line-height: 26px;
  }
}
img {
  user-drag: none; /* ドラッグ禁止 */
  user-select: none; /* 選択禁止 */
  -webkit-user-drag: none; /* Webkitブラウザ（ChromeやSafari）向け */
  -webkit-user-select: none;
  -moz-user-select: none; /* Firefox向け */
  -ms-user-select: none; /* IE向け */
  pointer-events: none; /* 右クリックや長押し禁止 */
}

hr {
  height: 1px;
  border: none;
  background-color: rgb(0, 0, 0);
}

b {
  font-weight: 500;
}

form {
  width: 100%;
  max-width: 640px;
}

.invalid-feedback {
  color: rgb(206, 99, 99);
  font-size: 13px;
  line-height: 18px;
}
.invalid-feedback.fs-md {
  font-size: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  line-height: 14px;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  max-width: 320px;
  height: 48px;
}
.btn:hover {
  opacity: 0.7;
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

a.btn {
  padding: 17px 28px;
}

.btn-gray-outline {
  background-color: rgb(255, 255, 255);
  color: rgb(115, 115, 115);
  border: 2px solid rgb(115, 115, 115);
}

a.btn-gray-outline {
  padding: 15px 28px;
}

.btn-black {
  background-color: rgb(62, 62, 62);
  color: rgb(255, 255, 255);
}

.red-text {
  color: rgb(206, 99, 99);
}

.text-center {
  text-align: center !important;
}

div.header-spacer {
  height: 70px;
  display: none;
}

div.confirm-table {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
div.confirm-table table {
  width: 100%;
  table-layout: fixed; /* セルの幅を均等に */
  border-collapse: collapse; /* ボーダーの重なりを解消 */
}
div.confirm-table table th,
div.confirm-table table td {
  text-align: left;
  padding: 10px; /* パディングを追加 */
  border: 1px solid rgba(115, 115, 115, 0.1);
  font-size: 14px;
  line-height: 130%;
}
div.confirm-table table th {
  text-align: center;
  background-color: rgb(62, 62, 62);
  color: rgb(255, 255, 255);
  /* 固定幅を設定 */
  width: 30%;
}
div.confirm-table table td {
  /* 固定幅を設定 */
  width: 70%;
  background-color: rgb(252, 252, 252);
  color: rgb(115, 115, 115);
  vertical-align: middle;
}
div.confirm-table table td .faded_red {
  color: rgb(206, 99, 99);
  font-weight: bold;
}

br.sp {
  display: none;
}
@media screen and (max-width: 430px) {
  br.sp {
    display: block;
  }
}

.ff-zenmaru {
  font-family: "Zen Kaku Gothic New", serif;
}

.mt-20 {
  margin-top: 20px;
}/*# sourceMappingURL=main.css.map */