@charset "UTF-8";
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

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

fieldset {
  border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: inherit;
}

body {
  background-color: #fff;
  word-wrap: break-word;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: underline;
  color: #00f;
}
a:visited {
  color: #000080;
}
a:hover {
  text-decoration: none;
  color: #f00;
}
a:active {
  text-decoration: none;
  color: #ff8000;
}
a[href^="tel:"]:hover {
  color: #00f;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

html:has(dialog[open]) {
  overflow: hidden;
}

body {
  color: #595959;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.l_inner {
  padding: 0 5.1282051282vw;
}
@media (min-width: 1024px) {
  .l_inner {
    padding: 0;
  }
}

.c-btn {
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-nav_item-btn {
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .l-nav_list_item:hover .c-nav_item-btn,
  .l-kv_nav-list_item:hover .c-nav_item-btn {
    -webkit-animation: hoverOutBack 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
            animation: hoverOutBack 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes hoverOutBack {
  50% {
    translate: 0 -20%;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes hoverOutBack {
  50% {
    translate: 0 -20%;
  }
  100% {
    translate: 0 0;
  }
}
.l-header {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}

.l-header_nav {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
  text-align: center;
}
.l-header_nav.is-show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0s;
  /* フェードイン時の遅延をリセット */
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

.l-nav_button {
  margin: auto;
  border-radius: 25px 25px 0 0;
  width: 89.7435897436vw;
  height: 19.2307692308vw;
  box-shadow: #fff 0 0 2.5641025641vw;
}
@media (min-width: 1024px) {
  .l-nav_button {
    display: none;
  }
}
.l-nav_button img {
  width: 100%;
}

.l-dialog {
  overflow: visible;
  padding: 0;
  border: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: none;
}
@media (min-width: 1024px) {
  .l-dialog {
    display: none;
  }
}
.l-dialog::-webkit-backdrop {
  background: linear-gradient(180deg, #ff9fe6 0%, #ff7fbf 60%, #ff67a3 70%, #ff5992 80%, #ff548c 100%);
}
.l-dialog::backdrop {
  background: linear-gradient(180deg, #ff9fe6 0%, #ff7fbf 60%, #ff67a3 70%, #ff5992 80%, #ff548c 100%);
}
.l-dialog .l-dialog-inner {
  overflow-y: auto;
  padding: 5.1282051282vw 0 0;
  border-radius: 5px;
  height: calc(100vh - 26.9230769231vw);

  scrollbar-color: #d86fd8 #fff;
}
.l-dialog .l-dialog-logo {
  display: block;
  width: 49.2307692308vw;

  margin-inline: auto;
}
.l-dialog .l-dialog-list {
  display: grid;
  margin-top: 8.9743589744vw;

  gap: 7.6923076923vw;
}
.l-dialog .l-dialog-list_item {
  margin-inline: auto;
}
.l-dialog .l-dialog-list_item.--about {
  width: 61.5384615385vw;
}
.l-dialog .l-dialog-list_item.--movie {
  width: 50.7692307692vw;
}
.l-dialog .l-dialog-list_item.--goods {
  width: 20.7692307692vw;
}
.l-dialog .l-dialog-list_item.--schedule {
  width: 63.2051282051vw;
}
.l-dialog .l-dialog-list_item.--notice {
  width: 27.5641025641vw;
}
.l-dialog .l-dialog-close {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 25px 25px 0 0;
  width: 89.7435897436vw;
  height: 19.2307692308vw;
  box-shadow: #fff 0 0 2.5641025641vw;
}
.l-dialog .l-dialog-close img {
  width: 100%;
}

.l-nav_inner {
  display: none;
}
@media (min-width: 1024px) {
  .l-nav_inner {
    display: block;
    position: relative;
    padding: min(2.196193265vw, 30px) 0 min(1.9033674963vw, 26px) min(5.8565153734vw, 80px);
    background: #ff66a2;
  }
}
.l-nav_inner .l-nav_logo {
  position: absolute;
  bottom: min(0.7320644217vw, 10px);
  left: 50%;
  margin-left: max(-32.9428989751vw, -450px);
  width: min(10.2489019034vw, 140px);
  transform: translateX(-50%);
}
.l-nav_inner .l-nav_list {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: min(0.7320644217vw, 10px);
}
.l-nav_inner .l-nav_list_item.--about {
  width: min(18.5944363104vw, 254px);
}
.l-nav_inner .l-nav_list_item.--movie {
  width: min(10.102489019vw, 138px);
}
.l-nav_inner .l-nav_list_item.--goods {
  width: min(6.2957540264vw, 86px);
}
.l-nav_inner .l-nav_list_item.--schedule {
  width: min(12.4450951684vw, 170px);
}
.l-nav_inner .l-nav_list_item.--notice {
  width: min(8.345534407vw, 114px);
}

.l-kv {
  padding-top: 1px;
  background: url(../img/bg_kv_sm.jpg) no-repeat 0 0/contain;

  aspect-ratio: 780/2191;
}
@media (min-width: 1024px) {
  .l-kv {
    padding-bottom: min(13.9092240117vw, 190px);
    background: url(../img/bg_kv_lg.jpg) no-repeat 0 0/100% auto;

    aspect-ratio: 1/1;
  }
}

.l-kv_nav {
  display: none;
}
@media (min-width: 1024px) {
  .l-kv_nav {
    display: block;
    margin: -2.0497803807vw auto 0;
    width: min(79.6486090776vw, 1088px);
    height: min(10.2489019034vw, 140px);
    background: url(../img/bg_kv_navi.png) no-repeat 0 0/contain;
  }
}

.l-kv_nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(3.8067349927vw, 52px) 0 0 min(4.39238653vw, 60px);

  gap: min(1.4641288433vw, 20px);
}
.l-kv_nav-list .l-kv_nav-list_item.--about {
  width: min(18.5944363104vw, 254px);
}
.l-kv_nav-list .l-kv_nav-list_item.--movie {
  width: min(10.102489019vw, 138px);
}
.l-kv_nav-list .l-kv_nav-list_item.--goods {
  width: min(6.2957540264vw, 86px);
}
.l-kv_nav-list .l-kv_nav-list_item.--schedule {
  width: min(12.4450951684vw, 170px);
}
.l-kv_nav-list .l-kv_nav-list_item.--notice {
  width: min(8.345534407vw, 114px);
}

.l-page_title_wrap {
  background: url(../img/kv_sm.webp) no-repeat 0 0/contain;

  aspect-ratio: 780/1252;
}
@media (min-width: 1024px) {
    .l-page_title_wrap {
        margin: -40px auto 0;
        width: 85%;
        background: url(../img/kv_lg.webp) no-repeat 0 0 / 100% auto;
        aspect-ratio: 1 / 1;
    }
}
.l-page_title_wrap .l-page_title {
  margin: 0 0 0 11.1538461538vw;
  padding: 92.0512820513vw 0 0;
  width: 81.1538461538vw;
}
@media (min-width: 1024px) {
  .l-page_title_wrap .l-page_title {
        margin: auto;
        padding: 45vw 0px 0 0;
        width: 55vw;
  }
}

.l-kv_copy {
  position: relative;
  margin: 15vw 0 0;
}
@media (min-width: 1024px) {
  .l-kv_copy {
    margin: min(8.0527086384vw, 110px) 0 0;
  }
}

.l-kv_title {
  position: absolute;
  top: -11.2820512821vw;
  right: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .l-kv_title {
    top: max(-5.8565153734vw, -80px);
    width: min(55.9297218155vw, 764px);
  }
}
.l-kv_title img {
  width: 100%;
}

.l-kv_text {
  margin: 0 5.1282051282vw;
  padding: 20.5128205128vw 6.4102564103vw 10.2564102564vw;
  border-radius: 3.8461538462vw;
  background: #fff;
  color: #8d539b;
  box-shadow: #fff 0vw 0vw 3.8461538462vw;
  font-size: 3.8461538462vw;
  line-height: 2;
}
@media (min-width: 1024px) {
  .l-kv_text {
    margin: auto;
    padding: min(12.4450951684vw, 170px) min(2.9282576867vw, 40px) min(5.8565153734vw, 80px);
    border-radius: 15px;
    width: min(65.8857979502vw, 900px);
    text-align: center;
    box-shadow: #fff 0 0 30px;
    font-size: min(1.756954612vw, 24px);
  }
}


.l-kv_text2 {
    margin: 30px 10px;
    padding: 30px;
    border-radius: 3.8461538462vw;
    background: #fff;
    color: #8d539b;
    box-shadow: #f2e1ff 0 0 40px;
    font-size: 0.9em;
    font-weight: normal;
}

@media (min-width: 1024px) {
.l-kv_text2 {
        margin: 2vw auto 5vw;
        padding: 70px;
        border-radius: 15px;
        width: min(95%, 1070px);
        box-shadow: #f2e1ff 0 0 40px;
        font-size: min(1.756954612vw, 24px);
}
}


.l-movie {
  position: relative;
  padding-top: 26.9230769231vw;
  background: url(../img/bg_movie_sm.png) no-repeat 0 0/contain;

  aspect-ratio: 780/893;
}
@media (min-width: 1024px) {
  .l-movie {
    margin-top: -10.2489019034vw;
    padding: 25.3294289898vw 0 20vw;
    background: url(../img/bg_movie_lg.png);
    background-repeat: no-repeat;
    background-position: 0 3.2210834553vw;
    background-size: 100% auto;

    aspect-ratio: auto;
  }
}

.l-movie_title {
  position: absolute;
  top: -10vw;
  right: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .l-movie_title {
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100vw;
  }
}
.l-movie_title img {
  width: 100%;
}

.l-iframe-wrap {
  margin: auto;
  width: 89.7435897436vw;
}
@media (min-width: 1024px) {
  .l-iframe-wrap {
    width: min(65.8857979502vw, 900px);
  }
}
.l-iframe-wrap .l-iframe-inner {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}
.l-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-schedule {
    position: relative;
    padding-top: 40.512821vw;
}
@media (min-width: 1024px) {
  .l-schedule {
    margin-top: -9.5168374817vw;
    padding-top: 18vw;
  }
}

.l-schedule_title {
  position: absolute;
  top: 7.307692vw;
  right: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .l-schedule_title {
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100vw;
  }
}
.l-schedule_title img {
  width: 100%;
}

.l-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 0.641025641vw;
}
@media (min-width: 1024px) {
  .l-area-list {
    flex-wrap: nowrap;
    margin: auto;
    max-width: 1080px;

    gap: min(0.3660322108vw, 5px);
  }
}

.l-area-list_item {
  width: calc(25% - 0.641025641vw);
}
@media (min-width: 1024px) {
  .l-area-list_item {
    width: auto;
  }
}
.l-area-list_item img {
  width: 100%;
}

.l-area_wrap {
  margin-top: 11.0256410256vw;
  padding: 12.8205128205vw 5.1282051282vw;
  border-radius: 2.0512820513vw;
  background: #ffe7ff;
}
@media (min-width: 1024px) {
  .l-area_wrap {
    margin: auto;
    margin-top: min(4.0263543192vw, 55px);
    padding: min(5.8565153734vw, 80px) min(2.9282576867vw, 40px);
    border-radius: min(1.1713030747vw, 16px);
    max-width: 1080px;
  }
}
.l-area_wrap .l-area_cap {
  margin-top: 2.5641025641vw;
  font-size: 2.8205128205vw;
}
@media (min-width: 1024px) {
  .l-area_wrap .l-area_cap {
    margin-top: min(1.4641288433vw, 20px);
    text-align: right;
    font-size: 0.875rem;
  }
}

.l-area_each + .l-area_each {
  margin-top: 12.8205128205vw;
}
@media (min-width: 1024px) {
  .l-area_each + .l-area_each {
    margin-top: min(5.8565153734vw, 80px);
  }
}

.l-area_title {
  text-align: center;
  color: #c73cc0;
  font-size: 5.641025641vw;
  line-height: 2.0681818182;
}
@media (min-width: 1024px) {
  .l-area_title {
    font-size: 1.75rem;
  }
}

.l-area_box {
  overflow: hidden;
}
.l-area_box .c-table-scroll {
  padding-top: 3.8461538462vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-scroll {
    padding-top: min(1.0980966325vw, 15px);
  }
}
.l-area_box .c-table-scroll_wrap {
  overflow-x: scroll;
  padding-bottom: 5.1282051282vw;
  border-radius: 5px;

  scrollbar-color: #d86fd8 #fff;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-scroll_wrap {
    overflow-x: auto;
    padding-bottom: 0;
  }
}
.l-area_box .c-table-common {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 256.4102564103vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common {
    min-width: min(73.2064421669vw, 1000px);
  }
}
.l-area_box .c-table-common tr {
  display: block;
  overflow: hidden;
  border: #d86fd8 1px solid;
  border-radius: 1.9230769231vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common tr {
    border-radius: min(1.0980966325vw, 15px);
  }
}
.l-area_box .c-table-common tr + tr {
  margin-top: 2.3076923077vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common tr + tr {
    margin-top: min(1.317715959vw, 18px);
  }
}
.l-area_box .c-table-common th {
  width: 51.2820512821vw;
  background: #d86fd8;
  color: #fff;
  font-size: 4.1025641026vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common th {
    min-width: min(14.494875549vw, 198px);
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.l-area_box .c-table-common td {
  padding: 2.5641025641vw 5.1282051282vw;
  background: #fff;
  color: #c73cc0;
  font-size: 3.5897435897vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common td {
    padding: min(1.4641288433vw, 20px);
    font-size: 1.125rem;
  }
}
.l-area_box .c-table-common td:first-of-type {
  min-width: 38.4615384615vw;
  text-align: center;
  font-size: 4.1025641026vw;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common td:first-of-type {
    min-width: min(10.980966325vw, 150px);
    font-size: 1.125rem;
  }
}
.l-area_box .c-table-common td:nth-of-type(2) {
  min-width: 76.9230769231vw;
  color: #595959;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common td:nth-of-type(2) {
    min-width: min(21.9619326501vw, 300px);
  }
}
.l-area_box .c-table-common td:nth-of-type(3) {
  width: 89.7435897436vw;
  color: #595959;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common td:nth-of-type(3) {
    min-width: min(25.6222547584vw, 350px);
  }
}
.l-area_box .c-table-common td + td {
  border-left: #d86fd8 1px solid;
}
.l-area_box .c-table-common a {
  color: #c73cc0;
}
@media (min-width: 1024px) {
  .l-area_box .c-table-common a:hover {
    text-decoration: none;
  }
}

.l-footer {
  position: relative;
  margin-top: 19.2307692308vw;
  padding-bottom: 25.641025641vw;
  background: url(../img/bg_footer_sm.jpg) no-repeat 0 bottom/contain;
  background-position: 0 50.5128205128vw;

  aspect-ratio: 780/3001;
}
@media (min-width: 1024px) {
  .l-footer {
    margin-top: min(10.980966325vw, 150px);
    padding-bottom: min(8.78477306vw, 120px);
    background: url(../img/bg_footer_lg.jpg) no-repeat 0 bottom/100% 100%;
    background-position: 0 min(23.2064421669vw, 317px);

    aspect-ratio: auto;
  }
}

.l-notice .l-notice_title {
  margin: auto;
  width: 36.1538461538vw;
}
@media (min-width: 1024px) {
  .l-notice .l-notice_title {
    width: min(18.2284040996vw, 249px);
  }
}
.l-notice .l-notice_title img {
  width: 100%;
}
.l-notice .l-notice-list {
  display: grid;
  margin-top: 2.5641025641vw;
  padding: 5.1282051282vw 3.8461538462vw;
  border: #ffd5f6 1px solid;
  border-radius: 2.5641025641vw;
  background: #fff;

  gap: 2.5641025641vw;
}
@media (min-width: 1024px) {
  .l-notice .l-notice-list {
    margin: min(1.4641288433vw, 20px) auto 0;
    padding: min(5.1244509517vw, 70px);
    border-radius: min(1.4641288433vw, 20px);
    max-width: 900px;

    gap: min(2.9282576867vw, 40px);
  }
}
.l-notice .l-notice-list_item {
  display: flex;
  align-items: flex-start;
  font-size: 2.5vw;
  font-weight: normal;

  gap: 2.5641025641vw;
}
@media (min-width: 1024px) {
  .l-notice .l-notice-list_item {
    font-size: 1rem;

    gap: min(1.4641288433vw, 20px);
  }
}
.l-notice .l-notice-list_item:before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-top: 1.0256410256vw;
  width: 5.641025641vw;
  background: url(../img/icon_onpu.svg) no-repeat 50%/contain;

  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .l-notice .l-notice-list_item:before {
    margin-top: min(0.3660322108vw, 5px);
    width: min(2.3426061493vw, 32px);
  }
}

.l-sns {
  margin-top: 17.9487179487vw;
}
@media (min-width: 1024px) {
  .l-sns {
    margin-top: min(10.2489019034vw, 140px);
  }
}
.l-sns .l-sns_title {
  margin: auto;
  width: 31.5384615385vw;
}
@media (min-width: 1024px) {
  .l-sns .l-sns_title {
    width: min(10.102489019vw, 138px);
  }
}
.l-sns .l-sns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 7.6923076923vw;

  gap: 5.1282051282vw;
}
@media (min-width: 1024px) {
  .l-sns .l-sns-list {
    margin-top: min(2.5622254758vw, 35px);

    gap: min(1.4641288433vw, 20px);
  }
}
.l-sns .l-sns-list_item {
  width: 12.8205128205vw;
}
@media (min-width: 1024px) {
  .l-sns .l-sns-list_item {
    width: min(3.6603221083vw, 50px);
  }
}

.l-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 19.2307692308vw;
}
@media (min-width: 1024px) {
  .l-footer-list {
    flex-wrap: nowrap;
    justify-content: center;
    margin: min(7.3206442167vw, 100px) auto 0;
    width: 90.0439238653vw;

    gap: min(1.4641288433vw, 20px);
  }
}
.l-footer-list .l-footer-list_item {
  width: 49%;
}
@media (min-width: 1024px) {
  .l-footer-list .l-footer-list_item {
    width: auto;
  }
}
.l-footer-list .l-footer-list_item img {
  width: 100%;
}

.l-footer_anime {
  overflow: hidden;
  margin-top: 6.4102564103vw;
  border-radius: 1.2820512821vw;
}
@media (min-width: 1024px) {
  .l-footer_anime {
    margin: min(1.8301610542vw, 25px) auto 0;
    border-radius: min(0.7320644217vw, 10px);
    width: min(29.2825768668vw, 400px);
  }
}

.l-footer_copyright {
  margin-top: 16.6666666667vw;
  text-align: center;
  color: #fff;
  font-size: 2.8205128205vw;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .l-footer_copyright {
    margin-top: min(4.7584187408vw, 65px);
    font-size: 0.875rem;
  }
}

.l-footer_top {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 19.2307692308vw;
  width: 26.1538461538vw;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1024px) {
  .l-footer_top {
    bottom: min(5.1244509517vw, 70px);
    width: min(15.4465592972vw, 211px);
  }
}
.l-footer_top.is-show {
  visibility: visible;
  opacity: 1;
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-lg {
  display: none !important;
  visibility: hidden;
}

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

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.fsl{font-size:1.125em;font-weight:normal;}
.fss{font-size:0.9em;font-weight:normal;}

/*
* main.css
*
*/
/*# sourceMappingURL=main.css.map */