@charset "UTF-8";
.c_pagination .page,
.c_pagination .nextpostslink,
.c_pagination .previouspostslink,
.c_pagination span,
.c_pagination a,
.c_pagination .last,
.c_pagination .first, .footer_menu_item {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c_pagination .page,
  .c_pagination .nextpostslink,
  .c_pagination .previouspostslink,
  .c_pagination span,
  .c_pagination a,
  .c_pagination .last,
  .c_pagination .first, .footer_menu_item {
    font-size: 0.875rem;
  }
}

.footer_desc .copyright {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .footer_desc .copyright {
    font-size: 0.9375rem;
  }
}

.c_totop {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c_totop {
    font-size: 1.25rem;
  }
}

/*!
foundation > base
------------------------------
*/
html {
  overflow-y: scroll;
}

body {
  line-height: 2;
  font-size: 0.875rem;
  font-weight: 500;
  color: #404040;
  font-family: "071MKSD", "Noto Serif JP", "国鉄っぽいフォント（正体）", "ヒラギノUD角ゴ Std", "ヒラギノ角ゴ ProN", "ヒラギノ明朝 Std", "osaka";
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

#wrapper {
  overflow: hidden;
}

main {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 87px;
  }
}

.full {
  width: 100%;
}

img {
  max-width: 100%;
}

:where(a, .h_opacity) {
  cursor: pointer;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 768px) {
  :where(a:hover, .h_opacity:hover) {
    opacity: 0.7;
  }
}
.h_zoom {
  overflow: hidden;
  opacity: 1;
}
.h_zoom_img {
  overflow: hidden;
}
.h_zoom_img img {
  transition: transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .h_zoom:hover .h_zoom_img img {
    transform: scale(1.1);
  }
}

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

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

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.inview {
  visibility: hidden;
  opacity: 0;
}

.fadeUp,
.fadeIn {
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.fadeUp {
  animation-name: ani_fadeup;
}

.fadeIn {
  animation-name: ani_fadein;
}

@keyframes ani_fadeup {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes ani_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*!
component > btn
------------------------------
*/
.c_totop {
  position: fixed;
  left: 20px;
  z-index: 11;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.65);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transform: translateY(150px);
  font-weight: 700;
  color: #4E3E3C;
  text-transform: uppercase;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .c_totop {
    left: 54px;
    bottom: 30px;
    width: 74px;
    height: 74px;
    padding-top: 9px;
    transition: 300ms;
  }
}
@media screen and (min-width: 768px) {
  .c_totop:hover {
    background-color: #414d7a;
    color: #FFF;
    opacity: 1 !important;
  }
  .c_totop:hover::after {
    border-color: #FFF;
  }
}
.c_totop::after {
  content: "";
  flex-shrink: 0;
  height: 15px;
  width: 15px;
  border-width: 0 3px 3px 0;
  border-color: #864840;
  border-style: solid;
  transform: rotate(-135deg);
  transition: background-color 0.5s ease;
  transform-origin: 50% 60%;
  top: 5px;
  position: relative;
  transition: 0.5s;
}

.footer {
  background-color: #000000;
  color: #FFF;
  padding: 36px 0 29px;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 49px clamp(
      0rem,
      5vw + -3.75rem,
      0.75rem
  ) 49px 0;
  }
}
.footer_content {
  width: 100%;
  max-width: 1740px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 27px;
}
@media screen and (min-width: 768px) {
  .footer_content {
    display: flex;
    justify-content: center;
  }
}
.footer_logo {
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .footer_logo {
    max-width: clamp(
      17.5rem,
      39.453125vw + -1.4375rem,
      23.8125rem
  );
  }
}
.footer_desc {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .footer_desc {
    padding-top: clamp(
      0rem,
      2.5vw + -2.25rem,
      0.25rem
  );
  }
}
.footer_desc .copyright {
  font-weight: 400;
  line-height: 1.3333333333;
}
.footer_menu {
  display: flex;
  flex-wrap: wrap;
}
.footer_menu_item {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  font-weight: 400;
}
.footer_menu_item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background-color: #FFF;
  right: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
}
.footer_menu_item:last-child::after {
  display: none;
}

/*!
component > gnavi
------------------------------
*/
.c_toggle {
  position: fixed;
  right: 10px;
  width: 48px;
  height: 48px;
  z-index: 20;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c_toggle {
    display: none;
  }
}
.c_toggle span {
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.c_toggle::after, .c_toggle::before,
.c_toggle span {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #FFF;
  transition: 0.5s;
}
.c_toggle::after {
  bottom: calc(50% - 6px);
  left: 50%;
  transform: translateX(-50%);
}
.c_toggle::before {
  top: calc(50% - 8px);
  left: 50%;
  transform: translateX(-50%);
}
.c_toggle.active span {
  opacity: 0;
}
.c_toggle.active::before {
  transform: translate(-50%, 6px) rotate(45deg);
}
.c_toggle.active::after {
  transform: translate(-50%, -6px) rotate(-45deg);
}

.c_gnavi {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  background: #000;
}
@media screen and (min-width: 768px) {
  .c_gnavi {
    opacity: 1;
    visibility: visible;
    background: transparent;
  }
}
.c_gnavi.active {
  opacity: 1;
  visibility: visible;
}

.c_menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c_menu {
    align-items: flex-start;
    gap: 0;
    flex-direction: row;
  }
}
.c_menu .menu_item {
  position: relative;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c_menu .menu_item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: clamp(
      0.9375rem,
      1.1075949367vw + 0.4058544304rem,
      1.375rem
  );
    top: calc(50% - 2px);
    right: 0;
    background-color: #FFF;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .c_menu .menu_item:first-child::before {
    content: "";
    position: absolute;
    width: 2px;
    height: clamp(
      0.9375rem,
      1.1075949367vw + 0.4058544304rem,
      1.375rem
  );
    top: calc(50% - 2px);
    left: 0;
    background-color: #FFF;
    transform: translateY(-50%);
  }
}
.c_menu .menu_item_link {
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-size: 1.5rem;
  font-family: "Bebas Neue", serif;
}
@media screen and (min-width: 768px) {
  .c_menu .menu_item_link {
    font-size: clamp(
      1rem,
      0.9259259259vw + 0.5555555556rem,
      1.25rem
  );
    padding: 0 clamp(
      0.625rem,
      5.0595238095vw + -1.8035714286rem,
      2.75rem
  );
  }
}

/** -- ▷ header -- */
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  padding: 16px 10px;
  transition: 0.5s;
  background-color: #000;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 21px clamp(
      0.625rem,
      7.2916666667vw + -2.875rem,
      3.6875rem
  ) 20px clamp(
      1.25rem,
      8.630952381vw + -2.8928571429rem,
      4.875rem
  );
    height: 87px;
  }
}
@media screen and (min-width: 768px) {
  .header.active {
    height: 70px;
  }
}
.header_logo {
  width: 100%;
  max-width: 240px;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .header_logo {
    max-width: clamp(
      17.5rem,
      28.0927835052vw + -0.4793814433rem,
      31.125rem
  );
  }
}
.header_logo a {
  display: flex;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
}
.header_content {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  padding: 100px 20px 80px;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .header_content {
    overflow: unset;
    position: relative;
    width: calc(100% - clamp(
      8.125rem,
      6.1298076923vw + 5.1826923077rem,
      11.3125rem
  ));
    height: 100%;
    padding: 0;
    transform: translateY(3px);
  }
}
.header_menu {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .header_menu {
    margin-top: 0;
  }
}

/*!
component > Other
------------------------------

- loadpage
------------------------------
*/
.is_loadding .c_loading {
  opacity: 1;
  pointer-events: all;
}

.c_loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
.c_loading__content {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.c_loading__item {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}
.c_loading__item:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear;
}
.c_loading__item:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear;
}

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/*!
- Cookiewrap
------------------------------
*/
.h_zoom {
  opacity: 1;
}
.h_zoom:hover .h_zoom__img img {
  scale: 1.05;
}
.h_zoom__img {
  overflow: hidden;
}
.h_zoom__img img {
  transition: 0.5s;
}

[data-delay="0.1s"] {
  transition-delay: 0.1s;
}

[data-delay="0.2s"] {
  transition-delay: 0.2s;
}

[data-delay="0.3s"] {
  transition-delay: 0.3s;
}

[data-delay="0.4s"] {
  transition-delay: 0.4s;
}

[data-delay="0.5s"] {
  transition-delay: 0.5s;
}

[data-delay="0.6s"] {
  transition-delay: 0.6s;
}

[data-delay="0.7s"] {
  transition-delay: 0.7s;
}

[data-delay="0.8s"] {
  transition-delay: 0.8s;
}

[data-delay="0.9s"] {
  transition-delay: 0.9s;
}

[data-delay="1s"] {
  transition-delay: 1s;
}

[data-delay="1.5s"] {
  transition-delay: 1.5s;
}

.js_inview[data-duration="1s"] {
  transition-duration: 1s;
}

.js_inview[data-duration="1.5s"] {
  transition-duration: 1.5s;
}

.js_inview[data-duration="2s"] {
  transition-duration: 2s;
}

.js_inview {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  transition-duration: 0.8s;
}

.fade {
  opacity: 0;
}

.fadeup {
  transform: translate3d(0, 50px, 0);
}

.fadedown {
  transform: translate3d(0, -50px, 0);
}

.faderight {
  transform: translate3d(50px, 0, 0);
}

.fadeleft {
  transform: translate3d(-50px, 0, 0);
}

.is_show.js_inview {
  opacity: 1;
  transform: none;
}

/*!
component > breadcrumb
------------------------------
*/
.wp-pagenavi {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.c_pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
.c_pagination .pages {
  display: none;
}
.c_pagination .extend {
  pointer-events: none;
  position: relative;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c_pagination .extend {
    font-size: 1.125rem;
  }
}
.c_pagination a {
  cursor: pointer;
}
.c_pagination .page,
.c_pagination .nextpostslink,
.c_pagination .previouspostslink,
.c_pagination span,
.c_pagination a,
.c_pagination .last,
.c_pagination .first {
  min-width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 5px;
  color: #1c2615;
  border: solid 1px #f3d404;
  background-color: #f3d404;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c_pagination .page,
  .c_pagination .nextpostslink,
  .c_pagination .previouspostslink,
  .c_pagination span,
  .c_pagination a,
  .c_pagination .last,
  .c_pagination .first {
    min-width: 32px;
    height: 32px;
    transition: all 0.5s;
    margin: 10px 6px;
  }
  .c_pagination .page:hover,
  .c_pagination .nextpostslink:hover,
  .c_pagination .previouspostslink:hover,
  .c_pagination span:hover,
  .c_pagination a:hover,
  .c_pagination .last:hover,
  .c_pagination .first:hover {
    opacity: 0.7;
  }
}
.c_pagination .nextpostslink,
.c_pagination .previouspostslink {
  position: relative;
  color: transparent;
  cursor: pointer;
  color: #1c2615;
  border: solid 1px #f3d404;
  background-color: #f3d404;
}
.c_pagination .nextpostslink::after,
.c_pagination .previouspostslink::after {
  position: absolute;
  content: ">";
  left: 50%;
  top: calc(50% - 1px);
  transform: translate(-50%, -50%);
}
.c_pagination .nextpostslink {
  margin-left: 5px;
}
.c_pagination .previouspostslink {
  transform: scaleX(-1);
  margin-right: 5px;
}
.c_pagination span.nextpostslink,
.c_pagination span.previouspostslink {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c_pagination .last,
  .c_pagination .first {
    transition: all 0.5s;
  }
  .c_pagination .last:hover:hover,
  .c_pagination .first:hover:hover {
    opacity: 0.7;
  }
}
.c_pagination .current {
  background: #1c2615;
  border: solid 1px #1c2615;
  color: #fff;
  pointer-events: none;
}

.scrollable {
  position: relative;
  overflow: auto;
}

.scrollable_inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.3s linear;
}

.scrollable_inner.is_displayed .scrollable_icon {
  opacity: 1;
}

.scrollable_icon {
  width: 120px;
  height: 80px;
  padding: 20px 10px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.scrollable_icon_hand {
  position: relative;
}

.scrollable_icon_hand::after,
.scrollable_icon_hand::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
}

.scrollable_icon_hand::before {
  width: 34px;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  background-image: url(../../assets/images/common/icon_arrow_scroll.svg);
  position: absolute;
  top: -12px;
  left: 26px;
}

.scrollable_icon_hand::after {
  width: 40px;
  height: 40px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-image: url(../../assets/images/common/icon_hand.svg);
}

.scrollable_icon_hand.is_show::after {
  animation: kf_scroll_appear 1.2s linear;
  animation-iteration-count: 2;
}

.scrollable_txt {
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.4;
}

@keyframes kf_scroll_appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100%, 50% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
/*!
component > breadcrumb
------------------------------
*/
/*!
layout > container
------------------------------
*/
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 1139px;
  }
}
/*!
page > common > common
------------------------------
*/
/*# sourceMappingURL=common.css.map */
