@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: -apple-system, sans-serif;
  line-height: 1.4em;
  color: #000;
}

h1, h2, h3, h4, h5, h6, ul, li, ol, dl, dt, dd, form, input {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

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

img {
  border: 0;
}

a, a:link {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

table {
  font-size: 100%;
}

article, aside, dialog, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.inner {
  width: 1038px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}

@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}
/* common
---------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2;
  font-size: 15px;
  color: #1C1814;
  background: #FBF6F1;
  min-width: 1280px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: initial;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

em {
  font-weight: 700;
  font-style: normal;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/* layout
---------------------------------- */
@keyframes updown {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.updown {
  animation: updown 2.6s infinite ease-in-out alternate;
}

@keyframes updown2 {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.updown2 {
  animation: updown2 2.4s infinite ease-in-out alternate;
}

@keyframes downup {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.downup {
  animation: downup 2.2s infinite ease-in-out alternate;
}

@keyframes downup2 {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.downup2 {
  animation: downup2 2.2s infinite ease-in-out alternate;
}

@keyframes leftright {
  0% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(5px);
  }
}
.leftright {
  animation: leftright 2.2s infinite ease-in-out alternate;
}

@keyframes leftright2 {
  0% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(10px);
  }
}
.leftright2 {
  animation: leftright2 3s infinite ease-in-out alternate;
}

@keyframes rightleft {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(-5px);
  }
}
.rightleft {
  animation: rightleft 1.6s infinite ease-in-out alternate;
}

@keyframes rightleft2 {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-20px);
  }
}
.rightleft2 {
  animation: rightleft2 2.2s infinite ease-in-out alternate;
}

@keyframes diagonal {
  0% {
    transform: translateX(5px) translateY(5px);
  }
  100% {
    transform: translateX(-5px) translateY(-5px);
  }
}
.diagonal {
  animation: diagonal 2.4s infinite ease-in-out alternate;
}

@keyframes diagonal3 {
  0% {
    transform: translateX(10px) translateY(0);
  }
  100% {
    transform: translateX(-10px) translateY(30px);
  }
}
.diagonal3 {
  animation: diagonal3 2.4s infinite ease-in-out alternate;
}

@keyframes diagonal2 {
  0% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(5px) translateY(5px);
  }
}
.diagonal2 {
  animation: diagonal2 2.6s infinite ease-in-out alternate;
}

@keyframes diagonal4 {
  0% {
    transform: translateX(-10px) translateY(0px);
  }
  100% {
    transform: translateX(15px) translateY(10px);
  }
}
.diagonal4 {
  animation: diagonal4 2.6s infinite ease-in-out alternate;
}

@keyframes rotate1 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.rotate1 {
  animation-name: rotate1;
  animation-duration: 1.5s;
  animation-timing-function: steps(2, jump-none);
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

.rotate2 {
  animation-name: rotate2;
  animation-duration: 1.5s;
  animation-timing-function: steps(2, jump-none);
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

.kv {
  position: relative;
  background: url("../img/kv-bg.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  min-height: 768px;
}
@media screen and (max-width: 768px) {
  .kv {
    height: calc(var(--vh, 1vh) * 100);
    min-height: calc(var(--vh, 1vh) * 100);
  }
}
@media (max-width: 375px) {
  .kv {
    height: 100vh;
  }
}
@media (max-width: 768px) and (orientation: portrait) {
  .kv {
    background: url("../img/kv-bg-sp.png") no-repeat center center;
    background-size: cover;
  }
}
.kv-logo {
  position: relative;
  width: 100%;
  height: calc(100% - 109px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .kv-logo {
    height: calc(100% - 94px);
  }
}
.kv-title {
  width: 415px;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .kv-title {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .kv-title {
    width: 81%;
  }
}
.kv-title img {
  width: 100%;
}
.kv-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 101px;
  background: url("../img/kv-bottom.png") repeat-x left top;
  background-size: auto 101px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .kv-bottom {
    height: 84px;
    background: url("../img/kv-bottom.png") repeat-x -100% top;
    background-size: auto 84px;
  }
}
@media (max-width: 320px) {
  .kv-bottom {
    height: 60px;
    background-size: auto 60px;
  }
}
.kv-motif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.kv-motif img {
  position: absolute;
}
.kv-left1 {
  top: -2.5%;
  left: -1.4641288433%;
  width: 25.4%;
}
@media (max-width: 768px) and (orientation: portrait) {
  .kv-left1 {
    top: -2.9850746269%;
    left: -5.3333333333%;
    width: 43.4666666667%;
  }
}
.kv-left2 {
  top: 28.875%;
  left: 12.6647144949%;
  width: 18.3748169839%;
}
@media screen and (max-width: 768px) {
  .kv-left2 {
    top: 34.0298507463%;
    left: -5.3333333333%;
    width: 17.3333333333%;
  }
}
.kv-left3 {
  bottom: 4.375%;
  left: 5.1244509517%;
  width: 26.3543191801%;
}
@media screen and (max-width: 768px) {
  .kv-left3 {
    bottom: 11.9402985075%;
    left: -5.3333333333%;
    width: 38.9333333333%;
  }
}
.kv-right1 {
  top: -2.5%;
  right: -1.4641288433%;
  width: 20.4978038067%;
}
@media screen and (max-width: 768px) {
  .kv-right1 {
    top: -2.9850746269%;
    right: -5.3333333333%;
    width: 41.6%;
  }
}
.kv-right2 {
  top: 30.625%;
  right: 12.298682284%;
  width: 18.1551976574%;
}
@media screen and (max-width: 768px) {
  .kv-right2 {
    top: 35.9701492537%;
    right: -5.3333333333%;
    width: 20.8%;
  }
}
.kv-right3 {
  bottom: 2px;
  right: -2px;
  width: 24.6705710102%;
}
@media screen and (max-width: 768px) {
  .kv-right3 {
    bottom: 0;
    right: -1.4641288433%;
    width: 31.4666666667%;
  }
}

@media (min-width: 769px) and (orientation: portrait) {
  body.notpc .kv {
    height: 900px;
  }
}
.link-arrow {
  cursor: pointer;
}
.link-arrow-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #81B54E;
  border: 1px solid #81B54E;
  border-radius: 50%;
  transition: 0.2s;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .link-arrow-icon {
    width: 18px;
    height: 18px;
    transition: none;
  }
}
.link-arrow-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.link-arrow:hover .link-arrow-icon {
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  .link-arrow:hover .link-arrow-icon {
    background: #81B54E;
  }
}
.link-arrow:hover svg {
  fill: #81B54E;
}
@media screen and (max-width: 768px) {
  .link-arrow:hover svg {
    fill: #fff;
  }
}
.link-arrow.view-all {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .link-arrow.view-all {
    font-size: 14px;
  }
}
.link-arrow.view-all .link-arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 9px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all .link-arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 7px;
  }
}
.link-arrow.view-all .link-arrow-icon svg {
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all .link-arrow-icon svg {
    width: 16px;
    height: 16px;
  }
}
.link-arrow.view-all.large {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .link-arrow.view-all.large {
    font-size: 16px;
  }
}
.link-arrow.view-all.large .link-arrow-icon {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large .link-arrow-icon {
    width: 24px;
    height: 24px;
  }
}
.link-arrow.view-all.large svg {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large svg {
    width: 22px;
    height: 22px;
  }
}
.link-arrow.view-all.large.jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large.jp {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .link-arrow.view-all.large.jp {
    font-size: 18px;
  }
}
.link-arrow.view-all.large.jp .link-arrow-icon {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large.jp .link-arrow-icon {
    width: 26px;
    height: 26px;
  }
}
.link-arrow.view-all.large.jp svg {
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 768px) {
  .link-arrow.view-all.large.jp svg {
    width: 24px;
    height: 24px;
  }
}
.link-arrow.view-all.center {
  justify-content: center;
}
a:hover .link-arrow .link-arrow-icon {
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  a:hover .link-arrow .link-arrow-icon {
    background: #81B54E;
  }
}
a:hover .link-arrow svg {
  fill: #81B54E;
}
@media screen and (max-width: 768px) {
  a:hover .link-arrow svg {
    fill: #fff;
  }
}

.point-title {
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .point-title {
    margin-bottom: 40px;
  }
}
.point-title .jp {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .point-title .jp {
    margin-bottom: 3px;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .point-title .jp {
    font-size: 12px;
  }
}
.point-title .point {
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-title .point::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #FF9038;
}
.point-title .en {
  display: block;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .point-title .en {
    font-size: 9.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .point-title .en {
    font-size: 36px;
  }
}
.point-title.left {
  text-align: left;
}
.point-title.left .en {
  text-indent: 0;
}
.point-title.left .point {
  justify-content: flex-start;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 128px;
  padding: 38px 0 0 0;
  height: 100vh;
  min-height: 768px;
  border-right: 1px solid #707070;
  z-index: 100000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header {
    position: static;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: initial;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid #707070;
  }
}
@media screen and (max-width: 768px) {
  body.home .header {
    display: none;
  }
}
.header-logo {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin-bottom: 0;
    padding: 0 87px 0 25px;
  }
}
.header-logo img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 100%;
    max-width: 263px;
  }
}
.header-menu {
  position: absolute;
  top: 36.25%;
  left: 0;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .header-menu {
    display: none;
  }
}
.header-sns {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-sns {
    display: none;
  }
}
.header-sns dt span {
  padding-left: 0.2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  vertical-align: middle;
  text-align: initial;
}
.header-sns dt::after {
  content: "";
  display: block;
  margin: 8px auto 0 auto;
  width: 1px;
  height: 25px;
  background: #707070;
}
.header-sns li {
  margin-top: 13px;
  line-height: 0;
}
.header .link-arrow span {
  display: block;
  margin: 0 auto;
}
.header-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 62px;
}
.header-pagetop {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-pagetop {
    display: none;
  }
}
.header-pagetop a {
  display: inline-block;
  width: 40.5px;
  height: 40.5px;
  border: 1px solid #1C1814;
  border-radius: 50%;
}
.header-pagetop a svg {
  width: 39.5px;
  height: 39.5px;
  transform: rotate(-90deg);
}
.header-lang {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #848383;
}
@media screen and (max-width: 768px) {
  .header-lang {
    display: none;
  }
}
.header-lang li:nth-child(1)::after {
  margin: 0 7px;
  content: "|";
  color: #707070;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.header-lang a.current {
  color: #1C1814;
}

.header-spmenu {
  position: fixed;
  top: 32px;
  right: 25px;
  width: 50px;
  height: 50px;
  padding: 0 13px;
  background: #81B54E;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  z-index: 100000000;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 768px) {
  .header-spmenu {
    display: flex;
  }
}
@media (max-width: 320px) {
  .header-spmenu {
    top: 20px;
    right: 20px;
  }
}
.header-spmenu span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  margin-top: 6px;
  transition: 0.2s;
}
.header-spmenu span:nth-of-type(1) {
  margin-top: 0;
}
.header-spmenu span:nth-of-type(2) {
  width: 16px;
}
.header-spmenu.is-active span:nth-of-type(1) {
  transform: rotate(45deg) translateY(6px) translateX(6px);
  transform-origin: center center;
}
.header-spmenu.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header-spmenu.is-active span:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(6px);
  transform-origin: center center;
}

body.home .header {
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  body.home .header-logo {
    display: none;
  }
}

.global {
  position: fixed;
  top: 0;
  left: -345px;
  display: flex;
  width: 345px;
  height: 100vh;
  min-height: 768px;
  background: #FBF7F3;
  transition: 0.3s;
  z-index: 100010;
}
@media screen and (max-width: 768px) {
  .global {
    width: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    min-height: initial;
    z-index: -1;
  }
}
.global.is-active {
  left: 0;
}
@media screen and (max-width: 768px) {
  .global.is-active {
    width: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 100010;
  }
}
.global-box {
  position: relative;
  width: 257px;
  height: 100%;
  overflow-y: auto;
  padding: 40px 46px 0 46px;
}
@media screen and (max-width: 768px) {
  .global-box {
    width: 100%;
    padding: 16px 25px 0 25px;
  }
  .global-box img {
    width: 100%;
  }
}
.global-box::-webkit-scrollbar {
  display: none;
}
.global-box-logo {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .global-box-logo {
    margin-bottom: 85px;
    padding-right: 62px;
  }
}
@media screen and (max-width: 768px) {
  .global-box-logo img {
    max-width: 263px;
  }
}
.global-menu {
  margin-bottom: 118px;
}
@media screen and (max-width: 768px) {
  .global-menu {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
  }
}
.global-menu li {
  margin-bottom: 23px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .global-menu li {
    margin-bottom: 20px;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .global-menu li {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .global-menu-wrap {
    margin-bottom: 110px;
    padding: 35px 0 12px 0;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    text-align: center;
  }
}
.global-sns {
  position: relative;
  margin-bottom: 35px;
}
.global-sns dt {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.04em;
}
.global-sns dd:first-of-type ul {
  display: flex;
  align-items: center;
  line-height: 0;
}
.global-sns dd:first-of-type ul::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #707070;
  margin-right: 13px;
}
.global-sns dd:first-of-type ul li {
  margin-right: 13px;
}
.global-sns .global-lang {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  justify-content: center;
  margin-top: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #848383;
}
@media screen and (max-width: 768px) {
  .global-sns .global-lang {
    font-size: 5.3333333333vw;
    display: flex;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .global-sns .global-lang {
    font-size: 20px;
  }
}
.global-sns .global-lang li:nth-child(1)::after {
  margin: 0 7px;
  content: "|";
  color: #707070;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.global-sns .global-lang a.current {
  color: #1C1814;
}
.global-close {
  display: flex;
  justify-content: center;
  width: 88px;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  font-weight: 700;
}
.global-close .link-arrow span {
  display: block;
  margin: 0 auto;
}
.global-close .link-arrow span svg {
  transform: rotate(180deg);
}
.global-close-btn {
  position: relative;
  top: 36.25%;
}
@media screen and (max-width: 768px) {
  .global-close {
    display: none;
  }
}

main {
  padding: 80px 0 100px 128px;
}
@media screen and (max-width: 768px) {
  main {
    padding: 50px 0 80px 0;
  }
}
main.about {
  padding-left: 0;
}
body.home main {
  padding: 0;
}

section.about,
.about-outline,
.top-news,
.top-about,
.howto-enjoy,
.top-event,
.top-map,
.top-link {
  margin-left: 128px;
}
@media screen and (max-width: 768px) {
  section.about,
  .about-outline,
  .top-news,
  .top-about,
  .howto-enjoy,
  .top-event,
  .top-map,
  .top-link {
    margin-left: 0;
  }
}

.footer {
  position: relative;
  margin-left: 128px;
  padding: 100px 0;
  border-top: 1px solid #707070;
  background: url("../img/footer-bg.jpg") no-repeat 0 0;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-left: 0;
    padding: 40px 0 35px 0;
    background: url("../img/footer-bg-sp.jpg") no-repeat 0 0;
    background-size: cover;
  }
}
.footer-flex {
  display: flex;
  align-items: center;
  width: 1110px;
  margin-left: 64px;
}
@media screen and (max-width: 768px) {
  .footer-flex {
    display: block;
    width: 100%;
    margin: 0;
  }
}
.footer-logo {
  width: 405px;
  padding: 34px 63px 34px 47px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 100%;
    margin-bottom: 55px;
    padding: 0 50px;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-body {
  padding: 10px 0 10px 64px;
  border-left: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .footer-body {
    border: 0;
    padding: 0 25px;
  }
}
.footer-contact {
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-contact dt {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .footer-contact dt {
    margin-bottom: 7px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .footer-contact dt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact dd {
    line-height: 1.5;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  width: 495px;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 28px 23px 13px 23px;
  }
}
@media screen and (max-width: 768px) and (max-width: 375px) {
  .footer-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer-nav li {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
  width: 165px;
}
@media screen and (max-width: 768px) {
  .footer-nav li {
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .footer-nav li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav li:nth-child(odd) {
    width: 52%;
  }
  .footer-nav li:nth-child(even) {
    width: 43%;
  }
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-bnr {
  display: flex;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer-bnr {
    justify-content: space-between;
  }
}
.footer-bnr li {
  width: 259px;
  margin-right: 16px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .footer-bnr li {
    width: calc(50% - 5px);
    margin-right: 0;
  }
}
.footer-bnr li:last-child {
  margin-right: 0;
}
.footer-bnr li a {
  display: block;
}
.footer-bnr li img {
  width: auto;
  height: 124px;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .footer-bnr li img {
    width: 100%;
    height: auto;
  }
}
.footer-bnr-notes {
  font-size: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer-bnr-notes {
    margin-bottom: 30px;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .footer-bnr-notes {
    font-size: 10px;
  }
}
.footer-copyright {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .footer-copyright {
    font-size: 10px;
  }
}
.footer .mt {
  margin-top: 1em;
}

.top-news {
  padding: 120px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 67px 0 80px 0;
  }
}
.top-news .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-news .inner {
    display: block;
  }
}
.top-news-hd {
  position: relative;
  width: 220px;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .top-news-hd {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
  }
}
.top-news-hd .link-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-news-hd .link-arrow {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .top-news-link {
    position: absolute;
    right: 0;
  }
}
.top-news .point-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-news .point-title {
    margin-bottom: 0;
    margin-right: 12px;
  }
}
.top-news-body {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .top-news-body {
    width: 100%;
  }
}
.top-news-pict {
  width: 209px;
  margin-left: -37px;
  margin-bottom: 68px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .top-news-pict {
    width: 120px;
    margin: 0;
  }
}
@media (max-width: 374px) {
  .top-news-pict {
    width: 100px;
  }
}
@media (max-width: 320px) {
  .top-news-pict {
    width: 80px;
  }
}

.news-list {
  border-top: 1px solid #707070;
}
.news-list li {
  border-bottom: 1px solid #707070;
}
.news-list li a {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .news-list li a {
    display: block;
    padding: 20px 0;
  }
}
.news-list-date {
  width: 100px;
  padding-top: 0.1em;
  font-size: 14px;
  color: #707070;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-list-date {
    width: 100%;
    font-size: 3.4666666667vw;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .news-list-date {
    font-size: 13px;
  }
}
.news-list-title {
  width: calc(100% - 100px);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  .news-list-title {
    width: 100%;
    margin-bottom: 0;
  }
}
.news-list-link {
  width: 100%;
  text-align: right;
}
.news-list-link .link-arrow {
  justify-content: flex-end;
}

.top-about {
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 80px 0;
  }
}

.about-lead {
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.7777777778;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-lead {
    margin-bottom: 40px;
    text-align: left;
    font-size: 4.2666666667vw;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .about-lead {
    font-size: 16px;
  }
}
.about-map {
  margin-bottom: 40px;
  text-align: center;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .about-map {
    margin-bottom: 30px;
  }
}
.about-map img {
  width: 900px;
}
@media screen and (max-width: 768px) {
  .about-map img {
    width: 100%;
  }
}

.outline-notes {
  margin-top: 40px;
}
.outline-notes span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 115%;
  line-height: 1.8;
}

.howto-enjoy {
  padding-top: 100px;
  background: url("../img/howto-bg.png") no-repeat 0 0;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .howto-enjoy {
    padding-top: 80px;
    background: url("../img/howto-bg-sp.png") repeat-y 0 0;
    background-size: 100% auto;
  }
}
.howto-enjoy .point-title {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .point-title {
    margin-bottom: 40px;
  }
}
.howto-enjoy .enjoy-list {
  border-top: 1px solid #707070;
}
.howto-enjoy .enjoy-list:last-of-type {
  border-bottom: 1px solid #707070;
}
.howto-enjoy .enjoy-list > ul {
  width: 1110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list > ul {
    display: block;
    width: 100%;
  }
}
.howto-enjoy .enjoy-list > ul > li {
  position: relative;
  width: 491px;
  padding: 66px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list > ul > li {
    width: 100%;
    padding: 35px 25px 15px 25px;
    border-bottom: 1px solid #707070;
  }
  .howto-enjoy .enjoy-list > ul > li:last-child {
    border: 0;
  }
}
.howto-enjoy .enjoy-list > ul > li:nth-child(odd)::after {
  position: absolute;
  top: 0;
  right: -65px;
  content: "";
  width: 1px;
  height: 100%;
  background: #707070;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list > ul > li:nth-child(odd)::after {
    display: none;
  }
}
.howto-enjoy .enjoy-list-title {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-title {
    margin-bottom: 25px;
  }
}
.howto-enjoy .enjoy-list-title span:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 20px;
  background: #FF9038;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-title span:nth-of-type(1) {
    width: 30px;
    height: 30px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .howto-enjoy .enjoy-list-title span:nth-of-type(1) {
    font-size: 15px;
  }
}
.howto-enjoy .enjoy-list-title span:nth-of-type(2) {
  width: calc(100% - 35px);
  margin-top: -3px;
  padding-left: 11px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-title span:nth-of-type(2) {
    width: calc(100% - 30px);
    font-size: 5.3333333333vw;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .howto-enjoy .enjoy-list-title span:nth-of-type(2) {
    font-size: 20px;
  }
}
.howto-enjoy .enjoy-list-pict {
  margin-bottom: 25px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-pict {
    margin-bottom: 20px;
  }
}
.howto-enjoy .enjoy-list-body h4 {
  display: flex;
  margin-bottom: 12px;
  line-height: 1.67;
  margin-top: 24px;
  padding-top: 24px;
  font-size: 16px;
  font-weight: 700;
  border-top: 1px dotted #707070;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-body h4 {
    font-size: 4vw;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .howto-enjoy .enjoy-list-body h4 {
    font-size: 15px;
  }
}
.howto-enjoy .enjoy-list-body h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #FF9038;
  margin-top: 0.55em;
}
.howto-enjoy .enjoy-list-body h4:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}
.howto-enjoy .enjoy-list-body p {
  margin-bottom: 1em;
}
.howto-enjoy .enjoy-list-body .link-arrow.view-all {
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-body .link-arrow.view-all {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .howto-enjoy .enjoy-list-body .link-arrow.view-all {
    font-size: 14px;
  }
}
.howto-enjoy .enjoy-list-link.bottom {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .howto-enjoy .enjoy-list-link.bottom {
    position: static;
  }
}
.howto-enjoy .enjoy-list .guidebook {
  display: flex;
  flex-wrap: wrap;
  margin: -7px 0 20px 1em;
}
.howto-enjoy .enjoy-list .guidebook li {
  width: 50%;
  line-height: 1.6;
}
.howto-enjoy .enjoy-list .guidebook li:nth-child(even) {
  padding-left: 1.5em;
}
.howto-enjoy-image {
  position: relative;
  border-top: 1px solid #707070;
  height: 500px;
  background: url("../img/howto-image.jpg") no-repeat 0 0/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .howto-enjoy-image {
    height: 350px;
    background: url("../img/howto-image.jpg") no-repeat 0 0/cover;
    background-attachment: scroll;
  }
}

.top-event {
  padding: 105px 0 120px 0;
  background: url("../img/event-bg.png") no-repeat 0 0/cover;
}
@media screen and (max-width: 768px) {
  .top-event {
    padding: 80px 0 75px 0;
    background: url("../img/event-bg-sp.png") repeat-y 0 0/100% auto;
  }
}
.top-event .point-title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-event .point-title.left {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .top-event .point-title.left .point {
    justify-content: center;
  }
}
.top-event-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 53px;
}
@media screen and (max-width: 768px) {
  .top-event-hd {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-event-hd .link-arrow.view-all.large {
    margin-top: 15px;
    justify-content: center;
  }
}
.top-event-link {
  margin-top: 40px;
  text-align: center;
}
.top-event-link .link-arrow.view-all.large {
  justify-content: center;
}

.event-list {
  border-top: 1px solid #707070;
}
.event-list > li {
  padding: 40px 0 30px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .event-list > li {
    padding: 28px 0;
  }
}
.event-list > li > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .event-list > li > div {
    display: block;
  }
}
.event-list > li > div a {
  display: block;
}
.event-list > li.past .event-list-pict {
  position: relative;
}
.event-list > li.past .event-list-pict::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF9038;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  content: "本イベントは終了いたしました";
  white-space: nowrap;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .event-list > li.past .event-list-pict::after {
    height: 35px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-list > li.past .event-list-pict::after {
    font-size: 15px;
  }
}
.event-list-pict {
  width: 390px;
}
.event-list-pict a {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.event-list-pict img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .event-list-pict {
    width: 100%;
    margin: 0;
    margin-bottom: 23px;
  }
}
.event-list-pict figcaption {
  margin-top: 8px;
  line-height: 1.4;
}
.event-list-sub {
  display: flex;
  margin-bottom: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .event-list-sub {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-list-sub {
    font-size: 12px;
  }
}
.event-list-sub::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #FF9038;
  margin-top: 0.5em;
}
.event-list-sub a {
  width: calc(100% - 17px);
}
.event-list-title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .event-list-title {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-list-title {
    font-size: 20px;
  }
}
.event-list-body {
  width: 610px;
}
@media screen and (max-width: 768px) {
  .event-list-body {
    width: 100%;
  }
}
.event-list-meta {
  margin-bottom: 10px;
}
.event-list-meta dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
  line-height: 1.6;
}
.event-list-meta dt {
  display: flex;
  align-items: center;
  width: 150px;
  color: #535353;
}
@media screen and (max-width: 768px) {
  .event-list-meta dt {
    width: 120px;
  }
}
@media (max-width: 320px) {
  .event-list-meta dt {
    width: 110px;
  }
}
.event-list-meta dt img {
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .event-list-meta dt img {
    margin-right: 5px;
  }
}
.event-list-meta dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
  .event-list-meta dd {
    width: calc(100% - 120px);
    padding-left: 0.5em;
  }
}
@media (max-width: 320px) {
  .event-list-meta dd {
    width: calc(100% - 110px);
  }
}
.event-list .link-arrow {
  justify-content: flex-end;
}
.event-list .event-tag {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .event-list .event-tag {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-list .event-tag {
    font-size: 13px;
  }
}

.event-tag {
  display: flex;
  flex-wrap: wrap;
}
.event-tag li {
  margin-right: 5px;
  margin-bottom: 7px;
}
.event-tag li a {
  display: inline-block;
  background: #fff;
  border-radius: 30px;
  padding: 1px 19px 2px 19px;
  border: 1px solid #707070;
  transition: 0.2s;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .event-tag li a {
    transition: none;
  }
}
.event-tag li a:hover {
  background: #1C1814;
  color: #fff;
  border-color: #1C1814;
}
@media screen and (max-width: 768px) {
  .event-tag li a:hover {
    background: #fff;
    color: #1C1814;
    border-color: #707070;
  }
}
.event-tag li a.current {
  background: #1C1814;
  color: #fff;
}

.top-map {
  padding: 110px 0;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-map {
    padding: 65px 0 50px 0;
  }
}
.top-map-hd {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top-map-hd {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-map-hd p {
    display: none;
  }
}
.top-map .point-title {
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .top-map .point-title {
    margin: 0;
  }
}
.top-map-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .top-map-wrap {
    display: block;
    margin-top: 40px;
  }
}
.top-map-wrap dl {
  width: 501px;
}
@media screen and (max-width: 768px) {
  .top-map-wrap dl {
    width: 100%;
    margin-bottom: 25px;
  }
}
.top-map-wrap dl dt {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-map-wrap dl dt {
    margin-bottom: 17px;
    padding-bottom: 5px;
  }
}
.top-map-wrap dl dt span:nth-of-type(1) {
  display: block;
  width: 37px;
  height: 37px;
  margin-right: 13px;
  border-radius: 50%;
  background: #FF9038;
  color: #fff;
  font-size: 22px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-map-wrap dl dt span:nth-of-type(1) {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .top-map-wrap dl dt span:nth-of-type(1) {
    font-size: 15px;
  }
}
.top-map-wrap dl dt span:nth-of-type(2) {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-map-wrap dl dt span:nth-of-type(2) {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .top-map-wrap dl dt span:nth-of-type(2) {
    font-size: 20px;
  }
}
.top-map-wrap dl dd {
  position: relative;
  width: 100%;
  padding-bottom: 83.43%;
}
@media screen and (max-width: 768px) {
  .top-map-wrap dl dd {
    padding-bottom: 83.38%;
  }
}
.top-map-wrap dl iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.top-map .top-map01 {
  position: relative;
  width: 100%;
  padding-bottom: 52.69%;
}
@media screen and (max-width: 768px) {
  .top-map .top-map01 {
    padding-bottom: 100%;
  }
}
.top-map .top-map01 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.top-link {
  padding: 100px 0 75px 0;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-link {
    padding: 65px 0 50px 0;
  }
}
.top-link .inner > div {
  display: flex;
  padding-bottom: 17px;
  border-bottom: 1px dotted #707070;
}
@media screen and (max-width: 768px) {
  .top-link .inner > div {
    display: block;
  }
}
.top-link .inner > div:last-of-type {
  border: 0;
  margin-top: 40px;
  padding-bottom: 0;
}
.top-link .inner > div h2 {
  width: 248px;
}
@media screen and (max-width: 768px) {
  .top-link .inner > div h2 {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .top-link .inner > div .point-title.left .point {
    justify-content: center !important;
  }
}
.top-link .inner > div ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 248px);
}
@media screen and (max-width: 768px) {
  .top-link .inner > div ul {
    width: 100%;
    justify-content: space-between;
  }
}
.top-link .link {
  justify-content: space-between;
}
.top-link .link li {
  width: 383px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-link .link li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top-link .link li img {
  width: 100%;
}
.top-link .link li span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 13px 10px;
  letter-spacing: 0.016em;
  text-indent: 0.016em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  min-height: 68px;
}
@media screen and (max-width: 768px) {
  .top-link .link li span {
    font-size: 3.2vw;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .top-link .link li span {
    font-size: 12px;
  }
}
.top-link .sns li {
  width: 248px;
  margin-right: 23px;
  margin-bottom: 23px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .top-link .sns li {
    width: calc(50% - 5px);
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.top-link .sns li:nth-child(3n) {
  margin-right: 0;
}
.top-link .sns li img {
  border: 1px solid #707070;
}

.news-hd {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .news-hd {
    margin-bottom: 45px;
  }
}
.news-hd .point-title {
  margin: 0 43px;
}
.news-hd p {
  width: 124px;
}

.pagenavi {
  padding-top: 65px;
  color: #fff;
  text-align: center;
}
.pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenavi a, .pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.5px;
  height: 32.5px;
  border-radius: 50%;
  background: #9F9F9F;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin: 0 6.5px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .pagenavi a, .pagenavi span {
    transition: none;
  }
}
.pagenavi a:hover, .pagenavi span:hover {
  background: #1C1814;
}
@media screen and (max-width: 768px) {
  .pagenavi a:hover, .pagenavi span:hover {
    background: #9F9F9F;
  }
}
.pagenavi span.current {
  background: #1C1814;
}
.pagenavi span.pages {
  display: none;
}
.pagenavi a.previouspostslink, .pagenavi a.nextpostslink {
  position: relative;
  background: #81B54E;
  text-indent: -999999px;
  overflow: hidden;
  border: 1px solid #81B54E;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .pagenavi a.previouspostslink, .pagenavi a.nextpostslink {
    transition: none;
  }
}
.pagenavi a.previouspostslink:hover, .pagenavi a.nextpostslink:hover {
  background: transparent;
}
@media screen and (max-width: 768px) {
  .pagenavi a.previouspostslink:hover, .pagenavi a.nextpostslink:hover {
    background: #81B54E;
  }
}
.pagenavi a.previouspostslink:hover::after, .pagenavi a.nextpostslink:hover::after {
  border-color: #81B54E;
}
@media screen and (max-width: 768px) {
  .pagenavi a.previouspostslink:hover::after, .pagenavi a.nextpostslink:hover::after {
    border-color: #fff;
  }
}
.pagenavi a.previouspostslink::after, .pagenavi a.nextpostslink::after {
  position: absolute;
  top: 12px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pagenavi a.previouspostslink::after {
  right: 11px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
}
.pagenavi a.nextpostslink::after {
  left: 11px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

figcaption {
  font-size: 90%;
}

.article {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .article {
    width: 100%;
  }
}
.article-date {
  margin-bottom: 15px;
  color: #535353;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .article-date {
    margin-bottom: 10px;
    font-size: 3.4666666667vw;
    line-height: 1.2307692308;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-date {
    font-size: 13px;
  }
}
.article-title {
  margin-bottom: 55px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .article-title {
    margin-bottom: 25px;
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-title {
    font-size: 20px;
  }
}
.article-main {
  margin: 0 0 60px 0;
  padding: 0;
}
.article-main img {
  width: 100%;
}

.article-body h2 {
  position: relative;
  margin-top: 65px;
  margin-bottom: 50px;
  padding: 3px 0 10px 22px;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .article-body h2 {
    margin-top: 45px;
    margin-bottom: 40px;
    padding: 0 0 3px 13px;
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body h2 {
    font-size: 18px;
  }
}
.article-body h2:first-of-type {
  margin-top: 0;
}
.article-body h2::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 4px;
  height: 100%;
  background: #FF9038;
}
.article-body h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
}
.article-body h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .article-body h3 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body h3 {
    font-size: 16px;
  }
}
.article-body h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .article-body h4 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body h4 {
    font-size: 15px;
  }
}
.article-body figure {
  margin: 0;
  margin-bottom: 2em;
  padding: 0;
}
.article-body p {
  margin-bottom: 2em;
}
.article-body table, .article-body td, .article-body th, .article-body tr, .article-body tbody, .article-body thead {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}
.article-body table {
  margin-bottom: 30px;
  vertical-align: top;
  table-layout: fixed;
}
.article-body th, .article-body td {
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .article-body th, .article-body td {
    line-height: 1.7142857143;
  }
}
.article-body td {
  padding-left: 1em;
  word-break: break-all;
}
.article-body tr td:first-of-type {
  padding-right: 2em;
  padding-left: 0;
  color: #535353;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .article-body tr td:first-of-type {
    padding-right: 1em;
  }
}
.article-body a {
  text-decoration: underline;
}
.article-body a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .article-body a:hover {
    text-decoration: underline;
  }
}
.article-body .event-tag a {
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .article-body .event-tag a {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body .event-tag a {
    font-size: 13px;
  }
}
.article-body hr {
  margin-bottom: 40px;
  border: 0;
  border-bottom: 1px dotted #707070;
}
.article-body .btn-left,
.article-body .btn-right,
.article-body .btn-center {
  font-size: 16px;
  font-weight: 700;
}
.article-body .btn-left a,
.article-body .btn-right a,
.article-body .btn-center a {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  text-decoration: none;
}
.article-body .btn-left a::before, .article-body .btn-left a::after,
.article-body .btn-right a::before,
.article-body .btn-right a::after,
.article-body .btn-center a::before,
.article-body .btn-center a::after {
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
}
.article-body .btn-left a::before,
.article-body .btn-right a::before,
.article-body .btn-center a::before {
  right: 0;
  width: 24px;
  height: 24px;
  background: #81B54E;
  border-radius: 50%;
  border: 1px solid #81B54E;
  box-sizing: border-box;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .article-body .btn-left a::before,
  .article-body .btn-right a::before,
  .article-body .btn-center a::before {
    transition: none;
  }
}
.article-body .btn-left a::after,
.article-body .btn-right a::after,
.article-body .btn-center a::after {
  right: 10px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.article-body .btn-left a:hover::before,
.article-body .btn-right a:hover::before,
.article-body .btn-center a:hover::before {
  background: transparent;
}
@media screen and (max-width: 768px) {
  .article-body .btn-left a:hover::before,
  .article-body .btn-right a:hover::before,
  .article-body .btn-center a:hover::before {
    background: #81B54E;
  }
}
.article-body .btn-left a:hover::after,
.article-body .btn-right a:hover::after,
.article-body .btn-center a:hover::after {
  border-color: #81B54E;
}
@media screen and (max-width: 768px) {
  .article-body .btn-left a:hover::after,
  .article-body .btn-right a:hover::after,
  .article-body .btn-center a:hover::after {
    border-color: #fff;
  }
}
.article-body .btn-right {
  text-align: right;
}
.article-body .btn-center {
  text-align: center;
}
.article-body .wp-block-embed-youtube.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.article-body .wp-block-embed-youtube.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.article-body .wp-block-columns.is-layout-flex {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #707070;
  margin-bottom: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex {
    display: block;
  }
}
.article-body .wp-block-columns.is-layout-flex:last-of-type {
  border: 0;
  padding-bottom: 0;
}
.article-body .wp-block-columns.is-layout-flex h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex h3 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body .wp-block-columns.is-layout-flex h3 {
    font-size: 20px;
  }
}
.article-body .wp-block-columns.is-layout-flex h4 {
  font-size: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex h4 {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .article-body .wp-block-columns.is-layout-flex h4 {
    font-size: 13px;
  }
}
.article-body .wp-block-columns.is-layout-flex h3 + p,
.article-body .wp-block-columns.is-layout-flex h4 + p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex h3 + p,
  .article-body .wp-block-columns.is-layout-flex h4 + p {
    margin-top: 15px;
  }
}
.article-body .wp-block-columns.is-layout-flex table:last-of-type {
  margin-bottom: 0;
}
.article-body .wp-block-columns.is-layout-flex p:last-of-type {
  margin-bottom: 10px;
}
.article-body .wp-block-columns.is-layout-flex td, .article-body .wp-block-columns.is-layout-flex th {
  padding-bottom: 0;
}
.article-body .wp-block-columns.is-layout-flex td {
  width: calc(100% - 100px);
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex td {
    width: calc(100% - 80px);
  }
}
.article-body .wp-block-columns.is-layout-flex tr td:first-of-type {
  width: 100px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex tr td:first-of-type {
    width: 80px;
  }
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow:nth-of-type(odd) {
  width: 200px !important;
  flex-basis: 200px !important;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow:nth-of-type(odd) {
    width: 100% !important;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow:nth-of-type(even) {
  width: calc(100% - 200px) !important;
  flex-basis: calc(100% - 200px) !important;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow:nth-of-type(even) {
    width: 100% !important;
    flex-basis: 100%;
    padding: 0;
  }
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow figure {
  text-align: center;
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow figure.wp-block-table {
  text-align: left;
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow figure.wp-block-table td, .article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow figure.wp-block-table th {
  vertical-align: top;
}
.article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex .wp-block-column.is-layout-flow img {
    width: 70%;
  }
}
.article-body .wp-block-columns.is-layout-flex.half {
  border: 0;
  padding-bottom: 0;
}
.article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow {
  width: calc(50% - 15px) !important;
  flex-basis: calc(50% - 15px) !important;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}
.article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow img {
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow img {
    width: 100% !important;
  }
}
.article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow figure {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .article-body .wp-block-columns.is-layout-flex.half .wp-block-column.is-layout-flow:first-of-type figure {
    margin-bottom: 2em;
  }
}
.article-body .aligncenter {
  text-align: center;
}
.article-body .alignright {
  text-align: right;
}
.article-body ul {
  margin-bottom: 30px;
}
.article-body ul li {
  margin-left: 1.5em;
  list-style: disc;
}
.article-body ol {
  margin-bottom: 30px;
}
.article-body ol li {
  margin-left: 1.5em;
  list-style: decimal;
}

.article .back-btn {
  margin-bottom: 30px;
}

.back-btn {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .back-btn {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .back-btn {
    font-size: 15px;
  }
}
.back-btn .link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-btn .link-arrow .link-arrow-icon {
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  .back-btn .link-arrow .link-arrow-icon {
    margin-right: 6px;
    width: 24px;
    height: 24px;
  }
}
.back-btn .link-arrow svg {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .back-btn .link-arrow svg {
    width: 22px;
    height: 22px;
  }
}

body.event-body {
  background: url("../img/event-body-bg.png") repeat-y 0 0;
  background-size: 100% auto;
}
body.event-body main {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .event-pdf {
    margin-top: -10px;
    text-align: center;
  }
}
.event-pdf ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .event-pdf ul {
    font-size: 4vw;
    display: inline-block;
    margin-bottom: 25px;
    text-align: right;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-pdf ul {
    font-size: 15px;
  }
}
.event-pdf li {
  margin: 0 20px;
}
.event-pdf a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .event-pdf a {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .event-pdf .link-arrow-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .event-pdf .link-arrow-icon svg {
    width: 22px;
    height: 22px;
  }
}

.event-filter {
  border-top: 1px solid #707070;
  padding: 40px 0 13px 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .event-filter {
    padding: 30px 0 10px 0;
  }
}
.event-filter dl {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .event-filter dl {
    display: block;
    margin-bottom: 10px;
  }
}
.event-filter dt {
  display: flex;
  align-items: center;
  width: 177px;
  font-size: 20px;
  padding-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .event-filter dt {
    width: 100%;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-filter dt {
    font-size: 15px;
  }
}
.event-filter dt::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #FF9038;
  border-radius: 50%;
}
.event-filter dd {
  width: calc(100% - 177px);
}
@media screen and (max-width: 768px) {
  .event-filter dd {
    width: 100%;
    overflow-x: scroll;
  }
  .event-filter dd::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .event-filter .event-tag {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .event-filter .event-tag li {
    white-space: nowrap;
  }
}
.event-filter .event-tag a {
  padding: 5px 17px;
}

.event-article {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .event-article {
    padding-bottom: 50px;
  }
}
.event-article .event-list li:nth-child(n+11) {
  display: none;
  opacity: 0;
}
.event-article .event-list.show li:nth-child(n+11) {
  display: block;
  opacity: 1;
  animation: blockdown 0.5s forwards;
}
.event-article .more-list {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  padding: 306px 0 140px 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.53) 30%, rgba(255, 255, 255, 0.94) 60%, rgb(255, 255, 255) 100%);
  text-align: center;
}
.event-article .more-list > p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .event-article .more-list > p {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .event-article .more-list > p {
    font-size: 15px;
  }
}
.event-article .more-list > p .link-arrow-icon {
  margin-right: 6px;
}
.event-article .more-list > p svg {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .event-article .more-list .link-arrow-icon {
    width: 24px;
    height: 24px;
  }
  .event-article .more-list .link-arrow-icon svg {
    width: 22px;
    height: 22px;
  }
}
.event-article .more-list .link-arrow::after {
  content: "もっと見る";
}
.event-article .more-list.show {
  position: static;
  padding: 50px 0 0 0;
  background: transparent;
}
.event-article .more-list.show > p svg {
  transform: rotate(-90deg);
}
.event-article .more-list.show .link-arrow::after {
  content: "閉じる";
}

@keyframes blockdown {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.about-outline {
  padding-top: 20px;
}
.about-outline .inner {
  border-top: 1px dotted #707070;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .about-outline .inner {
    padding: 0;
    padding-top: 45px;
    margin-left: 25px;
    margin-right: 25px;
    width: calc(100% - 50px);
  }
}
.about-outline-title {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about-outline-title {
    margin-bottom: 35px;
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .about-outline-title {
    font-size: 24px;
  }
}
.about-outline dl {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #707070;
  line-height: 1.6;
}
.about-outline dl:first-of-type {
  border-top: 1px solid #707070;
}
.about-outline dl dt {
  width: 198px;
  font-weight: 500;
  color: #535353;
}
@media screen and (max-width: 768px) {
  .about-outline dl dt {
    width: 92px;
  }
}
.about-outline dl dd {
  width: calc(100% - 198px);
}
@media screen and (max-width: 768px) {
  .about-outline dl dd {
    width: calc(100% - 92px);
  }
}

.no-post {
  padding: 100px 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .no-post {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .no-post {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */