@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  padding: 0;
  border: none;
  outline: none;
  color: inherit;
  background: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*----------------------------------------------------
	color
----------------------------------------------------*/
/*----------------------------------------------------
	element style
----------------------------------------------------*/
body {
  background-color: #F9FCF0;
  color: #1A1311;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-style: normal;
}

input, textarea {
  font-family: "Zen Maru Gothic", sans-serif;
}

.red {
  color: #DE1E39;
}

.strong {
  font-weight: 700;
}

.is-hidden {
  display: none !important;
}

.externalIcon {
  margin: 0 3px;
  vertical-align: middle;
}

/*----------------------------------------------------
	font
----------------------------------------------------*/
html {
  font-size: 62.5%;
}

/*----------------------------------------------------
	common
----------------------------------------------------*/
.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/* ---TEL---- */
a[href*="tel:"] {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* -------------------------------------
loading
-------------------------------------- */
#loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #ecebec;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .circle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4em;
  height: 4em;
  border-radius: 100%;
  border: 4px solid #6CAE30;
  border-top-color: #ecebec;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: relative;
}
.header__container {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.header__logo a {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.5em;
}
.header__nav {
  position: relative;
}
.header__nav-btn {
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  padding: 1.6rem 1.4rem;
  background-color: #6CAE30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}
.header__nav-btn span {
  display: block;
  position: absolute;
  border-radius: 0.1rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__nav-btn span:nth-of-type(1) {
  top: 35%;
}
.header__nav-btn span:nth-of-type(2) {
  top: 50%;
}
.header__nav-btn span:nth-of-type(3) {
  top: 65%;
}
.header__nav-btn.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__nav-btn.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.header__nav-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__nav-btn.is-active span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #6CAE30;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9998;
  overflow-y: scroll;
  margin-top: 5rem;
}
.header__nav-wrap.is-open {
  right: 0;
}
.header__nav-wrap .menu {
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 10.6666666667vw 0 0;
}
.header__nav-wrap .menu ul li {
  letter-spacing: 0.02em;
}
.header__nav-wrap .menu ul li span::before {
  content: " ";
  display: inline;
  font-size: 0.2em;
}
.header__nav-wrap .menu ul li a {
  display: block;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 1em 0;
  line-height: 1em;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header__nav-wrap .menu {
    font-size: 2rem;
    padding: 10.4166666667vw 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-wrap .menu {
    font-size: 2.4rem;
    padding: 80px 0 0;
  }
}
/*----------------------------------------------------
	kv
----------------------------------------------------*/
.kv {
  width: 100%;
  position: relative;
  padding: 45.8666666667% 0 0;
  font-size: 10px;
  font-size: 1rem;
}
.kv .kv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 45.8666666667% 0 0;
  overflow: hidden;
}
.kv .kv-slide .slide_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 45.8666666667% 0 0;
  opacity: 0;
  -webkit-animation: kv-slide 24s 0s infinite;
          animation: kv-slide 24s 0s infinite;
  z-index: 0;
}
.kv .kv-slide .slide_img:nth-of-type(1) {
  background: url(assets/img/img_top01.jpg) no-repeat center/cover;
}
.kv .kv-slide .slide_img:nth-of-type(2) {
  background: url(assets/img/img_top02.jpg) no-repeat center/cover;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.kv .kv-slide .slide_img:nth-of-type(3) {
  background: url(assets/img/img_top03.jpg) no-repeat center/cover;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}
.kv .kv-slide .slide_img:nth-of-type(4) {
  background: url(assets/img/img_top04.jpg) no-repeat center/cover;
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}
.kv .p-kv {
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 11;
  padding: 1.5rem 0;
  background-color: rgba(26, 19, 17, 0.3);
}
.kv-text {
  position: absolute;
  bottom: 0.6em;
  left: 50%;
  width: 15em;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(108, 174, 48, 0.85);
  padding: 0.2em 0;
  z-index: 3;
  border-radius: 1em;
}

.bounce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  opacity: 0;
  position: relative;
}
.bounce.is-show {
  opacity: 1;
}

.letter {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(0, -100px) rotate(360deg) scale(0);
          transform: translate(0, -100px) rotate(360deg) scale(0);
  -webkit-animation: revolveDrop 1s forwards;
          animation: revolveDrop 1s forwards;
}

.letter:nth-of-type(1) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.letter:nth-of-type(1) svg {
  width: 2.9em;
  height: auto;
}

.letter:nth-of-type(2) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  margin: 0 0.35em;
}
.letter:nth-of-type(2) svg {
  width: 3em;
  height: auto;
}

.letter:nth-of-type(3) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.letter:nth-of-type(3) svg {
  width: 2.35em;
  height: auto;
}

.letter:nth-of-type(4) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  margin: 0 0.35em;
}
.letter:nth-of-type(4) svg {
  width: 2.8em;
  height: auto;
}

.letter:nth-of-type(5) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
  margin: 0 0.35em;
}
.letter:nth-of-type(5) svg {
  width: 1.7em;
  height: auto;
}

.letter:nth-of-type(6) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  margin: 0 0.35em;
}
.letter:nth-of-type(6) svg {
  width: 1.8em;
  height: auto;
}

.letter:nth-of-type(7) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
  margin: 0 0.35em;
}
.letter:nth-of-type(7) svg {
  width: 2em;
  height: auto;
}

.letter:nth-of-type(8) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.letter:nth-of-type(8) svg {
  width: 3em;
  height: auto;
}

.letter:nth-of-type(9) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
  margin: 0 0.5em;
}
.letter:nth-of-type(9) svg {
  width: 2.8em;
  height: auto;
}

.letter:nth-of-type(10) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  margin: 0 0.35em;
}
.letter:nth-of-type(10) svg {
  width: 0.55em;
  height: auto;
}

@-webkit-keyframes revolveDrop {
  30% {
    -webkit-transform: translate(0, -50rem) rotate(180deg) scale(1);
            transform: translate(0, -50rem) rotate(180deg) scale(1);
  }
  60% {
    -webkit-transform: translate(0, 20px) scale(0.8) rotate(0deg);
            transform: translate(0, 20px) scale(0.8) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0) scale(1) rotate(0deg);
            transform: translate(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes revolveDrop {
  30% {
    -webkit-transform: translate(0, -50rem) rotate(180deg) scale(1);
            transform: translate(0, -50rem) rotate(180deg) scale(1);
  }
  60% {
    -webkit-transform: translate(0, 20px) scale(0.8) rotate(0deg);
            transform: translate(0, 20px) scale(0.8) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0) scale(1) rotate(0deg);
            transform: translate(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes kv-slide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes kv-slide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@media screen and (min-width: 768px) {
  .kv {
    font-size: 20px;
    font-size: 2rem;
  }
  .kv-text {
    bottom: 1em;
    font-size: 2rem;
    border-radius: 2em;
    padding: 0.5em 0;
  }
  .kv .p-kv {
    padding: 2rem 0;
  }
}
/*----------------------------------------------------
	main
----------------------------------------------------*/
.main {
  position: relative;
  padding-top: 5rem;
}
.main::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: calc(100vh - 5rem);
  background: url(assets/img/bg_main01.png) no-repeat top left/contain, url(assets/img/bg_main02.png) no-repeat top right/contain, url(assets/img/bg_main03.png) no-repeat bottom right/contain, url(assets/img/bg_main04.png) no-repeat bottom left/contain;
  z-index: -1;
  margin-top: 5rem;
}

/*----------------------------------------------------
	contents
----------------------------------------------------*/
.contents {
  width: 92%;
  margin: 10.6666666667% auto;
  padding: 0 0 10.6666666667%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3rem;
}
.contents .inner1, .contents .inner2 {
  width: 91.3043478261%;
  margin: 0 auto;
  position: relative;
}

.top__title {
  width: 91.3043478261%;
  margin: 0 auto;
  padding-top: 11.5942028986%;
  position: relative;
}
.top__title .free {
  width: 23.8095238095%;
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -4.7619047619%;
  margin-top: -7.9365079365%;
}

@media screen and (min-width: 768px) {
  .contents {
    width: 89.84375%;
    max-width: 1000px;
    margin: 10.4166666667% auto;
    padding: 0 0 10.6666666667%;
  }
  .contents .inner1, .contents .inner2 {
    width: 91.3043478261%;
  }
  .top__title {
    width: 92.7536231884%;
  }
  .top__title .free {
    margin-right: 0;
    width: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .contents {
    width: 83.3333333333%;
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 0 80px;
  }
  .contents .inner1 {
    width: 82%;
  }
  .contents .inner2 {
    width: 92%;
  }
  .top__title {
    width: 82%;
    margin: 0 auto;
    padding-top: 8%;
  }
  .top__title .free {
    width: 18.2926829268%;
    margin-right: -3.6585365854%;
    margin-top: -7.3170731707%;
  }
}
/*----------------------------------------------------
	news
----------------------------------------------------*/
.news {
  font-size: 10px;
  font-size: 1rem;
  padding: 17.3913043478% 0 0;
}
.news .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.news .p-news {
  padding: 0.4rem 0.4rem 0.4rem 0;
  border: solid 1px #CFD642;
}
.news .p-news .news-list {
  max-height: 14rem;
  overflow: auto;
  padding: 1rem;
}
.news .p-news .news-list::-webkit-scrollbar {
  width: 0.8rem;
}
.news .p-news .news-list::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0.8rem;
}
.news .p-news .news-list::-webkit-scrollbar-thumb {
  background: #CFD642;
  border-radius: 0.8rem;
}
.news .p-news .news-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: dotted 1px #CFD642;
}
.news .p-news .news-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.news .p-news .news-list li .news-date {
  font-size: 1.1rem;
}
.news .p-news .news-list li .news-title {
  font-size: 1.4rem;
}
.news .p-news .news-list li .news-text {
  font-size: 1.4rem;
  position: relative;
  height: auto;
  overflow: hidden;
}
.news .p-news .news-list li .news-text-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  padding-top: 5rem;
  text-align: center;
  line-height: 2em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, #fff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 60%);
  cursor: pointer;
}
.news .p-news .news-list li .news-text-more::before {
  color: #008129;
  content: "＋続きを読む";
  font-size: 1.4rem;
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: right;
  bottom: 0;
  left: 0;
}
.news .p-news .news-list li .news-text.is-open {
  padding-bottom: 2em;
}
.news .p-news .news-list li .news-text.is-open .news-text-more {
  background: transparent;
}
.news .p-news .news-list li .news-text.is-active .news-text-more::before {
  text-align: right;
  content: "閉じる";
}
.news .p-news .news-list li a {
  text-decoration: none;
  color: #6CAE30;
}

@media screen and (min-width: 768px) {
  .news {
    padding: 10% 0 0;
  }
  .news .p-title {
    width: 8.6956521739%;
  }
  .news .p-news .news-list {
    padding: 1rem 1.6rem 1rem 2rem;
  }
  .news .p-news .news-list li .news-date {
    font-size: 1.4rem;
  }
  .news .p-news .news-list li .news-title {
    font-size: 1.6rem;
  }
  .news .p-news .news-list li .news-text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .news {
    padding-top: 100px;
  }
  .news .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .news .p-news .news-list {
    padding: 1rem 1.6rem 1rem 2rem;
    max-height: 21rem;
  }
  .news .p-news .news-list li .news-text {
    font-size: 1.6rem;
  }
}
/*----------------------------------------------------
	movie
----------------------------------------------------*/
.movie {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
}
.movie .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.movie .p-movie .movie-text1 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.movie .p-movie .movie-text1::after {
  background: radial-gradient(circle farthest-side, #6CAE30, #6CAE30 50%, transparent 50%, transparent);
  background-size: 0.8rem;
  content: "";
  display: block;
  height: 0.8rem;
  width: 100%;
  margin: 1rem auto 0;
}
.movie .p-movie .movie-text1 span {
  display: inline-block;
}
.movie .p-movie .movie-text1 .small {
  font-size: 1.3rem;
  display: inline-block;
}
.movie .p-movie .movie_wrap {
  padding: 0.4rem;
  border: solid 1px #CFD642;
  margin-top: 2em;
}
.movie .p-movie .movie_wrap:nth-of-type(1) {
  margin-bottom: 4em;
}
.movie .p-movie .movie_inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.movie .p-movie .movie_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .movie {
    padding: 8% 0 0;
  }
  .movie .p-title {
    width: 17.3913043478%;
    margin: 0 auto 4rem;
  }
  .movie .p-movie {
    width: 81.1594202899%;
  }
  .movie .p-movie .movie-text1 {
    width: 100%;
    font-size: 1.8rem;
  }
  .movie .p-movie .movie_wrap {
    margin-top: 4em;
  }
  .movie .p-movie .movie_wrap:nth-of-type(1) {
    margin-bottom: 8em;
  }
}
@media screen and (min-width: 1200px) {
  .movie {
    padding-top: 80px;
  }
  .movie .p-movie {
    width: 72%;
  }
  .movie .p-movie .movie-text1 {
    font-size: 2em;
  }
  .movie .p-movie .movie-text1 .small {
    font-size: 1.4rem;
  }
}
/*----------------------------------------------------
	date
----------------------------------------------------*/
.date {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
  position: relative;
}
.date::after {
  background: radial-gradient(circle farthest-side, #6CAE30, #6CAE30 50%, transparent 50%, transparent);
  background-size: 0.8rem;
  content: "";
  display: block;
  height: 0.8rem;
  width: 91.3043478261%;
  margin: 0 auto;
}
.date .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.date .p-date {
  text-align: center;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .date {
    padding: 8% 0 0;
  }
  .date .p-title {
    width: 8.6956521739%;
  }
  .date .p-date img {
    width: 73.0158730159%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .date {
    padding-top: 80px;
  }
  .date::after {
    width: 82%;
  }
  .date .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .date .p-date img {
    width: 56.8292682927%;
  }
}
/*----------------------------------------------------
	place
----------------------------------------------------*/
.place {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
  position: relative;
}
.place::after {
  background: radial-gradient(circle farthest-side, #6CAE30, #6CAE30 50%, transparent 50%, transparent);
  background-size: 0.8rem;
  content: "";
  display: block;
  height: 0.8rem;
  width: 91.3043478261%;
  margin: 0 auto;
}

.p-date.inner1 {
    font-size: 2.8rem;
    font-weight: 700;
}
.place .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.place .p-place {
  text-align: center;
  padding-bottom: 1.6rem;
}
.place .p-place .place-text1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.place .p-place .place-text2 {
  font-size: 1.4rem;
}
.place .present {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #EA7500;
}

@media screen and (min-width: 768px) {
  .place {
    padding: 8% 0 0;
  }
  .place .p-title {
    width: 8.6956521739%;
  }
  .place .p-place {
    font-size: 4rem;
  }
  .place .present {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .place {
    padding-top: 80px;
  }
  .place::after {
    width: 82%;
  }
  .place .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .place .p-place .place-text1 {
    font-size: 4rem;
  }
  .place .p-place .place-text2 {
    font-size: 1.8rem;
  }
}
/*----------------------------------------------------
	player
----------------------------------------------------*/
.player {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
}
.player .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.player .p-player .player_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  text-align: center;
}
.player .p-player .player_list-list {
  width: 33.3333%;
  padding: 0 1.5%;
  margin-bottom: 2rem;
}
.player .p-player .player_list-list .player_name {
  margin-top: 1rem;
  line-height: 1.2;
}
.player .p-player .player_list-list .small {
  font-size: 1.3rem;
}
.player .p-player .player_text {
  font-size: 1.2rem;
  padding-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .player {
    padding: 8% 0 0;
  }
  .player .p-title {
    width: 8.6956521739%;
  }
  .player .p-player .player_list {
    font-size: 1.8rem;
  }
  .player .p-player .player_list-list {
    width: 25%;
    padding: 0 1.5%;
    margin-bottom: 3rem;
  }
  .player .p-player .player_list-list .player_name {
    margin-top: 1rem;
  }
  .player .p-player .player_list-list .player_name .small {
    font-size: 1.6rem;
  }
  .player .p-player .player_list:nth-of-type(2n) {
    margin-bottom: 4rem;
  }
  .player .p-player .player_list:nth-of-type(2n) > li {
    margin-bottom: 0;
  }
  .player .p-player .player_text {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .player {
    padding-top: 80px;
  }
  .player .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .player .p-player .player_list-list {
    width: 25%;
    padding: 0 1.0869565217%;
  }
  .player .p-player .player_list-list .player_name {
    margin-top: 0.5em;
  }
}
/*----------------------------------------------------
	guest
----------------------------------------------------*/
.guest {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
  position: relative;
}
.guest .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.guest .p-guest {
  text-align: center;
}
.guest .p-guest .guest_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 1.6rem;
}
.guest .p-guest .guest_list-list {
  width: 50%;
  padding: 0 1%;
}
.guest .p-guest .guest_list-list figure {
  width: 67.3015873016%;
  margin: 0 auto;
}
.guest .p-guest .guest_list-list .guest_name {
  margin-top: 1rem;
  line-height: 1.35;
}
.guest .p-guest .guest_list-list .small {
  font-size: 1.3rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .guest {
    padding: 8% 0 0;
  }
  .guest .p-title {
    width: 8.6956521739%;
  }
  .guest .p-guest .guest_list {
    font-size: 1.8rem;
  }
  .guest .p-guest .guest_list-list figure {
    width: 45.7142857143%;
  }
  .guest .p-guest .guest_list-list .small {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .guest {
    padding-top: 80px;
  }
  .guest .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .guest .p-guest .guest_list {
    font-size: 1.8rem;
  }
  .guest .p-guest .guest_list-list {
    width: 50%;
    padding: 0 1.2195121951%;
  }
  .guest .p-guest .guest_list-list figure {
    width: 53.8461538462%;
  }
}
/*----------------------------------------------------
	program
----------------------------------------------------*/
.program {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
}
.program .p-title {
  width: 19.5652173913%;
  margin: 0 auto 4rem;
}
.program .p-text, .program .p-text2 {
  font-size: 1.3rem;
  line-height: 1.75;
}
.program-title {
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0 0.8em;
  position: relative;
}
.program-title .title {
  width: calc(100% - 3em);
}
.program-title .no {
  width: 1em;
  margin-right: 0.5em;
  display: inline-block;
}
.program-title .small {
  font-size: 1.2rem;
}
.program-title .sub {
  font-size: 1.4rem;
  display: block;
}
.program .accordion {
  position: relative;
}
.program .accordion::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.4em;
  background: url(assets/img/border.png) repeat-x center/auto 0.4rem;
  position: absolute;
  bottom: 0;
}
.program .accordion-title {
  cursor: pointer;
  position: relative;
}
.program .accordion-title::after {
  font-family: "Material Icons Round";
  content: "\e147";
  color: #008129;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.program .accordion-title.close::after {
  -webkit-transform: translate(0, -50%) rotate(135deg);
          transform: translate(0, -50%) rotate(135deg);
}
.program .accordion-content {
  display: none;
  width: 100%;
  padding: 0 0 3rem;
}
.program .title2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-left: 1.4rem;
}
.program .title2::before {
  content: "●";
  color: #008129;
  margin-left: -1.4rem;
}
.program .title3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #008129;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: dotted 0.1rem #008129;
}
.program-box {
  padding: 1rem 1rem 1.6rem;
  border-radius: 1rem;
  background-color: rgba(236, 235, 236, 0.5);
}
.program-box:not(:last-of-type) {
  margin-bottom: 2rem;
}
.program .tournament {
  margin-bottom: 2em;
}
.program .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
}
.program .col2 dt {
  width: 23.7288135593%;
  margin-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  line-height: 1.2;
  position: relative;
}
.program .col2 dt::before {
  font-family: "Material Icons Round";
  content: "\e145";
  display: block;
  color: #008129;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 2rem;
  margin-left: 1rem;
}
.program .col2 dd {
  width: 57.6271186441%;
  font-size: 1.3rem;
  line-height: 1.2;
}
.program .col2 .name, .program .col2-text {
  margin-top: 0.6rem;
}
.program .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.program .list-item {
  width: 24%;
}
.program .list-item:not(:last-child) {
  margin-right: 1%;
}
.program .list-item__text1 {
  font-size: 1.4rem;
  line-height: 1.2;
}
.program .list-img {
  width: 100%;
  margin: 0 auto;
}
.program .list .name {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  line-height: 1.2;
}
.program .mc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.program .mc-img {
  width: 25%;
  margin-right: 1rem;
}
.program .mc-name {
  font-size: 1.4rem;
}
.program .small {
  font-size: 1.2rem;
}
.program .outline {
  font-size: 1.4rem;
  border-top: solid 0.1rem #CFD642;
  margin: 2rem 0 0;
}
.program .outline-item {
  padding: 1.6rem 0;
  border-bottom: solid 0.1rem #CFD642;
}
.program .outline-item dt {
  color: #6CAE30;
  font-weight: 700;
  margin-bottom: 1rem;
}
.program .attention {
  padding-left: 1em;
}
.program .attention li:not(:last-child) {
  margin-bottom: 1rem;
}
.program .attention li::before {
  content: "・";
  margin-left: -1em;
}
.program .entry-btn {
  width: 82.5396825397%;
  margin: 2rem auto 0;
  display: block;
}
.program .entry-btn p {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #B0B0B0;
  color: #E1E1E1;
  padding: 0.6em 1em;
  text-decoration: none;
  border-radius: 1.5em;
  position: relative;
}
/* .program .entry-btn a::after {
  font-family: "Material Icons Round";
  content: "\e5cc";
  color: #ffffff;
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  margin-right: 1em;
} */

.program .collabo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program .collabo dt {
  width: 25%;
}
.program .collabo dd {
  width: 75%;
  padding-left: 1rem;
  font-size: 1.2rem;
}
.program .collabo-title {
  width: 82.5396825397%;
  margin: 0 auto 2rem;
}
.program .collabo-text1 {
  color: #008129;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.program .rally {
  border-radius: 1rem;
  border: solid 0.1rem #6CAE30;
  overflow: hidden;
  margin: 1rem 0;
}
.program .rally-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.program .fd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program .fd-img {
  width: 50%;
  margin: 2rem 2% 2rem;
  border-radius: 1em;
  overflow: hidden;
}
.program .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program .profile dt {
  width: 25%;
}
.program .profile dd {
  width: 75%;
  padding-left: 1rem;
  font-size: 1.2rem;
}
.program .profile-name {
  color: #008129;
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.program .profile .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1rem;
}
.program .profile .sns li {
  width: 3.2rem;
  position: relative;
}
.program .profile .sns li:not(:last-child) {
  margin-right: 1.2rem;
}
.program .timetable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}
.program .timetable:nth-of-type(odd) {
  background-color: rgba(236, 235, 236, 0.5);
}
.program .timetable-wrap {
  border: 0.1rem solid #CFD642;
  border-radius: 1rem;
  padding: 0.8rem;
  margin-top: 2rem;
}
.program .timetable-title {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.program .timetable-title::before, .program .timetable-title::after {
  content: "●";
  display: block;
  color: #CFD642;
  margin: 0 0.2rem;
}
.program .timetable-time {
  width: 20%;
  text-align: center;
  padding: 0.6rem 0;
}
.program .timetable-item {
  width: 80%;
  padding: 0.6rem 0.5rem 0.6rem 0;
}
.program .information {
  border: solid 0.1rem #CFD642;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 1rem;
}
.program .information-title {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 1rem;
}
.program .information-title::before, .program .information-title::after {
  content: "●";
  color: #CFD642;
  margin: 0 0.5rem;
}
.program .information-text {
  color: #008129;
  font-size: 1.4rem;
  margin: 1.2rem 0;
}
.program .information-list {
  margin-bottom: 0;
}
.program .information-item {
  font-size: 1.4rem;
  position: relative;
  padding-left: 1.5em;
}
.program .information-item p {
  font-size: 1.2rem;
}
.program .information-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.program .information-item::before {
  font-family: "Material Icons Round";
  content: "\e837";
  color: #008129;
  margin-left: -1.5em;
  margin-right: 0.5em;
}
.program .course {
  border: solid 0.1rem #CFD642;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 1rem;
}
.program .course-title {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 1rem;
}
.program .course-title::before, .program .course-title::after {
  content: "●";
  color: #CFD642;
  margin: 0 0.5rem;
}
.program .course-item {
  font-size: 1.4rem;
  position: relative;
  padding: 0 0 1rem;
}
.program .course-item:not(:first-of-type) {
  border-top: dotted 0.1rem #CFD642;
  padding-top: 1rem;
}
.program .course-item:last-of-type {
  padding-bottom: 0;
}
.program .course-item dt {
  font-size: 1.5rem;
  font-weight: 700;
  color: #008129;
}
.program .course-item dd {
  font-size: 1.3rem;
}
.program .shop:nth-of-type(2) {
  margin-top: 2rem;
}
.program .shop-list {
  font-size: 1.3rem;
  margin-top: 0.4rem;
}
.program .shop-list dt {
  width: 100%;
  padding: 0.6rem;
  background-color: #cfd642;
}
.program .shop-list dd {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.2rem;
  background-color: rgba(207, 214, 66, 0.2);
}

.video-container {
  max-width: 500px;
  margin: 40px auto;
  width: 90%;
  aspect-ratio: 16 / 9;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}
.janbo_img{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 200px;
  margin: 8px auto 32px;
}
.janbo_img div img{ 
  object-fit: contain;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .program {
    padding: 8% 0 0;
  }
  .program .p-title {
    width: 9.7101449275%;
  }
  .program .p-text, .program .p-text2 {
    font-size: 1.6rem;
  }
  .program-title {
    font-size: 2.4rem;
  }
  .program-title .small {
    font-size: 1.4rem;
  }
  .program-title .sub {
    font-size: 2rem;
  }
  .program .accordion-content {
    padding: 0 0 4rem;
  }
  .program .title2 {
    font-size: 1.8rem;
    padding-left: 1.8rem;
  }
  .program .title2::before {
    margin-left: -1.8rem;
  }
  .program .title3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .program-box {
    padding: 2rem;
    border-radius: 2rem;
  }
  .program .col2 dt {
    display: none;
    width: 20.3389830508%;
    font-size: 1.6rem;
    margin-right: 4rem;
  }
  .program .col2 dt::before {
    font-size: 3rem;
    margin-left: 2.5rem;
  }
  .program .col2 dd {
    width: 45.7627118644%;
  }
  .program .col2 .name, .program .col2-text {
    margin-top: 0.6rem;
    font-size: 1.6rem;
  }
  .program .list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .program .list-item {
    width: 20.3389830508%;
  }
  .program .list-item:not(:last-child) {
    margin-right: 2rem;
  }
  .program .list-item__text1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .program .list-img {
    margin: 0;
  }
  .program .list .name {
    margin-top: 0.6rem;
    font-size: 1.6rem;
  }
  .program .mc-img {
    width: 20.3389830508%;
    margin-right: 2rem;
  }
  .program .mc-name {
    font-size: 1.6rem;
  }
  .program .outline {
    font-size: 1.6rem;
    margin: 2rem 0 0;
  }
  .program .outline-item {
    padding: 1.6rem 0;
  }
  .program .outline-item dt {
    margin-bottom: 1rem;
  }
  .program .attention {
    padding-left: 1em;
  }
  .program .attention li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .program .attention li::before {
    content: "・";
    margin-left: -1em;
  }
  .program .entry-btn {
    width: 50.7936507937%;
  }
  .program .entry-btn a {
    font-size: 1.6rem;
    padding: 0.8em 1em;
    border-radius: 2em;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
  .program .entry-btn a:hover {
    background-color: #6CAE30;
  }
  .program .entry-btn a::after {
    font-size: 1.6rem;
  }
  .program .collabo dt {
    width: 25%;
  }
  .program .collabo dd {
    width: 75%;
    padding-left: 2rem;
    font-size: 1.6rem;
  }
  .program .collabo-title {
    width: 57.1428571429%;
  }
  .program .collabo-text1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .program .rally {
    margin: 2rem 0;
  }
  .program .rally-text {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .program .profile dt {
    width: 23.7288135593%;
  }
  .program .profile dd {
    width: 79.6610169492%;
    padding-left: 2rem;
    font-size: 1.5rem;
  }
  .program .profile-name {
    font-size: 1.6rem;
  }
  .program .profile .sns {
    margin-top: 1rem;
  }
  .program .profile .sns li {
    width: 3.2rem;
    position: relative;
  }
  .program .profile .sns li:not(:last-child) {
    margin-right: 1.2rem;
  }
  .program .timetable {
    font-size: 1.6rem;
  }
  .program .timetable-wrap {
    padding: 1.2rem 2rem 2rem;
    border: solid 0.2rem #CFD642;
    margin-top: 4rem;
  }
  .program .timetable-title {
    font-size: 2rem;
  }
  .program .timetable-title::before, .program .timetable-title::after {
    margin: 0 0.5rem;
  }
  .program .timetable-time {
    padding: 1rem 0;
  }
  .program .timetable-item {
    padding: 1rem 0.5rem 1rem 0;
  }
  .program .information {
    border: solid 0.2rem #CFD642;
    padding: 1.2rem 2rem 2rem;
    margin-top: 4rem;
  }
  .program .information-title {
    font-size: 2rem;
  }
  .program .information-text {
    font-size: 1.6rem;
  }
  .program .information-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .program .information-item {
    font-size: 1.6rem;
    padding: 0 0.5em 0 1.5em;
    width: 50%;
  }
  .program .information-item:last-child {
    width: 100%;
  }
  .program .information-item:last-child span {
    display: inline-block;
  }
  .program .information-item:not(:last-child) {
    margin-bottom: 1rem;
  }
  .program .information-item p {
    font-size: 1.4rem;
  }
  .program .course {
    border: solid 0.2rem #CFD642;
    padding: 1.2rem 2rem 2rem;
    margin-top: 4rem;
  }
  .program .course-title {
    font-size: 2rem;
  }
  .program .course-item {
    font-size: 1.6rem;
    padding: 0 0 1rem;
  }
  .program .course-item:not(:first-of-type) {
    border-top: dotted 0.1rem #CFD642;
    padding-top: 1.6rem;
  }
  .program .course-item dt {
    font-size: 1.6rem;
  }
  .program .course-item dd {
    font-size: 1.6rem;
  }
  .program .shop-list {
    font-size: 1.6rem;
    margin-top: 0.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .program .shop-list dt {
    width: 40%;
    padding: 1rem;
  }
  .program .shop-list dd {
    width: 60%;
    padding: 1rem;
    margin-bottom: 0;
  }
  .janbo_img{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 24px;
    max-width: 800px;
    margin: 8px auto 32px;
  }
  .janbo_img div img{ 
    object-fit: contain;
    height: 300px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .program {
    padding-top: 80px;
  }
  .program .p-title {
    width: 7.2%;
    margin: 0 auto 6rem;
  }
  .program-title::before {
    height: 0.167em;
    background: url(assets/img/border.png) repeat-x center/auto 100%;
  }
  .program-title .small {
    font-size: 1.8rem;
  }
  .program .accordion-title::after {
    font-size: 3.2rem;
  }
  .program .accordion-content .p-text, .program .accordion-content .p-text2 {
    font-size: 1.6rem;
  }
  .program .col2 dt {
    width: 19.2307692308%;
  }
  .program .col2 dd {
    width: 44.8717948718%;
  }
  .program .col2 .name, .program .col2-text {
    margin-top: 0.6rem;
    font-size: 1.6rem;
  }
  .program .small {
    font-size: 1.4rem;
  }
  .program .outline {
    font-size: 1.6rem;
  }
  .program .outline-item {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .program .outline-item dt {
    width: 21.9512195122%;
    margin-bottom: 0;
  }
  .program .outline-item dd {
    width: 78.0487804878%;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  .program .outline-text1 {
    font-size: 2rem;
  }
  .program .entry-btn {
    width: 58.5365853659%;
    margin: 2rem auto 0;
  }
  .program .entry-btn a {
    padding: 1.1em 1em;
    border-radius: 3em;
  }
  .program .entry-btn a:hover {
    background-color: #6CAE30;
  }
  .program .entry-btn a::after {
    font-size: 1.6rem;
  }
  .program .collabo dt {
    width: 19.2307692308%;
  }
  .program .collabo dd {
    width: 79.4871794872%;
  }
  .program .collabo dd .small {
    font-size: 1.6rem;
  }
  .program .collabo-title {
    width: 56.0975609756%;
  }
  .program .collabo-text1 {
    font-size: 2rem;
  }
  .program .rally {
    border: solid 0.2rem #6CAE30;
  }
  .program .fd-img {
    width: 50%;
    margin: 4rem 2.5rem 4rem;
  }
  .program .profile dt {
    width: 19.2307692308%;
  }
  .program .profile dd {
    width: 80.7692307692%;
    font-size: 1.6rem;
    padding-left: 2rem;
  }
  .program .profile-name {
    font-size: 1.8rem;
  }
  .program .profile .sns {
    margin-top: 1.4rem;
  }
  .program .profile .sns li {
    width: 4rem;
    position: relative;
  }
  .program .profile .sns li:not(:last-child) {
    margin-right: 1.2rem;
  }
  .program .profile .sns li a {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
  .program .profile .sns li a:hover {
    opacity: 0.7;
  }
}
/*----------------------------------------------------
	access
----------------------------------------------------*/
.access {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 17.3913043478%;
}
.access .p-title {
  width: 17.3913043478%;
  margin: 0 auto 4rem;
}
.access .p-access {
  text-align: center;
}
.access .p-access .access-text1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.access .p-access .access-text2 {
  font-size: 1.3rem;
  margin-top: 0.6rem;
}
.access .p-access .access-tel {
  font-size: 1.3rem;
}
.access .p-access .access-tel > dt {
  font-weight: 700;
}
.access .p-access .access-tel > dt, .access .p-access .access-tel dd {
  display: inline-block;
}
.access .p-access span {
  display: inline-block;
}
.access .p-access .map {
  margin: 1.5em auto;
}
.access .p-access .button-map {
  border: solid 1px #1A1311;
  border-radius: 0.8em;
  overflow: hidden;
}
.access .p-access .button-map a {
  padding: 0.5em 6em;
  text-decoration: none;
  color: #1A1311;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  display: block;
}
.access .p-access .button-map a::after {
  font-family: "Material Icons Round";
  content: "\e5cc";
  color: #1A1311;
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  margin-right: 0.5em;
}

@media screen and (min-width: 768px) {
  .access {
    padding: 8% 0 0;
  }
  .access .p-title {
    width: 8.6956521739%;
  }
  .access .p-access .access-text2 {
    font-size: 1.6rem;
  }
  .access .p-access .access-tel {
    font-size: 1.6rem;
  }
  .access .p-access .access-tel > dt {
    font-weight: 700;
    margin-right: 0.5em;
  }
}
@media screen and (min-width: 1200px) {
  .access {
    padding-top: 80px;
  }
  .access .p-title {
    width: 6.4%;
    margin: 0 auto 6rem;
  }
  .access .p-access .access-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
  }
  .access .p-access .access-text .access-text1 {
    margin-right: 6rem;
    font-size: 2rem;
  }
  .access .p-access .access-text .access-text2 {
    margin-top: 0;
  }
  .access .p-access .button-map a {
    padding: 0.5em 4em;
    font-size: 1.4rem;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
  .access .p-access .button-map a:hover {
    background-color: #6CAE30;
    color: #ffffff;
  }
  .access .p-access .button-map a:hover::after {
    color: #ffffff;
  }
}
/*----------------------------------------------------
	park
----------------------------------------------------*/
.park {
  font-size: 10px;
  font-size: 1rem;
  padding: 17.3913043478% 0 0;
}
.park .p-title {
  width: 35.652173913%;
  margin: 0 auto 4rem;
}
.park .p-park {
  width: 91.3043478261%;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.park .p-park p {
  font-size: 1.4rem;
}
.park .p-park p.strong {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.4em;
}
.park .p-park p span {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .park {
    padding: 8% 0 0;
  }
  .park .p-title {
    width: 17.8260869565%;
  }
  .park .p-park {
    width: 91.3043478261%;
  }
}
@media screen and (min-width: 1200px) {
  .park {
    padding-top: 80px;
  }
  .park .p-title {
    width: 13%;
    margin: 0 auto 6rem;
  }
  .park .p-park {
    width: 63%;
  }
}
/*----------------------------------------------------
	pdf
----------------------------------------------------*/
.pdf {
  padding: 0 0 17.3913043478%;
}
.pdf .btn-pdf {
  width: 70%;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 600px) {
  .pdf .btn-pdf {
    width: 52.1739130435%;
  }
}
@media screen and (min-width: 1024px) {
  .pdf {
    padding-top: 8%;
  }
  .pdf .btn-pdf {
    width: 32%;
  }
}
/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  background-color: #6CAE30;
  color: #ffffff;
  font-size: 10px;
  font-size: 1rem;
  padding: 5.3333333333% 0;
  text-align: center;
}
.footer .bnr {
  width: 48%;
  margin: 0 auto 2rem;
}
.footer .contact {
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.footer .contact a {
  display: inline-block;
}

@media screen and (min-width: 600px) {
  .footer {
    padding: 5.2083333333% 0;
  }
  .footer .bnr {
    width: 31.25%;
  }
  .footer .contact {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .footer .contact a {
    display: inline-block;
  }
  .footer .copy {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 4rem 0;
  }
  .footer .bnr {
    width: 240px;
  }
  .footer .bnr a {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }
  .footer .bnr a:hover {
    opacity: 0.7;
  }
}
/* -------------------------------------
toTop
-------------------------------------- */
.toTop {
  font-size: 10px;
  font-size: 1rem;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 4em;
  height: 4em;
  background: #ecebec;
  opacity: 0;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 2em;
  margin: 0 0.5em 0.5em 0;
}
.toTop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
.toTop a::before {
  font-family: "Material Icons Round";
  content: "\e5d8";
  color: #6CAE30;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-right: 1em;
}
.toTop.up {
  -webkit-animation: upAnime 0.5s forwards;
          animation: upAnime 0.5s forwards;
}
.toTop.down {
  -webkit-animation: downAnime 0.5s forwards;
          animation: downAnime 0.5s forwards;
}

@media screen and (min-width: 768px) {
  .toTop {
    margin: 0 1em 1em 0;
    width: 5em;
    height: 5em;
    border-radius: 2.5em;
  }
}
@-webkit-keyframes upAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes upAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes downAnime {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes downAnime {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*----------------------------------------------------

----------------------------------------------------*/