@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

body {
  background-color: #F4F3E9;
}

/*---------------------------------------------
layout
---------------------------------------------*/
.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.left,
.right {
  background: #f2f2f2;
  min-width: 0;
  padding: 16px;
  /* ↓これが重要:
     overflow: auto や position: fixed を指定しない。
     指定すると left/right が独立スクロール領域になり、
     その上でホイールしても center(=bodyのスクロール)が動かなくなる。 */
}

.right {
  display: none;
}

/* ---- sp: 〜768px → centerのみ1カラム ---- */
@media screen and (max-width: 768px) {
  .layout {
    display: block;
  }
  .left,
  .right {
    display: none;
  }
  .center {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
/* ---- pc: 769px〜 → まずleft+centerの2カラムがベース ---- */
@media screen and (min-width: 769px) {
  .left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }
  .center {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .right {
    display: none;
  }
}
/* ---- xl: 1200px〜 → rightも表示して3カラムに ---- */
@media screen and (min-width: 1200px) {
  .left,
  .right {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0; /* center以外の残り幅を均等に分け合う */
  }
  .center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 600px;
            flex: 0 0 600px;
    width: 600px;
  }
}
/*---------------------------------------------
fonts
---------------------------------------------*/
.eg {
  font-family: "acme-gothic-compressed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.jp {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.blink {
  -webkit-animation: blink_fade 1.5s ease-in-out infinite;
          animation: blink_fade 1.5s ease-in-out infinite;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.loop_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #60F4DB;
  padding: 9px 0 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.loop_wrapper.is-ready {
  opacity: 1;
}

.loop_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}
.loop_track.is-playing {
  -webkit-animation: loop_scroll 40s linear infinite;
          animation: loop_scroll 40s linear infinite;
}
.loop_track .date {
  color: #fff;
}
.loop_track .up {
  color: #fff;
}

.loop_item {
  display: inline-block;
  padding-right: 10px;
  color: #3A4D5E;
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}

@-webkit-keyframes loop_scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loop_scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv {
  position: relative;
}
@media screen and (min-width: 769px) {
  .fv {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 769px) {
  .fv .pc_fv_wrap {
    max-width: min(80%, 1200px);
    margin: auto;
  }
}
.fv .pc_fv_wrap .title {
  position: absolute;
  width: 54%;
  height: auto;
  top: -14%;
  left: 4%;
}
@media screen and (min-width: 769px) {
  .fv .pc_fv_wrap .title {
    position: static;
    width: 34%;
    margin-top: 5%;
  }
}
.fv .map_wrap {
  position: relative;
  margin-top: 100px;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .pc_staff_wrap {
    margin-left: auto;
  }
}
.fv .map_wrap .map_img {
  width: 96%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .map_img {
    width: 55%;
    margin: 0;
    margin-left: auto;
    margin-top: -57%;
  }
}
.fv .map_wrap .staff_wrap {
  position: absolute;
  width: 13%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap {
    width: 8%;
  }
}
.fv .map_wrap .staff_wrap .block {
  width: 80%;
  height: auto;
  margin: auto;
  -webkit-animation: blink_fade 1.5s ease-in-out infinite;
          animation: blink_fade 1.5s ease-in-out infinite;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap .block {
    width: 60%;
  }
}
.fv .map_wrap .staff_wrap .staff {
  width: 100%;
  height: auto;
  margin: 8px 0;
}
.fv .map_wrap .staff_wrap1 {
  top: -2%;
  right: 22%;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap1 {
    right: 14%;
  }
}
.fv .map_wrap .staff_wrap2 {
  top: 41%;
  right: 11%;
}
.fv .map_wrap .staff_wrap3 {
  top: 23%;
  right: 37%;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap3 {
    top: 21%;
    right: 22%;
  }
}
.fv .map_wrap .staff_wrap4 {
  top: 47%;
  right: 46%;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap4 {
    top: 50%;
    right: 27%;
  }
}
.fv .map_wrap .staff_wrap5 {
  top: 39%;
  right: 66%;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap5 {
    right: 37%;
  }
}
.fv .map_wrap .staff_wrap6 {
  top: 63%;
  right: 77%;
}
@media screen and (min-width: 769px) {
  .fv .map_wrap .staff_wrap6 {
    right: 43%;
  }
}
.fv .lead {
  width: 83%;
  margin: 20px auto 40px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fv .lead {
    width: 46%;
    margin: 0;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 50px;
    text-align: left;
  }
}

@-webkit-keyframes blink_fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes blink_fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/*---------------------------------------------
CENTER
---------------------------------------------*/
.center {
  position: relative;
}
.center .slide_wrap {
  position: relative;
  background-color: #cdc9c9;
  background-image: url(../images/noise.png);
  background-repeat: repeat;
  padding: 0 0 70px 16px;
}
@media screen and (min-width: 769px) {
  .center .slide_wrap {
    padding: 0 0 100px 55px;
  }
}
.center .title_wrap {
  position: relative;
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .center .title_wrap {
    padding-top: 70px;
  }
}
.center .title_wrap .regional {
  position: absolute;
}
.center .title_wrap .bear {
  width: 18%;
  right: 13%;
  top: 21%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .bear {
    width: 15%;
    right: 17%;
    top: 26%;
  }
}
.center .title_wrap .mountain {
  width: 25%;
  bottom: 19%;
  left: 14%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .mountain {
    bottom: 15%;
    left: 13%;
  }
}
.center .title_wrap .bl {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .bl {
    font-size: 18px;
  }
}
.center .title_wrap .tower {
  width: 8%;
  right: 42%;
  bottom: 16%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .tower {
    width: 7%;
    right: 49%;
    bottom: 16%;
  }
}
.center .title_wrap .city {
  width: 33%;
  right: 52%;
  bottom: 20%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .city {
    width: 31%;
    right: 53%;
    bottom: 16%;
  }
}
.center .title_wrap .orange {
  width: 12%;
  right: 49%;
  bottom: 19%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .orange {
    width: 10%;
    right: 57%;
    bottom: 16%;
  }
}
.center .title_wrap .palm {
  width: 23%;
  right: 60%;
  bottom: 21%;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .palm {
    width: 20%;
    right: 65%;
    bottom: 18%;
  }
}
.center .title_wrap .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 86%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .flex {
    width: 83%;
  }
}
.center .title_wrap .flex .area {
  font-size: 55px;
  line-height: 0.75;
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .flex .area {
    font-size: 70px;
  }
}
.center .title_wrap .flex .tar {
  text-align: right;
}
.center .title_wrap .flex .num {
  font-size: 80px;
  margin-bottom: -5px;
}
@media screen and (min-width: 769px) {
  .center .title_wrap .flex .num {
    font-size: 108px;
    margin-bottom: -8px;
  }
}
.center .title_wrap .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.center .archive {
  padding: 70px 0 100px 16px;
}
@media screen and (min-width: 769px) {
  .center .archive {
    padding: 80px 0 70px 32px;
  }
}
.center .archive .title {
  font-size: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .center .archive .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
.center .archive ul {
  width: 85%;
}
@media screen and (min-width: 769px) {
  .center .archive ul {
    width: 88%;
  }
}
.center .archive ul li {
  margin-bottom: 50px;
}
.center .archive ul li p {
  font-size: 14px;
  margin-top: 10px;
}
.center .footer {
  width: 90%;
}
.center .footer a {
  display: block;
  margin: 0 auto 10px;
  width: 30%;
}
.center .footer a img {
  width: 100%;
}
.center .footer p {
  font-size: 10px;
  width: 90%;
  margin: auto;
  text-align: center;
  padding-bottom: 40px;
}
.center .vloop_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 36px;
  height: 100%;
  overflow: hidden;
  background-color: #8CA4B6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.center .vloop_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: "Julius Sans One", sans-serif;
  font-weight: 100;
  font-size: 14px;
  padding: 10px;
  font-style: normal;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}
.center .vloop_track.is-playing {
  -webkit-animation-name: vloop_scroll;
          animation-name: vloop_scroll;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.center .vloop_track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.center .vloop_item {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-bottom: 32px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
@-webkit-keyframes vloop_scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes vloop_scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.center .date_temp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 86%;
}
@media screen and (min-width: 769px) {
  .center .date_temp {
    width: 83%;
  }
}
.center .date_temp .date {
  font-size: 24px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .center .date_temp .date {
    font-size: 28px;
  }
}
.center .date_temp .temp_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.center .date_temp .temp_wrap .min {
  position: relative;
  width: 40%;
  color: #5D9CC1;
}
@media screen and (min-width: 769px) {
  .center .date_temp .temp_wrap .min {
    width: 35%;
  }
}
.center .date_temp .temp_wrap .min .temp {
  font-size: 12px;
  font-size: 14px;
  position: absolute;
  top: -2px;
  right: 0;
}
@media screen and (min-width: 769px) {
  .center .date_temp .temp_wrap .min .temp {
    font-size: 16px;
  }
}
.center .date_temp .temp_wrap .line {
  display: block;
  width: 30%;
  height: 1px;
  background: #7F7878;
  margin: 10px;
}
.center .date_temp .temp_wrap .max {
  position: relative;
  width: 40%;
  color: #DE7575;
}
@media screen and (min-width: 769px) {
  .center .date_temp .temp_wrap .max {
    width: 35%;
  }
}
.center .date_temp .temp_wrap .max .temp {
  font-size: 14px;
  position: absolute;
  top: -2px;
  right: 0;
}
@media screen and (min-width: 769px) {
  .center .date_temp .temp_wrap .max .temp {
    font-size: 16px;
  }
}
.center .date_temp .temp_minus {
  display: inline-block;
  -webkit-transform: scaleX(0.5);
          transform: scaleX(0.5);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.center .date_temp .temp_digit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  height: 1em;
  position: relative;
}
.center .date_temp .temp_digit_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
          transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.center .date_temp .temp_digit_track span {
  display: block;
  line-height: 1;
  height: 1em;
}
.center .date_temp .temp_digit__tens .temp_digit_track {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}
.center .date_temp .temp_digit__ones .temp_digit_track {
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}
.center .sec {
  margin-bottom: 80px;
}

.coordinate_card_theme_mint {
  --theme-frame: #CEFDC9;
  --theme-accent: #35c1cf;
  --theme-comment: rgb(53, 193, 207, .8);
  --theme-accent-soft: rgba(53, 193, 207, 0.55);
  --theme-accent-soft-hover: rgba(53, 193, 207, 0.8);
}

.coordinate_card_theme_yellow {
  --theme-frame: #FEFAC0;
  --theme-accent: #ecd249;
  --theme-comment:rgb(236, 210, 73, .8);
  --theme-accent-soft: rgba(236, 210, 73, 0.75);
  --theme-accent-soft-hover: #ecd249f2;
}

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

.coordinate_card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 86%;
}
@media screen and (min-width: 769px) {
  .coordinate_card {
    width: 83%;
  }
}

.coordinate_card_frame {
  position: relative;
  background: var(--theme-frame);
  border-radius: 6px 6px 0 0;
  padding: 16px 16px 30px;
  -webkit-transition: background 0.35s ease;
  transition: background 0.35s ease;
  margin-top: 20px;
}

.coordinate_card_slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}

.coordinate_card_slider_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.coordinate_card_slider_item {
  position: relative;
  z-index: -1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.coordinate_card_slider_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.coordinate_card_shop_button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #cbb8a3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 3;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  .coordinate_card_shop_button {
    width: 50px;
    height: 50px;
  }
}
.coordinate_card_shop_button svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.coordinate_card_arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--theme-accent-soft);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  -webkit-transition: background 0.3s ease, opacity 0.2s ease;
  transition: background 0.3s ease, opacity 0.2s ease;
}
.coordinate_card_arrow:hover {
  background: var(--theme-accent-soft-hover);
}
.coordinate_card_arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.coordinate_card_arrow_prev {
  left: 10px;
}

.coordinate_card_arrow_next {
  right: 10px;
}

.coordinate_card_caption {
  position: absolute;
  left: -3%;
  bottom: -2%;
  z-index: 3;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (min-width: 769px) {
  .coordinate_card_caption {
    font-size: 20px;
  }
}

.coordinate_card_caption_line {
  display: inline-block;
  padding: 2px 12px;
  color: #333333;
}

.coordinate_card_caption_line_dark {
  background: var(--theme-comment);
  color: #ffffff;
}

.coordinate_card_caption_line_accent {
  background: var(--theme-comment);
  -webkit-transition: background 0.35s ease;
  transition: background 0.35s ease;
}

.coordinate_card_caption_row {
  display: block;
  margin: 2px 0;
}

.coordinate_card_caption_line[data-aos] {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.coordinate_card_caption_line[data-aos].aos-animate {
  clip-path: inset(0 0 0 0);
}

.coordinate_card_caption_row:nth-child(2) .coordinate_card_caption_line[data-aos] {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .coordinate_card_caption_line[data-aos] {
    clip-path: inset(0 0 0 0);
    -webkit-transition: none;
    transition: none;
  }
}
.coordinate_card_pointer_wrap {
  position: relative;
}

.coordinate_card_pointer {
  position: absolute;
  top: 11px;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid var(--theme-accent);
  -webkit-transition: left 0.3s ease, border-top-color 0.35s ease;
  transition: left 0.3s ease, border-top-color 0.35s ease;
}
@media screen and (min-width: 769px) {
  .coordinate_card_pointer {
    top: 18px;
  }
}

.coordinate_card_pointer_at_1 {
  left: 75%;
}

.coordinate_card_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.coordinate_card_tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0 0 6px 6px;
  border-top: none !important;
  background: #ffffff;
  border: 1.5px solid var(--theme-accent);
  padding: 28px 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
@media screen and (min-width: 769px) {
  .coordinate_card_tab {
    padding-top: 36px;
  }
}
.coordinate_card_tab[data-theme=mint] {
  --theme-accent: #35c1cf;
  --theme-frame: #CEFDC9;
}
.coordinate_card_tab[data-theme=yellow] {
  --theme-accent: #ecd249;
  --theme-frame: #FEFAC0;
}
.coordinate_card_tab:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.coordinate_card_tab_active {
  background: var(--theme-frame);
  border-color: var(--theme-frame);
}

.coordinate_card_tab_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  background: #ccc;
}
.coordinate_card_tab_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.coordinate_card_tab_brand {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 4px;
}
@media screen and (min-width: 769px) {
  .coordinate_card_tab_brand {
    font-size: 16px;
  }
}

.coordinate_card_tab_sub {
  font-size: 10.5px;
  color: #666666;
  line-height: 1.4;
  margin: 0 0 6px;
}
@media screen and (min-width: 769px) {
  .coordinate_card_tab_sub {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.coordinate_card_tab_link {
  font-size: 11px;
  color: #35c1cf;
  text-decoration: none;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .coordinate_card_tab_link {
    font-size: 14px;
  }
}
.coordinate_card_tab_link:hover {
  text-decoration: underline;
}

.gif {
  width: 50%;
  margin-top: 50px;
}

.gif_r {
  margin-left: auto;
  margin-right: 14%;
}

.snap_all {
  width: 70%;
  display: block;
  padding: 14px 20px;
  background: #3A4D5E;
  text-align: center;
  color: #fff;
  margin: auto;
  margin-right: 22%;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .snap_all {
    width: 60%;
    margin-right: 28%;
  }
}

.shoplist {
  width: 70%;
  display: block;
  padding: 14px 20px;
  background: #3A4D5E;
  text-align: center;
  color: #fff;
  margin: auto;
  margin-top: 30px;
  margin-right: 22%;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .shoplist {
    width: 60%;
    margin-right: 28%;
  }
}

@media screen and (min-width: 769px) {
  .left .left_sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.left .map_wrap {
  position: relative;
}
.left .map_wrap a .staff_wrap {
  width: 10%;
  position: absolute;
}
.left .map_wrap .staff_wrap1 {
  top: 13%;
  right: 23%;
}
.left .map_wrap .staff_wrap2 {
  top: 47%;
  right: 21%;
}
.left .map_wrap .staff_wrap3 {
  top: 30%;
  right: 41%;
}
.left .map_wrap .staff_wrap4 {
  top: 50%;
  right: 50%;
}
.left .map_wrap .staff_wrap5 {
  top: 46%;
  right: 67%;
}
.left .map_wrap .staff_wrap6 {
  top: 68%;
  right: 79%;
}

@media screen and (min-width: 769px) {
  .right .right_sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.right img {
  width: 80%;
  margin: auto;
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
}

.flex-control-nav li {
  width: 8px;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}/*# sourceMappingURL=style.css.map */