@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,500&subset=japanese");@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap");

/*
Reset
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
  }
}
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

audio, embed, img, object {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}

img, picture {
  display: block;
  max-width: 100%;
}

button {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-transform: none;
}

button, input, select, textarea {
  -webkit-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, [type=button], [type=reset], [type=submit], label[for], select,
summary, [role=tab], [role=button] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

iframe {
  border: 0;
  display: block;
  height: auto;
}

ol, ul {
  list-style: none;
  list-style-type: "";
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

svg {
  vertical-align: bottom;
}

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

td, th {
  padding: 0;
  text-align: left;
}

textarea {
  field-sizing: content;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  touch-action: manipulation;
}

a {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

* {
  -webkit-touch-callout: none;
}

input[type=text], select, textarea {
  font-size: 1rem;
}

input[type=text], input[type=tel], input[type=email], textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  appearance: none;
}

input[type=submit] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

#map-canvas img {
  max-width: none;
}

#map-canvas label {
  display: inline;
  width: auto;
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
/*
Basic style
*/
:root {
  --primary: #ffc62d;
  --secondary: #683d1a;
  --item1: #77c3b8;
  --item2: #77c3b8;
  --item3: #ead39f;
  --item4: #a5d8da;
  --black: #3C3C3C;
  --black-rgb: 60,60,60;
  --white: #FFF;
  --white-rgb: 255,255,255;
  --leading-trim: calc((1em - 1lh) / 2);
  --leading-trim-en: calc((1cap - 1lh) / 2);
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Poppins", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-break: strict;
  line-height: 1.5;
  overflow-x: clip;
  overscroll-behavior-y: none;
  text-autospace: normal;
  min-height: 100svh;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:focus-visible {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

b,
strong,
.-bold {
  font-weight: 500;
}

sup {
  display: inline-block;
  -webkit-transform: scale(0.8) translateX(-0.2em);
  margin-right: -0.2em;
          transform: scale(0.8) translateX(-0.2em);
}

.svg-spacer {
  fill: transparent;
}

@media (750px <= width) {
  .-sm {
    display: none !important;
  }
}

@media (1200px <= width) {
  .-smd {
    display: none !important;
  }
}

@media (width < 750px) {
  .-md {
    display: none !important;
  }
}

@media (width < 1200px) {
  .-lg {
    display: none !important;
  }
}

@media (width < 1220px) {
  .-xl {
    display: none !important;
  }
}

/*
loader
*/
@media (scripting: none) {
  .loader {
    display: none;
  }
}
.loader {
  background-color: var(--white);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: height 0.3s ease-in-out 0.1s;
  width: 100vw;
  z-index: calc(infinity);
}
.loader.is-loaded {
  height: 0;
}

.loader::after {
  background-color: var(--white);
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transition: height 0.3s ease-in-out;
  width: 100vw;
}
.loader.is-active {
  background-color: transparent;
  bottom: 0;
  height: 100vh;
  top: auto;
}
.loader.is-active::after {
  height: 100vh;
}

/*
header
*/
.header {
  background-color: var(--white);
}
.header__inner {
  align-items: center;
  display: flex;
  height: 17.0666666667vw;
  justify-content: center;
}
@media (750px <= width) {
  .header__inner {
    height: 40px;
    position: relative;
    width: 100%;
  }
}
.header__disney {
  translate: 0 0.8vw;
  width: 22.6666666667vw;
}
@media (750px <= width) {
  .header__disney {
    translate: 0 2px;
    width: 60px;
  }
}
.header__citizen {
  left: 5.6vw;
  position: absolute;
  translate: 0 -1.0666666667vw;
  width: 11.68vw;
}
@media (750px <= width) {
  .header__citizen {
    left: auto;
    right: 20px;
    translate: 0 -7px;
    width: 80px;
  }
}
@media (1200px <= width) {
  .header__citizen {
    right: calc(50% - 536px);
  }
}

/*
tab
*/
.tab {
  overflow: hidden;
  position: fixed;
  right: -11.2vw;
  top: 30dvh;
  transition: right 0.4s ease-out;
  width: 11.2vw;
  z-index: 3;
}
@media (750px <= width) {
  .tab {
    width: 60px;
  }
}
.tab span {
  background-color: var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0.4vw solid var(--secondary);
  border-radius: 8px 0 0 8px;
  display: block;
  overflow: hidden;
  transition: background-color 0.4s ease-out;
  width: 11.2vw;
}
@media (750px <= width) {
  .tab span {
    border-width: 2px;
    width: 60px;
  }
}
.tab span.-tab1 {
  background-image: url(../img/tab_01.png);
  height: 44vw;
}
@media (750px <= width) {
  .tab span.-tab1 {
    height: 236px;
  }
}
.tab span.-tab2 {
  background-image: url(../img/tab_02.png);
  height: 36.5333333333vw;
}
@media (750px <= width) {
  .tab span.-tab2 {
    height: 196px;
  }
}
.tab span.-tab3 {
  background-image: url(../img/tab_03.png);
  height: 40.2666666667vw;
}
@media (750px <= width) {
  .tab span.-tab3 {
    height: 216px;
  }
}
.tab.is-show {
  right: -0.4vw;
}
@media (750px <= width) {
  .tab.is-show {
    right: -2px;
  }
}
.tab:focus-visible span {
  background-color: var(--secondary);
}
.tab:focus-visible span.-tab1 {
  background-image: url(../img/tab_01_h.png);
}
.tab:focus-visible span.-tab2 {
  background-image: url(../img/tab_02_h.png);
}
.tab:focus-visible span.-tab3 {
  background-image: url(../img/tab_03_h.png);
}
@media (any-hover: hover) {
  .tab:hover span {
    background-color: var(--secondary);
  }
  .tab:hover span.-tab1 {
    background-image: url(../img/tab_01_h.png);
  }
  .tab:hover span.-tab2 {
    background-image: url(../img/tab_02_h.png);
  }
  .tab:hover span.-tab3 {
    background-image: url(../img/tab_03_h.png);
  }
}

/*
nav
*/
.nav {
  align-items: center;
  background-color: var(--white);
  display: flex;
  -webkit-filter: drop-shadow(0 -0.9333333333vw 1.3333333333vw rgba(var(--black-rgb), 15%));
  bottom: -28vw;
          filter: drop-shadow(0 -0.9333333333vw 1.3333333333vw rgba(var(--black-rgb), 15%));
  gap: 0.8vw;
  height: 28vw;
  justify-content: center;
  position: fixed;
  transition: bottom 0.4s ease-out;
  width: 100%;
  z-index: 2;
}
@media (750px <= width) {
  .nav {
    background-color: transparent;
    -webkit-filter: none;
    bottom: -150px;
            filter: none;
    gap: 6px;
    height: 150px;
    right: calc((100% - 550px) / 2);
    width: 550px;
  }
}
.nav.is-show {
  bottom: 0;
}
.nav__link {
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  width: 20vw;
}
@media (750px <= width) {
  .nav__link {
    -webkit-filter: none;
            filter: none;
    width: 112px;
  }
}
.nav__link:focus-visible {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (any-hover: hover) {
  .nav__link:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.nav__top {
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  width: 11.7333333333vw;
}
@media (750px <= width) {
  .nav__top {
    width: 66px;
  }
}
.nav__top:focus-visible {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (any-hover: hover) {
  .nav__top:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

/*
footer
*/
.footer {
  background-color: var(--white);
  position: relative;
  z-index: 4;
}
.footer__inner {
  padding-bottom: 32vw;
}
@media (750px <= width) {
  .footer__inner {
    padding-bottom: 120px;
  }
}
.footer__sns {
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: flex;
  gap: 9.3333333333vw;
  justify-content: center;
  padding: 3.7333333333vw;
}
@media (750px <= width) {
  .footer__sns {
    border-bottom: none;
    gap: 40px;
    padding: 40px 0 35px;
  }
}
.footer__sns li:nth-child(1) {
  width: 8.5333333333vw;
}
@media (750px <= width) {
  .footer__sns li:nth-child(1) {
    width: 25px;
  }
}
.footer__sns li:nth-child(2) {
  width: 7.4666666667vw;
}
@media (750px <= width) {
  .footer__sns li:nth-child(2) {
    width: 20.8px;
  }
}
.footer__sns li:nth-child(3) {
  width: 7.4666666667vw;
}
@media (750px <= width) {
  .footer__sns li:nth-child(3) {
    width: 20.8px;
  }
}
.footer__sns li:nth-child(4) {
  width: 9.0666666667vw;
}
@media (750px <= width) {
  .footer__sns li:nth-child(4) {
    width: 29.7px;
  }
}
.footer__sns a {
  opacity: 1;
  transition: opacity 0.4s;
}
.footer__sns a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .footer__sns a:hover {
    opacity: 0.8;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
}
@media (750px <= width) {
  .footer__links {
    justify-content: center;
  }
}
.footer__links li {
  border-bottom: 1px solid var(--black);
  width: 50%;
}
@media (750px <= width) {
  .footer__links li {
    border-bottom: none;
    border-right: 1px solid var(--black);
    padding-inline: 18px;
    width: auto;
  }
}
.footer__links li:nth-child(odd) {
  border-right: 1px solid var(--black);
}
@media (750px <= width) {
  .footer__links li:nth-child(odd) {
    width: auto;
  }
}
@media (750px <= width) {
  .footer__links li:last-child {
    border-right: none;
  }
}
.footer__links a {
  align-items: center;
  color: var(--black);
  display: flex;
  font-size: 3.2vw;
  justify-content: space-between;
  padding: 3.4666666667vw;
}
@media (750px <= width) {
  .footer__links a {
    font-size: 12px;
    padding: 0;
  }
}
.footer__links a:focus-visible {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .footer__links a:hover {
    text-decoration: underline;
  }
}
.footer__links a::after {
  aspect-ratio: 1;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  -webkit-border-end: 1px solid;
          border-inline-end: 1px solid;
  content: "";
  inline-size: 0.5em;
  rotate: 45deg;
}
@media (750px <= width) {
  .footer__links a::after {
    display: none;
  }
}
.footer__copyright {
  color: var(--black);
  font-size: 2.6666666667vw;
  margin-top: 2.1333333333vw;
  text-align: center;
}
@media (750px <= width) {
  .footer__copyright {
    font-size: 11px;
    margin-top: 16px;
  }
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.no-scroll main {
  overflow: auto;
  scrollbar-gutter: stable;
}

.modal__bg, .modal__inner, .modalDetail {
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
}
.modal__bg.is-active, .modal__inner.is-active, .modalDetail.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__bg, .modal__inner {
  height: 100dvh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 5;
}
.modal__bg--modal001, .modal__bg--modal002 {
  background: #e7f3eb url(../img/bg_01.svg) center repeat;
  background-size: 120%;
}
@media (750px <= width) {
  .modal__bg--modal001, .modal__bg--modal002 {
    background-size: 40%;
  }
}
.modal__bg--modal003 {
  background: #fcefd0 url(../img/bg_02.svg) center repeat;
  background-size: 120%;
}
@media (750px <= width) {
  .modal__bg--modal003 {
    background-size: 40%;
  }
}
.modal__bg--modal004 {
  background: #e5f3f6 url(../img/bg_03.svg) center repeat;
  background-size: 120%;
}
@media (750px <= width) {
  .modal__bg--modal004 {
    background-size: 40%;
  }
}
.modal__inner {
  align-items: center;
  display: flex;
  justify-content: center;
}
.modal__img, .modal__img img {
  display: block;
  height: auto;
  width: 100%;
}
.modal__close {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 90px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  z-index: 6;
}
@media (1200px <= width) {
  .modal__close {
    right: 40px;
    top: 40px;
  }
}
.modal__close::before, .modal__close::after {
  background-color: var(--black);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 50%;
}
.modal__close::before {
  rotate: 45deg;
}
.modal__close::after {
  rotate: -45deg;
}

.modalDetail {
  display: flex;
  height: 100dvh;
  justify-content: center;
  left: 0;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 100vw;
}
@media (min-height: 653px) {
  .modalDetail {
    align-items: center;
  }
}
.modalDetail:not(.is-active) .js-slider {
  display: none;
}
.modalDetail__inner {
  background-color: var(--white);
  border: 2px solid;
  border-radius: 45px;
  height: 613px;
  margin-block: 20px;
  position: relative;
  width: 338px;
}
@media (1200px <= width) {
  .modalDetail__inner {
    border-radius: 90px;
    height: 550px;
    width: 1223px;
  }
}
.modalDetail__btn {
  border-radius: 100vmax;
  bottom: 75px;
  color: var(--white);
  display: grid;
  font-size: 15px;
  height: 43px;
  margin-inline: auto;
  place-content: center;
  position: relative;
  transition: background-color 0.4s ease-out;
  width: 151px;
}
@media (1200px <= width) {
  .modalDetail__btn {
    bottom: 110px;
    font-size: 14px;
    height: 40px;
    left: auto;
    position: absolute;
    right: 200px;
    width: 140px;
  }
}
.modalDetail__btn::after {
  border-right: 1px solid var(--white);
  border-top: 1px solid var(--white);
  content: "";
  height: 8px;
  position: absolute;
  right: 16px;
  rotate: 45deg;
  top: 17px;
  width: 8px;
}
@media (1200px <= width) {
  .modalDetail__btn::after {
    height: 8px;
    right: 16px;
    top: 15px;
    width: 8px;
  }
}
.modalDetail.-modal001 .modalDetail__inner, .modalDetail.-modal002 .modalDetail__inner {
  border-color: var(--item1);
}
.modalDetail.-modal001 .modalDetail__btn, .modalDetail.-modal002 .modalDetail__btn {
  background-color: var(--item1);
}
.modalDetail.-modal003 .modalDetail__inner {
  border-color: var(--item3);
}
.modalDetail.-modal003 .modalDetail__btn {
  background-color: var(--item3);
}
.modalDetail.-modal004 .modalDetail__inner {
  border-color: var(--item4);
}
.modalDetail.-modal004 .modalDetail__btn {
  background-color: var(--item4);
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.js-slider {
  position: relative;
}
.js-slider .splide__arrow {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
  position: absolute;
  top: calc((100% - 60px) / 2);
  transition: opacity 0.4s, background-color 0.4s;
  width: 60px;
  z-index: 1;
}
@media (1200px <= width) {
  .js-slider .splide__arrow {
    height: 60px;
    top: calc((100% - 60px) / 2);
    width: 60px;
  }
}
.js-slider .splide__arrow:disabled {
  cursor: default;
  opacity: 0;
}
.js-slider .splide__arrow--prev {
  left: -10px;
}
@media (1200px <= width) {
  .js-slider .splide__arrow--prev {
    left: 45px;
  }
}
.js-slider .splide__arrow--next {
  right: -10px;
}
@media (1200px <= width) {
  .js-slider .splide__arrow--next {
    right: 45px;
  }
}
.js-slider .splide__arrow::after {
  -webkit-border-before: 1px solid var(--black);
          border-block-start: 1px solid var(--black);
  -webkit-border-end: 1px solid var(--black);
          border-inline-end: 1px solid var(--black);
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
@media (1200px <= width) {
  .js-slider .splide__arrow::after {
    height: 20px;
    width: 20px;
  }
}
.js-slider .splide__arrow--prev::after {
  rotate: 225deg;
  translate: 4px;
}
@media (1200px <= width) {
  .js-slider .splide__arrow--prev::after {
    translate: 4px;
  }
}
.js-slider .splide__arrow--next::after {
  rotate: 45deg;
  translate: -4px;
}
@media (1200px <= width) {
  .js-slider .splide__arrow--next::after {
    translate: -4px;
  }
}

.js-slider .splide__pagination {
  bottom: 100px;
  display: flex;
  gap: 0 1em;
  justify-content: center;
  position: absolute;
  width: 100%;
}
@media (1200px <= width) {
  .js-slider .splide__pagination {
    bottom: 32px;
  }
}
.js-slider .splide__pagination__page {
  background-color: rgba(var(--black-rgb), 0.5);
  border-radius: 100vmax;
  height: 12px;
  width: 12px;
}

.modalDetail.-modal001 .splide__pagination__page.is-active, .modalDetail.-modal002 .splide__pagination__page.is-active {
  background-color: var(--item1);
}
.modalDetail.-modal003 .splide__pagination__page.is-active {
  background-color: var(--item3);
}
.modalDetail.-modal004 .splide__pagination__page.is-active {
  background-color: var(--item4);
}

/*
kv
*/
.kv {
  background: url(../img/kv_bg.png) center top no-repeat;
  background-size: contain;
  height: 122.1333333333vw;
  position: relative;
  width: 100%;
}
@media (1200px <= width) {
  .kv {
    background: url(../img/kv_bg_lg.png) center top no-repeat;
    background-size: 1220px;
    height: 667px;
    margin-inline: auto;
    margin-top: 28px;
    width: 1220px;
  }
}
.kv__title {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
.kv__img {
  position: absolute;
}
.kv .-pooh {
  left: 2.9333333333vw;
  top: 10.6666666667vw;
  width: 21.3333333333vw;
}
@media (1200px <= width) {
  .kv .-pooh {
    left: 58px;
    top: -20px;
    width: 165px;
  }
}
.kv .-xc {
  left: 31.2vw;
  top: 3.2vw;
  width: 13.3333333333vw;
}
@media (1200px <= width) {
  .kv .-xc {
    left: 422px;
    top: 22px;
    width: 85px;
  }
}
.kv .-collection {
  right: 38.9333333333vw;
  top: 10.6666666667vw;
  width: 16vw;
}
@media (1200px <= width) {
  .kv .-collection {
    right: 450px;
    top: 38px;
    width: 101px;
  }
}
.kv .-classic-pooh {
  right: 1.3333333333vw;
  top: 12.8vw;
  width: 21.3333333333vw;
}
@media (1200px <= width) {
  .kv .-classic-pooh {
    right: 18px;
    top: 22px;
    width: 183px;
  }
}
.kv .-belle {
  bottom: 1.6vw;
  left: -8.2666666667vw;
  width: 36.8vw;
}
@media (1200px <= width) {
  .kv .-belle {
    bottom: -18px;
    left: -50px;
    width: 270px;
  }
}
.kv .-exceed {
  bottom: 17.3333333333vw;
  left: 36vw;
  width: 13.0666666667vw;
}
@media (1200px <= width) {
  .kv .-exceed {
    bottom: 60px;
    left: 436px;
    width: 80px;
  }
}
.kv .-l {
  bottom: 6.9333333333vw;
  right: 20.8vw;
  width: 14.9333333333vw;
}
@media (1200px <= width) {
  .kv .-l {
    bottom: 62px;
    right: 392px;
    width: 91px;
  }
}
.kv .-moana {
  bottom: 22.4vw;
  right: 0.5333333333vw;
  width: 17.0666666667vw;
}
@media (1200px <= width) {
  .kv .-moana {
    bottom: -5px;
    right: -10px;
    width: 154px;
  }
}

/*
about
*/
.about {
  background-color: #F9F6F1;
  margin-top: 10.1333333333vw;
  padding-bottom: 12.2666666667vw;
  padding-top: 12.8vw;
}
@media (750px <= width) {
  .about {
    margin-top: 68px;
    padding-bottom: 118px;
    padding-top: 126px;
  }
}
.about__text {
  display: grid;
  font-size: 3.4666666667vw;
  letter-spacing: 0.15em;
  line-height: 1.85;
  margin-block: var(--leading-trim);
  place-content: center;
}
@media (750px <= width) {
  .about__text {
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }
}
.about__note {
  align-items: center;
  display: flex;
  font-size: 3.4666666667vw;
  gap: 0.5em;
  justify-content: center;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-top: 4.8vw;
  text-align: center;
}
@media (750px <= width) {
  .about__note {
    font-size: 18px;
    gap: 0.8em;
    margin-top: 54px;
  }
}
.about__note::before, .about__note::after {
  content: "";
  height: 4.5333333333vw;
  width: 3.4666666667vw;
}
@media (750px <= width) {
  .about__note::before, .about__note::after {
    height: 23px;
    width: 17px;
  }
}
.about__note::before {
  background: url(../img/com_l.svg) center no-repeat;
  background-size: contain;
}
.about__note::after {
  background: url(../img/com_r.svg) center no-repeat;
  background-size: contain;
}
.about__note.-alt {
  margin-top: 12.8vw;
}
@media (750px <= width) {
  .about__note.-alt {
    margin-top: 59px;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.about__btn {
  background-color: var(--primary);
  border: 0.4vw solid var(--secondary);
  border-radius: 100vmax;
  color: var(--secondary);
  display: grid;
  font-size: 3.4666666667vw;
  font-weight: 500;
  height: 14.4vw;
  letter-spacing: 0.1em;
  margin-inline: auto;
  margin-top: 2.1333333333vw;
  place-content: center;
  transition: background-color 0.4s ease-out;
  width: 78.9333333333vw;
}
@media (750px <= width) {
  .about__btn {
    border-width: 2px;
    font-size: 15px;
    height: 60px;
    margin-top: 4px;
    width: 600px;
  }
}
.about__btn span::after {
  background: url(../img/icon_blank.svg) center no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2.6666666667vw;
  margin-left: 0.5em;
  width: 3.2vw;
}
@media (750px <= width) {
  .about__btn span::after {
    height: 12px;
    margin-left: 0.8em;
    width: 15px;
  }
}
.about__btn:focus-visible {
  background-color: var(--secondary);
  color: var(--primary);
}
.about__btn:focus-visible span::after {
  background: url(../img/icon_blank_h.svg) center no-repeat;
  background-size: contain;
}
@media (any-hover: hover) {
  .about__btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
  }
  .about__btn:hover span::after {
    background: url(../img/icon_blank_h.svg) center no-repeat;
    background-size: contain;
  }
}

/*
watches
*/
.watches {
  display: flex;
  flex-wrap: wrap;
  gap: 18.1333333333vw 0;
  margin-top: 3.7333333333vw;
  padding-bottom: 2.6666666667vw;
}
@media (750px <= width) {
  .watches {
    gap: 124px 0;
    margin-inline: auto;
    margin-top: 28px;
    padding-bottom: 20px;
    width: 750px;
  }
}
@media (1200px <= width) {
  .watches {
    gap: 0;
    margin-top: 30px;
    padding-bottom: 124px;
    width: 832px;
  }
}

.watch {
  position: relative;
  width: 50%;
}
@media (1200px <= width) {
  .watch {
    width: 25%;
  }
}
.watch .-classic-pooh {
  left: 6.1333333333vw;
  position: absolute;
  top: 11.2vw;
  width: 23.2vw;
}
@media (750px <= width) {
  .watch .-classic-pooh {
    left: 46px;
    top: 84px;
    width: 174px;
  }
}
@media (1200px <= width) {
  .watch .-classic-pooh {
    left: 38px;
    top: 65px;
    width: 215px;
  }
}
.watch .-collection {
  display: block;
  left: 28.2666666667vw;
  position: relative;
  top: 14.1333333333vw;
  width: 20.8vw;
}
@media (750px <= width) {
  .watch .-collection {
    left: 212px;
    top: 106px;
    width: 156px;
  }
}
@media (1200px <= width) {
  .watch .-collection {
    left: 8px;
    top: 70px;
    width: 135px;
  }
}
.watch .-xc {
  display: block;
  left: 4.5333333333vw;
  position: relative;
  top: 13.8666666667vw;
  width: 17.8666666667vw;
}
@media (750px <= width) {
  .watch .-xc {
    left: 34px;
    top: 104px;
    width: 134px;
  }
}
@media (1200px <= width) {
  .watch .-xc {
    left: 49px;
    top: 70px;
    width: 113px;
  }
}
.watch .-pooh {
  position: absolute;
  right: 6.9333333333vw;
  top: 0;
  width: 22.1333333333vw;
}
@media (750px <= width) {
  .watch .-pooh {
    right: 52px;
    width: 166px;
  }
}
@media (1200px <= width) {
  .watch .-pooh {
    left: 93px;
    top: 2px;
    width: 155px;
  }
}
.watch .-belle {
  left: 7.4666666667vw;
  position: absolute;
  top: 0;
  width: 22.1333333333vw;
}
@media (750px <= width) {
  .watch .-belle {
    left: 56px;
    width: 166px;
  }
}
@media (1200px <= width) {
  .watch .-belle {
    left: 88px;
    top: 60px;
    width: 176px;
  }
}
.watch .-exceed {
  display: block;
  left: 29.8666666667vw;
  position: relative;
  top: 3.2vw;
  width: 17.3333333333vw;
}
@media (750px <= width) {
  .watch .-exceed {
    left: 224px;
    top: 24px;
    width: 130px;
  }
}
@media (1200px <= width) {
  .watch .-exceed {
    left: 71px;
    top: 70px;
    width: 111px;
  }
}
.watch .-l {
  display: block;
  left: 4.5333333333vw;
  position: relative;
  top: 3.2vw;
  width: 19.4666666667vw;
}
@media (750px <= width) {
  .watch .-l {
    left: 34px;
    top: 24px;
    width: 146px;
  }
}
@media (1200px <= width) {
  .watch .-l {
    left: 90px;
    top: 72px;
    width: 125px;
  }
}
.watch .-moana {
  position: absolute;
  right: 8vw;
  top: 1.3333333333vw;
  width: 20.8vw;
}
@media (750px <= width) {
  .watch .-moana {
    right: 60px;
    top: 10px;
    width: 156px;
  }
}
@media (1200px <= width) {
  .watch .-moana {
    left: 90px;
    top: 62px;
    width: 205px;
  }
}

/*
collection
*/
.collection {
  margin-top: 10.1333333333vw;
}
@media (750px <= width) {
  .collection {
    margin-top: 106px;
  }
}
.collection__title {
  display: flex;
  font-size: 8vw;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.15em;
  margin-bottom: 1.3333333333vw;
  text-indent: 0.15em;
}
@media (750px <= width) {
  .collection__title {
    align-items: center;
    font-size: 60px;
    font-weight: 400;
    gap: 1em;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
    text-indent: 0.03em;
  }
  .collection__title::before, .collection__title::after {
    background-color: var(--black);
    content: "";
    display: block;
    height: 1px;
    width: 100%;
  }
}
.collection__hr {
  background: url(../img/collection_dot.svg) center repeat-x;
  display: block;
  height: 1.0666666667vw;
  margin-block: 9.3333333333vw 10.1333333333vw;
  margin-inline: auto;
  width: 80vw;
}
@media (750px <= width) {
  .collection__hr {
    height: 5.5px;
    margin-block: 78px 74px;
    width: 300px;
  }
}
@media (1200px <= width) {
  .collection__hr {
    width: 1100px;
  }
}
.collection .pooh {
  background: #e7f3eb url(../img/bg_01.svg) center repeat;
  background-size: 120%;
  padding-bottom: 12vw;
  padding-top: 12vw;
}
@media (750px <= width) {
  .collection .pooh {
    background-size: 60%;
    padding-bottom: 90px;
    padding-top: 62px;
  }
}
.collection .pooh .limited {
  background-color: var(--item1);
}
.collection .pooh .product__btn {
  background-color: #f5faf6;
  border-color: var(--item1);
}
.collection .pooh .product__btn::after {
  border-color: var(--item1);
}
.collection .pooh .product__btn:focus-visible {
  background-color: var(--item1);
  color: #f5faf6;
}
.collection .pooh .product__btn:focus-visible::after {
  border-color: #f5faf6;
}
@media (any-hover: hover) {
  .collection .pooh .product__btn:hover {
    background-color: var(--item1);
    color: #f5faf6;
  }
  .collection .pooh .product__btn:hover::after {
    border-color: #f5faf6;
  }
}
.collection .pooh .-classic-pooh .product__title {
  width: 72.5333333333vw;
}
@media (750px <= width) {
  .collection .pooh .-classic-pooh .product__title {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    width: 397px;
  }
}
.collection .pooh .-classic-pooh .product__img {
  width: 52.8vw;
}
@media (750px <= width) {
  .collection .pooh .-classic-pooh .product__img {
    width: 300px;
  }
}
.collection .pooh .-classic-pooh .product__watch {
  width: 35.7333333333vw;
}
@media (750px <= width) {
  .collection .pooh .-classic-pooh .product__watch {
    width: 191px;
  }
}
.collection .pooh .-pooh .product__title {
  width: 55.2vw;
}
@media (750px <= width) {
  .collection .pooh .-pooh .product__title {
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
    width: 291px;
  }
}
.collection .pooh .-pooh .product__img {
  margin-top: -3.4666666667vw;
  width: 52.8vw;
}
@media (750px <= width) {
  .collection .pooh .-pooh .product__img {
    width: 300px;
  }
}
@media (1200px <= width) {
  .collection .pooh .-pooh .product__img {
    margin-top: -102px;
  }
}
.collection .pooh .-pooh .product__watch {
  width: 30.1333333333vw;
}
@media (750px <= width) {
  .collection .pooh .-pooh .product__watch {
    width: 169px;
  }
}
.collection .belle {
  background: #fcefd0 url(../img/bg_02.svg) center repeat;
  background-size: 120%;
  padding-bottom: 12vw;
  padding-top: 8.8vw;
}
@media (750px <= width) {
  .collection .belle {
    background-size: 60%;
    padding-bottom: 76px;
    padding-top: 66px;
  }
}
.collection .belle .limited {
  background-color: var(--item3);
  color: var(--black);
}
.collection .belle .product__btn {
  background-color: #fff7e8;
  border-color: var(--item3);
}
.collection .belle .product__btn::after {
  border-color: var(--item3);
}
.collection .belle .product__btn:focus-visible {
  background-color: var(--item3);
  color: var(--black);
}
.collection .belle .product__btn:focus-visible::after {
  border-color: var(--black);
}
@media (any-hover: hover) {
  .collection .belle .product__btn:hover {
    background-color: var(--item3);
    color: var(--black);
  }
  .collection .belle .product__btn:hover::after {
    border-color: var(--black);
  }
}
@media (750px <= width) {
  .collection .belle .product__wrap {
    margin-top: 46px;
  }
}
.collection .belle .product__title {
  width: 56vw;
}
@media (750px <= width) {
  .collection .belle .product__title {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
    width: 292px;
  }
}
.collection .belle .product__img {
  margin-top: -1.0666666667vw;
  width: 52.8vw;
}
@media (750px <= width) {
  .collection .belle .product__img {
    margin-top: -44px;
    width: 300px;
  }
}
.collection .belle .product__watch {
  width: 29.8666666667vw;
}
@media (750px <= width) {
  .collection .belle .product__watch {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
    width: 158px;
  }
}
.collection .moana {
  background: #e5f3f6 url(../img/bg_03.svg) center repeat;
  background-size: 120%;
  padding-bottom: 12vw;
  padding-top: 10.1333333333vw;
}
@media (750px <= width) {
  .collection .moana {
    background-size: 60%;
    padding-bottom: 72px;
    padding-top: 68px;
  }
}
.collection .moana .limited {
  background-color: var(--item4);
}
.collection .moana .product__btn {
  background-color: #f4fafd;
  border-color: var(--item4);
}
.collection .moana .product__btn::after {
  border-color: var(--item4);
}
.collection .moana .product__btn:focus-visible {
  background-color: var(--item4);
  color: #f4fafd;
}
.collection .moana .product__btn:focus-visible::after {
  border-color: #f4fafd;
}
@media (any-hover: hover) {
  .collection .moana .product__btn:hover {
    background-color: var(--item4);
    color: #f4fafd;
  }
  .collection .moana .product__btn:hover::after {
    border-color: #f4fafd;
  }
}
@media (750px <= width) {
  .collection .moana .product__wrap {
    margin-top: 58px;
  }
}
.collection .moana .product__title {
  width: 62.4vw;
}
@media (750px <= width) {
  .collection .moana .product__title {
    width: 341px;
  }
}
.collection .moana .product__img {
  margin-top: -0.5333333333vw;
  width: 52.8vw;
}
@media (750px <= width) {
  .collection .moana .product__img {
    margin-top: -28px;
    width: 300px;
  }
}
.collection .moana .product__watch {
  width: 33.0666666667vw;
}
@media (750px <= width) {
  .collection .moana .product__watch {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    width: 177px;
  }
}

/*
product
*/
.product__title {
  margin-inline: auto;
}
.product__note {
  font-size: 3.2vw;
  letter-spacing: 0.15em;
  line-height: 1.625;
  margin-top: 4.8vw;
  text-align: center;
}
@media (750px <= width) {
  .product__note {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 25px;
  }
}
.product__wrap {
  margin-top: 4.8vw;
}
@media (1200px <= width) {
  .product__wrap {
    margin-inline: auto;
    margin-top: 28px;
    -webkit-transform: translateX(44px);
    display: grid;
    grid-template-columns: 300px auto 385px;
    grid-template-rows: auto 88px auto;
    height: 396px;
            transform: translateX(44px);
    width: 1014px;
  }
  .product__wrap .product__img {
    align-self: center;
    grid-area: 1/1/4/2;
  }
  .product__wrap .product__text {
    grid-area: 1/3/2/4;
  }
  .product__wrap .product__watch {
    grid-area: 1/2/4/3;
  }
  .product__wrap .product__detail {
    grid-area: 2/3/3/4;
  }
  .product__wrap .product__btns {
    grid-area: 3/3/4/4;
  }
}
.product__img {
  margin-inline: auto;
}
.product__text {
  font-size: 3.4666666667vw;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-top: 3.2vw;
  text-align: center;
}
@media (750px <= width) {
  .product__text {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 12px;
  }
}
@media (1200px <= width) {
  .product__text {
    margin-top: 48px;
    text-align: left;
  }
}
.product__watch {
  display: block;
  margin-inline: auto;
  margin-top: 4.2666666667vw;
}
@media (750px <= width) {
  .product__watch {
    margin-top: 16px;
  }
}
@media (1200px <= width) {
  .product__watch {
    margin-top: 0;
  }
}
.product__detail {
  display: flex;
  flex-direction: column;
  height: 16vw;
  justify-content: center;
  margin-inline: auto;
  margin-top: 8.5333333333vw;
  position: relative;
  width: 78.4vw;
}
@media (750px <= width) {
  .product__detail {
    height: 88px;
    margin-top: 30px;
    width: 320px;
  }
}
@media (1200px <= width) {
  .product__detail {
    margin-inline: 0;
    margin-top: 0;
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
    width: auto;
  }
}
.product__btns {
  display: flex;
  gap: 2.1333333333vw;
  justify-content: center;
  margin-top: 5.0666666667vw;
}
@media (750px <= width) {
  .product__btns {
    gap: 12px;
    margin-top: 16px;
  }
}
@media (1200px <= width) {
  .product__btns {
    justify-content: flex-start;
    margin-top: 0;
  }
}
.product__btn {
  border: 0.2666666667vw solid;
  border-radius: 100vmax;
  color: var(--black);
  cursor: pointer;
  display: grid;
  font-size: 3.4666666667vw;
  height: 10.6666666667vw;
  letter-spacing: 0.05em;
  place-content: center;
  position: relative;
  text-align: center;
  transition: background-color 0.4s ease-out;
  width: 40vw;
}
@media (750px <= width) {
  .product__btn {
    border-width: 1px;
    font-size: 13px;
    height: 48px;
    width: 168px;
  }
}
.product__btn::after {
  border-right: 0.2666666667vw solid;
  border-top: 0.2666666667vw solid;
  content: "";
  height: 0.5em;
  width: 0.5em;
  -webkit-transform: rotate(45deg);
  position: absolute;
  right: 3.2vw;
  top: calc(50% - 0.25em);
          transform: rotate(45deg);
}
@media (750px <= width) {
  .product__btn::after {
    border-width: 2px;
    right: 20px;
  }
}

@scope (.product__detail) {
  .name {
    font-size: 3.4666666667vw;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.38;
  }
  @media (750px <= width) {
    .name {
      font-size: 13px;
      line-height: 1.23;
    }
  }
  @media (1200px <= width) {
    .name {
      margin-left: 120px;
    }
  }
  .price {
    font-size: 3.4666666667vw;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.92;
    margin-top: 1.3333333333vw;
  }
  @media (750px <= width) {
    .price {
      font-size: 13px;
      line-height: 1.23;
      margin-top: 5px;
    }
  }
  @media (1200px <= width) {
    .price {
      margin-left: 120px;
      margin-top: 10px;
    }
  }
  .price span {
    font-size: 3.2vw;
  }
  @media (750px <= width) {
    .price span {
      font-size: 12px;
    }
  }
  .limited {
    border-radius: 100vmax;
    color: var(--white);
    display: grid;
    font-size: 3.2vw;
    font-weight: 500;
    height: 16vw;
    letter-spacing: 0.2em;
    line-height: 1.3;
    place-content: center;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 16vw;
  }
  @media (750px <= width) {
    .limited {
      font-size: 12px;
      height: 88px;
      width: 88px;
    }
  }
  @media (1200px <= width) {
    .limited {
      right: auto;
    }
  }
  .limited span {
    display: inline-block;
    font-size: 3.7333333333vw;
    letter-spacing: 0.1em;
    -webkit-transform: translateX(0.05em);
            transform: translateX(0.05em);
  }
  @media (750px <= width) {
    .limited span {
      font-size: 17px;
    }
  }
}
/*
bnrs
*/
.bnrs {
  background-color: #fff6ec;
  padding-block: 17.0666666667vw;
  position: relative;
}
@media (750px <= width) {
  .bnrs {
    padding-block: 41px;
  }
}
.bnrs__inner {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
  justify-content: center;
}
@media (750px <= width) {
  .bnrs__inner {
    gap: 8px;
  }
}
@media (1200px <= width) {
  .bnrs__inner {
    flex-direction: row;
  }
}
.bnrs__bnr {
  background-color: var(--white);
  border: 1px solid var(--white);
  margin-inline: auto;
  transition: border-color 0.4s ease-out;
  width: 85.3333333333vw;
}
@media (750px <= width) {
  .bnrs__bnr {
    display: grid;
    height: 120px;
    place-content: center;
    width: 259px;
  }
}
@media (1200px <= width) {
  .bnrs__bnr {
    margin-inline: 0;
  }
}
.bnrs__bnr:focus-visible {
  border-color: var(--secondary);
}
@media (any-hover: hover) {
  .bnrs__bnr:hover {
    border-color: var(--secondary);
  }
}
.bnrs__copyright {
  bottom: 3.2vw;
  font-size: 1.6vw;
  position: absolute;
  right: 1.0666666667vw;
  text-align: right;
}
@media (750px <= width) {
  .bnrs__copyright {
    bottom: calc(50% - 1.5lh);
    font-size: 7px;
    right: 50px;
  }
}