@charset "utf-8";

a {
  text-decoration: none;
}

h2 {
  margin: 0;
}

.sp {
  display: none!important;
}
@media only screen and (max-width: 600px) {
  .sp {
    display: block!important;
  }
}

.pc {
  display: block!important;
}
@media only screen and (max-width: 600px) {
  .pc {
    display: none!important;
  }
}

.index {
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.index .mainVisual {
  background: none;
  height: 558px;
}

.btn {
  padding: 32px 0;
  text-align: center;
}

.btn a {
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 800;
  color: #624693;
  border-radius: 40px;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
  transition: transform .12s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .btn {
    padding: 15px 0;
  }
  .btn a {
    width: 53%;
    padding: 18px 0;
    font-size: 3vw;
  }
}


.btn a::before {
  content:"";
  position:absolute;
  inset:0;                       /* top/right/bottom/left:0 の省略 */
  border-radius: inherit;        /* 角丸を継承してズレ防止 */
  background: transparent;       /* 初期は透明 */
  transition: background .12s ease-in-out;
  pointer-events:none;           /* クリック操作は下の要素へ */
}

.btn a:hover {
  transform: translateY(2px);
}

.btn a:hover::before {
  background: rgba(0,0,0,.09);
  z-index: 5;
}

/* キーボード操作でも同じ視覚効果 */
.btn a:focus-visible::before{
  background: rgba(0,0,0,.12);
  outline: 2px solid rgba(0,0,0,.2);
  outline-offset: 2px;
}

/* 動きを控えたいユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .btn a, .btn a::before{ transition: none; }
}

.btnYellow {
  padding-top: 42px;
}
@media only screen and (max-width: 600px) {
  .btnYellow {
    padding-top: 35px;
  }
}

.btnYellow a {
  position: relative;
  background: #ffd769;
}

.btnYellow a::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 14px;
  background: url(/tp/namja/common_2025/images/top/arrow02.svg) no-repeat bottom center;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.btnPurple a {
  position: relative;
  color: #ffffff;
  background: #624693;
}
.btnPurple a::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 14px;
  background: url(/tp/namja/common_2025/images/top/arrow01.svg) no-repeat top center;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 600px) {
  .btnYellow a::after,
  .btnPurple a::after {
    width: 1.67vw;
    height: 2.33vw;
  }
}

.index .mainVisual .btn {
  padding-top: 51px;
}
@media only screen and (max-width: 600px) {
  .index .mainVisual .btn {
    padding-top: 15px;
  }
}

.important a {
  display: block;
  padding: 15px 0;
  background: #4fb0b9;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.2s;
}
.important a:hover {
  filter: brightness(1.1);
}

.important p {
  margin: 0;
  font-size: 100%;
}

.important .inner{
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.important .inner img {
  width: 1em;
  height: 1em;
}

@media only screen and (max-width: 600px) {
 .tickerWrap {
  display: flex;
  width: 100%;
  overflow: hidden;
 }

 .tickerWrap .inner {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 43px;
 }

 .tickerWrap .inner:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}

.tickerWrap .inner:nth-child(even) {
  animation: loop2 50s linear infinite;
}

 @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}

}

.index .pageLink {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  flex-wrap: wrap;
  width: 88%;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 4px;
}

.index .pageLink li {
  width: 48%;
}

.index .pageLink li a {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
  transition: transform .12s ease-in-out;
}

.index .pageLink li a::before {
  content:"";
  position:absolute;
  inset:0;                       /* top/right/bottom/left:0 の省略 */
  border-radius: inherit;        /* 角丸を継承してズレ防止 */
  background: transparent;       /* 初期は透明 */
  transition: background .12s ease-in-out;
  pointer-events:none;           /* クリック操作は下の要素へ */
}

.index .pageLink li a:hover {
  transform: translateY(2px);
}

.index .pageLink li a:hover::before {
  background: rgba(0,0,0,.09);
}

/* キーボード操作でも同じ視覚効果 */
.index .pageLink li a:focus-visible::before{
  background: rgba(0,0,0,.12);
  outline: 2px solid rgba(0,0,0,.2);
  outline-offset: 2px;
}

/* 動きを控えたいユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .index .pageLink li a, .index .pageLink li a::before{ transition: none; }
}

.pickUp,
.index .about {
  position: relative;
  background-color: #ffe9ac;
  text-align: center;
  overflow: hidden;
  padding-bottom: 98px;
}

.pickUp::before,
.index .about::before {
  content: "";
  display: block;
  width: 100%;
  height: 125px;
  background: url(/tp/namja/common_2025/images/top/mokumoku-top01.webp) repeat center bottom;
  background-repeat: repeat-x;
}
@media only screen and (max-width: 600px) {
  .index .about::before {
    height: 70px;
    background: url(/tp/namja/common_2025/images/top/mokumoku-top01_sp.webp) repeat center bottom;
    background-repeat: repeat-x;
  }
}

.pickUp::after,
.index .about::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 98px;
  background: url(/tp/namja/common_2025/images/top/mokumoku-bottom01.webp) repeat center bottom;
  background-repeat: repeat-x;
  z-index: 1;
}

.pickUp h2,
.index .attraction h2,
.index .event h2,
.index .news h2,
.index .about h2 {
  position: relative;
  margin-bottom: 30px;
  padding-top: 46px;
  padding-bottom: 23px;
  font-size: 32px;
  color: #624693;
}
@media only screen and (max-width: 600px) {
  .pickUp h2,
  .index .attraction h2,
  .index .event h2,
  .index .about h2 {
    margin-top: 16px;
    margin-bottom: 24px;
    padding-top: 25px;
    padding-bottom: 15px;
    font-size: 25px;
  }

  .index .news h2 {
    margin-top: 16px;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 15px;
    font-size: 25px;
  }
}

.pickUp h2 span,
.index .attraction h2 span,
.index .event h2 span,
.index .news h2 span,
.index .about h2 span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #b0a2c9;
}
@media only screen and (max-width: 600px) {
  .pickUp h2 span,
  .index .attraction h2 span,
  .index .event h2 span,
  .index .news h2 span,
  .index .about h2 span {
    font-size: 14px;
  }
}

.pickUp h2::before,
.index .about h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 468px;
  height: 60px;
  background: url(/tp/namja/common_2025/images/top/title-top01.webp) no-repeat right center;
  background-size: contain;
}

.index .attraction h2::before,
.index .news h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 468px;
  height: 60px;
  background: url(/tp/namja/common_2025/images/top/title-top02.webp) no-repeat right center;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .pickUp h2::before,
  .index .about h2::before,
  .index .attraction h2::before,
  .index .news h2::before {
    width: 88%;
    height: 28px;
    background-size: cover;
  }
}

.pickUp h2::after,
.index .attraction h2::after,
.index .news h2::after,
.index .about h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 468px;
  height: 60px;
  background: url(/tp/namja/common_2025/images/top/title-bottom01.webp) no-repeat right bottom;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .pickUp h2::after,
  .index .attraction h2::after,
  .index .news h2::after,
  .index .about h2::after {
    width: 88%;
    height: 28px;
  }
}

.pickUp .footmark,
.index .about .footmark {
  content: "";
  position: absolute;
  bottom: 55px;
  display: block;
  width: 356px;
  height: 374px;
  background: url(/tp/namja/common_2025/images/top/footmark01.webp) no-repeat left bottom;
  background-size: contain;
}

.pickUp .btn {
  margin-bottom: 25px;
}
@media only screen and (max-width: 600px) {
  .pickUp .footmark,
  .index .about .footmark {
    width: 211px;
    height: 208px;
    background: url(/tp/namja/common_2025/images/top/footmark01-sp.webp) no-repeat left bottom;
    background-size: contain;
  }
  .pickUp .footmark {
    bottom: 53px;
    left: -11px;
  }

  .pickUp .btn {
    padding-bottom: 15px;
    margin-bottom: 29px;
  }
}

.index .attraction {
  padding-bottom: 13px;
  background: #ffffff;
  text-align: center;
}

.index .event {
  position: relative;
  background-color: #d3cbe1;
  text-align: center;
  overflow: hidden;
  padding-bottom: 93px;
}

.index .event::before {
  content: "";
  display: block;
  width: 100%;
  height: 66px;
  background: url(/tp/namja/common_2025/images/top/mokumoku-top02.webp) repeat center bottom;
  background-repeat: repeat-x;
}

.index .event::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 93px;
  background: url(/tp/namja/common_2025/images/top/mokumoku-bottom02.webp) repeat center bottom;
  background-repeat: repeat-x;
  z-index: 1;
}

.index .event .footmark {
  content: "";
  position: absolute;
  bottom: 55px;
  right: 0;
  display: block;
  width: 384px;
  height: 371px;
  background: url(/tp/namja/common_2025/images/top/footmark02.webp) no-repeat left bottom;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .index .event .footmark {
    width: 211px;
    height: 208px;
    bottom: 46px;
    background: url(/tp/namja/common_2025/images/top/footmark02-sp.webp) no-repeat left bottom;
    background-size: contain;
  }
}

.index .event h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 468px;
  height: 60px;
  background: url(/tp/namja/common_2025/images/top/title-top03.webp) no-repeat right center;
  background-size: contain;
}

.index .event h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 468px;
  height: 60px;
  background: url(/tp/namja/common_2025/images/top/title-bottom02.webp) no-repeat right bottom;
  background-size: contain;
}

@media only screen and (max-width: 600px) {
  .index .event h2::before,
  .index .event h2::after {
    width: 88%;
    height: 28px;
  }

  .index .event h2::before {
    background-size: cover;
  }
}

.index .event .eventList {
  position: relative;
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  column-gap: 3.4%;
  flex-wrap: wrap;
  row-gap: 26px;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .index .event .eventList {
    flex-direction: column;
    gap: 20px;
    width: 75%;
  }
}

.index .event .eventList li {
  width: 31%;
}
@media only screen and (max-width: 600px) {
  .index .event .eventList li {
    width: 100%;
  }
}

.index .event .eventList .listImage {
  margin-top: 0;
  margin-bottom: 15px;
}

.index .event .eventList .listImage img {
  border-radius: 5px;
}

.index .event .eventList p {
  margin: 0;
}

.index .event .eventList .categoryList,
.index .news .infoList .categoryList {
  padding: 0 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 10px;
  background-color: #00b2bb;
}

.index .news .infoList .categoryList {
  margin-top: -2px;
  line-height: 1.5;
}
@media only screen and (max-width: 600px) {
  .index .event .eventList .categoryList,
  .index .news .infoList .categoryList {
    padding: 0 13px;
    font-size: 12px;
  }
}

.index .event .eventList .eventDate,
.index .event .eventList .eventName a {
  font-weight: 800;
  color: #414141;
}

.index .event .eventList .eventDate {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 600px) {
  .index .event .eventList .eventDate {
    margin-top: 4px;
    font-size: 14px;
  }
}

.index .event .eventList .eventName {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  .index .event .eventList .eventName {
    font-size: 16px;
  }
}

.index .event .eventList .categoryList,
.index .event .eventList .eventName a {
  transition: opacity 0.12s ease;
  opacity: 1;
}

.index .event .eventList li {
  transition: brightness 0.12s ease;
  filter: brightness(1.0);
}

.index .event .eventList li:hover>.listImage {
  filter: brightness(1.1);
}

.index .event .eventList .categoryList:hover,
.index .event .eventList .eventName a:hover {
  opacity: 0.7;
}


.index .news .infoList .categoryList a,
.index .news .infoList .newsttl a {
  opacity: 1;
  transition: opacity .12s ease-in-out;
}

.index .news .infoList .categoryList a:hover,
.index .news .infoList .newsttl a:hover {
  opacity: 0.7;
}

.index .event .btn {
  margin-bottom: 29px;
}

.index .news .btn {
  padding-bottom: 4px;
}
@media only screen and (max-width: 600px) {
  .index .event .btn,
  .index .news .btn {
    padding-top: 23px;
  }

  .index .news .btn {
   padding-bottom: 40px;
  }
}

.index .news {
  background: #ffffff;
  text-align: center;
}

.index .news .infoList {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: justify;
  font-weight: 800;
  color: #414141;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList {
    width: 75%;
  }
}

.index .news .infoList li {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList li {
    flex-direction: column;

  }
}

.index .news .infoList .addition {
  width: 30%;
  margin-top: 6px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items:flex-start;
}

.index .news .infoList li:first-child .addition,
.index .news .infoList li:first-child .newsttl {
  padding-top: 0;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList .addition {
    width: 100%;
    padding-top: 0;
    display: block;
  }

  .index .news .infoList li:first-child .newsttl {
    padding-top: 8px;
  }
}

.infoList li time {
  width: 46%;
  line-height: 1;
}
@media only screen and (max-width: 600px) {
  .infoList li time {
    width: auto;
  }
}

.index .news .infoList .newsDate {
  font-weight: normal;
  font-size: 16px;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList .newsDate {
    font-size: 14px;
  }
}

.index .news .infoList .newsttl {
  padding-right: 0;
  width: 70%;
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList li .newsttl {
    padding-top: 8px;
    padding-bottom: 0;
    width: 100%;
    line-height: 1.4;
  }
}

.index .news .infoList .newsttl a {
  font-weight: normal;
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  .index .news .infoList .newsttl a {
    font-size: 16px;
  }
}

.infoList .addition {
  font-weight: 500;
  font-size: 14px;
}
@media only screen and (max-width: 600px) {
  .infoList .addition {
    font-size: 14px;
  }
}

.index .about .disc {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.66;
}
@media only screen and (max-width: 600px) {
  .index .about .disc {
    width: 75%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.66;
    text-align: justify;
  }
}

.index .about .aboutImage {
  position: relative;
  z-index: 1;
}

.index .about .aboutImage img {
  max-width: 640px;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .index .about .aboutImage img {
    width: 75%;
  }
}

.index .about .link {
  margin-top: 69px;
}
@media only screen and (max-width: 600px) {
  .index .about .link {
    margin-top: 39px;
  }
}

.index .about .link h3,
.index .sns h2 {
  position: relative;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #624693;
}
@media only screen and (max-width: 600px) {
  .index .about .link h3,
  .index .sns h2 {
    font-size: 16px;
  }
}

.index .about .link h3::after,
.index .sns h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 357px;
  height: 13px;
  background: url(/tp/namja/common_2025/images/top/title-border.webp) no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .index .about .link h3::after,
  .index .sns h2::after {
    width: 75%;
    background-size: cover;
  }
}

.index .about .link .linkList {
  max-width: 980px;
  width: 95%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 27px;
  margin-bottom: 67px;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList {
    width: 75%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 39px;
  }
}

.index .about .link .linkList li {
  width: 31%;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList li {
    width: 100%;
  }
}

.index .about .link .linkList li p {
  position: relative;
  margin-top: 25px;
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList li p {
    position: relative;
    width: 50%;
    margin-top: 0;
    align-self: center;
  }
}

.index .about .link .linkList li p::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 10px;
  background: url(/tp/namja/common_2025/images/top/arrow01.svg) no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList li p::after {
    right: 7px;
    transform: translateY(-36%);
  }
}

.index .about .link .linkList li .white p::after {
  background: url(/tp/namja/common_2025/images/top/arrow02.svg) no-repeat center center;
}

.index .about .link .linkList li a {
  position: relative;
  display: inline-block;
  padding: 5px 5px 25px 5px;
  background: #624693;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  border-radius: 7px;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
  transition: transform .12s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList li a {
    display: flex;
    padding: 5px 10px 5px 5px;
    font-size: 14px;
  }
}

.index .about .link .linkList li a img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .index .about .link .linkList li a img {
    width: 50%;
  }
}

.index .about .link .linkList li a:hover{
  transform: translateY(2px);
}

.index .about .link .linkList li a::before{
  content:"";
  position:absolute;
  inset:0;                       /* top/right/bottom/left:0 の省略 */
  border-radius: inherit;        /* 角丸を継承してズレ防止 */
  background: transparent;       /* 初期は透明 */
  transition: background .12s ease-in-out;
  pointer-events:none;           /* クリック操作は下の要素へ */
}

.index .about .link .linkList li a:hover::before{
  background: rgba(0,0,0,.09);
}

.index .about .link .linkList li a:focus-visible::before{
  background: rgba(0,0,0,.12);
  outline: 2px solid rgba(0,0,0,.2);
  outline-offset: 2px;
}

/* 動きを控えたいユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .index .about .link .linkList li a, .index .about .link .linkList li a::before{ transition: none; }
}

.index .about .link .linkList li .white {
  background: #ffffff;
  color: #624693;
}

.index .sns {
  background: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .index .sns {
    padding-bottom: 86px;
  }
}

.index .sns .snsList {
  width: 95%;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .index .sns .snsList {
    width: 56%;
    margin-bottom: 43px;
  }
}
@media only screen and (min-width: 601px) {
  .index .sns .snsList {
    max-width: 252px;
  }
}

.index .sns .snsList li {
  width: 23.8%;
}
@media only screen and (max-width: 600px) {
  .index .sns .snsList li {
    width: 23.6%;
  }
}

.index .ticket {
  width: 243px;
}
@media only screen and (max-width: 600px) {
  .index .ticket {
    width: 75%;
    margin: 0 auto;
  }
}

.index .ticket figure {
  margin-top: 0;
}

.index .ticket a {
  position: relative;
  display: block;
  border-radius: 7px;
}

.index .ticket a::before {
  content:"";
  position:absolute;
  inset:0;                       /* top/right/bottom/left:0 の省略 */
  border-radius: inherit;        /* 角丸を継承してズレ防止 */
  background: transparent;       /* 初期は透明 */
  transition: background .12s ease-in-out;
  pointer-events:none;           /* クリック操作は下の要素へ */
}

.index .ticket a:hover::before {
  background: rgba(0,0,0,.09);
}

/* キーボード操作でも同じ視覚効果 */
.index .ticket a:focus-visible::before{
  background: rgba(0,0,0,.12);
  outline: 2px solid rgba(0,0,0,.2);
  outline-offset: 2px;
}

/* 動きを控えたいユーザー配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .index .ticket a, .index .ticket a::before{ transition: none; }
}



.slider-wrap {
  position: relative;
  max-width: 992px;
  width: 95%;
  margin: 0 auto;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  width: 320px;
  padding-right: 8px;
  padding-left: 8px;
  
}
@media only screen and (max-width: 600px) {
  .slider-wrap {
    width: 100%;
  }

  .swiper-slide {
    width: 75%;
    padding-right: 5.5px;
    padding-left: 5.5px;
  }
}
.slider-wrap .pickup-button-prev,
.slider-wrap .pickup-button-next,
.slider-wrap .attraction-button-prev,
.slider-wrap .attraction-button-next {
  position: absolute;
  top: 90px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: none;
  transition: opacity 0.12s ease;
  opacity: 1;
}
.slider-wrap .pickup-button-prev,
.slider-wrap .attraction-button-prev {
  background: url(/tp/namja/common_2025/images/top/arrow-prev.svg);
}
.slider-wrap .pickup-button-next,
.slider-wrap .attraction-button-next {
  background: url(/tp/namja/common_2025/images/top/arrow-next.svg);
}

.slider-wrap .pickup-button-prev:hover,
.slider-wrap .pickup-button-next:hover,
.slider-wrap .attraction-button-prev:hover,
.slider-wrap .attraction-button-next:hover {
  opacity: 0.9;
  cursor: pointer;
}

/* お好みで疑似要素で矢印アイコンを描画（SVGやフォントでもOK） */
.slider-wrap .pickup-button-prev::before,
.slider-wrap .attraction-button-prev::before,
.slider-wrap .pickup-button-next::before,
.slider-wrap .attraction-button-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
}

.slider-wrap .pickup-button-prev,
.slider-wrap .attraction-button-prev {
  left: -19px;
}
.slider-wrap .pickup-button-next,
.slider-wrap .attraction-button-next {
  right: -19px;
}
@media only screen and (max-width: 600px) {
  .slider-wrap .pickup-button-prev,
  .slider-wrap .attraction-button-prev,
  .slider-wrap .pickup-button-next,
  .slider-wrap .attraction-button-next {
    display: none;
  }
}

.swiper a {
  font-size: 20px;
  font-weight: 800;
  color: #414141;
  transition: all 0.12s ease;
  filter: brightness(1.0);
  opacity: 1;
}

.swiper a>img,
.swiper a> p {
  transition: all 0.12s ease;
}

.swiper a:hover> img {
  filter: brightness(1.1);
}

.swiper a:hover> p {
  opacity: 0.7;
}

@media only screen and (max-width: 600px) {
  .swiper a {
    font-size: 16px;
  }
}
.swiper p {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: left;
}

.index .pickUp .swiper p {
  margin-top: 6px;
}

.swiper img {
  border-radius: 5px;
}
@media only screen and (max-width: 600px) {
  .swiper img {
    width: 100%;
    border-radius: 5px;
  }
}

.swiper .attractionTitle {
  margin-top: 5px;
}

.swiper .attractionTitle span {
  display: block;
}

.swiper .attractionTitle .new {
  color: #4fb0b9;
}

.swiper .attractionTitle .stop {
  color: #cc3333;
}

.index .pickUp .slider-wrap {
  margin-bottom: 57px;
}
@media only screen and (max-width: 600px) {
  .index .pickUp .slider-wrap {
    margin-bottom: 44px;
  }
}

.index .mainVisual {
  margin-bottom: 0;
}

.index .mainVisual .frame {
  background: none;
  padding: 0;
  width: 992px;
  height: 558px;
}

.index .mainVisual .frame div,
.index .mainVisual .frame div ul a {
  width: 992px;
  height: 558px;
}


.index .mainVisual .btn {
  padding-top: 0;
}
@media only screen and (max-width: 600px) {
  .index .mainVisual .btn {
    padding-top: 15px;
  }
}

#slidePosition {
  position: absolute;
  left: 49.5%;
  margin-top: 0;
  transform: translateX(-50%);
  bottom: -30px;
  /* bottom: 12px; */
  z-index: 1;
}

#slidePosition li,
#spSlideNav li {
  position: relative;
  color: #ffffff;
  margin-right: 14px;
}

#slidePosition li:last-child,
#spSlideNav li:last-child {
  margin-right: 0;
}

#slidePosition li::after,
#spSlideNav li::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #624693;
}

#slidePosition li.cur::after,
#spSlideNav li.cur::after {
	background: #624693;
}

.spmainVisual-wrapper {
  position: relative;
}

@media only screen and (max-width: 600px) {
  #spSlideNav {
      content: "";
      display: block;
      background: none;
      position: absolute;
      bottom: -28px;
      left: 47.8%;
      transform: translateX(-50%);
  }
}

#spmainVisual{
	aspect-ratio:750 / 1000!important;
	height:auto!important;
}
#spmainVisual img{
	height:auto!important;
}
body .index .mainVisual .frame div ul{
	width: max-content;
	height:auto;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;
	position:relative;
	left:-50%;
}
body .index .mainVisual .frame div ul li{
	position:static;
	
}
body #spmainVisual{
	width:100%;
}
body #spmainVisual  ul{
	position:relative;
	left:-50%;
  margin-left: 0;
}
body #spmainVisual  ul img{
	width: calc(100vw - var(--sb));
	
}


/* CMSに上げたときの調整 */
.index .event .eventList figure {
  margin-top: 0;
  margin-bottom: 15px;
}

.index .event .eventList figure img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.index .event .eventList .categoryList {
  padding: 0 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 10px;
  background-color: #00b2bb;
  align-self: flex-start;
}

.index .event .eventList li {
  display: flex;
  flex-direction: column;
  transition: brightness 0.12s ease;
  filter: brightness(1.0);
}

.index .event .eventList li:hover>figure {
  filter: brightness(1.1);
}

.index .event .eventList .eventDate {
  order: 1;
}

.wm-list li:before, [style*="list-style-type: circle"] li:before, [style*="list-style-type: disc"] li:before, [style*="list-style-type: square"] li:before {
  display: none;
}


@media only screen and (max-width: 600px) {
  .infoList li time {
    margin-right: 5px;
  }
}