@charset "UTF-8";
/*------------------------------------*\
    setting
\*------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-size: 1.0rem;
}

body {
  position: relative;
  padding-top: 62px;
  font-size: 16px;
  font-size: 1rem;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  border: 0;
}

@media (min-width: 768px) {
  body {
    padding-top: 0;
  }
}

img {
  vertical-align: bottom;
}

/*------------------------------------*\
    header
\*------------------------------------*/
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border-bottom: 2px solid #008f63;
  z-index: 100;
  background: #fff;
}

@media (min-width: 768px) {
  .l_header {
    position: relative;
    top: 0;
    left: 0;
    padding: 10px 0;
  }
}

.l_header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.header_inner {
  width: 100%;
  max-width: 1200px;
  height: 55px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header_inner {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.header_site_ttl {
  width: 140px;
  margin: 0;
}

@media (min-width: 768px) {
  .header_site_ttl {
    padding: 10px 0 10px 10px;
  }
}

@media (min-width: 1024px) {
  .header_site_ttl {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 30%;
    max-width: 208px;
  }
}

.header_site_ttl img {
  width: 100%;
}

/*------------------------------------*\
    nav
\*------------------------------------*/
nav {
  font-family: 'Lato', sans-serif;
  z-index: 500;
}

nav a:link {
  text-decoration: none;
}

nav a:visited {
  text-decoration: none;
}

nav.pc {
  display: none;
}

@media (min-width: 768px) {
  nav.pc {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 70%;
    max-width: 840px;
    margin: 0;
    padding: 0;
  }
}

nav.pc ul {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: contents;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
}

nav.pc ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 23%;
  max-width: 170px;
  padding: 10px;
  border-radius: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

nav.pc ul li:hover {
  background: #d2ebf1;
  -webkit-transition: .3s;
  transition: .3s;
}

nav.pc ul li img {
  width: 100%;
}

nav.sp {
  display: none;
}

nav.sp ul:before {
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

nav.sp ul.active:before {
  content: "メニュー";
  position: absolute;
  top: 27px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  opacity: 1.0;
  -webkit-transition: .5s;
  transition: .5s;
}

nav.sp ul {
  position: relative;
  display: none;
  width: 100%;
  margin: 0;
  padding: 80px 0 0 0;
  background: linear-gradient(-45deg, rgba(221, 225, 0, 0.9), rgba(0, 143, 99, 0.9));
  overflow: auto;
}

nav.sp ul.active {
  display: block;
}

nav.sp ul li:first-child {
  border-top: 1px solid #fff;
}

nav.sp li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  display: block;
  width: 100%;
}

nav.sp li.sub {
  text-indent: 1.5em;
}

nav.sp a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 1.2em;
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
}

nav.sp .sub a {
  padding-left: 3.2em;
}

nav.sp a i {
  margin-right: .5em;
}

nav.sp a:before {
  display: inline-block;
  padding-right: .5em;
  content: "";
  width: 18px;
  margin-right: 10px;
  height: 18px;
  background: url(../img//common/icon_arrow_R_white.png) no-repeat center center;
  background-size: 18px;
}

nav.sp a:hover {
  color: #fff;
  background-color: #008f63;
  -webkit-transform: .3s;
          transform: .3s;
}

nav.sp {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
}

.menuBtn_wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  content: "";
  height: 50px;
  width: 50px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  z-index: 180;
  opacity: .8;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (min-width: 768px) {
  .menuBtn_wrap {
    display: none;
  }
}

.js-menuBtn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 5px;
  border: 2px solid #008f63;
  border-radius: 5px;
  z-index: 200;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.menuBtn_wrap.active,
.menuBtn_wrap.active .js-menuBtn {
  border-radius: 50%;
  -webkit-transform: .5s;
          transform: .5s;
}

.js-menuBtn p {
  margin-top: -3px;
}

.js-menuBtn span.menuBtn-top {
  position: absolute;
  top: 8px;
  display: block;
  content: "";
  height: 3px;
  width: 35px;
  background-color: #008f63;
  border-radius: 1.5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.js-menuBtn span.menuBtn-midlle {
  position: absolute;
  top: 16px;
  display: block;
  content: "";
  height: 3px;
  width: 35px;
  background-color: #008f63;
  border-radius: 1.5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.js-menuBtn span.menuBtn-bottom {
  position: absolute;
  top: 24px;
  display: block;
  content: "";
  height: 3px;
  width: 35px;
  background-color: #008f63;
  border-radius: 1.5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.menuBtn_wrap.active span.menuBtn-top {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 21px;
  left: 6px;
  height: 4px;
  -webkit-transition: .5s;
  transition: .5s;
}

.menuBtn_wrap.active span.menuBtn-midlle {
  display: none;
}

.menuBtn_wrap.active span.menuBtn-bottom {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  top: 21px;
  left: 6px;
  height: 4px;
  -webkit-transition: .5s;
  transition: .5s;
}

.menuBtn_wrap .menuBtn_caption {
  position: absolute;
  bottom: -5px;
  text-align: center;
  color: #008f63;
  line-height: 1;
  opacity: 1;
  -webkit-transform: .5s;
          transform: .5s;
}

.menuBtn_wrap.active .menuBtn_caption {
  opacity: 0;
  -webkit-transform: .5s;
          transform: .5s;
}

/*------------------------------------*\
    footer
\*------------------------------------*/
.footer_nav_wrap {
  display: none;
}

@media (min-width: 768px) {
  .footer_nav_wrap {
    display: block;
    width: 100%;
    background: #008f63;
  }
}

.footer_nav_wrap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer_nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  width: 25%;
  padding: 0 10px;
}

@media (min-width: 1024px) {
  .footer_nav {
    padding: 0 20px;
  }
}

.footer_nav li {
  margin: 20px 0;
  padding-left: 1em;
  font-size: 1.6rem;
}

.footer_nav li:first-child {
  padding-left: 0;
}

.footer_nav li a {
  display: block;
  padding: 3px 10px 3px 30px;
  color: #fff;
  text-decoration: none;
  background: url(../img//common/icon_arrow_R_white.png) no-repeat 5px center;
  background-size: 20px;
  border-radius: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer_nav li a:hover {
  color: #008f63;
  background: #dde100 url(../img//common/icon_arrow_R_green.png) no-repeat 5px center;
  background-size: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer_nav li:first-child a {
  padding: 5px 10px 5px 30px;
  color: #008f63;
  background: #fff url(../img//common/icon_arrow_R_green.png) no-repeat 5px center;
  background-size: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer_nav li:first-child a:hover {
  background-color: #dde100;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer_introduction {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

.footer_introduction_caption {
  text-align: center;
  color: #008f63;
  font-size: 1.6rem;
}

.footer_introduction_ttl {
  width: 9em;
  margin: 15px auto 0;
  text-align: center;
  color: #008f63;
  font-size: 1.6rem;
  padding: 8px;
  border: 1px solid #008f63;
}

.footer_introduction_logo {
  display: block;
  width: 100%;
  max-width: 350px;
  text-align: center;
  margin: 20px auto 0;
}

.footer_introduction_logo img {
  width: 100%;
}

.footer_introduction_logo.cafemiwa img {
  width: 33%;
}

.footer_copy {
  padding: 15px 20px;
  text-align: center;
  font-size: 1.3rem;
  color: #008f63;
  background: #dde100;
}

@media (min-width: 768px) {
  .footer_copy {
    font-size: 1.4rem;
    padding: 20px 20px;
  }
}

@media (min-width: 1024px) {
  .footer_copy {
    padding: 20px 0;
  }
}

.footer_copy a {
  color: #008f63;
}

/*------------------------------------*\
    headline
\*------------------------------------*/
.ttl_m_default {
  position: relative;
  margin: 20px 0;
  padding: 0;
  font-size: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ttl_m_default {
    margin: 45px 0;
    font-size: 3.6rem;
  }
}

.ttl_m_default.ttl_m_default_bgbule {
  color: #008f63;
}

.ttl_m_default.ttl_m_default_bgwhite {
  color: #008f63;
}

.ttl_m_default.ttl_m_default_bggreen {
  color: #fff;
}

.ttl_m_default_frame {
  display: block;
  width: 89px;
  margin: 0 auto;
}

.ttl_m_default_sub {
  display: block;
  margin: 30px 0 0 0;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .ttl_m_default_sub {
    font-size: 1.8rem;
  }
}

.ttl_m_default_sub:before {
  position: absolute;
  bottom: 40px;
  left: 50%;
  content: "";
  display: block;
  width: 40px;
  margin-left: -20px;
  height: 5px;
}

@media (min-width: 768px) {
  .ttl_m_default_sub:before {
    bottom: 50px;
  }
}

.ttl_m_default_bgbule .ttl_m_default_sub:before {
  background: #fff;
}

.ttl_m_default_bgwhite .ttl_m_default_sub:before {
  background: #008f63;
}

.ttl_m_default_bggreen .ttl_m_default_sub:before {
  background: #fff;
}

/*------------------------------------*\
    roundbox
\*------------------------------------*/
.roundbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #008f63;
  font-size: 1.3rem;
  border-radius: 10px;
  border: 2px solid #dde100;
  overflow: hidden;
}

@media (min-width: 768px) {
  .roundbox {
    font-size: 1.6rem;
  }
}

.top .roundbox {
  border: none;
}

.roundbox + .roundbox {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .roundbox + .roundbox {
    margin-top: 55px;
  }
}

.roundbox_img_column {
  width: 100%;
}

.roundbox_txt {
  padding: 20px;
  background: #fff;
}

@media (min-width: 768px) {
  .roundbox_txt {
    padding: 40px;
  }
}

.roundbox_img_maruesulogo {
  width: 100%;
  max-width: 400px;
  margin: 0 0 15px;
}

.roundbox_caption {
  margin: .5em 0 0 0;
}

.roundbox_caption.center {
  text-align: center;
}

.roundbox_notice {
  margin: 0 0 10px;
  padding: 0;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .roundbox_notice {
    margin: 0 0 30px;
    font-size: 2.4rem;
    text-align: center;
  }
}

.roundbox_ttl_wrap {
  margin: 0;
  background: #dde100;
}

.roundbox_ttl {
  margin: 0;
  padding: 10px 5px;
  font-size: 1.6rem;
  text-align: center;
}

@media (min-width: 768px) {
  .roundbox_ttl {
    padding: 20px 10px;
    font-size: 3rem;
  }
}

.roundbox_ttl_s {
  margin: 0;
  padding: 5px;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .roundbox_ttl_s {
    padding: 10px 10px;
    font-size: 1.8rem;
  }
}

.roundbox_datalist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0;
  padding: 5px 0;
  border-bottom: 2px solid #008f63;
}

@media (min-width: 768px) {
  .roundbox_datalist {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0;
  }
}
.roundbox_datalist a{
text-decoration: none;
color:#008f63
}

.roundbox_datalist dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0 15px;
  width: 40%;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .roundbox_datalist dt {
    width: 30%;
    font-size: 1.8rem;
  }
}

.roundbox_datalist dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0 15px;
  width: 60%;
  font-size: 1.4rem;
  border-left: 2px solid #dde100;
}

@media (min-width: 768px) {
  .roundbox_datalist dd {
    width: 70%;
    font-size: 1.8rem;
  }
}

.numberlist {
  width: 100%;
  max-width: 980px;
  counter-reset: number;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.numberlist li {
  line-height: 1.6em;
  margin-bottom: 1em;
  padding-left: 2em;
  text-indent: -2em;
}

.numberlist li:before {
  display: inline-block;
  counter-increment: number;
  content: counter(number);
  color: #fff;
  background: #008f63;
  width: 1.6em;
  height: 1.6em;
  text-indent: 0;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: .3em;
}

/*------------------------------------*\
    roundbox-list
\*------------------------------------*/
.roundbox-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: #008f63;
  font-size: 1.3rem;
  border-radius: 10px;
  border: 2px solid #dde100;
  overflow: hidden;
}

@media (min-width: 768px) {
  .roundbox-list {
    font-size: 1.6rem;
  }
}

.roundbox-list + .roundbox-list {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .roundbox-list + .roundbox-list {
    margin-top: 60px;
  }
}

.roundbox-list_list-default {
  list-style-type: disc;
  margin: 15px;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 768px) {
  .roundbox-list_list-default {
    font-size: 1.8rem;
  }
}

.roundbox .roundbox-list_list-default {
  max-width: 980px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.roundbox-list_list-other {
  list-style-type: none;
  margin: 15px;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 2;
}

@media (min-width: 768px) {
  .roundbox-list_list-other {
    font-size: 1.8rem;
  }
}

.roundbox .roundbox-list_list-other {
  max-width: 980px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.roundbox-list_ttl_wrap {
  margin: 0;
  padding: 3px 0;
  background: #dde100;
}

.roundbox-list_ttl {
  margin: 10px 0;
  padding: 0;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .roundbox-list_ttl {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .roundbox-list_ttl {
    font-size: 1.8rem;
  }
}

.roundbox-list_txt {
  padding: 10px;
  background: #fff;
}

@media (min-width: 768px) {
  .roundbox-list_txt {
    padding: 20px;
  }
}

.roundbox-list_txt_caption {
  text-align: center;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .roundbox-list_txt_caption {
    font-size: 1.6rem;
  }
}

/*------------------------------------*\
    roundbox-price
\*------------------------------------*/
.roundbox-price {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #008f63;
  font-size: 1.6rem;
  border-radius: 30px;
  border: 2px solid #dde100;
  overflow: hidden;
}

@media (min-width: 768px) {
  .roundbox-price {
    font-size: 1.8rem;
  }
}

.roundbox-price_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 30px;
  padding: 0;
}

@media (min-width: 768px) {
  .roundbox-price_list {
    margin-bottom: 55px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media (min-width: 1024px) {
  .roundbox-price_list {
    margin-bottom: 55px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.roundbox-price_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40%;
  margin: 0 4% 15px;
  background: #fff;
}

@media (min-width: 768px) {
  .roundbox-price_list li {
    width: 30%;
    margin: 0 0 30px;
  }
}

@media (min-width: 1024px) {
  .roundbox-price_list li {
    width: 16%;
    margin: 0;
  }
}

.roundbox-price_txt {
  padding: 10px;
  background: #fff;
}

@media (min-width: 768px) {
  .roundbox-price_txt {
    padding: 15px;
  }
}

.roundbox-price_caption {
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.roundbox-price_caption-sub {
  font-size: .8em;
}

.roundbox-price_notice {
  margin: 0 0 10px;
  padding: 0;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .roundbox-price_notice {
    margin: 0 0 30px;
    font-size: 2.4rem;
    text-align: center;
  }
}

.roundbox-price_ttl_wrap {
  margin: 0;
  padding: 2px 10px;
  background: #dde100;
}

.roundbox-price_ttl {
  margin: 10px 0;
  padding: 0;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .roundbox-price_ttl {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .roundbox-price_ttl {
    font-size: 1.8rem;
  }
}

/*------------------------------------*\
    roundbox-stripe
\*------------------------------------*/
.roundbox-stripe {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  border: 5px solid #dde100;
  border-radius: 15px;
  background: #fff url(../img//park/bg_stripe.png);
}

.roundbox-stripe02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 8%;
  padding: 15px;
  border: 5px solid #dde100;
  border-radius: 15px;
  background: #fff url(../img//park/bg_stripe.png);
}

@media (min-width: 768px) {
  .roundbox-stripe {
    padding: 30px;
    border-radius: 30px;
  }
  .roundbox-stripe02 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 5%;
    padding: 15px;
    border: 5px solid #dde100;
    border-radius: 15px;
    background: #fff url(../img//park/bg_stripe.png);
  }
}

.roundbox-stripe + .roundbox-stripe {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe + .roundbox-stripe {
    margin-top: 50px;
  }
}

.roundbox-stripe_inner {
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .roundbox-stripe_inner {
    padding: 25px;
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

/*------------------------------------*\
    btn
\*------------------------------------*/
.leaf_submenu {
  list-style-type: none;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0;
}

@media (min-width: 768px) {
  .leaf_submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    margin: 30px auto;
  }
}

.linkbtn_l {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .linkbtn_l {
    width: 48%;
  }
}

.linkbtn_l a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  padding: 5px 5px 5px 35px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #008f63;
  background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
          box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
  -webkit-transition: .3s;
  transition: .3s;
}

.linkbtn_l a:hover {
  background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}
.linkbtn_l p{
  text-align: center;
  margin: 0 auto;
  color: red;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .linkbtn_l a {
    margin-bottom: 0;
    padding: 13px 13px 13px 70px;
    font-size: 2.4rem;
    border-radius: 40px;
    background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 20px center;
    background-size: 38px;
  }
  .linkbtn_l a:hover {
    background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 20px center;
    background-size: 38px;
  }
  .linkbtn_l p{
    text-align: center;
    margin: 0 auto;
    color: red;
    font-size: 1.6rem;
  }
}

.bottom .linkbtn_l a {
  background: #dde100 url(/img/common/icon_arrow_bottom.png) no-repeat 5px center;
  background-size: 20px;
}

.bottom .linkbtn_l a:hover {
  background: #fff url(/img/common/icon_arrow_bottom.png) no-repeat 5px center;
  background-size: 20px;
}

@media (min-width: 768px) {
  .bottom .linkbtn_l a {
    background: #dde100 url(/img/common/icon_arrow_bottom.png) no-repeat 20px center;
    background-size: 38px;
  }
  .bottom .linkbtn_l a:hover {
    background: #fff url(/img/common/icon_arrow_bottom.png) no-repeat 20px center;
    background-size: 38px;
  }
}

.linkbtn_s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
}

.linkbtn_s a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 11.5em;
  padding: 5px 5px 5px 35px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #008f63;
  background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  border-radius: 20px;
  border: 1px solid #008f63;
  -webkit-box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
          box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
  -webkit-transition: .3s;
  transition: .3s;
}

.linkbtn_s a:hover {
  background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 768px) {
  .linkbtn_s a {
    width: 13em;
    padding: 13px 13px 13px 50px;
    border-radius: 40px;
    background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 20px center;
    background-size: 20px;
  }
  .linkbtn_s a:hover {
    background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 20px center;
    background-size: 20px;
  }
}

/*------------------------------------*\
    linkbtn_s-facility
\*------------------------------------*/
.linkbtn_s-facility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
}

.linkbtn_s-facility a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 5px 5px 5px 35px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #008f63;
  background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  border-radius: 20px;
  border: 1px solid #008f63;
  -webkit-box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
          box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.1);
  -webkit-transition: .3s;
  transition: .3s;
}

.linkbtn_s-facility a:hover {
  background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
  background-size: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 768px) {
  .linkbtn_s-facility a {
    width: 100%;
    padding: 5px 5px 5px 40px;
    border-radius: 40px;
    background: #dde100 url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
    background-size: 20px;
  }
  .linkbtn_s-facility a:hover {
    background: #fff url(/img/common/icon_arrow_R_green.png) no-repeat 10px center;
    background-size: 20px;
  }
}

/*------------------------------------*\
    l_main
\*------------------------------------*/
.l_main {
  line-height: 1.8;
}

.bg3gene {
  padding: 89px 0 0;
  background: #dde100 url(../img//common/bg_3gene_sp.png) no-repeat center top;
}

@media (min-width: 768px) {
  .bg3gene {
    padding: 180px 0 0;
    background: #dde100 url(../img//common/bg_3gene.png) no-repeat center top;
  }
}

@media (min-width: 1024px) {
  .bg3gene {
    background: #dde100 url(../img//common/bg_3gene.png) no-repeat center top;
  }
}

.bg_pool {
  margin-top: -37px;
  padding: 37px 0 0;
  background: url(../img//common/bg_wave.png) repeat-x;
  background-position: 0 0;
  -webkit-animation: bgroop 15s linear infinite;
  animation: bgroop 15s linear infinite;
}

@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -453px 0;
  }
}

@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -453px 0;
  }
}

.bg_court {
  margin-top: -10px;
  padding: 10px 0 0;
  background: url(../img//common/bg_grass.gif) repeat-x;
}

/*------------------------------------*\
    top
\*------------------------------------*/
/*------------------------------------*\
    l_slide
\*------------------------------------*/
.l_slide {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0 30px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .l_slide {
    padding: 30px 0 60px;
  }
}

.slider img {
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
}

@media (min-width: 768px) {
  .swiper-container-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 30px;
  }
}

.swiper-pagination-bullet {
  background: #dde100;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #008f63;
}

.swiper-button-prev:after {
  content: "";
  width: 29px;
  height: 50px;
  background: url(../img//top/icon_arrow_l.png) no-repeat center center;
  /* 色を白に */
  margin-left: 20px;
  /* マージンを追加 */
}

.swiper-button-next:after {
  content: "";
  width: 29px;
  height: 50px;
  background: url(../img//top/icon_arrow_r.png) no-repeat center center;
  /* 色を白に */
  margin-left: 20px;
  /* マージンを追加 */
}

/*------------------------------------*\
    top news
\*------------------------------------*/
.l_top_news {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
  background: #dde100;
}

@media (min-width: 768px) {
  .l_top_news {
    padding: 40px 20px;
  }
}

@media (min-width: 1024px) {
  .l_top_news {
    padding: 40px 0;
  }
}

.top_news_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .top_news_box {
    padding: 30px;
  }
}

.top_news_ttl {
  margin: 0;
  padding: 0 0 10px;
  text-align: center;
  color: #008f63;
  font-size: 1.8rem;
  border-bottom: 1px solid #dde100;
}

@media (min-width: 768px) {
  .top_news_ttl {
    padding: 0 0 20px;
    font-size: 3.3rem;
  }
}

.top_news_listscroll {
  height: 150px;
  overflow: auto;
}

.top_news_list {
  margin: 0;
  color: #008f63;
  font-size: 1.3rem;
  border-bottom: 1px solid #efefef;
}

@media (min-width: 768px) {
  .top_news_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    font-size: 1.6rem;
  }
}

.top_news_list a {
  color: #008f63;
}

.top_news_list dt {
  margin: 5px 0 5px;
}

@media (min-width: 768px) {
  .top_news_list dt {
    width: 10em;
    margin: 20px 0;
  }
}

.top_news_list dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .top_news_list dd {
    width: calc(100% - 10em);
    margin: 20px 0;
    padding: 0 0 0 2em;
    border-left: 1px solid #dde100;
  }
}

.top_news_ttl02 {
  margin: 5% auto 2%;
  padding: 0 0 10px;
  text-align: center;
  color: #008f63;
  font-size: 1.8rem;
  border-bottom: 1px solid #dde100;
}

@media (min-width: 768px) {
  .top_news_ttl02 {
    padding: 0 0 20px;
    font-size: 3.3rem;
  }
}

.parking {
  text-align: center;
}


/*------------------------------------*\
    top_3gene
\*------------------------------------*/
.top_3gene {
  padding: 5px 20px 80px;
  background: #008f63;
}

.top_3gene_ttl {
  width: 100%;
  margin: 30px auto 20px;
}

.top_3gene_ttl img {
  width: 100%;
}

@media (min-width: 1024px) {
  .top_3gene_ttl {
    margin: 50px auto 0;
  }
}

.top_3gene_ttl.top_3gene_ttl01 {
  max-width: 306px;
}

.top_3gene_ttl.top_3gene_ttl02 {
  max-width: 527px;
}

.top_3gene_catch {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding: 10px 5px;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
}

@media (min-width: 768px) {
  .top_3gene_catch {
    margin: 30px auto;
    font-size: 2rem;
  }
}

.top_3gene_caption {
  margin: 20px 0 0;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
}

@media (min-width: 768px) {
  .top_3gene_caption {
    margin: 30px 0 0;
    font-size: 2rem;
  }
}

.top_3gene_3gene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style-type: none;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .top_3gene_3gene {
    margin: 50px auto 0;
  }
}

.top_3gene_3gene li {
  width: 30%;
}

.top_3gene_3gene li img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

.top_3gene_7concept {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (min-width: 1024px) {
  .top_3gene_7concept {
    margin-top: 30px;
  }
}

.top_3gene_7concept li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 45%;
  margin: 2%;
  padding: 30px 15px;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  border: 1px solid #dde100;
  -webkit-box-shadow: 5px 5px 0 #dde100;
          box-shadow: 5px 5px 0 #dde100;
}

@media (min-width: 768px) {
  .top_3gene_7concept li {
    width: 30%;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .top_3gene_7concept li {
    width: 22%;
    margin: 2% 1%;
    padding: 50px 15px;
    font-size: 1.8rem;
  }
}

/*------------------------------------*\
    top_pool
\*------------------------------------*/
.top_pool_inner {
  padding: 20px 20px 30px;
  background: #d2ebf1;
}

@media (min-width: 768px) {
  .top_pool_inner {
    padding: 30px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .top_pool_inner {
    padding: 30px 0 100px;
  }
}

/*------------------------------------*\
    top_court
\*------------------------------------*/
.top_court_inner {
  padding: 20px 20px 30px;
  background: #008f63;
}

@media (min-width: 768px) {
  .top_court_inner {
    padding: 30px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .top_court_inner {
    padding: 30px 0 100px;
  }
}

/*------------------------------------*\
    top_gym
\*------------------------------------*/
.top_gym_inner {
  padding: 20px 20px 30px;
  background: #dde100;
}

@media (min-width: 768px) {
  .top_gym_inner {
    padding: 30px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .top_gym_inner {
    padding: 30px 0 100px;
  }
}

.top_gym_price_wrap {
  margin: 20px 0;
}

@media (min-width: 768px) {
  .top_gym_price_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.top_gym_price {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  border-top: 1px solid #008f63;
  border-left: 1px solid #008f63;
}

@media (min-width: 768px) {
  .top_gym_price {
    width: 48%;
    margin-top: 0;
  }
}

.top_gym_price th {
  padding: 5px;
  color: #fff;
  background: #008f63;
  border-bottom: 1px solid #008f63;
  border-right: 1px solid #008f63;
}

.top_gym_price td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60%;
  padding: 8px 15px;
  border-bottom: 1px solid #008f63;
  border-right: 1px solid #008f63;
}

.top_gym_price td:first-child {
  width: 40%;
}

.top_gym_price td:first-child {
  background: #dde100;
}

/*------------------------------------*\
    top_park
\*------------------------------------*/
.top_park_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 30px;
  background: #d2ebf1;
}

@media (min-width: 768px) {
  .top_park_inner {
    padding: 30px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .top_park_inner {
    padding: 30px 0 100px;
  }
}

.leaf_catch {
  color: #008f63;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.leaf_catch span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), color-stop(50%, #dde100));
  background: linear-gradient(white 50%, #dde100 50%);
}

@media (min-width: 768px) {
  .leaf_catch {
    font-size: 3rem;
  }
}
.leaf_submenu2 {
  list-style-type: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .leaf_submenu2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    margin: 0 auto;
  }
}
.cancel_note{
  width: 100%;
  text-align: right;
  font-size: 1.4rem;
}
.cancel_note p{
margin-top: 0;
}
@media (min-width: 768px) {
  .cancel_note{
    width: 48%;
    text-align: left;
    margin: 0 auto;
  }
}


.leaf_catch_sub {
  margin: 30px 0;
  color: #008f63;
  text-align: center;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .leaf_catch_sub {
    margin: 50px 0;
    font-size: 1.8rem;
  }
}

.leaf_imagephoto {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
}

/*------------------------------------*\
    leaf
\*------------------------------------*/
/*------------------------------------*\
    leaf_parts
\*------------------------------------*/
.leaf_maruesulogo {
  padding: 20px 0;
}

.leaf_maruesulogo img {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/*breadcrumbs*/
.breadcrumbs_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 5px;
  border-top: 1px solid #dde100;
  background: #008f63;
}

.breadcrumbs {
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 0;
}

.breadcrumbs li {
  display: inline-block;
  background: url(../img//common/icon_breadcrumbsarrow.png) no-repeat right center;
  background-size: 4px;
  padding-left: 10px;
  padding-right: 16px;
  vertical-align: middle;
  font-size: 1.3rem;
  color: #fff;
}

@media (min-width: 768px) {
  .breadcrumbs li {
    font-size: 1.4rem;
  }
}

.breadcrumbs li:last-child {
  background: none;
}

.breadcrumbs li a {
  font-size: 1.3rem;
  color: #fff;
}

@media (min-width: 768px) {
  .breadcrumbs li a {
    font-size: 1.4rem;
  }
}

.breadcrumbs_home img {
  width: 15px;
  vertical-align: middle;
}

/*------------------------------------*\
    leaf_intro
\*------------------------------------*/
.leaf_intro {
  padding: 0 20px 60px;
}

@media (min-width: 768px) {
  .leaf_intro {
    padding: 0 20px 80px;
  }
}

@media (min-width: 1240px) {
  .leaf_intro {
    padding: 0 0 80px;
  }
}

.leaf_intro.park {
  padding: 0 20px;
}

/*------------------------------------*\
    leaf_pool
\*------------------------------------*/
.leaf_pool_inner {
  padding: 20px 20px 30px;
  background: #d2ebf1;
}

@media (min-width: 768px) {
  .leaf_pool_inner {
    padding: 50px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .leaf_pool_inner {
    padding: 80px 0 100px;
  }
}

/*------------------------------------*\
    leaf_court
\*------------------------------------*/
.leaf_court_inner {
  padding: 20px 20px 30px;
  background: #008f63;
  border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
  .leaf_court_inner {
    padding: 50px 20px 100px;
  }
}

@media (min-width: 1240px) {
  .leaf_court_inner {
    padding: 80px 0 100px;
  }
}

/*------------------------------------*\
    leaf_park
\*------------------------------------*/
.leaf_park_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #fff;
}

.leaf_parkmap {
  padding: 0 0 20px;
}

@media (min-width: 768px) {
  .leaf_parkmap {
    padding: 0 0 50px;
  }
}

@media (min-width: 1024px) {
  .leaf_parkmap {
    padding: 0 0 80px;
  }
}

.leaf_park_map {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
  background: url(../img//park/bg_stripe.png);
}

@media (min-width: 768px) {
  .leaf_park_map {
    padding: 40px 20px;
  }
}

@media (min-width: 1024px) {
  .leaf_park_map {
    padding: 80px 20px;
  }
}

.leaf_park_map_img {
  display: block;
  width: 100%;
  max-width: 1011px;
  margin: 0 auto;
}

.leaf_park_maplist {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background: #dde100;
  border-top: 5px solid #fff;
}

.leaf_park_maplist_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 20px 15px;
}

@media (min-width: 768px) {
  .leaf_park_maplist_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    max-width: 1200px;
  }
}

.leaf_park_maplist_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 15px 0;
  background: #fff;
  border-radius: 15px;
  border: 5px solid #dde100;
  -webkit-transition: .3s;
  transition: .3s;
}

.leaf_park_maplist_list li:hover {
  border: 5px solid #008f63;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 768px) {
  .leaf_park_maplist_list li {
    width: 16%;
  }
}

.leaf_park_maplist_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .leaf_park_maplist_list li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.leaf_park_maplist_mark {
  width: 36px;
  margin-right: 15px;
}

@media (min-width: 768px) {
  .leaf_park_maplist_mark {
    margin-right: 0;
  }
}

.leaf_park_maplist_name {
  margin: .5em;
  font-size: 1.3rem;
  color: #008f63;
  text-align: center;
}

@media (min-width: 768px) {
  .leaf_park_maplist_name {
    margin: .5em 0 0 0;
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .leaf_park_maplist_name {
    margin: .5em 0 0 0;
    font-size: 1.8rem;
  }
}

.leaf_park_facility {
  padding: 20px 20px 30px;
  background: #008f63;
  border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
  .leaf_park_facility {
    padding: 50px 20px 50px;
  }
}

@media (min-width: 1024px) {
  .leaf_park_facility {
    padding: 80px 20px 80px;
  }
}

.leaf_park_precautionarystatement {
  padding: 20px 20px 30px;
  border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
  .leaf_park_precautionarystatement {
    padding: 50px 20px 50px;
  }
}

@media (min-width: 1024px) {
  .leaf_park_precautionarystatement {
    padding: 80px 20px 80px;
  }
}

@media (min-width: 768px) {
  .roundbox-stripe_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.roundbox-stripe_inner_img img,
.roundbox-stripe_inner_img02 img {
  display: block;
  width: 100%;
  max-width: 515px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .roundbox-stripe_inner_img {
    width: 48%;
  }
  .roundbox-stripe_inner_img02 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .roundbox-stripe_inner_data {
    width: 48%;
  }
  .roundbox-stripe_inner_data02 {
    width: 100%;
  }
}

.roundbox-stripe_facilityttl {
  margin: 0;
  padding: 10px 0 10px 40px;
  font-size: 1.6rem;
  color: #008f63;
  border-bottom: 2px solid #008f63;
}

.roundbox-stripe_facilityttl02 {
  margin: 0;
  padding: 10px 0 10px 5px;
  font-size: 1.6rem;
  color: #008f63;
  border-bottom: 2px solid #008f63;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl {
    padding: 10px 0 10px 55px;
    font-size: 3.6rem;
  }
  .roundbox-stripe_facilityttl02 {
    padding: 10px 0 10px 5px;
    font-size: 3.6rem;
  }
}

.roundbox-stripe_facilitycaption {
  font-size: 1.4rem;
  color: #008f63;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilitycaption {
    font-size: 1.8rem;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_01 {
  background: url(../img//park/icon_maker1.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_01 {
    background-size: 40px;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_02 {
  background: url(../img//park/icon_maker2.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_02 {
    background-size: 40px;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_03 {
  background: url(../img//park/icon_maker3.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_03 {
    background-size: 40px;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_04 {
  background: url(../img//park/icon_maker4.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_04 {
    background-size: 40px;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_05 {
  background: url(../img//park/icon_maker5.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_05 {
    background-size: 40px;
  }
}

.roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_06 {
  background: url(../img//park/icon_maker6.png) no-repeat left center;
  background-size: 30px;
}

@media (min-width: 768px) {
  .roundbox-stripe_facilityttl.roundbox-stripe_facilityttl_06 {
    background-size: 40px;
  }
}

/*------------------------------------*\
    leaf_access
\*------------------------------------*/
.leaf_access_gmap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  height: 300px;
}

@media (min-width: 768px) {
  .leaf_access_gmap {
    height: 520px;
    margin: 50px auto 40px;
  }
}

.leaf_access_gmap iframe {
  width: 100%;
  height: 100%;
}

.leaf_access {
  padding: 20px;
}

@media (min-width: 768px) {
  .leaf_access {
    padding: 20px 20px 50px;
  }
}

@media (min-width: 1024px) {
  .leaf_access {
    padding: 20px 20px 100px;
  }
}

.leaf_access.for_car {
  padding-top: 100px;
  background: url(../img//access/bg_road.png) repeat-x;
}

.leaf_access.for_train {
  padding-top: 100px;
  background: url(../img//access/bg_line.png) repeat-x;
}

.leaf_imagemap {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 30px;
}
/*# sourceMappingURL=style.css.map */