@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
body.iPhone .mainvisual .eachTextAnime {
  letter-spacing: 0.15em;
  font-size: min(11vw, 13rem);
}
body.iPhone .link__inner-colmun--txt .categoryname .copyTextAnime {
  letter-spacing: 0.3em;
}
@media all and (max-width: 480px) {
  body.iPhone .link__inner-colmun--txt .categoryname .copyTextAnime::before {
    left: 43%;
  }
}

.wrapper__copy--left, .wrapper__copy--right {
  z-index: 1;
}
@media all and (max-width: 896px) {
  .wrapper__copy--left, .wrapper__copy--right {
    display: none;
  }
}

.header {
  opacity: 0;
}
.header.show {
  opacity: 1;
}

#loading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading .loader {
  position: relative;
  display: grid;
  place-content: center;
  animation-name: loadAnime;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  width: 100%;
}
@media all and (max-width: 896px) {
  #loading .loader img {
    max-width: 400px;
  }
}
@media all and (max-width: 480px) {
  #loading .loader img {
    max-width: 320px;
  }
}
#loading.show {
  opacity: 1;
  visibility: visible;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes loadAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateY(30px);
  }
}
.mainvisual {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  margin: auto;
  overflow: hidden;
  transition: 1s;
  opacity: 0;
  aspect-ratio: 1.75/1;
  overflow: hidden;
}
@media all and (max-width: 1680px) {
  .mainvisual {
    height: auto;
  }
}
@media all and (max-width: 480px) {
  .mainvisual {
    aspect-ratio: 0.85/1;
  }
}
.mainvisual.show {
  opacity: 1;
}
.mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media all and (max-width: 896px) {
  .mainvisual img.pconly {
    display: block;
  }
}
@media all and (max-width: 480px) {
  .mainvisual img.pconly {
    display: none;
  }
}
.mainvisual .scrolldown {
  position: absolute;
  right: 30px;
  bottom: 0;
  animation: arrowmove 2s ease-in-out infinite;
  z-index: 1;
  width: 30px;
  height: 150px;
  text-align: center;
}
@media all and (max-width: 480px) {
  .mainvisual .scrolldown {
    right: 5px;
    height: 120px;
  }
}
.mainvisual .scrolldown span {
  color: #fff;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  font-size: 85%;
}
.mainvisual .scrolldown span::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 15px;
  width: 1px;
  height: 60px;
  background-color: #fff;
}
@media all and (max-width: 480px) {
  .mainvisual .scrolldown span::after {
    bottom: 5px;
    height: 50px;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.mainvisual .eachTextAnime {
  position: absolute;
  top: 7%;
  left: 7%;
  transform: rotate(-5deg);
  color: #fff;
  font-size: min(12vw, 13rem);
  font-weight: 700;
  z-index: 1;
  font-family: "hurricane", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 480px) {
  .mainvisual .eachTextAnime {
    left: 4%;
  }
}
.mainvisual .eachTextAnime span {
  transition: opacity 2s ease;
}
.mainvisual .eachTextAnime.appeartext span {
  opacity: 1;
}
.mainvisual__prev, .mainvisual__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  z-index: 1;
  cursor: pointer;
}
@media all and (max-width: 480px) {
  .mainvisual__prev, .mainvisual__next {
    width: 15px;
  }
}
.mainvisual__prev::after, .mainvisual__next::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #b1b1af transparent transparent;
  border-width: 23.5px 28px 23.5px 0px;
  top: 50%;
  left: 0;
}
@media all and (max-width: 480px) {
  .mainvisual__prev::after, .mainvisual__next::after {
    border-width: 11.5px 16px 11.5px 0px;
  }
}
.mainvisual__prev {
  left: 6%;
}
@media all and (max-width: 1440px) {
  .mainvisual__prev {
    left: 4%;
  }
}
@media all and (max-width: 480px) {
  .mainvisual__prev {
    left: 1%;
  }
}
.mainvisual__prev::after {
  transform: translateY(-50%);
}
.mainvisual__next {
  right: 6%;
}
@media all and (max-width: 1440px) {
  .mainvisual__next {
    right: 4%;
  }
}
@media all and (max-width: 480px) {
  .mainvisual__next {
    right: 1%;
  }
}
.mainvisual__next::after {
  transform: scaleX(-1) translateY(-50%);
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  transition: opacity 5s;
}
.slide a {
  display: block;
}
.slide a:hover {
  opacity: 1;
}
.slide.refresh img.pconly {
  display: none;
}
@media (width < 1681px) {
  .slide.refresh img.pconly {
    display: block;
  }
}
@media (width < 481px) {
  .slide.refresh img.pconly {
    display: none;
  }
}
.slide.refresh img.pconly2 {
  display: block;
}
@media (width < 1681px) {
  .slide.refresh img.pconly2 {
    display: none;
  }
}
@media (width < 481px) {
  .slide.refresh img.pconly2 {
    display: none;
  }
}

.slide img {
  width: 100%;
  height: auto;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.map {
  background: #F2F2F2;
  padding: 100px 0;
}
@media all and (max-width: 480px) {
  .map {
    padding: 80px 0;
  }
}
.map__inner {
  max-width: 1400px;
  width: calc(100% - 30px);
  margin: auto;
}
@media all and (max-width: 480px) {
  .map__inner {
    width: calc(100% - 20px);
  }
}
.map__inner-figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.map__inner-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.map__inner-txt {
  width: 43%;
}
@media all and (max-width: 1025px) {
  .map__inner-txt {
    width: 100%;
  }
}
.map__inner-txt p {
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  line-height: 2.2;
}
.map__inner-txt p.mapcopy {
  margin-bottom: 40px;
}
.map__inner-txt p.mapcopy img {
  width: 400px;
}
@media all and (max-width: 480px) {
  .map__inner-txt p.mapcopy img {
    width: 75%;
  }
}
@media all and (max-width: 1367px) {
  .map__inner-txt p {
    text-align: left;
  }
}
@media all and (max-width: 1025px) {
  .map__inner-txt p {
    text-align: center;
  }
}
@media all and (max-width: 480px) {
  .map__inner-txt p {
    font-size: 3.7vw;
    text-align: left;
  }
}
.map__inner-map {
  width: 48%;
  margin: 50px auto 0;
}
@media all and (max-width: 1200px) {
  .map__inner-map {
    margin: 150px auto 0;
  }
}
@media all and (max-width: 1025px) {
  .map__inner-map {
    width: 60%;
    margin: 50px 0 auto auto;
  }
}
@media all and (max-width: 1025px) {
  .map__inner-map img.pconly {
    display: none;
  }
}
@media all and (max-width: 1025px) {
  .map__inner-map img.sponly {
    display: block;
  }
}
.map__inner-zoom {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 3px;
}
@media all and (max-width: 1025px) {
  .map__inner-zoom {
    width: 100%;
    margin-top: 5px;
  }
}
@media all and (max-width: 480px) {
  .map__inner-zoom {
    margin-top: -20px;
  }
}
.map__inner-zoom-map {
  position: relative;
  height: 100%;
}
@media all and (max-width: 1280px) {
  .map__inner-zoom-map img {
    position: absolute;
    bottom: 0;
  }
}
@media all and (max-width: 1025px) {
  .map__inner-zoom-map img {
    position: inherit;
    bottom: auto;
  }
}
.map__inner-zoom img {
  width: 100%;
}
.map__inner-link li {
  position: absolute;
}
.map__inner-link--ome {
  top: 54%;
  right: 11%;
  text-align: right;
}
@media all and (max-width: 896px) {
  .map__inner-link--ome {
    right: 5%;
  }
}
@media all and (max-width: 480px) {
  .map__inner-link--ome {
    top: 57%;
    right: -13%;
    text-align: left;
  }
}
.map__inner-link--tok {
  top: 5%;
  left: -10%;
}
@media all and (max-width: 1200px) {
  .map__inner-link--tok {
    top: -7%;
    left: 0;
  }
}
@media all and (max-width: 896px) {
  .map__inner-link--tok {
    top: -12%;
    left: 5%;
  }
}
@media all and (max-width: 770px) {
  .map__inner-link--tok {
    left: 0;
  }
}
@media all and (max-width: 700px) {
  .map__inner-link--tok {
    top: -8%;
    left: -14%;
    text-align: right;
  }
}
@media all and (max-width: 520px) {
  .map__inner-link--tok {
    left: -23%;
  }
}
@media all and (max-width: 480px) {
  .map__inner-link--tok {
    top: 36%;
    left: -2%;
    text-align: left;
  }
}
.map__inner-link--its {
  left: 38%;
  bottom: 10%;
}
@media all and (max-width: 1025px) {
  .map__inner-link--its {
    bottom: 10%;
  }
}
@media all and (max-width: 480px) {
  .map__inner-link--its {
    bottom: 8%;
  }
}
.map__inner-link img {
  max-width: 100%;
}
@media all and (max-width: 700px) {
  .map__inner-link img {
    max-width: 60%;
  }
}
@media all and (max-width: 480px) {
  .map__inner-link img {
    max-width: 45%;
  }
}
@media all and (max-width: 340px) {
  .map__inner-link img {
    max-width: 40%;
  }
}
.map__inner-link a {
  display: block;
  transition: 0.5s;
}
.map__inner-link a:hover {
  transform: translateY(5px);
}
.map__iconwrap {
  margin-top: 50px;
  text-align: center;
}
.map__iconwrap p.large {
  display: inline-block;
  padding: 0 1em 0.8em;
  background: url(../../common/images/line_nami_brown.svg) bottom left/33px 11px repeat-x;
  font-size: min(4.5vw, 2.2rem);
}
.map__iconwrap p.small {
  font-size: min(4vw, 1.8rem);
  margin-top: 30px;
}
.map__iconwrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}
@media all and (max-width: 1400px) {
  .map__iconwrap ul {
    gap: 30px;
  }
}
@media all and (max-width: 480px) {
  .map__iconwrap ul {
    gap: 10px;
  }
}
@media all and (max-width: 390px) {
  .map__iconwrap ul {
    gap: 5px;
  }
}
.map__iconwrap ul .map__inner-area-btn {
  text-align: center;
  background: url(../images/bg_linkbtn.svg) center center/cover no-repeat;
  border-radius: 20px;
  transition: 0.5s;
}
.map__iconwrap ul .map__inner-area-btn:hover {
  transform: translateY(5px);
}
.map__iconwrap ul .map__inner-area-btn .bg {
  background: #fff;
  padding: 20px 5px;
  border-radius: 10px;
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
}
@media all and (max-width: 480px) {
  .map__iconwrap ul .map__inner-area-btn .bg {
    width: 100px;
    height: 100px;
    padding: 5px;
  }
}
@media all and (max-width: 375px) {
  .map__iconwrap ul .map__inner-area-btn .bg {
    height: 90px;
    width: 90px;
  }
}
@media all and (max-width: 340px) {
  .map__iconwrap ul .map__inner-area-btn .bg {
    height: 85px;
    width: 85px;
  }
}
@media all and (max-width: 320px) {
  .map__iconwrap ul .map__inner-area-btn .bg {
    height: 82px;
    width: 82px;
  }
}
.map__iconwrap ul .map__inner-area-btn .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  font-size: min(2.5vw, 1.5rem);
  margin-top: 5px;
}
.map__iconwrap ul .map__inner-area-btn a {
  display: block;
  text-align: center;
  padding: 20px;
  display: grid;
  font-size: min(3.5vw, 2.2rem);
  place-content: center;
  line-height: 1.3;
}
@media all and (max-width: 480px) {
  .map__iconwrap ul .map__inner-area-btn a {
    padding: 12px;
  }
}
@media all and (max-width: 375px) {
  .map__iconwrap ul .map__inner-area-btn a {
    padding: 10px;
  }
}
.map__iconwrap ul .map__inner-area-btn a img {
  display: block;
  margin: 0 auto 10px;
}
@media all and (max-width: 480px) {
  .map__iconwrap ul .map__inner-area-btn a img {
    margin: 0 auto 5px;
    max-width: 30px;
  }
}
.map__iconwrap ul .map__inner-area-btn.small a {
  font-size: min(2.5vw, 1.8rem);
}
.map__iconwrap ul.area .map__inner-area-btn .bg {
  line-height: 1.3;
}
@media all and (max-width: 480px) {
  .map__iconwrap ul.category {
    width: 80%;
    margin: 20px auto 0;
  }
}
.map__iconwrap ul.category .map__inner-area-btn .bg {
  line-height: 1;
}
.map__iconwrap .linkbutton__line {
  margin-top: 50px;
}
.map__iconwrap .linkbutton__line a {
  font-size: 150%;
  padding: 5px 40px;
}
@media all and (max-width: 480px) {
  .map__iconwrap .linkbutton__line a {
    font-size: 130%;
    padding: 5px 30px;
  }
}

.link {
  position: relative;
  padding: 150px 0 50px;
}
@media all and (max-width: 480px) {
  .link {
    padding: 100px 0 30px;
  }
}
.link__yama {
  position: absolute;
  top: -80px;
  right: 5%;
  text-align: right;
}
@media all and (max-width: 480px) {
  .link__yama {
    top: -10px;
    right: -5%;
  }
}
.link__yama img {
  max-width: 500px;
}
@media all and (max-width: 480px) {
  .link__yama img {
    max-width: 50%;
  }
}
.link__inner {
  max-width: 1400px;
  width: calc(100% - 30px);
  margin: auto;
}
@media all and (max-width: 480px) {
  .link__inner {
    width: calc(100% - 20px);
  }
}
.link__inner-colmun {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 120px;
}
@media all and (max-width: 1150px) {
  .link__inner-colmun {
    margin-bottom: 170px;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun {
    gap: 0;
    margin-bottom: 100px;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun {
    margin-bottom: 50px;
  }
}
.link__inner-colmun--image {
  position: relative;
  width: 65%;
  order: 1;
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--image {
    order: 2;
    width: 80%;
    margin: 40px auto 0;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--image {
    width: calc(100% - 20px);
  }
}
.link__inner-colmun--image .photo a:hover {
  opacity: 1;
}
.link__inner-colmun--image .photo a:hover figure img {
  transform: scale(1.03);
}
.link__inner-colmun--image .photo a figure {
  overflow: hidden;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  border-radius: 50px;
}
@media all and (max-width: 480px) {
  .link__inner-colmun--image .photo a figure {
    border-radius: 30px;
  }
}
.link__inner-colmun--image .photo a figure img {
  transition: 0.5s;
  border-radius: 50px;
}
@media all and (max-width: 480px) {
  .link__inner-colmun--image .photo a figure img {
    border-radius: 30px;
  }
}
.link__inner-colmun--image .photo span.caption {
  display: block;
  text-align: right;
  padding-right: 1em;
  margin-top: 5px;
  font-size: min(2.5vw, 1.3rem);
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .link__inner-colmun--box {
    margin-top: 30px;
  }
}
.link__inner-colmun--txt {
  order: 2;
  width: 30%;
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--txt {
    order: 1;
    width: 90%;
    margin: auto;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun--txt {
    width: 90%;
    margin-top: 40px;
    margin-left: 5%;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt {
    width: calc(100% - 40px);
    min-width: auto;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 40px auto 0;
  }
}
.link__inner-colmun--txt.bottom {
  bottom: 110px;
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--txt.bottom {
    bottom: -80px;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun--txt.bottom {
    bottom: auto;
  }
}
.link__inner-colmun--txt .categoryname {
  text-align: center;
}
.link__inner-colmun--txt .categoryname .copyTextAnime {
  position: relative;
  font-size: 5rem;
  z-index: 1;
  line-height: 1;
  font-family: "hurricane", sans-serif;
  font-weight: 400;
  transform: rotate(-10deg);
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime {
    font-size: 9rem;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime {
    top: 15px;
    right: 10px;
    font-size: 15vw;
  }
}
.link__inner-colmun--txt .categoryname .copyTextAnime::before {
  position: absolute;
  content: "";
  bottom: -120px;
  left: 40%;
  transform: translateX(-50%) rotate(55deg);
  border-top: 1px solid #795A48;
  width: 70px;
  height: 70px;
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime::before {
    left: 48%;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime::before {
    left: 46%;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime::before {
    bottom: -75px;
    left: 44%;
    width: 50px;
    height: 50px;
  }
}
.link__inner-colmun--txt .categoryname .copyTextAnime::after {
  position: absolute;
  content: "";
  bottom: -129px;
  left: 52%;
  transform: translateX(-50%) rotate(-35deg);
  border-top: 1px solid #795A48;
  width: 70px;
  height: 70px;
}
@media all and (max-width: 1367px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime::after {
    left: 53%;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime::after {
    bottom: -80px;
    width: 50px;
    height: 50px;
  }
}
.link__inner-colmun--txt .categoryname .copyTextAnime span {
  opacity: 0;
}
.link__inner-colmun--txt .categoryname .copyTextAnime.appeartext span {
  animation: copy_anime_on 1s ease-out forwards;
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt .categoryname .copyTextAnime.appeartext span {
    animation: copy_anime_on 3s ease-out forwards;
  }
}
@keyframes copy_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.link__inner-colmun--txt .categoryname h2 {
  position: relative;
  display: inline-block;
  margin-top: 100px;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media all and (max-width: 1367px) {
  .link__inner-colmun--txt .categoryname h2 {
    font-size: 3rem;
  }
}
@media all and (max-width: 1150px) {
  .link__inner-colmun--txt .categoryname h2 {
    margin-left: 50px;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun--txt .categoryname h2 {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 480px) {
  .link__inner-colmun--txt .categoryname h2 {
    font-size: 6vw;
    margin: 80px auto auto 0;
  }
}
.link__inner-colmun--txt p {
  line-height: 2;
  margin-top: 50px;
}
.link__inner-colmun.reverse .link__inner-colmun--image {
  order: 2;
}
.link__inner-colmun.reverse .link__inner-colmun--txt .categoryname h2::after {
  left: 56%;
}
@media all and (max-width: 1367px) {
  .link__inner-colmun.reverse .link__inner-colmun--txt .categoryname h2::after {
    left: 62%;
  }
}
@media all and (max-width: 896px) {
  .link__inner-colmun.reverse .link__inner-colmun--txt .categoryname h2::after {
    left: -30px;
  }
}
.link__inner-colmun.reverse .link__inner-colmun--txt {
  order: 1;
}

.seasonal {
  padding: 100px 0;
  background: url(../images/bg_seasonal.jpg) left top/auto repeat;
  text-align: center;
}
@media all and (max-width: 480px) {
  .seasonal {
    padding: 80px 0;
  }
}
.seasonal__inner-copy {
  font-size: min(5.5vw, 3.5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.seasonal__inner-copy img {
  display: block;
  margin: 0 auto 5px;
}
.seasonal__inner .slider {
  position: relative;
  border-radius: 30px;
  margin: 0 auto;
  max-width: 900px;
}
@media all and (max-width: 1100px) {
  .seasonal__inner .slider {
    max-width: 85%;
  }
}
.seasonal__inner .slider .slider_prev, .seasonal__inner .slider .slider_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.seasonal__inner .slider .slider_prev::after, .seasonal__inner .slider .slider_next::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #b1b1af transparent transparent;
  border-width: 23.5px 28px 23.5px 0px;
  top: -35%;
  left: 0;
}
@media all and (max-width: 480px) {
  .seasonal__inner .slider .slider_prev::after, .seasonal__inner .slider .slider_next::after {
    border-width: 11.5px 16px 11.5px 0px;
    top: 10%;
  }
}
.seasonal__inner .slider .slider_prev {
  left: -5em;
}
@media all and (max-width: 1100px) {
  .seasonal__inner .slider .slider_prev {
    left: -3em;
  }
}
@media all and (max-width: 480px) {
  .seasonal__inner .slider .slider_prev {
    left: -2em;
  }
}
.seasonal__inner .slider .slider_next {
  right: -5em;
}
@media all and (max-width: 1100px) {
  .seasonal__inner .slider .slider_next {
    right: -3em;
  }
}
@media all and (max-width: 480px) {
  .seasonal__inner .slider .slider_next {
    right: -2.5em;
  }
}
.seasonal__inner .slider .slider_next::after {
  transform: scaleX(-1);
}
.seasonal__inner .slider_wrapper {
  overflow: hidden;
  margin-top: 50px;
}
.seasonal__inner .slider_list {
  display: flex;
}
.seasonal__inner .slider_item,
.seasonal__inner .slider_item--1,
.seasonal__inner .slider_item--2,
.seasonal__inner .slider_item--3,
.seasonal__inner .slider_item--4,
.seasonal__inner .slider_item--5,
.seasonal__inner .slider_item--6,
.seasonal__inner .slider_item--7 {
  flex-shrink: 0;
  width: 100%;
}
.seasonal__inner .js-slider-item img {
  border-radius: 120px;
}
@media all and (max-width: 480px) {
  .seasonal__inner .js-slider-item img {
    border-radius: 50px;
  }
}
@media all and (max-width: 340px) {
  .seasonal__inner .js-slider-item img {
    border-radius: 40px;
  }
}
.seasonal__inner .js-slider-item img.tetsucam {
  border-radius: 120px 90px 120px 120px;
}
@media all and (max-width: 480px) {
  .seasonal__inner .js-slider-item img.tetsucam {
    border-radius: 50px 35px 50px 50px;
  }
}
@media all and (max-width: 340px) {
  .seasonal__inner .js-slider-item img.tetsucam {
    border-radius: 40px 25px 40px 40px;
  }
}
.seasonal__inner-note {
  margin-top: 15px;
  font-size: min(3.5vw, 1.6rem);
}
.seasonal .linkbutton__line {
  margin-top: 50px;
}
@media all and (max-width: 480px) {
  .seasonal .linkbutton__line {
    margin-top: 30px;
  }
}

.info {
  position: relative;
}
.info__yama--top {
  position: absolute;
  top: 200px;
  left: 5%;
}
@media all and (max-width: 480px) {
  .info__yama--top {
    top: 30px;
    left: -10%;
  }
}
.info__yama--top img {
  max-width: 220px;
}
.info__inner {
  position: relative;
  max-width: 1400px;
  width: calc(100% - 30px);
  margin: auto;
  max-width: 1300px;
  padding: 0 0 100px;
  margin: 100px auto;
}
@media all and (max-width: 480px) {
  .info__inner {
    width: calc(100% - 20px);
  }
}
@media all and (max-width: 480px) {
  .info__inner {
    margin: 50px auto 100px;
  }
}
.info__inner--train {
  position: absolute;
  bottom: 13px;
  z-index: 1;
  animation: train_pc 20s ease-in-out 0s infinite normal;
}
@media all and (max-width: 1200px) {
  .info__inner--train {
    bottom: 13px;
    animation: train_pc2 20s ease-in-out 0s infinite normal;
  }
}
@media all and (max-width: 1025px) {
  .info__inner--train {
    animation: train_tab 20s ease-in-out 0s infinite normal;
  }
}
@media all and (max-width: 896px) {
  .info__inner--train {
    animation: train_tab 17s ease-in-out 0s infinite normal;
  }
}
@media all and (max-width: 480px) {
  .info__inner--train {
    animation: train_sp 20s ease-in-out 0s infinite normal;
  }
}
@media all and (max-width: 896px) {
  .info__inner--train img {
    max-width: 400px;
  }
}
@media all and (max-width: 480px) {
  .info__inner--train img {
    max-width: 200px;
  }
}
@keyframes train_pc {
  0% {
    right: 20px;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: 800px;
    opacity: 0;
  }
}
@keyframes train_pc2 {
  0% {
    right: 20px;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: 700px;
    opacity: 0;
  }
}
@keyframes train_tab {
  0% {
    right: 20px;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: 550px;
    opacity: 0;
  }
}
@keyframes train_sp {
  0% {
    right: 15px;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: 200px;
    opacity: 0;
  }
}
.info__inner .info__yama--left {
  position: absolute;
  bottom: -50px;
  left: 5%;
  z-index: 1;
}
@media all and (max-width: 480px) {
  .info__inner .info__yama--left {
    bottom: -5px;
    left: -6%;
  }
}
.info__inner .info__yama--left img {
  width: 350px;
}
@media all and (max-width: 480px) {
  .info__inner .info__yama--left img {
    width: 150px;
  }
}
.info__inner .info__yama--right {
  position: absolute;
  right: 20%;
  bottom: 20px;
  overflow: hidden;
}
@media all and (max-width: 480px) {
  .info__inner .info__yama--right {
    bottom: 45px;
  }
}
.info__inner .info__yama--right img {
  width: 300px;
}
@media all and (max-width: 480px) {
  .info__inner .info__yama--right img {
    width: 150px;
  }
}
.info__inner::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  transform: scale(1, -1);
  width: 1300px;
  height: 10px;
  background: #F2F2F2;
}
@media all and (max-width: 1200px) {
  .info__inner::after {
    width: 100%;
  }
}
.info__inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5% 50px;
}
.info__inner-box--event {
  width: 100%;
  margin-bottom: 80px;
}
.info__inner-box--event .spot__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  gap: 30px;
  margin: 40px auto 0;
}
@media all and (max-width: 1025px) {
  .info__inner-box--event .spot__list {
    gap: 15px;
  }
}
@media all and (max-width: 480px) {
  .info__inner-box--event .spot__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__inner-box--event .spot__list-card a {
  position: relative;
  display: block;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 896px) {
  .info__inner-box--event .spot__list-card a {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .info__inner-box--event .spot__list-card a:last-child {
    margin-bottom: 0;
  }
}
.info__inner-box--event .spot__list-card a:hover {
  opacity: 1;
}
.info__inner-box--event .spot__list-card a:hover .spot__list-card--image figure img {
  transform: scale(1.05);
}
.info__inner-box--event .spot__list-card a .image {
  width: 100%;
  background: #fff;
}
.info__inner-box--event .spot__list-card--image figure {
  overflow: hidden;
  position: relative;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  aspect-ratio: 1.34/1;
  border-radius: 30px;
}
@media all and (max-width: 1100px) {
  .info__inner-box--event .spot__list-card--image figure {
    border-radius: 35px;
  }
}
@media all and (max-width: 480px) {
  .info__inner-box--event .spot__list-card--image figure {
    border-radius: 25px;
    max-width: 215px;
    margin: auto;
  }
}
.info__inner-box--event .spot__list-card--image figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.5s;
}
.info__inner-box--event .spot__list-card--text h3 {
  font-size: min(3.8vw, 1.8rem);
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0.05em;
  min-height: 3.2em;
}
.info__inner-box--event .spot__list-card--text h3 .small {
  display: block;
  font-size: 80%;
}
.info__inner-box--event .spot__list-card--staion {
  font-size: min(3vw, 1.5rem);
  margin-top: 10px;
  letter-spacing: 0.05em;
  border-bottom: 1px dotted #000;
  padding-bottom: 15px;
}
.info__inner-box--event .spot__list-card--staion.blue {
  color: #69ABAB;
}
.info__inner-box--event .spot__list-card--staion.green {
  color: #81B553;
}
.info__inner-box--event .spot__list-card--staion.yellow {
  color: #B2B26F;
}
.info__inner-box--event .spot__list-card--comment {
  letter-spacing: 0.05em;
  margin-top: 10px;
  color: #000;
}
.info__inner-box--movie {
  width: 65%;
}
@media all and (max-width: 896px) {
  .info__inner-box--movie {
    width: 100%;
  }
}
.info__inner-box--movie .moviebox {
  margin-top: 40px;
}
.info__inner-box--movie .moviebox iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.info__inner-box h2 {
  text-align: center;
  font-size: min(7vw, 3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: url(../../common/images/line_nami_brown.svg) bottom left/33px 11px repeat-x;
  padding: 0 2em 0.5em;
}
.info__inner-box h2 img {
  display: block;
  margin: 0 auto 5px;
}
.info__inner-box .linkbutton__line {
  text-align: center;
  margin-top: 40px;
}

@media all and (max-width: 896px) {
  .footer {
    padding-bottom: 80px;
  }
}