@charset "UTF-8";
#cycle-page {
  overflow: hidden;
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
  #cycle-page {
    margin-bottom: 100px;
  }
}

#cycle-page h2 {
  text-align: center;
  width: 100%;
}

#cycle-page h2 img {
  max-width: 300px;
  width: 100%;
  transition: .3s;
}

@media only screen and (min-width: 768px) {
  #cycle-page h2 img {
    max-width: 300px;
  }
}

@media only screen and (min-width: 1025px) {
  #cycle-page h2 img {
    max-width: 600px;
  }
}

#cycle-page .cycle-head {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #999;
  z-index: 10;
  width: 100%;
  background: #FFFFFF;
  transition: .3s;
  position: relative;
  z-index: 20;
  position: fixed;
  top: 0;
  padding: 20px 0;
}

#cycle-page .cycle-head.fixed {
  top: 50px !important;
  padding-bottom: 10px;
  padding-top: 25px;
}

#cycle-page .cycle-head.fixed h2 img {
  max-width: 300px;
}

/* cycle-mv 自体 */
.cycle-mv {
  width: 100%;
  position: relative;
  opacity: 0;
  /* フェードイン用 */
  transition: opacity 1s ease;
  min-height: calc(100vh - var(--header-height) - 250px);
  /* 高さ確保 */
}

@media only screen and (min-width: 768px) {
  .cycle-mv {
    margin: 50px 0 150px;
    padding: 0 50px;
  }
}

@media only screen and (min-width: 1025px) {
  .cycle-mv {
    padding: 0 100px;
    min-height: calc(100vh - var(--header-height) - 100px);
    /* 高さ確保 */
  }
}

.cycle-mv .swiper-pagination {
  bottom: -25px;
}

@media only screen and (min-width: 768px) {
  .cycle-mv .swiper-pagination {
    bottom: -30px;
  }
}

.cycle-mv .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #777;
  background: #FFFFFF;
}

.cycle-mv .swiper-pagination .swiper-pagination-bullet-active {
  background: #777;
}

/* loading overlay */
.loading-overlay {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 90vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 24px;
  color: #333;
  transition: opacity 0.5s ease;
}

/* 非表示にする */
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

#cycle-page .cycle-mv .bird01 {
  position: absolute;
  max-width: 45vw;
  z-index: 10;
  left: -7vw;
  bottom: 14vw;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-mv .bird01 {
    max-width: 300px;
    top: -20px;
    left: 0px;
  }
}

@media only screen and (min-width: 1025px) {
  #cycle-page .cycle-mv .bird01 {
    max-width: 400px;
    top: -20px;
    left: 0px;
  }
}

#cycle-page .cycle-mv .bird02 {
  position: absolute;
  max-width: 25vw;
  z-index: 10;
  right: -5vw;
  bottom: 32vw;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-mv .bird02 {
    max-width: 150px;
    bottom: -20px;
    right: 0;
  }
}

@media only screen and (min-width: 1025px) {
  #cycle-page .cycle-mv .bird02 {
    max-width: 200px;
    bottom: -20px;
    right: 0;
  }
}

#cycle-page #cycle-mv {
  height: calc(100vh - var(--header-height) - 250px);
}

@media only screen and (min-width: 768px) {
  #cycle-page #cycle-mv {
    height: calc(100vh - var(--header-height) - 100px);
  }
}

#cycle-page #cycle-mv .swiper-wrapper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#cycle-page .cycle-content {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

#cycle-page .cycle-content h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.8vw, 2rem);
  position: relative;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-content h3 {
    margin-top: -20px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-content h3 br {
    display: none;
  }
}

#cycle-page .cycle-content h4 {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-content h4 {
    text-align: left;
  }
}

#cycle-page .cycle-inner {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

#cycle-page .cycle-inner .cycle-box {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-inner .cycle-box {
    width: 47%;
  }
}

#cycle-page .cycle-inner .cycle-box .area {
  font-size: clamp(0.8rem, 1vw, 1.1rem);
  margin-bottom: 10px;
  text-align: center;
  margin-top: 10px;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  #cycle-page .cycle-inner .cycle-box .area {
    text-align: left;
    margin-top: 20px;
  }
}

#cycle-page .cycle-inner .cycle-box .pic {
  overflow: hidden;
}

#cycle-page .cycle-inner .cycle-box .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 4 / 2.5;
  width: 100%;
  height: auto;
  transition: .5s;
}

#cycle-page .cycle-inner .cycle-box .pic img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.cycle-footer {
  border-top: 2px solid #999;
  padding-top: 30px;
  margin-top: 50px;
  padding-bottom: 0px;
}

@media only screen and (min-width: 768px) {
  .cycle-footer {
    padding-top: 50px;
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.cycle-footer img {
  width: 150px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .cycle-footer img {
    width: 200px;
  }
}

.fix-cycle {
  background: #00578D;
  width: 320px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  color: #FFFFFF;
  padding: 20px 30px 60px;
  border-radius: 10px;
  display: none;
}

.fix-cycle .app-tit {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.fix-cycle .qr-column {
  display: flex;
  justify-content: space-between;
}

.fix-cycle .qr-column > div {
  width: 42%;
}

.fix-cycle .qr-column .cord {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  margin: 0;
}

.fix-cycle .qr-column dl {
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.7rem, 0.7vw, 0.7rem);
  margin-top: 10px;
  letter-spacing: -.01rem;
  font-weight: 600;
}

.cycle-mv .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.loading {
  width: 65px;
  height: 65px;
  margin: 50px auto;
  border-radius: 50%;
  border: 6px solid #ddd;
  border-top-color: #999;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.line-mv {
  background: #000;
  width: 100%;
  z-index: 100;
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  z-index: 10;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .line-mv {
    margin-top: -50px;
    width: 85vw;
  }
}

.btn_bookstay_wrap {
  position: fixed;
  right: 0;
}

.single-cycling {
  /* Google Mapのiframe */
}

.single-cycling .page-catch-img {
  /*margin-top: calc(var(--header-height) - 0px);*/
  height: 40vh;
}

@media only screen and (min-width: 768px) {
  .single-cycling .page-catch-img {
    height: 70vh;
  }
}

.single-cycling .page-catch-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.single-cycling .head-area {
  text-align: center;
  margin-top: 30px;
}

.single-cycling .cycling-tit {
  font-size: clamp(1.3rem, 1.7vw, 2rem);
  text-align: center;
}

.single-cycling .entry-content {
  max-width: 900px;
  margin: auto;
}

.single-cycling .ideas-content-title {
  font-size: clamp(1.3rem, 1.7vw, 2rem);
}

.single-cycling .cycling-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

@media only screen and (min-width: 768px) {
  .single-cycling .cycling-map {
    padding-top: 55%;
    /* 比率を4:3に固定 */
  }
}

.single-cycling .cycling-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
