:root {
  --main-color: #000;
  --key-color: #000;
  --text-color: #000;
  --color-bg01: #f5f6f6;
  --gray01: #c9c9c9;
  --white: #fff;
  --black: #000;
  --color-yt: #cd201f;
  --color-fb: #3b5998;
  --color-tw: #55acee;
  --color-ln: #00b900;
  --main-width: 1050px;
  --pc-header-height: 120px;
  --sp-header-height: 50px;
  --font-sans-serif: "Zen Kaku Gothic New", sans-serif;
  --reg: 400;
  --med: 500;
  --semibold: 600;
  --bold: 700;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  color: var(--text-color);
  background-color: var(--gray01);
}

::selection {
  color: var(--text-color);
  background-color: var(--gray01);
}

html {
  scroll-behavior: auto;
}

html, body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  font-family: var(--font-sans-serif);
  color: var(--text-color);
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/*  link 
-----------------------------------------------------------------------------*/
a {
  -webkit-transition-property: background-color, opacity, color;
  transition-property: background-color, opacity, color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
a img {
  border: 0;
}
a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media print, screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/*  reset 
-----------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul, ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input {
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input,
button,
select,
textarea {
  font-family: var(--font-sans-serif);
}

button,
input[type=submit] {
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: var(--pc-header-height);
  min-width: var(--pc-min-width);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media print, screen and (max-width: 768px) {
  .header {
    min-width: auto;
    height: var(--sp-header-height);
  }
}
.header.is-hidden:not(.is-active) {
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
}
.header.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header .logo {
  width: 266px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (max-width: 768px) {
  .header .logo {
    width: 106px;
  }
}

.h-inner {
  width: calc(var(--main-width) + 40px);
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .h-inner {
    width: 100%;
    padding: 0 10px;
  }
}

.h-nav-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .h-nav-list {
    display: none;
  }
}
.h-nav-list li {
  margin: 0 4px;
}
.h-nav-list a {
  padding: 0 5px;
}
@media (any-hover: hover) {
  .h-nav-list a:hover {
    opacity: 0.7;
  }
}
.h-nav-list img._news {
  width: 37px;
}
.h-nav-list img._artists {
  width: 41px;
}
.h-nav-list img._exhibition {
  width: 65px;
}
.h-nav-list img._ticket {
  width: 38px;
}
.h-nav-list img._event {
  width: 34px;
}
.h-nav-list img._gourmet {
  width: 58px;
}
.h-nav-list img._tour {
  width: 89px;
}
.h-nav-list img._stay {
  width: 28px;
}
.h-nav-list img._access {
  width: 46px;
}

.h-menu-btn {
  width: 83px;
  aspect-ratio: 1/1;
  border: 1px solid var(--black);
  border-radius: 50%;
  margin-left: 29px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn {
    width: 32px;
  }
}
.h-menu-btn.is-active {
  border-color: var(--white);
}
.h-menu-btn.is-active span {
  background: var(--white);
}
.h-menu-btn.is-active span:nth-of-type(1) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn.is-active span:nth-of-type(1) {
    top: 4px;
  }
}
.h-menu-btn.is-active span:nth-of-type(2) {
  width: 0;
}
.h-menu-btn.is-active span:nth-of-type(3) {
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn.is-active span:nth-of-type(3) {
    top: 4px;
  }
}
.h-menu-btn .bar-wrap {
  width: 40px;
  height: 22px;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn .bar-wrap {
    width: 14px;
    height: 9px;
  }
}
.h-menu-btn span {
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.h-menu-btn span:nth-of-type(1) {
  top: 0;
}
.h-menu-btn span:nth-of-type(2) {
  top: 11px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn span:nth-of-type(2) {
    top: 4px;
  }
}
.h-menu-btn span:nth-of-type(3) {
  top: 21px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-btn span:nth-of-type(3) {
    top: 8px;
  }
}

.h-menu {
  background: var(--main-color);
  width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
  overflow-y: scroll;
}
.h-menu:not(.is-active) {
  pointer-events: none;
}
.h-menu.is-active {
  opacity: 1;
}
.h-menu-inner {
  width: calc(var(--main-width) + 40px);
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-inner {
    width: 100%;
    padding: 0 10px;
  }
}
.h-menu .ttl {
  position: absolute;
}
@media print, screen and (min-width: 769px) {
  .h-menu .ttl {
    width: 50px;
    top: 130px;
    left: calc(50% + 510px);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media print, screen and (max-width: 768px) {
  .h-menu .ttl {
    width: 24px;
    top: 50px;
    right: 14px;
  }
}
.h-menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list {
    gap: 35px;
  }
}
.h-menu-list a {
  display: inline-block;
}
@media (any-hover: hover) {
  .h-menu-list a:hover {
    opacity: 0.7;
  }
}
.h-menu-list img {
  margin: 0 auto;
}
.h-menu-list img._news {
  width: 116px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._news {
    width: 40px;
  }
}
.h-menu-list img._artists {
  width: 128px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._artists {
    width: 48px;
  }
}
.h-menu-list img._exhibition {
  width: 196px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._exhibition {
    width: 70px;
  }
}
.h-menu-list img._ticket {
  width: 116px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._ticket {
    width: 42px;
  }
}
.h-menu-list img._event {
  width: 107px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._event {
    width: 38px;
  }
}
.h-menu-list img._gourmet {
  width: 182px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._gourmet {
    width: 64px;
  }
}
.h-menu-list img._tour {
  width: 281px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._tour {
    width: 100px;
  }
}
.h-menu-list img._stay {
  width: 90px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._stay {
    width: 32px;
  }
}
.h-menu-list img._access {
  width: 146px;
}
@media print, screen and (max-width: 768px) {
  .h-menu-list img._access {
    width: 54px;
  }
}

.footer {
  color: var(--white);
  background: var(--main-color);
  padding: 120px 0;
}
@media print, screen and (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }
}

.f-inner {
  width: calc(var(--main-width) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (max-width: 768px) {
  .f-inner {
    width: 100%;
    padding: 0 10px;
  }
}
@media print, screen and (max-width: 768px) {
  .f-inner {
    width: 310px;
  }
}

@media print, screen and (min-width: 769px) {
  .f-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.f-link-box .link-ex {
  margin-top: 45px;
}
@media print, screen and (max-width: 768px) {
  .f-link-box .link-ex {
    margin-top: 35px;
  }
}
.f-link-box .link-ex a {
  font-weight: var(--reg);
  letter-spacing: 0.16em;
}
@media print, screen and (min-width: 769px) {
  .f-link-box .link-ex a {
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .f-link-box .link-ex a:hover {
    opacity: 0.7;
  }
}
.f-link-box .link-ex a:after {
  content: "";
  display: inline-block;
  width: 21px;
  aspect-ratio: 1/1;
  background: url(../../img/common/icon-ex-w.svg) no-repeat center center/contain;
  vertical-align: middle;
  margin: -6px 0 0 12px;
}
@media print, screen and (max-width: 768px) {
  .f-link-box .link-ex a:after {
    width: 12px;
    margin: -3px 0 0 6px;
  }
}

.f-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media print, screen and (min-width: 769px) {
  .f-nav a {
    font-size: 1.8rem;
  }
}
@media (any-hover: hover) {
  .f-nav a:hover {
    opacity: 0.7;
  }
}

.f-sns-list {
  margin-top: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media print, screen and (max-width: 768px) {
  .f-sns-list {
    margin-top: 13px;
    gap: 10px;
  }
}
.f-sns-list a {
  display: block;
}
@media (any-hover: hover) {
  .f-sns-list a:hover {
    opacity: 0.7;
  }
}
.f-sns-list img {
  width: 30px;
  height: auto;
}
@media print, screen and (max-width: 768px) {
  .f-sns-list img {
    width: 20px;
  }
}
.f-sns-list img._x {
  width: 28px;
}
@media print, screen and (max-width: 768px) {
  .f-sns-list img._x {
    width: 18px;
  }
}

@media print, screen and (max-width: 768px) {
  .f-info-box {
    margin-top: 35px;
  }
}
.f-info-box .f-logo {
  width: 365px;
}
@media print, screen and (max-width: 768px) {
  .f-info-box .f-logo {
    width: 250px;
  }
}
.f-info-box .info-text {
  font-weight: var(--reg);
  line-height: 1.75;
  margin-top: 18px;
}
@media print, screen and (min-width: 769px) {
  .f-info-box .info-text {
    font-size: 1.8rem;
    letter-spacing: 0.16em;
  }
}
@media print, screen and (max-width: 768px) {
  .f-info-box .info-text {
    letter-spacing: 0.05em;
  }
}
.f-info-box .copy {
  margin-top: 35px;
}
@media print, screen and (max-width: 768px) {
  .f-info-box .copy {
    text-align: center;
    margin-top: 50px;
  }
}
.f-info-box .copy small {
  font-size: 1.2rem;
  font-weight: var(--reg);
}
@media print, screen and (max-width: 768px) {
  .f-info-box .copy small {
    font-size: 1rem;
  }
}

.wrapper {
  font-size: 1.4rem;
  font-weight: var(--med);
  letter-spacing: 0.1em;
  overflow-y: hidden;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .wrapper {
    font-size: 1.2rem;
    min-width: auto;
    letter-spacing: 0.05em;
  }
}

.cmn-inner {
  width: calc(var(--main-width) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (max-width: 768px) {
  .cmn-inner {
    width: 100%;
    padding: 0 10px;
  }
}

.cmn-ttl01 img {
  display: block;
  margin: 0 auto;
}

.cmn-lead {
  text-align: center;
  line-height: 1.75;
  margin-top: 25px;
}
@media print, screen and (min-width: 769px) {
  .cmn-lead {
    font-size: 1.6rem;
    letter-spacing: 0.16em;
  }
}
@media print, screen and (max-width: 768px) {
  .cmn-lead {
    font-size: 1.1rem;
    margin-top: 15px;
  }
}

.cmn-slide01,
.event-slide {
  margin-top: 35px;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01,
  .event-slide {
    margin-top: 20px;
  }
}
.cmn-slide01:not(.slick-initialized),
.event-slide:not(.slick-initialized) {
  max-height: 350px;
}
.cmn-slide01.slick-initialized,
.event-slide.slick-initialized {
  opacity: 1;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .slick-list,
  .event-slide .slick-list {
    overflow: visible;
  }
}
.cmn-slide01 .item,
.event-slide .item {
  margin: 0 19px;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .item,
  .event-slide .item {
    width: 35vw;
    max-width: 234px;
    margin: 0 8px;
  }
}
.cmn-slide01 .item p,
.event-slide .item p {
  line-height: 1.35;
}
@media print, screen and (min-width: 769px) {
  .cmn-slide01 .item p,
  .event-slide .item p {
    font-size: 1.6rem;
    letter-spacing: 0.16em;
  }
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .item p,
  .event-slide .item p {
    font-size: 1.1rem;
  }
}
.cmn-slide01 .img-wrap,
.event-slide .img-wrap {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 17px;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .img-wrap,
  .event-slide .img-wrap {
    margin-bottom: 10px;
  }
}
.cmn-slide01 .area,
.event-slide .area {
  font-size: 1.2rem;
  font-weight: var(--med);
  border: 0.5px solid rgba(135, 135, 135, 0.5);
  border-radius: 16px 0 0 0;
  padding: 4px 15px;
  display: inline-block;
  margin-top: 8px;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .area,
  .event-slide .area {
    font-size: 1rem;
    padding: 4px 10px;
    letter-spacing: 0.025em;
  }
}
.cmn-slide01 .slick-arrow,
.event-slide .slick-arrow {
  font-size: 0;
  width: 23px;
  aspect-ratio: 1/1;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: calc(50% - 11px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media print, screen and (max-width: 768px) {
  .cmn-slide01 .slick-arrow,
  .event-slide .slick-arrow {
    display: none;
  }
}
@media (any-hover: hover) {
  .cmn-slide01 .slick-arrow:hover,
  .event-slide .slick-arrow:hover {
    background: #000;
  }
  .cmn-slide01 .slick-arrow:hover:before,
  .event-slide .slick-arrow:hover:before {
    border-top-color: var(--white);
    border-left-color: var(--white);
  }
}
.cmn-slide01 .slick-arrow:before,
.event-slide .slick-arrow:before {
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 1/1;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-left: 1px solid rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.cmn-slide01 .slick-arrow.slick-prev,
.event-slide .slick-arrow.slick-prev {
  padding-left: 3px;
  left: -75px;
}
.cmn-slide01 .slick-arrow.slick-prev:before,
.event-slide .slick-arrow.slick-prev:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cmn-slide01 .slick-arrow.slick-next,
.event-slide .slick-arrow.slick-next {
  padding-right: 3px;
  right: -75px;
}
.cmn-slide01 .slick-arrow.slick-next:before,
.event-slide .slick-arrow.slick-next:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.cmn-btn._01 {
  margin-top: 35px;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._01 {
    margin-top: 20px;
  }
}
.cmn-btn._01 :is(a, button, input) {
  line-height: 1.35;
  border: 1px solid var(--black);
  border-radius: 30px;
  padding: 17px 25px;
  display: inline-block;
}
@media print, screen and (min-width: 769px) {
  .cmn-btn._01 :is(a, button, input) {
    font-size: 1.8rem;
    font-weight: var(--reg);
    min-width: 460px;
    min-height: 60px;
  }
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._01 :is(a, button, input) {
    padding: 10px 30px;
    min-width: 250px;
  }
}
.cmn-btn._01 :is(a, button, input):after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  background: url(../../img/common/icon-arrow.svg) no-repeat center center/contain;
  margin: -4px 0 0 8px;
  vertical-align: middle;
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._01 :is(a, button, input):after {
    width: 9px;
    height: 5px;
    margin-top: -2px;
  }
}
@media (any-hover: hover) {
  .cmn-btn._01 :is(a, button, input):hover {
    color: var(--white);
    background: var(--black);
  }
  .cmn-btn._01 :is(a, button, input):hover:after {
    background: url(../../img/common/icon-arrow-w.svg) no-repeat center center/contain;
  }
}
.cmn-btn._02 {
  margin-top: 35px;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._02 {
    margin-top: 20px;
  }
}
.cmn-btn._02 :is(a, button, input) {
  border: 1px solid var(--black);
  padding: 12px 95px;
  display: inline-block;
  border-radius: 20px;
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._02 :is(a, button, input) {
    padding: 10px 30px;
    min-width: 250px;
  }
}
.cmn-btn._02 :is(a, button, input):after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  background: url(../../img/common/icon-arrow.svg) no-repeat center center/contain;
  margin-left: 8px;
  vertical-align: middle;
}
@media print, screen and (max-width: 768px) {
  .cmn-btn._02 :is(a, button, input):after {
    width: 9px;
    height: 5px;
    margin-top: -2px;
  }
}
@media (any-hover: hover) {
  .cmn-btn._02 :is(a, button, input):hover {
    color: var(--white);
    background: var(--black);
  }
  .cmn-btn._02 :is(a, button, input):hover:after {
    background: url(../../img/common/icon-arrow-w.svg) no-repeat center center/contain;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  font-size: 1.6rem;
  width: 100%;
  border: 1px solid #707070;
  padding: 14px 10px;
}
@media print, screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1.4rem;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--text-color);
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #D6DADF;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #D6DADF;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #D6DADF;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #D6DADF;
}

input::placeholder,
textarea::placeholder {
  color: #D6DADF;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #D6DADF;
}

.top-mainv {
  padding: 130px 0 120px;
}
@media print, screen and (max-width: 768px) {
  .top-mainv {
    padding: 50px 0 35px;
    min-height: 355px;
  }
}
.top-mainv .cmn-inner {
  position: relative;
}
.top-mainv .ttl {
  width: 50px;
  position: absolute;
  top: 0;
  right: 35px;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .ttl {
    width: 24px;
    right: 14px;
  }
}
.top-mainv .slide-wrap {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-mainv .slide-wrap {
    width: 805px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mainv .slide-wrap {
    width: 50vw;
    margin: 0 auto;
  }
}
.top-mainv .mainv-slide {
  opacity: 0;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
}
.top-mainv .mainv-slide:not(.slick-initialized) {
  max-height: 700px;
}
.top-mainv .mainv-slide.slick-initialized {
  opacity: 1;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .mainv-slide .slick-list {
    padding-top: 12px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-mainv .item {
    padding-bottom: 82px;
  }
}
.top-mainv .img-wrap {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .top-mainv .img-wrap {
    height: 606px;
  }
}
.top-mainv .def {
  line-height: 1.35;
  margin-top: 18px;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .def {
    display: none;
  }
}
.top-mainv .def dt {
  font-size: 2.6rem;
  letter-spacing: 0.16em;
}
.top-mainv .def dd {
  font-size: 1.8rem;
  font-weight: var(--reg);
  letter-spacing: 0.16em;
  margin-top: 5px;
}
.top-mainv .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}
@media print, screen and (min-width: 769px) {
  .top-mainv .slick-dots {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    right: 91px;
    bottom: 30px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-mainv .slick-dots {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    left: 0;
  }
}
.top-mainv .slick-dots li {
  font-size: 0;
  margin: 0 4px;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .slick-dots li {
    margin: 0 2px;
  }
}
.top-mainv .slick-dots li.slick-active button:before {
  background-color: var(--main-color);
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
.top-mainv .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 20px;
  aspect-ratio: 1/1;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .slick-dots li button {
    width: 6px;
    padding: 1px;
  }
}
.top-mainv .slick-dots li button:before {
  content: "";
  width: 4px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--text-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .slick-dots li button:before {
    width: 2px;
  }
}
@media (any-hover: hover) {
  .top-mainv .slick-dots li button:hover:before {
    background-color: var(--main-color);
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}
.top-mainv .arrow-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: absolute;
  right: 0;
  bottom: 30px;
}
@media print, screen and (max-width: 768px) {
  .top-mainv .arrow-box {
    display: none !important;
  }
}
.top-mainv .arrow-box .arrow {
  width: 19px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.top-mainv .arrow-box .arrow:before {
  content: "";
  display: block;
  width: 13px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .top-mainv .arrow-box .arrow:hover:before {
    border-top-color: var(--main-color);
    border-left-color: var(--main-color);
  }
}
.top-mainv .arrow-box .arrow._prev {
  padding-left: 6px;
}
.top-mainv .arrow-box .arrow._prev:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.top-mainv .arrow-box .arrow._next {
  padding-right: 6px;
}
.top-mainv .arrow-box .arrow._next:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.top-mainv .sp-anchor-list {
  width: 280px;
  margin: 25px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 769px) {
  .top-mainv .sp-anchor-list {
    display: none;
  }
}
.top-mainv .sp-anchor-list li {
  width: 33.3333333333%;
}
.top-mainv .sp-anchor-list a {
  padding: 5px 0 10px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.top-mainv .sp-anchor-list a:before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #f1f2f2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.top-mainv .sp-anchor-list a:after {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  background: url(../../img/common/icon-arrow02.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.top-mainv .sp-anchor-list img._event {
  width: 32px;
}
.top-mainv .sp-anchor-list img._gourmet {
  width: 54px;
}
.top-mainv .sp-anchor-list img._tour {
  width: 52px;
}

.top-news {
  background: var(--color-bg01);
  padding: 120px 0;
}
@media print, screen and (max-width: 768px) {
  .top-news {
    padding: 40px 0;
  }
}
.top-news .cmn-ttl01 {
  margin-bottom: 30px;
}
.top-news .cmn-ttl01 img {
  width: 111px;
}
@media print, screen and (max-width: 768px) {
  .top-news .cmn-ttl01 img {
    width: 56px;
  }
}
.top-news .list {
  margin: 0 auto;
  border-top: 1px solid #c7c8c8;
}
@media print, screen and (min-width: 769px) {
  .top-news .list {
    width: 580px;
  }
}
.top-news .list li {
  border-bottom: 1px solid #c7c8c8;
}
.top-news .list a {
  line-height: 1.35;
  padding: 35px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (any-hover: hover) {
  .top-news .list a:hover {
    opacity: 0.7;
  }
}
@media print, screen and (max-width: 768px) {
  .top-news .list a {
    padding: 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-news .list time {
  color: #727171;
  letter-spacing: 0.1em;
  margin-right: 57px;
}
@media print, screen and (max-width: 768px) {
  .top-news .list time {
    font-size: 1rem;
    margin-top: 2px;
  }
}
.top-news .list p {
  letter-spacing: 0.035em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media print, screen and (max-width: 768px) {
  .top-news .list p {
    font-size: 1.2rem;
  }
}

.top-artists {
  padding: 110px 0 60px;
}
@media print, screen and (max-width: 768px) {
  .top-artists {
    padding: 40px 0 30px;
  }
}
.top-artists .cmn-lead {
  margin: 0 0 90px;
}
@media print, screen and (max-width: 768px) {
  .top-artists .cmn-lead {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.top-artists .cmn-ttl01 img {
  width: 170px;
}
@media print, screen and (max-width: 768px) {
  .top-artists .cmn-ttl01 img {
    width: 85px;
  }
}
.top-artists .list {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 60px 80px;
}
@media print, screen and (max-width: 768px) {
  .top-artists .list {
    width: 80%;
    margin: 20px auto 0;
  }
}
@media print, screen and (min-width: 769px) {
  .top-artists .list li {
    width: calc(50% - 40px);
  }
}
.top-artists .list img {
  width: auto;
}
@media print, screen and (max-width: 768px) {
  .top-artists .list img {
    width: calc(100% - 25px);
  }
}
.top-artists .list p {
  line-height: 1.5;
  margin-top: 26px;
  letter-spacing: 0.16em;
}
@media print, screen and (max-width: 768px) {
  .top-artists .list p {
    font-size: 1.1rem;
    margin-top: 15px;
  }
}
.top-artists .note-text {
  line-height: 1.35;
  margin-top: 50px;
}
@media print, screen and (max-width: 768px) {
  .top-artists .note-text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-exhibition {
  padding: 60px 0;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition {
    padding: 30px 0;
  }
}
.top-exhibition .cmn-ttl01 img {
  width: 256px;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .cmn-ttl01 img {
    width: 128px;
  }
}
.top-exhibition .map {
  text-align: right;
  margin-top: 60px;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .map {
    text-align: center;
    margin-top: 15px;
  }
}
.top-exhibition .map img {
  width: auto;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .map img {
    width: 80%;
  }
}
.top-exhibition .list {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-exhibition .list > li {
  width: calc(50% - 31px);
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list > li {
    width: calc(50% - 7px);
  }
}
.top-exhibition .list .img-wrap {
  position: relative;
}
.top-exhibition .list .img-wrap .pin {
  width: 55px;
  position: absolute;
  top: -13px;
  left: 19px;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .img-wrap .pin {
    width: 30px;
    top: -8px;
    left: 10px;
  }
}
.top-exhibition .list .def {
  margin-top: 11px;
}
.top-exhibition .list .def > dt {
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  line-height: 1.35;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def > dt {
    font-size: 1.2rem;
  }
}
.top-exhibition .list .def > dt span {
  font-size: 1.2rem;
  letter-spacing: 0.025em;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def > dt span {
    font-size: 1rem;
  }
}
.top-exhibition .list .def .area {
  margin-top: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-exhibition .list .def .area dt {
  font-size: 1.2rem;
  font-weight: var(--med);
  border: 0.5px solid rgba(135, 135, 135, 0.5);
  border-radius: 16px 0 0 0;
  padding: 4px 15px;
  display: inline-block;
  margin-right: 13px;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def .area dt {
    font-size: 1rem;
    padding: 4px 10px;
    letter-spacing: 0.025em;
  }
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def .area dt {
    margin-right: 5px;
  }
}
.top-exhibition .list .def .area dd {
  width: 125px;
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def .area dd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 125px;
  }
}
@media (any-hover: hover) {
  .top-exhibition .list .def .area dd a:hover {
    opacity: 0.7;
  }
}
.top-exhibition .list .def .inlist {
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4px 14px;
}
.top-exhibition .list .def .inlist li {
  font-weight: var(--reg);
  line-height: 1.35;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-exhibition .list .def .inlist li {
    padding-left: 11px;
    width: calc(50% - 7px);
  }
}
@media print, screen and (max-width: 768px) {
  .top-exhibition .list .def .inlist li {
    font-size: 1.1rem;
  }
}
@media print, screen and (min-width: 769px) {
  .top-exhibition .list .def .inlist li:before {
    content: "";
    width: 5px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: block;
    background: var(--main-color);
    position: absolute;
    top: 7px;
    left: 2px;
  }
}

.top-ticket {
  padding: 60px 0 120px;
}
@media print, screen and (max-width: 768px) {
  .top-ticket {
    padding: 30px 0 60px;
  }
}
.top-ticket .cmn-ttl01 {
  margin-bottom: 25px;
}
.top-ticket .cmn-ttl01 img {
  width: 149px;
}
@media print, screen and (max-width: 768px) {
  .top-ticket .cmn-ttl01 img {
    width: 75px;
  }
}
.top-ticket .table-wrap table {
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  table-layout: fixed;
}
@media print, screen and (min-width: 769px) {
  .top-ticket .table-wrap table {
    letter-spacing: 0.05em;
  }
}
@media print, screen and (max-width: 768px) {
  .top-ticket .table-wrap table {
    font-size: 0.8rem;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.top-ticket .table-wrap th, .top-ticket .table-wrap td {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 20px 23px;
}
@media print, screen and (max-width: 768px) {
  .top-ticket .table-wrap th, .top-ticket .table-wrap td {
    font-weight: 600;
    padding: 8px 1px;
  }
}
.top-ticket .table-wrap thead th {
  line-height: 1.75;
  background: rgba(242, 242, 242, 0.5);
}
.top-ticket .table-wrap thead th._big {
  letter-spacing: 0em;
}
@media print, screen and (min-width: 769px) {
  .top-ticket .table-wrap thead th._big {
    padding: 20px 15px;
  }
}
.top-ticket .table-wrap thead tr:first-of-type th:first-of-type {
  width: 23.5%;
}
@media print, screen and (max-width: 768px) {
  .top-ticket .table-wrap thead tr:first-of-type th:first-of-type {
    width: 27%;
  }
}
.top-ticket .table-wrap thead tr:first-of-type th:nth-of-type(2) {
  width: 36%;
}
@media print, screen and (max-width: 768px) {
  .top-ticket .table-wrap thead tr:first-of-type th:nth-of-type(2) {
    width: 26%;
  }
}
.top-ticket .table-wrap tbody th {
  background: #e6e6e6;
}
@media print, screen and (min-width: 769px) {
  .top-ticket .table-wrap tbody th {
    letter-spacing: 0.1em;
  }
}
@media print, screen and (max-width: 768px) {
  .top-ticket .table-wrap tbody td {
    letter-spacing: 0.16em;
  }
}
@media print, screen and (min-width: 769px) {
  .top-ticket .list-wrap {
    text-align: center;
    margin-top: 55px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-ticket .list-wrap {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-ticket .list-wrap .note-list {
    text-align: left;
    line-height: 2;
    display: inline-block;
  }
}
@media print, screen and (max-width: 768px) {
  .top-ticket .list-wrap .note-list {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print, screen and (max-width: 768px) {
  .top-ticket .cmn-btn .cmn-btn {
    margin-top: 15px;
  }
}

.top-event {
  background: #e6e6e6;
  padding: 120px 0;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .top-event {
    padding: 60px 0;
  }
}
.top-event .cmn-ttl01 {
  margin-bottom: 20px;
}
.top-event .cmn-ttl01 img {
  width: 138px;
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-ttl01 img {
    width: 69px;
  }
}
.top-event .cmn-slide01 {
  margin-top: 50px;
  opacity: 0;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-slide01 {
    position: relative;
  }
}
.top-event .cmn-slide01:not(.slick-initialized) {
  max-height: 700px;
}
.top-event .cmn-slide01.slick-initialized {
  opacity: 1;
}
.top-event .cmn-slide01 .item .img-wrap {
  aspect-ratio: 109/80;
  margin-bottom: 24px;
  border-radius: 15px;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-slide01 .item .img-wrap {
    margin-bottom: 5px;
  }
}
.top-event .cmn-slide01 .item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-event .cmn-slide01 .item .date {
  color: #9d9e9e;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-slide01 .item .date {
    font-size: 1rem;
  }
}
.top-event .cmn-slide01 .item .def dt {
  line-height: 1.35;
  margin-top: 4px;
}
@media print, screen and (min-width: 769px) {
  .top-event .cmn-slide01 .item .def dt {
    font-size: 1.6rem;
  }
}
.top-event .cmn-slide01 .item .def dd {
  font-size: 1.2rem;
  font-weight: var(--med);
  border: 0.5px solid rgba(135, 135, 135, 0.5);
  border-radius: 16px 0 0 0;
  padding: 4px 15px;
  display: inline-block;
  margin-top: 5px;
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-slide01 .item .def dd {
    font-size: 1rem;
    padding: 4px 10px;
    letter-spacing: 0.025em;
  }
}
@media print, screen and (max-width: 768px) {
  .top-event .cmn-slide01 .item .def dd {
    margin-top: 3px;
  }
}
.top-event .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
}
@media print, screen and (min-width: 769px) {
  .top-event .slick-dots {
    display: none !important;
  }
}
.top-event .slick-dots li {
  font-size: 0;
  margin: 0 4px;
}
@media print, screen and (max-width: 768px) {
  .top-event .slick-dots li {
    margin: 0 2px;
  }
}
.top-event .slick-dots li.slick-active button:before {
  background-color: var(--main-color);
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
.top-event .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 6px;
  height: 6px;
  padding: 1px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-event .slick-dots li button:before {
  content: "";
  width: 2px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--text-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
}
@media (any-hover: hover) {
  .top-event .slick-dots li button:hover:before {
    background-color: var(--main-color);
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}

.top-gourmet {
  padding: 120px 0 60px;
}
@media print, screen and (max-width: 768px) {
  .top-gourmet {
    padding: 60px 0 30px;
    overflow: hidden;
  }
}
.top-gourmet .cmn-ttl01 img {
  width: 228px;
}
@media print, screen and (max-width: 768px) {
  .top-gourmet .cmn-ttl01 img {
    width: 114px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-gourmet .cmn-btn {
    margin-top: 60px;
  }
}

.top-tour {
  padding: 60px 0 120px;
}
@media print, screen and (max-width: 768px) {
  .top-tour {
    padding: 30px 0 60px;
    overflow: hidden;
  }
}
.top-tour .cmn-ttl01 img {
  width: 369px;
}
@media print, screen and (max-width: 768px) {
  .top-tour .cmn-ttl01 img {
    width: 185px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-tour .cmn-btn {
    margin-top: 60px;
  }
}

.top-stay {
  color: var(--white);
  background: var(--main-color);
  padding: 120px 0;
}
@media print, screen and (max-width: 768px) {
  .top-stay {
    padding: 60px 0;
  }
}
.top-stay .cmn-ttl01 img {
  width: 139px;
}
@media print, screen and (max-width: 768px) {
  .top-stay .cmn-ttl01 img {
    width: 70px;
  }
}
.top-stay .cmn-lead {
  font-weight: var(--reg);
}
.top-stay .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .top-stay .btn-wrap {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-stay .cmn-btn {
    margin: 0;
  }
}
.top-stay .cmn-btn a {
  font-weight: var(--reg);
  border-color: var(--white);
}
.top-stay .cmn-btn a:after {
  background: url(../../img/common/icon-arrow-w.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .top-stay .cmn-btn a:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}

.top-access {
  padding: 120px 0 60px;
}
@media print, screen and (max-width: 768px) {
  .top-access {
    padding: 60px 0 30px;
  }
}
.top-access .cmn-ttl01 img {
  width: 173px;
}
@media print, screen and (max-width: 768px) {
  .top-access .cmn-ttl01 img {
    width: 87px;
  }
}

.top-guidance {
  padding: 60px 0;
}
@media print, screen and (max-width: 768px) {
  .top-guidance {
    padding: 30px 0;
  }
}
.top-guidance .cmn-ttl01 img {
  width: 252px;
}
@media print, screen and (max-width: 768px) {
  .top-guidance .cmn-ttl01 img {
    width: 126px;
  }
}
.top-guidance .def {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media print, screen and (min-width: 769px) {
  .top-guidance .def {
    gap: 60px 30px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def {
    width: 280px;
    margin: 20px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-guidance .def > div {
    width: calc(38% - 20px);
  }
  .top-guidance .def > div:nth-child(3n) {
    width: calc(24% - 20px);
  }
}
.top-guidance .def dt {
  color: var(--main-color);
  letter-spacing: 0.1em;
  line-height: 1.35;
  position: relative;
  padding-left: 44px;
}
@media print, screen and (min-width: 769px) {
  .top-guidance .def dt {
    font-size: 2.2rem;
    font-weight: var(--reg);
  }
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def dt {
    padding-left: 30px;
  }
}
.top-guidance .def dt .icon {
  width: 34px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def dt .icon {
    width: 25px;
    top: -4px;
  }
}
.top-guidance .def dd {
  line-height: 1.375;
}
@media print, screen and (min-width: 769px) {
  .top-guidance .def dd {
    font-size: 1.6rem;
  }
}
.top-guidance .def dd:first-of-type {
  margin-top: 20px;
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def dd:first-of-type {
    margin-top: 15px;
  }
}
.top-guidance .def dd + dd {
  margin-top: 15px;
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def dd + dd {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-guidance .def dd a {
    font-weight: var(--reg);
  }
}
@media (any-hover: hover) {
  .top-guidance .def dd a:hover {
    opacity: 0.7;
  }
}
.top-guidance .def dd a[target=_blank]:after {
  content: "";
  display: inline-block;
  width: 19px;
  aspect-ratio: 1/1;
  background: url(../../img/common/icon-ex.svg) no-repeat center center/contain;
  margin: 0 0 -3px 5px;
}
@media print, screen and (max-width: 768px) {
  .top-guidance .def dd a[target=_blank]:after {
    width: 12px;
  }
}

.top-related {
  padding: 60px 0;
}
@media print, screen and (max-width: 768px) {
  .top-related {
    padding: 30px 0;
  }
}
.top-related .cmn-ttl01 img {
  width: 315px;
}
@media print, screen and (max-width: 768px) {
  .top-related .cmn-ttl01 img {
    width: 168px;
  }
}
.top-related .def {
  margin: 50px auto 0;
}
@media print, screen and (min-width: 769px) {
  .top-related .def {
    width: 620px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-related .def {
    width: 280px;
    margin: 20px auto 0;
  }
}
.top-related .def > div + div {
  margin-top: 55px;
}
@media print, screen and (max-width: 768px) {
  .top-related .def > div + div {
    margin-top: 25px;
  }
}
.top-related .def dt a {
  letter-spacing: 0.16em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 769px) {
  .top-related .def dt a {
    font-size: 2.2rem;
  }
}
@media (any-hover: hover) {
  .top-related .def dt a:hover {
    opacity: 0.7;
  }
}
.top-related .def dt a:after {
  content: "";
  width: 26px;
  aspect-ratio: 1/1;
  display: inline-block;
  background: url(../../img/common/icon-ex.svg) no-repeat center center/contain;
  vertical-align: middle;
  margin-left: 33px;
}
@media print, screen and (max-width: 768px) {
  .top-related .def dt a:after {
    width: 12px;
    margin-left: 10px;
  }
}
.top-related .def dt a img {
  width: 85%;
}
.top-related .def dd {
  line-height: 1.75;
  margin-top: 10px;
}
@media print, screen and (min-width: 769px) {
  .top-related .def dd {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
@media print, screen and (max-width: 768px) {
  .top-related .def dd {
    font-size: 1.1rem;
    font-weight: var(--reg);
  }
}

.top-sns {
  padding: 60px 0 120px;
}
@media print, screen and (max-width: 768px) {
  .top-sns {
    padding: 30px 0 60px;
  }
}
.top-sns .cmn-ttl01 img {
  width: 124px;
}
@media print, screen and (max-width: 768px) {
  .top-sns .cmn-ttl01 img {
    width: 62px;
  }
}
.top-sns .def {
  margin: 45px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 769px) {
  .top-sns .def {
    width: 730px;
  }
}
@media print, screen and (max-width: 768px) {
  .top-sns .def {
    margin: 25px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-sns .def > div {
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .top-sns .def > div {
    width: calc(33.3333333333% - 20px);
  }
}
@media print, screen and (max-width: 768px) {
  .top-sns .def > div + div {
    margin-top: 30px;
  }
}
.top-sns .def > div > div {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 768px) {
  .top-sns .def > div > div {
    margin-top: 13px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-sns .def dt {
    letter-spacing: 0.16em;
  }
}
.top-sns .def dd:not(:last-of-type) {
  margin-right: 12px;
}
@media (any-hover: hover) {
  .top-sns .def dd a:hover {
    opacity: 0.7;
  }
}
.top-sns .def dd img._x {
  width: 22px;
}
@media print, screen and (max-width: 768px) {
  .top-sns .def dd img._x {
    width: 16px;
  }
}
.top-sns .def dd img._ig {
  width: 24px;
}
@media print, screen and (max-width: 768px) {
  .top-sns .def dd img._ig {
    width: 18px;
  }
}
.top-sns .def dd img._note {
  width: 71px;
}
@media print, screen and (max-width: 768px) {
  .top-sns .def dd img._note {
    width: 60px;
  }
}/*# sourceMappingURL=style.css.map */