@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fffeec;
  z-index: -10;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #333;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

section {
  position: relative;
  padding: 8.3333333333rem 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 5.3571428571rem 0;
  }
}

dt, strong {
  font-weight: inherit;
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Objects
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 80vw;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
.inner .container {
  width: 83.3333333333%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
  }
}

/*  headings
-------------------------------------------------*/
h2 {
  margin-bottom: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    margin-bottom: 2.5rem;
  }
}
h2:not(.uji) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.3333333333rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  h2:not(.uji) {
    font-size: 2.5714285714rem;
    text-align: center;
  }
}
h2 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.3333333333rem;
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  h2 span {
    font-size: 1.0714285714rem;
  }
}

/*  scroll
-------------------------------------------------*/
.scroll_item,
.scroll_list_item,
.scroll_fade_item {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
.scroll_item.scrollActive,
.scroll_list_item.scrollActive,
.scroll_fade_item.scrollActive {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}

.fadeTop {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.fadeTop.scrollActive {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeLeft,
.fadeRight {
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
.fadeLeft.scrollActive,
.fadeRight.scrollActive {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeRight {
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8.8888888889rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.6666666667rem;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  header {
    height: 5.7142857143rem;
    padding: 1.0714285714rem;
  }
}
header.fixed {
  -webkit-animation: slide_down 0.5s forwards;
          animation: slide_down 0.5s forwards;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media print, screen and (min-width: 768px) {
  header.fixed {
    height: auto;
  }
  header.fixed .btn {
    width: 7.1111111111rem;
    height: 7.1111111111rem;
    padding-top: 3.8888888889rem;
  }
  header.fixed .btn::before {
    width: 1.7777777778rem;
    height: 1.9444444444rem;
    top: 1.3333333333rem;
  }
  header.fixed .btn::after {
    width: 0.8888888889rem;
    height: 0.4444444444rem;
    bottom: 0.8888888889rem;
  }
}
header > a {
  display: block;
}
header > a.logo {
  width: 5.5555555556rem;
  position: relative;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  header > a.logo {
    width: 3.5714285714rem;
  }
}
header > a.logo:hover img {
  opacity: 0.75;
}
header > a.hamburger {
  display: block;
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  border-radius: 50%;
  background: #005d36;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media print, screen and (min-width: 768px) {
  header > a.hamburger {
    display: none;
  }
}
header > a.hamburger span {
  position: absolute;
  width: 1.4285714286rem;
  height: 0.0714285714rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header > a.hamburger span:first-child {
  top: 1.0714285714rem;
}
header > a.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header > a.hamburger span:last-child {
  bottom: 1.0714285714rem;
}
header > a.hamburger.active span:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
          transform: translate(-50%, -50%) rotate(30deg);
}
header > a.hamburger.active span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
header > a.hamburger.active span:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
          transform: translate(-50%, -50%) rotate(-30deg);
}
header nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5.7142857143rem 6.6666666667vw 0;
  }
  header nav.open {
    opacity: 1;
    visibility: visible;
  }
}
header nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  header nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3.5714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  header nav ul li {
    margin-right: 2.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  header nav ul li {
    width: 100%;
    border-bottom: dotted 1px #005d36;
  }
}
header nav ul li a {
  color: #005d36;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  header nav ul li a {
    font-size: 1rem;
  }
  header nav ul li a::after {
    position: absolute;
    content: "";
    width: 110%;
    height: 0.1111111111rem;
    background: #88c244;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    bottom: -0.5555555556rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header nav ul li a:hover {
    opacity: 1;
  }
  header nav ul li a:hover::after {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@media only screen and (max-width: 767px) {
  header nav ul li a {
    display: block;
    font-size: 1.2857142857rem;
    padding: 1.4285714286rem 0;
    text-align: center;
  }
}
header nav ul:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.7857142857rem;
}
header nav ul:last-child li {
  width: 1.4285714286rem;
  border: none;
}
header nav ul:last-child li:not(:last-child) {
  margin-right: 1.0714285714rem;
}
header nav ul:last-child li a {
  padding: 0;
}
header nav .btn {
  font-weight: 500;
  background: #005d36;
  color: #fff;
  text-align: center;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  header nav .btn {
    width: 8.8888888889rem;
    height: 8.8888888889rem;
    padding-top: 4.7222222222rem;
    font-size: 1.3333333333rem;
  }
  header nav .btn:hover::after {
    bottom: 0.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  header nav .btn {
    width: 19.6428571429rem;
    height: 4.2857142857rem;
    line-height: 4.2857142857rem;
    border-radius: 2.1428571429rem;
    font-size: 1.7142857143rem;
  }
}
header nav .btn::before, header nav .btn::after {
  position: absolute;
  content: "";
}
@media print, screen and (min-width: 768px) {
  header nav .btn::before, header nav .btn::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  header nav .btn::before, header nav .btn::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
header nav .btn::before {
  background: url(../img/icon_calendar.svg) no-repeat center top/contain;
}
@media print, screen and (min-width: 768px) {
  header nav .btn::before {
    top: 1.6666666667rem;
    width: 2.2222222222rem;
    height: 2.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  header nav .btn::before {
    width: 1.7857142857rem;
    height: 1.8928571429rem;
    left: 1.7857142857rem;
  }
}
header nav .btn::after {
  background: #fff;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
}
@media print, screen and (min-width: 768px) {
  header nav .btn::after {
    width: 1.1111111111rem;
    height: 0.5555555556rem;
    bottom: 1.1111111111rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  header nav .btn::after {
    width: 1.0714285714rem;
    height: 0.5357142857rem;
    right: 1.7857142857rem;
  }
}
header nav p {
  text-align: center;
  color: #005d36;
  font-size: 1.0714285714rem;
  font-weight: 500;
  margin-top: 3.5714285714rem;
}
header nav p a {
  color: #005d36;
}

@-webkit-keyframes slide_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8.3333333333rem);
            transform: translateY(-8.3333333333rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8.3333333333rem);
            transform: translateY(-8.3333333333rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*  mv
-------------------------------------------------*/
#mv {
  padding: 8.8888888889rem 0 0;
  height: 100dvh;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mv {
    padding: 5.7142857143rem 0 0;
  }
}
#mv::before, #mv::after {
  position: absolute;
  content: "";
  width: 50%;
  left: 0;
  z-index: -1;
}
#mv::before {
  height: 100%;
  background: url(../img/bg_wave.svg) repeat left top/35px auto #eaf2cb;
  top: 0;
}
#mv::after {
  height: 50%;
  background: url(../img/dots_green.svg) no-repeat left top/contain;
  top: 30%;
}
@media only screen and (max-width: 767px) {
  #mv::after {
    width: 100%;
    top: 5.7142857143rem;
  }
}
#mv .inner {
  width: 90vw;
  max-width: 90vw;
  height: 100%;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #mv .inner {
    width: 93.3333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#mv .inner h1 {
  font-family: "Crimson Text", "Shippori Mincho", serif;
  color: #88c244;
  font-size: 3.3333333333rem;
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mv .inner h1 {
    font-size: 2.5714285714rem;
    margin: 3.5714285714rem 0 2.5rem;
  }
}
#mv .inner h1 strong {
  color: #005d36;
}
#mv .inner h1 span {
  display: block;
  color: #005d36;
  font-size: 1.6666666667rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mv .inner h1 span {
    font-size: 1.2857142857rem;
  }
}
#mv .inner h1 span::after {
  position: absolute;
  content: "";
  width: 8.3333333333rem;
  height: 1px;
  background: #88c244;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.5em;
}
@media only screen and (max-width: 767px) {
  #mv .inner h1 span::after {
    width: 6.4285714286rem;
  }
}
#mv .inner figure {
  width: 62.962962963%;
  height: 100%;
  overflow: hidden;
  border-radius: 3.3333333333rem 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mv .inner figure {
    width: 100%;
    border-radius: 2.1428571429rem 0 0;
  }
}
#mv .inner figure::after {
  position: absolute;
  content: "";
  background: url(../img/logo-w.svg) no-repeat center right/contain;
  width: 2.7777777778rem;
  height: 18rem;
  right: 2.7777777778rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #mv .inner figure::after {
    width: 1.7857142857rem;
    height: 11.5714285714rem;
    right: 1.0714285714rem;
  }
}
#mv .inner figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
}
#mv .waves__wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
#mv .waves__wrap .waves {
  position: relative;
  width: 100%;
  height: 15vh;
}
@media only screen and (max-width: 767px) {
  #mv .waves__wrap .waves {
    height: 10vh;
  }
}
#mv .waves__wrap .waves .parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
#mv .waves__wrap .waves .parallax > use:first-child {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
#mv .waves__wrap .waves .parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
#mv .waves__wrap .waves .parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
#mv .waves__wrap .waves .parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
/*  ABOUT
-------------------------------------------------*/
#about {
  padding-top: 5.5555555556rem;
  position: relative;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  #about {
    padding-top: 3.5714285714rem;
  }
}
#about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #88c244;
  left: 0;
  top: 0;
  z-index: -2;
}
#about .inner h2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
}
#about .inner h2 span {
  color: #005d36;
  margin-top: 0;
  margin-left: 1em;
}
#about .inner .contents {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  #about .inner .contents {
    border-radius: 2.2222222222rem;
    padding: 2.7777777778rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.2222222222rem;
    position: relative;
  }
  #about .inner .contents::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background: url(../img/dots_white.svg) no-repeat center center/contain;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #about .inner .contents {
    border-radius: 1.4285714286rem;
    padding: 1.7857142857rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.7857142857rem;
  }
}
#about .inner .contents figure {
  width: 11.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #about .inner .contents figure {
    width: 7.1428571429rem;
  }
}

/*  電動レンタサイクルで宇治周遊
-------------------------------------------------*/
#uji {
  padding-bottom: 26.6666666667rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #uji {
    padding-bottom: 30rem;
  }
}
#uji::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../img/bg_wave.svg) repeat left top/35px auto #eaf2cb;
  z-index: -1;
}
#uji h2 {
  text-align: center;
  font-family: "Crimson Text", "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 2.6666666667rem;
  color: #88c244;
}
@media only screen and (max-width: 767px) {
  #uji h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
#uji h2 strong {
  color: #005d36;
}
#uji h2 span {
  color: #005d36;
  display: block;
  margin: 0 0 1em;
}
@media only screen and (max-width: 767px) {
  #uji h2 span {
    line-height: 1;
  }
}
#uji .inner {
  display: grid;
}
@media print, screen and (min-width: 768px) {
  #uji .inner {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  #uji .inner {
    grid-template-columns: 1fr 1fr;
  }
}
#uji .inner h3 {
  font-family: "Crimson Text", "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  #uji .inner h3 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 2rem;
    grid-row: 1/2;
    grid-column: 2/3;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #uji .inner h3 {
    font-size: 1.2857142857rem;
    text-align: center;
    grid-row: 1/2;
    grid-column: 1/3;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #uji .inner figure {
    width: 10.7142857143rem;
  }
}
@media print, screen and (min-width: 768px) {
  #uji .inner figure:first-of-type {
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
@media print, screen and (min-width: 768px) {
  #uji .inner figure:last-of-type {
    grid-row: 1/2;
    grid-column: 3/4;
    padding-bottom: 2.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  #uji .inner figure:last-of-type {
    margin-left: 1.7857142857rem;
    margin-top: 1.0714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  #uji .inner p {
    font-size: 1.3333333333rem;
    grid-row: 2/3;
    grid-column: 2/4;
    padding-left: 3.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  #uji .inner p {
    grid-column: 1/3;
    margin-top: 2.5rem;
    text-align: center;
  }
}

/*  rental
-------------------------------------------------*/
#rental {
  margin-top: -18.3333333333rem;
  padding-top: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #rental {
    margin-top: -24.6428571429rem;
  }
}
#rental::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 18.3333333333rem);
  left: 0;
  bottom: 0;
  background: #005d36;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #rental::before {
    height: calc(100% - 24.6428571429rem);
  }
}
#rental .inner h3 {
  width: 11.1111111111rem;
  height: 2.7777777778rem;
  line-height: 2.7777777778rem;
  background: #88c244;
  color: #fff;
  font-size: 1.3333333333rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #rental .inner h3 {
    width: 8.5714285714rem;
    height: 2.1428571429rem;
    line-height: 2.1428571429rem;
    font-size: 1.0714285714rem;
  }
}
#rental .inner h3::after {
  position: absolute;
  content: "";
  background: #88c244;
  width: 1.1111111111rem;
  height: 2.7777777778rem;
  right: -1.1111111111rem;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 767px) {
  #rental .inner h3::after {
    width: 0.8571428571rem;
    height: 2.1428571429rem;
    right: -0.8571428571rem;
  }
}
#rental .inner .box {
  background: #fff;
  border: solid 0.2777777778rem #88c244;
  border-radius: 2.2222222222rem;
  padding: 2.7777777778rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box {
    border-width: 0.1785714286rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.7857142857rem;
    border-radius: 1.4285714286rem;
    margin-bottom: 2.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  #rental .inner .box .contents {
    width: 25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#rental .inner .box .contents h3 {
  margin-left: -2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents h3 {
    margin-left: -1.7857142857rem;
  }
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents dl {
    margin: 1.7857142857rem 0;
  }
}
#rental .inner .box .contents dl dt {
  border-bottom: solid 1px #333;
  font-size: 1.3333333333rem;
  font-weight: 500;
  padding-bottom: 1.1111111111rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents dl dt {
    font-size: 1.0714285714rem;
    padding-bottom: 0.7142857143rem;
  }
}
#rental .inner .box .contents dl dt a {
  color: #88c244;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents dl dt a {
    font-size: 0.8571428571rem;
  }
}
#rental .inner .box .contents dl dd {
  line-height: 1.4;
  text-align: justify;
  margin-top: 0.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents dl dd {
    font-size: 0.9285714286rem;
    margin-top: 0.5357142857rem;
  }
}
#rental .inner .box .contents dl dd:not(:first-of-type) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#rental .inner .box .contents dl dd span {
  width: 4.4444444444rem;
  padding: 0.1111111111rem 0;
  border: solid 1px #333;
  text-align: center;
  font-size: 0.7777777778rem;
  letter-spacing: 0.05em;
  margin-right: 0.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents dl dd span {
    width: 4.2857142857rem;
    font-size: 0.7142857143rem;
    padding: 0.0714285714rem 0;
  }
}
#rental .inner .box .contents p {
  width: 100%;
  height: 2.7777777778rem;
  line-height: 2.7777777778rem;
  text-align: center;
  font-size: 1.3333333333rem;
  font-weight: 500;
  color: #005d36;
  text-align: center;
  background: rgba(136, 194, 68, 0.3);
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .contents p {
    height: 2.1428571429rem;
    line-height: 2.1428571429rem;
    font-size: 1.0714285714rem;
    margin-bottom: 1.7857142857rem;
  }
}
#rental .inner .box .map {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  #rental .inner .box .map {
    width: 33.3333333333rem;
    height: 18.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  #rental .inner .box .map {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
#rental .inner .box .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  #rental .inner .box figure {
    width: 33.3333333333rem;
  }
}
#rental .inner .flow {
  margin-bottom: 3.8888888889rem;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  #rental .inner .flow .ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow .ttl {
    margin-bottom: 1.7857142857rem;
  }
}
#rental .inner .flow .ttl p {
  font-size: 1.3333333333rem;
  margin-left: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow .ttl p {
    font-size: 1rem;
    text-align: center;
    margin-top: 1.7857142857rem;
  }
}
#rental .inner .flow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2222222222rem;
  counter-reset: flow;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol {
    grid-template-columns: 100%;
    gap: 1.7857142857rem;
  }
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#rental .inner .flow ol li figure {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(136, 194, 68, 0.2);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: flow;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li figure {
    width: 10.7142857143rem;
    height: 10.7142857143rem;
    margin-right: 1.7857142857rem;
  }
}
#rental .inner .flow ol li figure::before {
  position: absolute;
  content: "STEP " counter(flow, decimal-leading-zero);
  font-size: 1.3333333333rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #88c244;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li figure::before {
    font-size: 0.9285714286rem;
    top: 1.7857142857rem;
  }
}
#rental .inner .flow ol li figure img {
  width: 5.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li figure img {
    width: 3.9285714286rem;
  }
}
#rental .inner .flow ol li figure figcaption {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2.7777777778rem;
  font-size: 1.6666666667rem;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li figure figcaption {
    font-size: 1.2857142857rem;
    bottom: 1.7857142857rem;
  }
}
#rental .inner .flow ol li p {
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  #rental .inner .flow ol li p {
    text-align: center;
    margin-top: 1.1111111111rem;
    font-size: 0.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  #rental .inner .flow ol li p {
    font-size: 1rem;
  }
}
#rental .inner .btn {
  display: block;
  width: 27.7777777778rem;
  height: 5.5555555556rem;
  line-height: 5.5555555556rem;
  border-radius: 2.7777777778rem;
  background: #ffe100;
  color: #005d36;
  font-size: 1.6666666667rem;
  font-weight: 500;
  text-align: center;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #rental .inner .btn {
    width: 100%;
    height: 4.6428571429rem;
    line-height: 4.6428571429rem;
    border-radius: 2.3214285714rem;
    font-size: 1.4285714286rem;
  }
}
#rental .inner .btn::before, #rental .inner .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#rental .inner .btn::before {
  background: url(../img/icon_calendar-g.svg) no-repeat center left/contain;
  width: 2.2222222222rem;
  height: 2.3888888889rem;
  left: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #rental .inner .btn::before {
    width: 1.7857142857rem;
    height: 1.8928571429rem;
    list-style: 1.7857142857rem;
  }
}
#rental .inner .btn::after {
  width: 1.1111111111rem;
  height: 0.5555555556rem;
  background: #005d36;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  right: 2.7777777778rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #rental .inner .btn::after {
    width: 1.0714285714rem;
    height: 0.5357142857rem;
    right: 1.7857142857rem;
  }
}
#rental .inner .btn:hover::after {
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
}

/*  CYCLING ROUTES
-------------------------------------------------*/
#route {
  overflow-x: hidden;
}
#route .inner h2 {
  color: #88c244;
}
#route .inner h2 span {
  color: #005d36;
}
#route .inner .model {
  padding: 5.5555555556rem;
  margin-bottom: 5.5555555556rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #route .inner .model {
    padding: 1.7857142857rem;
    margin-bottom: 2.5rem;
  }
}
#route .inner .model::before, #route .inner .model::after {
  position: absolute;
  content: "";
}
#route .inner .model::before {
  width: 100vw;
  height: 27.7777777778rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}
@media only screen and (max-width: 767px) {
  #route .inner .model::before {
    height: 17.8571428571rem;
  }
}
#route .inner .model::after {
  border-radius: 2.2222222222rem;
  background-image: url(../img/bg_wave.svg);
  background-repeat: repeat;
  background-position: left top;
  background-size: 35px auto;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #route .inner .model::after {
    border-radius: 1.4285714286rem;
  }
}
#route .inner .model:first-of-type::before {
  background-color: #b9db91;
}
#route .inner .model:first-of-type::after {
  background-color: #eaf2cb;
}
#route .inner .model:first-of-type h4 {
  color: #005d36;
}
#route .inner .model:first-of-type h4::before {
  background: #005d36;
}
#route .inner .model:nth-of-type(2)::before {
  background-color: #c5aae2;
}
#route .inner .model:nth-of-type(2)::after {
  background-color: #e4ddee;
}
#route .inner .model:nth-of-type(2) h4 {
  color: #5e318f;
}
#route .inner .model:nth-of-type(2) h4::before {
  background: #5e318f;
}
#route .inner .model__ttl {
  display: grid;
  grid-template-columns: 16.6666666667rem 13.8888888889rem 16.6666666667rem;
  gap: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #route .inner .model__ttl {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0714285714rem;
  }
}
#route .inner .model__ttl h3 {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 767px) {
  #route .inner .model__ttl h3 {
    grid-column: 1/3;
    grid-row: 1/2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #route .inner .model__ttl h3 img {
    width: 8.9285714286rem;
  }
}
#route .inner .model__ttl figure {
  grid-row: 1/2;
}
@media only screen and (max-width: 767px) {
  #route .inner .model__ttl figure {
    grid-row: 2/3;
  }
}
#route .inner .model__ttl figure:first-of-type {
  grid-column: 1/2;
}
#route .inner .model__ttl figure:last-of-type {
  grid-column: 3/4;
}
@media only screen and (max-width: 767px) {
  #route .inner .model__ttl figure:last-of-type {
    grid-column: 2/3;
  }
}
#route .inner .model > p {
  text-align: center;
  font-size: 1.3333333333rem;
  margin: 2.7777777778rem 0;
}
@media only screen and (max-width: 767px) {
  #route .inner .model > p {
    font-size: 0.9285714286rem;
    margin: 1.7857142857rem 0;
  }
}
#route .inner .model ol {
  counter-reset: route;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.7777777778rem;
  margin-top: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol {
    grid-template-columns: 100%;
    gap: 1.7857142857rem;
    margin-top: 1.0714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  #route .inner .model ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#route .inner .model ol li h4 {
  counter-increment: route;
  padding-left: 2.7777777778rem;
  font-size: 1.2222222222rem;
  font-weight: 500;
  margin-bottom: 1.1111111111rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li h4 {
    font-size: 0.9642857143rem;
    padding-left: 2.1428571429rem;
    margin-bottom: 0.7142857143rem;
    letter-spacing: 0.05em;
  }
}
#route .inner .model ol li h4::before, #route .inner .model ol li h4::after {
  position: absolute;
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li h4::before, #route .inner .model ol li h4::after {
    width: 1.7857142857rem;
    height: 1.7857142857rem;
  }
}
#route .inner .model ol li h4::before {
  content: "";
  background: #005d36;
  border-radius: 50%;
}
#route .inner .model ol li h4::after {
  content: counter(route);
  color: #fff;
  font-size: 1.3333333333rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.2222222222rem;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li h4::after {
    font-size: 1.0714285714rem;
    line-height: 1.7857142857rem;
  }
}
#route .inner .model ol li h4 span {
  font-size: 0.8888888889rem;
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li h4 span {
    font-size: 0.8571428571rem;
  }
}
#route .inner .model ol li p {
  font-size: 0.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li p {
    font-size: 0.9285714286rem;
    letter-spacing: 0;
  }
}
#route .inner .model ol li p:first-of-type {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#route .inner .model ol li p + p {
  border-top: solid 1px #5e318f;
  padding-top: 0.5555555556rem;
  margin-top: 0.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #route .inner .model ol li p + p {
    padding-top: 0.3571428571rem;
    margin-top: 0.3571428571rem;
  }
}
#route .inner .model ol li p + p a {
  color: #5e318f;
  text-decoration: underline;
}
#route .inner #notice {
  background: #fff;
  border: solid 1px #ccc;
  padding: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #route .inner #notice {
    padding: 1.7857142857rem;
  }
}
#route .inner #notice h3 {
  font-size: 1.3333333333rem;
  font-weight: 500;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  #route .inner #notice h3 {
    font-size: 1.2857142857rem;
  }
}
#route .inner #notice ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  text-align: justify;
  font-size: 0.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #route .inner #notice ul li {
    font-size: 0.9285714286rem;
  }
}
#route .inner #notice ul li::before {
  content: "●";
}
#route .inner #notice ul li:not(:last-child) {
  margin-bottom: 0.5em;
}

/*  RESERVATION FORM
-------------------------------------------------*/
#form {
  background: #005d36;
}
#form .inner h2 {
  color: #88c244;
}
#form .inner h2 span {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #form .inner .form__wrap {
    width: 100vw;
    margin-left: -6.6666666667vw;
  }
}

/*  TERMS OF SERVICE
-------------------------------------------------*/
#terms {
  margin-top: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #terms {
    margin-top: 2.5rem;
  }
}
#terms h2 {
  color: #88c244;
}
#terms h2 span {
  color: #005d36;
}
#terms .inner {
  background: #fff;
  border-radius: 2.2222222222rem;
  padding: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #terms .inner {
    border-radius: 1.4285714286rem;
    padding: 1.7857142857rem;
  }
}
#terms .inner h3 {
  font-size: 1.3333333333rem;
  font-weight: 600;
  color: #005d36;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
#terms .inner p + ol {
  margin-top: 0.8em;
}
#terms .inner ol {
  counter-reset: terms;
}
#terms .inner ol li {
  counter-increment: terms;
  text-align: justify;
  padding-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.5;
}
#terms .inner ol li::before {
  content: counter(terms) ". ";
}
#terms .inner ol li:not(:last-child) {
  margin-bottom: 0.5em;
}

/*  footer
-------------------------------------------------*/
footer {
  background: #fff;
  padding: 3.8888888889rem 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 2.5rem 0;
  }
}
footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .inner .footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .inner .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .inner .footer__left a {
  display: block;
}
@media print, screen and (min-width: 768px) {
  footer .inner .footer__left a {
    width: 5.5555555556rem;
    margin-right: 2.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .inner .footer__left a {
    width: 5.3571428571rem;
    margin-bottom: 1.7857142857rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .inner .footer__left p {
    font-size: 0.9285714286rem;
    text-align: center;
    margin-bottom: 1.7857142857rem;
  }
}
footer .inner .footer__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
footer .inner .footer__right nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
footer .inner .footer__right nav a {
  color: #005d36;
  padding-left: 1.6666666667rem;
  position: relative;
}
footer .inner .footer__right nav a::before {
  position: absolute;
  content: "";
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_arrow.svg) no-repeat left center/contain;
}
footer .inner .footer__right nav a:not(:last-child) {
  margin-right: 2.7777777778rem;
}
footer .inner .footer__right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
footer .inner .footer__right ul li {
  width: 1.3888888889rem;
}
footer .inner .footer__right ul li:not(:last-child) {
  margin-right: 1.1111111111rem;
}
footer .inner .footer__right small {
  font-size: 0.7777777778rem;
  color: #999;
  font-family: "Montserrat", sans-serif;
}