/* 地色… #FAE9AE */
/* * {
  outline: #000;
} */
html {
  font-size: 100px;
}

body {
  width: 100%;
  height: auto;
  font-size: 0.12rem;
  background-color: #fae9ae;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

a.anchor {
  display: block;
  padding-top: 0.7rem;
  margin-top: -0.7rem;
}

img {
  object-fit: cover;
}

/* フォントサイズ */
p {
  font-size: 0.12rem;
}

/* フォントファミリー */
h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

/* ヘッダー */
header {
  width: 100vw;
  max-width: 100%;
  height: auto;
  background-color: #181a43;
  padding: 0.15rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0.4rem;
}
.header-logo {
  position: relative;
  width: 0.4rem;
  height: 0.4rem;
}
header h6 {
  color: #fff;
  font-size: 0.12rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.02rem;
}

.hamburger {
  width: 0.3rem;
  height: 0.2rem;
  position: relative;
  border: none;
  outline: none;
  background: transparent;
}
.hamburger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.hamburger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.slide-menu {
  background-color: #181a43;
  position: fixed;
  top: 0.7rem;
  left: 0;
  width: 100vw;
  height: 70vh;
  transform: translateY(calc(-100% + -0.7rem));
  transition: 0.3s;
  z-index: 888;
  padding: 0.15rem;
}

.menu-list {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 3;
  font-size: 0.14rem;
  /* z-index: 998; */
}

.menu {
  position: relative;
  color: #fff;
  z-index: 998;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.menu:hover {
  font-weight: bold;
  opacity: 0.7;
  /* position: relative;
  left: 0;
  top: 0; */
}

.copy-rights_menu {
  /* width: 100vw;
  height: 100%; */
  color: #9798aa;
  position: absolute;
  bottom: 0.15rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.copy-rights_menu p {
  font-size: 0.1rem;
}

.icon-wrapper_menu {
  /* width: 100%;
  height: auto; */
  position: absolute;
  left: 0.15rem;
  bottom: 0.15rem;
}
.sns-icon_menu {
  width: 100%;
  height: auto;
  /* display: flex; */
  /* gap: 0.2rem; */
}
.icon .fa-brands {
  /* width: 100%;
  height: auto; */
  font-size: 0.16rem;
  color: #9798aa;
}

/* active付与後 */
.hamburger.active span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0; /* 透明にする */
}
.hamburger.active span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}
.slide-menu.active {
  transform: translateY(0);
}

/* ファーストヴュー FV */
#fv {
  background-image: url(/img/top-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-position-y: -0.5rem;
  background-color: #fae9ae;
  width: 100%;
  height: 160vw;
  position: relative;
  margin-top: 0.7rem;
  padding-top: -0.7rem;
}

.top-line {
  width: 100%;
  height: 0.5rem;
  display: flex;
  margin-bottom: 0.2rem;
}
.lines {
  flex: 1;
}
.l-lightblue {
  background-color: #00929f;
}
.l-red {
  background-color: #bf0d18;
}
.l-brown {
  background-color: #af7731;
}
.l-cream {
  background-color: #fae9ae;
}
.l-blue {
  background-color: #181a43;
}

.head-line {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 1;
  margin-top: 0.2rem;
}
.head-line img {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
}

.head-line h3 {
  margin-top: 0.2rem;
  text-shadow: 0.02rem 0.02rem 0 #fae9ae, -0.02rem -0.02rem 0 #fae9ae, -0.02rem 0.02rem 0 #fae9ae, 0.02rem -0.02rem 0 #fae9ae, 0rem 0.02rem 0 #fae9ae, 0rem -0.02rem 0 #fae9ae, -0.02rem 0rem 0 #fae9ae, 0.02rem 0rem 0 #fae9ae;
}

.catch {
  font-size: 0.16rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 2.4rem;
  bottom: 0;
  left: 2rem;
  right: 0;
  text-shadow: 0.02rem 0.02rem 0 #fae9ae, -0.02rem -0.02rem 0 #fae9ae, -0.02rem 0.02rem 0 #fae9ae, 0.02rem -0.02rem 0 #fae9ae, 0rem 0.02rem 0 #fae9ae, 0rem -0.02rem 0 #fae9ae, -0.02rem 0rem 0 #fae9ae, 0.02rem 0rem 0 #fae9ae;
  z-index: 100;
}

.top-img {
  width: 100%;
  height: auto;
  position: relative;
  /* left: 0.2rem; */
  top: 0.6rem;
}
.top-img img {
  width: 95%;
  object-fit: cover;
  margin: 0 auto;
}

.car-list {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: absolute;
  bottom: 0.15rem;
}
.lineup {
  flex: 1;
  border-right: solid 0.01rem #181a43;
  display: inline;
}
.lineup:nth-child(5) {
  border-right: none;
}
.lineup p {
  font-size: 0.1rem;
}
/*  */

/* 飾り罫 */
/* top 白ケイ */
.nega-top-liner {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  top: 0;
  right: 0.15rem;
  border-right: solid 0.01rem #fff;
}
/* bottom 白ケイ */
.nega-bt-liner {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  right: 0.15rem;
  border-right: solid 0.01rem #fff;
}
/* top 黒ケイ */
.posi-top-liner {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  top: 0;
  right: 0.15rem;
  border-right: solid 0.01rem #181a43;
}
/* bottom 黒ケイ */
.posi-bt-liner {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  right: 0.15rem;
  border-right: solid 0.01rem #181a43;
}
/* チャプター 黒ケイ */
.chapter-liner {
  width: 0.37rem;
  height: 0.37rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 0.01rem #181a43;
}
/*  */

/* セクション */
section {
  width: 100%;
  height: auto;
  position: relative;
}

/*  */

/* NEWS */
.wrapper {
  width: 100%;
  height: auto;
  color: #181a43;
}

#news-wrapper {
  width: 100%;
  height: auto;
  background-color: #181a43;
  color: #fff;
  position: relative;
}

.container {
  display: flex;
  gap: 0.3rem;
  padding: 0.15rem;
  position: relative;
}

.chapter {
  /* width: .3rem; */
  height: auto;
  writing-mode: vertical-lr;
}
.chapter h2 {
  font-size: 0.14rem;
  vertical-align: baseline;
}

.news-list {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 !important;
  line-height: 2;
}
.news-list :last-of-type {
  margin-bottom: 0rem;
}

.news-flex {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 0.1rem;
  vertical-align: text-top;
}
.news {
  line-height: 1.6;
  text-align: justify;
  text-justify: distribute;
  font-size: 0.12rem;
  flex: 3;
}
.date {
  align-self: 0.4rem;
  color: #9798aa;
  font-weight: bold;
  font-size: 0.12rem !important;
  flex: 1;
  margin-top: -0.03rem;
}

/*  */

/* ABOUT */
#about-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.intro {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 !important;
  line-height: 2;
  font-size: 0.2rem;
}

/* アバウト内 飾り罫 */
#about-wrapper > .posi-bt-liner {
  border-bottom: solid 0.01rem #181a43;
}
/*  */

/* CUSTOM */
#custom-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.flex-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  gap: 0.3rem 0.15rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.3rem 0 !important;
}
.flex-content {
  flex: calc(50% - 0.15rem);
}

.maker {
  margin-top: 0.1rem;
  font-size: 0.1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 0.01rem 0.02rem;
  background-color: #bf0d18;
}
.flex-txt {
  font-size: 0.12rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000;
}

/*  */

/* instaウィジェット */
#insta {
  margin-bottom: 0.6rem;
}
.none-txt {
  color: #fae9ae;
}
.wedget-wrapper {
  width: 100%;
  height: auto;
  text-align: center;
  border-top: dashed 0.015rem #181a43;
  padding-top: 0.15rem;
}
.wedget-wrapper h2 {
  margin-bottom: 0.1rem;
}

.snapwidget-widget {
  width: 100%;
  height: 2rem !important;
}

.btn-wrapper {
  width: 100%;
  height: auto;
  padding-left: 0.21rem;
}
.btn {
  text-align: center;
  position: relative;
}
.btn a h4 {
  line-height: 1;
  background-color: #bf0d18;
  display: inline-block;
  width: 0.8rem;
  padding: 0.1rem;
  border-radius: 0.4rem;
  color: #fff;
}
/*  */

/* お問合せフォーム */
#reservation-wrapper {
  width: 100%;
  height: auto;
  background-color: #181a43;
  color: #fff;
}

.form-wrapper {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 !important;
}

/*  */

/* アウトドア用品遷移 */
#goods-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.lead-wrapper {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 !important;
}
.lead {
  width: 100%;
  height: auto;
  margin-bottom: 0.15rem;
}
.lead-wrapper > .btn {
  text-align: start;
  margin-top: 0.15rem;
}
.lead-wrapper > .btn a h4 {
  width: 2.2rem;
  text-align: center;
}
/*  */

/* 会社概要 */
#company-wrapper {
  width: 100%;
  height: auto;
  background-color: #bf0d18;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.company-detail {
  width: 100%;
  height: auto;
  padding-top: 0.3rem !important;
}

.address-wrapper {
  margin-bottom: 0.15rem;
}
.address {
  font-size: 0.12rem;
}

.map-wrapper {
  position: relative;
  /* position: absolute; */
  right: -0.15rem;
  transform: scaleX(1.08);
  margin-bottom: 0.15rem;
  overflow: hidden;
}
.map {
  object-fit: cover;
}

.icon-wrapper {
  width: 100%;
  height: auto;
  z-index: 99999 !important;
}
.sns-icon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  gap: 0.2rem;
}
.fa-brands {
  font-size: 0.16rem;
  color: #fff;
}

.category-wrapper {
  width: 100%;
  height: auto;
  padding-bottom: 0.15rem;
  border-bottom: dashed 0.01rem #fff;
  margin-bottom: 0.15rem;
}
.category-wrapper > .category-flex > li {
  margin-right: 0.05rem;
}
.category {
  color: #fff;
}
.category p {
  font-size: 0.12rem;
}

.category-flex {
  display: flex;
  flex-wrap: wrap;
}

.copy-rights {
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0.15rem;
  /* margin-top: 0.15rem; */
  margin-left: auto;
  margin-right: auto;
}
.copy-rights p {
  font-size: 0.1rem;
  text-align: center;
}
/*  */

/* モーダルウィンドウ */
.modal {
  width: 100%;
  height: auto;
}
.modal-overlay {
  width: 100vw;
  height: auto;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
}

.modal-container {
  background-color: #fff;
  max-height: 75vh;
  width: 95%;
  max-width: 5rem;
  overflow: auto;
  padding: 0.15rem;
  margin-top: 0.7rem;
  /* overscroll-behavior: contain; */
}

.modal-header {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}

.modal-title {
  font-size: 0.22rem;
}

.modal-text {
  margin-top: 0.1rem;
  width: 100%;
  height: auto;
  text-justify: justify;
}
.modal-text p {
  font-size: 0.1rem;
  line-height: 2.2;
}
.price-wrapper {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
.price {
  font-size: 0.16rem;
}

/* .modal-header .modal-close::before {
  content: "\2715";
} */

/* .modal-content {
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
} */

.img-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.img-container {
  width: 100%;
  height: auto;
}
.img-item {
  width: 100%;
  height: auto;
  position: relative;
}
.img-item img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* 開閉ボタン */
.modal-open {
  /* display: block; */
  margin: 100px auto;
}

.modal-close {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  background: #bf0d18;
  border: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.fa-xmark {
  font-size: 0.18rem;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/* ディテール アコーディオン開閉 */
.modal-detail-wrapper {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}
.toggle {
  display: none;
}
.Label {
  /*タイトル*/
  padding: 0.05rem;
  display: block;
  color: #fff;
  background: #9798aa;
  background-color: rgb(151, 152, 170, 0.7);
  border-bottom: solid 0.01rem #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.Label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  border-top: 0.02rem solid #fff;
  border-right: 0.02rem solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.03rem);
  right: 0.2rem;
  transform: rotate(135deg);
}
.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.content {
  height: 0;
  padding: 0 0.05rem;
  overflow: hidden;
  background-color: rgb(151, 152, 170, 0.7);
  color: #fff;
}
.toggle:checked + .Label + .content {
  /*開閉時*/
  height: auto;
  padding: 0.05rem;
  transition: all 0.3s;
}
.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}

/* スライド */
#main-carousel {
  margin-bottom: 0.05rem;
}
#thumbnail-carousel {
  width: 100%;
  height: auto;
}
#main-2-carousel {
  margin-bottom: 0.05rem;
}
#thumbnail-2-carousel {
  width: 100%;
  height: auto;
}
.splide__slide img {
  width: 100%;
  height: auto;
}

.splide__track {
  width: 100%;
  height: auto;
}

.splide__list {
  width: 100%;
}

.splide__slide {
  opacity: 1;
}

.splide__slide.is-active {
  opacity: 1;
}

#reservation-wrapper__pc {
  display: none;
}
.pc {
  display: none;
}

@media screen and (min-width: 800px) {
  body {
    display: flex;
    justify-content: center;
  }
  .wrapper__pc {
    max-width: 4.6rem;
    order: 2;
    overflow: scroll;
  }
  #fv {
    height: 70vh;
  }

  .top-img {
    width: calc(140vw / 6);
    position: absolute;
    top: 0.5rem;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: 0 auto;
  }

  #about-wrapper {
    background-color: #fae9ae;
  }

  #custom-wrapper {
    background-color: #fae9ae;
  }

  #insta {
    background-color: #fae9ae;
  }

  #goods-wrapper {
    background-color: #fae9ae;
  }
  #goods-wrapper > .posi-top-liner {
    border-top: solid 0.01rem #181a43;
  }
  #goods {
    background-color: #fae9ae;
  }

  .chapter-liner {
    z-index: 999;
  }
  #reservation {
    display: none;
  }

  /* 問い合わせフォーム */
  #reservation-wrapper {
    display: none;
  }
  #reservation-wrapper__pc {
    display: block;
    width: 100%;
    height: 100vh !important;
    overflow: scroll;
    height: auto;
    background-color: #181a43;
    color: #fff;
    order: 3;
    position: sticky;
    top: 0;
    border-left: solid 0.015rem #fff;
    padding-top: 0.7rem;
  }
  #reservation-wrapper__pc > .nega-bt-liner {
    display: none;
  }

  .container__pc {
    padding: 0.15rem;
    position: relative;
  }

  .chapter__pc {
    text-align: center;
    margin-top: 0.15rem;
  }

  .pc {
    display: block;
    width: 100%;
    height: 100vh !important;
    overflow: scroll;
    height: auto;
    /* background-color: #181a43; */
    color: #fff;
    order: 1;
    position: sticky;
    top: 0;
    padding-top: 0.7rem;
    border-right: solid 0.015rem #fff;
  }
  .pc-img {
    width: 70%;
    height: auto;
    margin: 2rem auto;
  }

  .pc-img img {
    max-width: 100%;
    object-fit: cover;
    border: solid 0.1rem #fff;
    box-shadow: 0.15rem 0.15rem 0.15rem rgba(0, 0, 0, 0.3);
  }

  /* .left-img__pc {
    padding: 0.15rem 0.3rem 0.15rem 0;
  }
  .right-img__pc {
    padding: 0.15rem 0 0.15rem 0.3rem;
  } */

  .caution {
    text-align: center;
  }
  .caution-img {
    opacity: 0.6;
    margin-bottom: 0.3rem;
    max-width: 100%;
    width: 2rem;
  }
}
/* ------------------------------------------------ */
