.button-01--orange {
    --accent: #EB8E22;
    --fg-hover: #eb8e22;
}
.button-01--yellow {
    --accent: #E6C657;
    --fg-hover: #e6c657;
}
.button-01--pink {
    --accent: #EB9293;
    --fg-hover: #eb9293;
}
.button-01--blue {
    --accent: #7FB2F1;
    --fg-hover: #7fb2f1;
}
.button-01{
  position: relative;
  isolation: isolate;

  width: 144px;
  height: 40px;
  border-radius: 100px;
  padding: 10px 30px 10px 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Zen Kaku Gothic New", sans-serif;

    /* 色（反転用） */
    --fg: #fff;

  color: var(--fg);
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .01em;
  text-align: center;

    background: var(--accent, #2b9b7d);
    border: 1px solid var(--accent, #2b9b7d);

    cursor: pointer;
    overflow: hidden;

    transition: color .25s, background .25s, border-color .25s;
}

/* ===== 右端のドット ===== */
/* PC/SP表示切替 共通クラス */
.layout-pc { display: block; }
.layout-sp { display: none; }
@media screen and (max-width: 1024px) {
  .layout-pc { display: none !important; }
  .layout-sp { display: block !important; }
}
.button-01::after{
  content: "";
  position: absolute;
  right: 18px;               /* ← 起点（重要） */
  top: 50%;
  transform: translateY(-50%);

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background-color: var(--fg);
  transition: background-color .25s ease;
  z-index: 1;
}

/* ===== dot起点で広がる背景 ===== */
.button-01::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;

  /* dot位置を中心に円を作る */
  clip-path: circle(
    0px at calc(100% - 18px) 50%
  );

  transition: clip-path .45s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}

/* hover時：円が広がる */
.button-01:hover::before,
    .button-01:focus-visible::before{
    clip-path: circle(
        800px at calc(100% - 18px) 50%
    );
}

/* hover時：文字色反転 */
.button-01:hover,
.button-01:focus-visible{
  color: var(--fg-hover);
  outline: none;
}

/* hover時：ドット色反転 */
.button-01:hover::after,
.button-01:focus-visible::after{
  background-color: var(--fg-hover);
}





.spot__item-sub--orange {
    color: #EB8E22;
}
.spot__item-sub--yellow {
    color: #E6C657;
}
.spot__item-sub--pink {
    color: #EB9293;
}
.spot__item-sub--blue {
    color: #7FB2F1;
}


/* ファーストビュー */
.spot-hero {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .spot-hero {
        position: relative;
        aspect-ratio: 390 / 459;
        margin-bottom: 0px;
        margin-bottom: 121.88px;
    }
}

.spot-hero__content {
    width: 35.75%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: -68px;
}

@media screen and (max-width: 1024px) {
    .spot-hero__content {
        width: 100%;
        margin-bottom: 0;
        position: absolute;
        z-index: 20;
    }
}

.spot-hero__title-area {
    display: flex;
    flex-direction: column;
}

.spot-hero__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spot-hero__subtitle {
    max-width: 327px;
    margin-bottom: 9.96px;
}

@media screen and (max-width: 1464px) {
    .spot-hero__subtitle {
        max-width: 180px;
    }
}

@media screen and (max-width: 1024px) {
    .spot-hero__subtitle {
        max-width: 350px;
        margin-right: 6px;
    }
}

@media screen and (max-width: 600px) {
    .spot-hero__subtitle {
        max-width: 327px;
        margin-right: 6px;
    }
}

.spot-hero__title {
    max-width: 474px;
    margin-bottom: 33.27px;
}

@media screen and (max-width: 1464px) {
    .spot-hero__title {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 1464px) {
    .spot-hero__title {
        max-width: 310px;
    }
}

@media screen and (max-width: 1024px) {
    .spot-hero__title {
        max-width: 500px;
    }
}

@media screen and (max-width: 600px) {
    .spot-hero__title {
        max-width: 352px;
    }
}

.spot-hero__text {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .8px;
    line-height: 2;
    margin-left: -40px;
}

@media screen and (max-width: 1464px) {
    .spot-hero__text {
        margin-left: unset;
        padding-left: 32px;
        padding-right: 16px;
        font-size: 14px;
        letter-spacing: 0.05em;
        line-height: 1.8;
    }
}

@media screen and (max-width: 1024px) {
    .spot-hero__text {
        margin-left: unset;
        padding-right: 32px;
        font-size: 16px;
        letter-spacing: 1.6px;
        line-height: 2;
        padding-bottom: 45.12px;
    }

    .spot-hero__text.layout-sp {
        display: block!important;
    }
}

.spot-hero__bg {
    width: 64.25%;
    background-image: url('/img/art/spot/spot_top_back.png');
    aspect-ratio: 1038 / 688;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .spot-hero__bg {
        width: 100%;
        background-image: url('/img/art/spot/spot_top_back_sp.png');
        aspect-ratio: 390 / 459;
        position: absolute;
        z-index: 10;
    }
}

.spot-hero__bg::after {
    content: '';
    background-image: url(/img/art/spot/spot_top_front1.png);
    position: absolute;
    width: 392px;
    aspect-ratio: 392 / 280;
    background-size: contain;
    background-repeat: no-repeat;
    left: -10%;
    bottom: -10%;
    z-index: 30;
}

@media screen and (max-width: 1464px) {
    .spot-hero__bg::after {
        width: 292px;
        bottom: -13%;
        left: -4%;
    }
}

@media screen and (max-width: 1024px) {
    .spot-hero__bg::after {
        width: 211px;
        aspect-ratio: 211 / 150;
        bottom: -108px;
        left: 0;
    }
}

/* 各一覧へのリンクリストセクション */
.spot-wrapper.page-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.spot {
    margin-right: -32px;
    margin-left: -32px;
    background-color: #8ED28F;
    position: relative;
}

.spot::after {
    content: '';
    background-image: url(/img/art/spot/spot_top_front2.png);
    position: absolute;
    width: 158px;
    height: 238px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -5%;
    right: 3%;
}

@media screen and (max-width: 1024px) {
    .spot::after {
        width: 117px;
        aspect-ratio: 117 / 176;
        top: -8%;
        right: 3%;
    }
}

.spot__inner {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 112px;
    padding-bottom: 174px;
}

@media screen and (max-width: 1024px) {
    .spot__inner {
        padding-top: 92px;
        padding-bottom: 98.12px;
        padding-right: 32px;
        padding-left: 32px;
    }
}

.spot__header {
    display: flex;
    column-gap: 39px;
    align-items: center;
    margin-bottom: 33px;
}

@media screen and (max-width: 1464px) {
    .spot__header {
        padding-right: 32px;
        padding-left: 32px;
    }
}

@media screen and (max-width: 1024px) {
    .spot__header {
        flex-direction: column;
        gap: 11px;
        margin-bottom: 23.88px;
        align-items: flex-start;
        padding-right: unset;
        padding-left: unset;
    }
}

.spot__title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 75px;
    letter-spacing: 3.75px;
    line-height: calc(164 / 75);
    color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
    .spot__title {
        order: 2;
        font-size: 40px;
        letter-spacing: 2px;
        line-height: 1.2
    }
}

.spot__subtitle {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .8px;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    .spot__subtitle {
        order: 1;
    }
}

.spot__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

@media screen and (max-width: 1464px) {
    .spot__list {
        margin-right: auto;
        margin-left: auto;
        gap: 24px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1370px) {
    .spot__list {
        max-width: 680px;
    }
}

.spot__item {
    padding: 31.5px 49px 26px 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 120px) / 4);
    border-radius: 4px;
    background-color: #fff;
    max-width: 320px;
    border: 3px solid transparent;
}

.sopt__item--orange {
    border-color: #EB8E22;
}
.sopt__item--yellow {
    border-color: #E6C657;
}
.sopt__item--pink {
    border-color: #EB9293;
}
.sopt__item--blue {
    border-color: #7FB2F1;
}
}

@media screen and (max-width: 1464px) {
    .spot__item {
        width: calc((100% - 40px) / 2);
    }
}

@media screen and (max-width: 1024px) {
    .spot__item {
        padding: 16px;
        width: 100%;
        max-width: 340px;
        display: flex;
        gap: 16px;
        flex-direction: row;
        justify-content: center;
    }
}

.spot__item-text {
    margin-bottom: 16.5px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .spot__item-text {
        margin-bottom: unset;
        width: calc(100% - 44.2857143% - 16px);
    }
}

.spot__item-title {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: calc(28 / 24);
    margin-bottom: 4px;
}

@media screen and (max-width: 1024px) {
    .spot__item-title {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: calc(28 / 18);
    }
}

.spot__item-title span {
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: calc(28 / 18);
}

@media screen and (max-width: 1024px) {
    .spot__item-title span {
        font-size: 14px;
        letter-spacing: 1.4px;
        line-height: 2;
        white-space: nowrap;
    }
}

.spot__item-sub {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .8px;
    line-height: calc(45 / 16);
}

@media screen and (max-width: 1024px) {
    .spot__item-sub {
        font-size: 12px;
        letter-spacing: .6px;
        line-height: 1.2;
        margin-bottom: 16px;
        display: inline-block;
    }
}

.spot__item-img {
    margin-bottom: 21px;
}

@media screen and (max-width: 1024px) {
    .spot__item-img {
        margin-bottom: unset;
        width: 44.2857143%;
        flex-shrink: 0;
    }
}

.spot__item-img img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .spot__item-img img {
        aspect-ratio: 124 / 94;
    }
}




.spot__item-link.layout-sp {
    display: none!important;
}

@media screen and (max-width: 1024px) {
    .spot__item-link {
        padding: 2px 17.29px 2px 40px;
        font-size: 14px;
        letter-spacing: 1.4px;
        line-height: calc(32 / 14);
        column-gap: 21.71px;
    }

    .spot__item-link.layout-sp {
        display: flex!important;
    }

    .spot__item-link.layout-pc {
        display: none;
    }
}


@media screen and (max-width: 1024px) {
    .spot__item-link::after {
        width: 8px;
        height: 8px;
    }
}