@charset "UTF-8";
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
:root {
  --color-button-border: #b9b9b9;
  --color-link-text: #000;
  --color-link-text-white: #fff;
  --color-link-text-essential: #ff0000;
  --color-link-text-primary: #0000ff;
  --color-link-text-secondary: #333333;
  --color-link-text-tertiary: #666666;
  --color-button-text: #000;
  --color-button-text-white: #fff;
  --color-button-text-essential: #ff0000;
  --color-button-text-primary: #0000ff;
  --color-button-text-secondary: #333333;
  --color-button-text-tertiary: #666666;
  --color-button-bg: #000;
  --color-button-bg-white: #fff;
  --color-button-bg-essential: #ff0000;
  --color-button-bg-primary: #0000ff;
  --color-button-bg-secondary: #333333;
  --color-button-bg-tertiary: #666666;
  /* hover時の背景色 */
  --color-button-bg-hover: #fff;
  --color-button-bg-white-hover: #000;
  --color-button-bg-essential-hover: #ff3333;
  --color-button-bg-primary-hover: #3333ff;
  --color-button-bg-secondary-hover: #666666;
  --color-button-bg-tertiary-hover: #999999;
  /* hover時のテキスト色 */
  --color-button-text-hover: #fff;
  --color-button-text-white-hover: #000;
  --color-button-text-essential-hover: #ff0000;
  --color-button-text-primary-hover: #0000ff;
  --color-button-text-secondary-hover: #333333;
  --color-button-text-tertiary-hover: #666666;
}

@keyframes blink {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/*
@mixin button-size($size: 'medium') {
  @include button;
  @if ($size == 'medium') {
    font-weight: bold;
    font-size: 12px;
    padding: 11px 40px 9px;
    @include tb {
      font-size: 14px;
    }
  } @else if($size == 'large') {
    font-weight: bold;
    font-size: 14px;
    padding: 16px 50px 14px;
    @include tb {
      font-size: 16px;
      padding: 11px 50px 9px;
    }
  }
}
*/
/*
@mixin arrow-button-align($dir: 'right', $type: 'right') {
  @if ($dir == 'right') {
    padding-right: 20px;
    padding-left: 0px;
    @if ($type == 'right') {
      @media (hover: hover) {
        &:hover {
          &::after {
            right: -2px;
          }
        }
      }
    } @else if($type == 'down') {
      padding-right: 18px;
    }

    @include tb {
      padding-right: 20px;
      padding-left: 0px;
      @if ($type == 'down') {
        padding-right: 18px;
      }
    }
    &::after {
      transition: all 0.15s;
      content: '';
      margin: auto;
      position: absolute;
      left: auto;
      top: 0px;
      bottom: 0;
      right: 0px;
      width: 10px;
      height: 10px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      @if ($type == 'right') {
        transform: rotate(45deg);
      } @else if($type == 'down') {
        transform: rotate(135deg);
        top: -3px;
      }
    }
  } @else if($dir == 'left') {
    @if ($type == 'right') {
      @media (hover: hover) {
        &:hover {
          &::after {
            right: auto;
            left: -2px;
          }
        }
      }
    } @else if($type == 'down') {
    }
    padding-right: 0px;
    padding-left: 15px;
    @include tb {
      padding-right: 0px;
      padding-left: 15px;
    }
    &::after {
      transition: all 0.15s;
      content: '';
      margin: auto;
      position: absolute;
      top: 0px;
      bottom: 0;
      right: auto;
      left: 0px;
      width: 8px;
      height: 8px;
      border-top: 2px solid $primary-color;
      border-right: 2px solid $primary-color;
      @if ($type == 'left') {
        transform: rotate(45deg);
      } @else if($type == 'right') {
        transform: rotate(225deg);
      }
    }
  }
}

@mixin arrow-button($dir: 'right', $type: 'right') {
  @include anime-hover-blink();
  display: inline-block;
  color: #fff;
  position: relative;
  text-align: left;
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
  @include tb {
    font-size: 16px;
  }
  @include arrow-button-align($dir, $type);
  &.left {
    @include arrow-button-align('left', $type);
  }
  &.accent {
    color: $accent-color;
    &::after {
      border-color: $accent-color;
    }
  }
  &.primary {
    color: $primary-color;
    &::after {
      border-color: $primary-color;
    }
  }
  &.secondary {
    color: $secondary-color;
    &::after {
      border-color: $secondary-color;
    }
  }
}
*/
:root {
  --color-label-text: #000;
  --color-label-text-white: #fff;
  --color-tag-bg: #000;
  --color-tag-bg-white: #fff;
  --color-tag-bg-essential: #ff0000;
  --color-tag-bg-primary: #0000ff;
  --color-tag-bg-secondary: #333333;
  --color-tag-bg-tertiary: #666666;
  --color-tag-text: #fff;
}

/*


@mixin label-icon-skin($skin) {
  background-size: 100%;
  @if ($skin == 'zone1') {
    background-image: url("data:image/svg+xml,%3csvg width='36' height='18' viewBox='0 0 36 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23E4F4FD' stroke='%23323232' stroke-width='2.5' d='M1.25 1.25h33.5v15.5H1.25z'/%3e%3c/svg%3e");
    width: 30px;
    height: 15px;
    @include pc {
      width: 36px;
      height: 18px;
    }
  } @else if ($skin == 'zone2') {
    background-image: url("data:image/svg+xml,%3csvg width='36' height='18' viewBox='0 0 36 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='white' stroke='%23323232' stroke-width='2.5' d='M1.25 1.25h33.5v15.5H1.25z'/%3e%3c/svg%3e");
    width: 30px;
    height: 15px;
    @include pc {
      width: 36px;
      height: 18px;
    }
  }
}
@mixin icon-label($skin) {
  display: inline-block;
  color: $text-color;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 14px;
  @include pc {
    font-size: 16px;
  }
  &::before {
    @include label-icon-skin($skin);
    content: '';
    display: inline-block;
    vertical-align: -3px;
    margin-right: 10px;
  }
  &.primary {
    color: $primary-color;
    &::after {
      border-color: $primary-color;
    }
  }
  &.secondary {
    color: $secondary-color;
    &::after {
      border-color: $secondary-color;
    }
  }
}
  */
/*
@mixin label-contact($margin-right-sp: 14px, $margin-right-tb: 14px, $margin-right-pc: 16px) {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: $text-color;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 30px;
  @include pc {
    font-size: 40px;
  }
  &::before {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23 20H3c-1.654 0-3-1.346-3-3V3c0-1.654 1.346-3 3-3h20c1.654 0 3 1.346 3 3v14c0 1.654-1.346 3-3 3ZM3 2a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z' fill='%23323232'/%3e%3cpath d='M13 11.748c-.464 0-.928-.094-1.306-.284L.552 5.894l.894-1.788 11.14 5.57c.192.096.632.096.824 0l11.14-5.57.894 1.788-11.14 5.57c-.378.19-.842.284-1.306.284H13Z' fill='%23323232'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 21px;
    height: 16px;
    margin-right: $margin-right-sp;
    @include tb {
      margin-right: $margin-right-tb;
    }
    @include pc {
      width: 26px;
      height: 20px;
      margin-right: $margin-right-pc;
    }
  }
}
*/
.text-link {
  cursor: pointer;
  text-decoration: underline;
}
.text-link--essential {
  color: var(--color-link-text-essential);
}
.text-link--primary {
  color: var(--color-link-text-primary);
}
.text-link--secondary {
  color: var(--color-link-text-secondary);
}
.text-link--tertiary {
  color: var(--color-link-text-tertiary);
}

.pill-button {
  font-weight: 400;
  color: #000;
  border: 1px solid #000;
  border-radius: 50vh;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
  padding: 5px 43px;
}
.pill-button--xxsmall {
  font-size: 0.625rem;
  padding: 8px 43px;
}
.pill-button--xsmall {
  font-size: 0.75rem;
  padding: 9px 40px;
}
.pill-button--small {
  font-size: 0.875rem;
  padding: 10px 40px;
}
.pill-button--medium {
  font-size: 1.125rem;
  padding: 12px 36px;
}
.pill-button--large {
  font-size: 1rem;
  padding: 6px 32px;
}

.btn-google-map {
  font-size: 0.625rem;
  font-weight: 300;
  white-space: nowrap;
  color: #848484;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px 4px;
  background: #FFFFFF;
  border: 1px solid #BFBFBF;
  border-radius: 50vh;
  padding: 4px 13px 4px 10px;
  transition: all 0.3s;
}
.btn-google-map::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='14' height='17' viewBox='0 0 14 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.057 7.525c0 4.72-6.07 8.767-6.07 8.767S.918 12.244.918 7.524a6.07 6.07 0 0 1 12.139 0Z' stroke='%23B3B3B3' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M6.987 9.548a2.023 2.023 0 1 0 0-4.047 2.023 2.023 0 0 0 0 4.047Z' stroke='%23B3B3B3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 14px;
  height: 17px;
}

.logo_container {
  position: relative;
  will-change: transform opacity;
  z-index: 1;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transform-origin: center center;
  transform: scale(0.45);
  left: -28px;
  top: 0px;
}
.logo_container a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo_container .logo {
  display: block;
  width: 101%;
  height: 0px;
}
.logo_container span#h1_logo {
  width: 102px;
  height: 102px;
  display: block;
  margin: auto;
}
.logo_container canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* header */
.header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  z-index: 10;
}
.header.visible {
  transform: translateY(0%);
  transition: all 0.3s ease-in-out;
}
.header.hidden {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.header__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  z-index: 1;
}
.header .logo_container {
  padding-left: 44px;
}
.header.is-expanded .header__nav__inner {
  transition: all 0.3s;
  left: -100%;
}
.header.is-expanded .header__menubtn span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.header.is-expanded .header__menubtn span:nth-of-type(2) {
  opacity: 0;
}
.header.is-expanded .header__menubtn span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.header__nav {
  width: 100%;
  height: 100dvh;
  position: absolute;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__nav__split {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 19px 0 24px;
}
.header__nav__split::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background-color: #A5A5A5;
}
.header__nav .nav__label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  margin: 0 0 1px 0;
}
.header__nav .header__nav__links li {
  display: block;
}
.header__nav .header__nav__inner {
  background: white;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  position: relative;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  overflow-y: auto;
  padding: 116px 32px 120px;
}
.header__nav ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
}
.header__nav li {
  display: inline-block;
  text-align: left;
  margin: 4px 0;
}
.header__nav li.lang {
  font-size: 0.889375rem;
  position: absolute;
  right: 25px;
  top: 90px;
  margin: 0px 0px;
}
.header__nav li.lang a {
  font-size: 0.889375rem;
}
.header__nav li.lang .lang__slash {
  color: #848484;
  margin: 2px 0px 0 4px;
}
.header__nav li.lang .current {
  color: #000;
  opacity: 1;
  font-weight: 500 !important;
}
.header__nav li.lang .current span {
  color: #000 !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}
.header__nav li.lang span::after {
  display: none;
}
.header__nav li a {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  will-change: transform opacity;
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding: 0px 0;
}
.header__nav li a.current {
  color: #000;
  opacity: 1;
}
.header__nav li a.current .color-bar.bar6 {
  width: 100%;
}
.header__nav li a.current .color-bar:not(.bar6) {
  width: 0;
}
.header__nav li a.link-external {
  font-size: 1.625rem;
  display: inline-flex;
  align-items: center;
  gap: 8px 8px;
}
.header__nav li a.link-external::after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 5h9v1H0V5ZM2 7h9v1H2V7ZM0 0h9v1H0V0Z' fill='%23B5B5B5'/%3e%3cpath d='M1 0v6H0V0h1ZM9 0v6H8V0h1ZM11 2v6h-1V2h1Z' fill='%23B5B5B5'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 11px;
  height: 8px;
}
.header__nav li a .color-bar {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}
.header__nav li a .color-bar.bar1 {
  transition-delay: 0s;
}
.header__nav li a .color-bar.bar2 {
  transition-delay: 0.05s;
}
.header__nav li a .color-bar.bar3 {
  transition-delay: 0.1s;
}
.header__nav li a .color-bar.bar4 {
  transition-delay: 0.15s;
}
.header__nav li a .color-bar.bar5 {
  transition-delay: 0.2s;
}
.header__nav li a .color-bar.bar6 {
  transition-delay: 0.3s;
}
.header__nav li a:not(:hover) .color-bar {
  transition-delay: 0s;
  transition-duration: 0.1s;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  gap: 43px 0px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 58px;
}
.header__contact__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 11px 0px;
}
.header__contact-title {
  font-size: 0.875rem;
  font-weight: 300;
  color: #000;
  text-decoration: none;
}
.header__contact-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
  text-decoration: underline;
}
.header__contact-link--small {
  font-size: 0.75rem;
}
.header__menubtn {
  will-change: transform opacity;
  z-index: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 36px;
  height: 36px;
  margin-right: 18px;
}
.header__menubtn span {
  transition: transform 0.3s, opacity 0.3s;
  background: #000;
  border-radius: 0px;
  width: 100%;
  height: 1px;
  margin: 4.5px 0;
  transform: scaleY(0.5);
}

/* footer */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0 20px;
}
.footer__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .nav__label {
  font-size: 0.625rem;
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  margin: 0 0 5px 0;
}
.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  gap: 0px 46px;
  margin-bottom: 55px;
  padding: 0 0px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px 0;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
}
.footer__nav li {
  display: inline-block;
  margin-top: 0px;
}
.footer__nav li a {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.footer__nav li .link-label {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.5rem;
  margin-top: -0.1em;
}
.footer__nav__split {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 19px 0 18px;
}
.footer__nav__split::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #A5A5A5;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: auto;
  gap: 34px 0px;
  margin-top: 6px;
}
.footer__contact__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__contact__item h5 {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 300;
  color: #000;
  margin-bottom: 11px;
}
.footer__contact__item p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 8px;
}
.footer__contact__item a.footer__contact__link {
  will-change: transform opacity;
  font-size: 0.75rem;
  font-weight: 300;
  color: #444;
  text-decoration: underline;
  margin-bottom: 8px;
}
.footer__contact__item span.address-text {
  font-size: 0.6875rem;
  color: #444;
}
.footer__foot {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.footer__foot__item {
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0px 0;
}
.footer__foot__item a {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  color: #444;
  text-decoration: underline;
  will-change: transform opacity;
}
.footer__foot__item__lang {
  font-size: 0.889375rem;
  margin: 10px 0px;
  display: block;
}
.footer__foot__item__lang a {
  font-size: 0.889375rem;
  text-decoration: none;
}
.footer__foot__item__lang .lang__slash {
  color: #848484;
  margin: 2px 3px 0 4px;
}
.footer__foot__item__lang .current {
  color: #000;
  opacity: 1;
  font-weight: 500 !important;
  text-decoration: underline;
}
.footer__foot__item__lang span::after {
  display: none;
}
.footer .copyright {
  color: #000;
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  margin: 22px auto 0;
}

#links.bounce {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
a {
  font-size: 0.875rem;
  will-change: transform opacity;
  display: inline-block;
  font-weight: 300;
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.current {
  text-decoration: underline;
}
a.link-external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
a.link-external::after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 5h9v1H0V5ZM2 7h9v1H2V7ZM0 0h9v1H0V0Z' fill='%23B5B5B5'/%3e%3cpath d='M1 0v6H0V0h1ZM9 0v6H8V0h1ZM11 2v6h-1V2h1Z' fill='%23B5B5B5'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 11px;
  height: 8px;
}
a.link-external--large {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
a.link-external--large::after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 5h9v1H0V5ZM2 7h9v1H2V7ZM0 0h9v1H0V0Z' fill='%23B5B5B5'/%3e%3cpath d='M1 0v6H0V0h1ZM9 0v6H8V0h1ZM11 2v6h-1V2h1Z' fill='%23B5B5B5'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 14px;
  height: 11px;
}
@media (min-width: 640px) {
  .pill-button {
    font-size: 1rem;
  }
  .pill-button {
    padding: 8px 43px;
  }
  .pill-button--xxsmall {
    font-size: 0.625rem;
  }
  .pill-button--xsmall {
    font-size: 0.75rem;
  }
  .pill-button--small {
    font-size: 0.875rem;
  }
  .pill-button--medium {
    font-size: 1.125rem;
  }
  .pill-button--large {
    font-size: 1rem;
  }
  .pill-button--large {
    padding: 13px 36px;
  }
  .btn-google-map {
    font-size: 0.625rem;
  }
  .logo_container {
    transform: scale(0.5);
    top: 9px;
    left: -22px;
  }
  .header__head {
    width: auto;
  }
  .header .logo_container {
    padding-left: 42px;
    margin-top: -12px;
  }
  .header__nav {
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    left: 0;
    top: 0;
    padding: 16px 0 0 0;
  }
  .header__nav__split {
    justify-content: center;
    margin: 0px 5px;
  }
  .header__nav__split::before {
    width: 1px;
    height: 15px;
  }
  .header__nav .nav__label {
    font-size: 0.8125rem;
  }
  .header__nav .nav__label {
    margin: 3px 0 4px 0;
  }
  .header__nav .header__nav__links li {
    display: none;
  }
  .header__nav .header__nav__links li:nth-of-type(1) {
    display: block;
  }
  .header__nav .header__nav__inner {
    background: rgba(255, 255, 255, 0);
    transition: all 0s;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0px;
    padding: 0 0px 0 0;
    width: auto;
    height: auto;
    overflow-y: visible;
    right: 0;
  }
  .header__nav ul {
    flex-direction: row;
    align-items: center;
  }
  .header__nav li {
    text-align: center;
    margin: 0 11.4px;
  }
  .header__nav li.lang {
    font-size: 0.889375rem;
  }
  .header__nav li.lang a {
    font-size: 0.889375rem;
  }
  .header__nav li.lang {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 0px 0 0px;
    padding: 0 24px 0 24px;
  }
  .header__nav li a {
    font-size: 0.8125rem;
  }
  .header__nav li a {
    color: #848484;
    padding: 4px 2px;
  }
  .header__nav li a.link-external {
    font-size: 1.0625rem;
  }
  .header__nav li a .color-bar {
    bottom: -1px;
  }
  .header__contact {
    display: none;
  }
  .header__contact-title {
    font-size: 0.875rem;
  }
  .header__contact-link {
    font-size: 0.875rem;
  }
  .header__contact-link--small {
    font-size: 0.75rem;
  }
  .header__menubtn {
    display: none;
    margin-right: 0px;
  }
  .footer {
    padding: 15px 0 20px;
  }
  .footer .nav__label {
    font-size: 0.625rem;
  }
  .footer .nav__label {
    margin: 4px 0 4px 0;
  }
  .footer__content {
    margin-bottom: 65px;
    gap: 0px 6.2%;
  }
  .footer__left {
    flex-direction: row;
    gap: 0px 55px;
    padding-left: 16px;
  }
  .footer__nav li .link-label {
    font-size: 0.5rem;
  }
  .footer__nav__split {
    display: none;
  }
  .footer__nav__split::before {
    width: 1px;
    height: 15px;
  }
  .footer__contact {
    gap: 0px 12%;
    flex-direction: row;
    margin: 9px 15px 0 0;
  }
  .footer__contact__item h5 {
    font-size: 0.875rem;
  }
  .footer__contact__item h5 {
    margin-bottom: 13px;
  }
  .footer__contact__item p {
    font-size: 0.75rem;
  }
  .footer__contact__item a.footer__contact__link {
    font-size: 0.75rem;
  }
  .footer__contact__item span.address-text {
    font-size: 0.6875rem;
  }
  .footer__foot {
    flex-direction: row;
  }
  .footer__foot__item {
    gap: 0px 9.8%;
    justify-content: flex-start;
  }
  .footer__foot__item a {
    font-size: 0.625rem;
  }
  .footer__foot__item__lang {
    font-size: 0.889375rem;
  }
  .footer__foot__item__lang a {
    font-size: 0.889375rem;
  }
  .footer__foot__item__lang {
    margin: 0 0px 0 57px;
    display: none;
  }
  .footer .copyright {
    font-size: 0.625rem;
  }
  .footer .copyright {
    margin: 0 0 0 auto;
  }
  a {
    font-size: 0.875rem;
  }
  a.link-external--large {
    font-size: 1rem;
  }
}
@media (min-width: 1100px) {
  .pill-button {
    font-size: 1rem;
  }
  .pill-button--xxsmall {
    font-size: 0.625rem;
  }
  .pill-button--xsmall {
    font-size: 0.75rem;
  }
  .pill-button--small {
    font-size: 0.875rem;
  }
  .pill-button--medium {
    font-size: 1.125rem;
  }
  .pill-button--large {
    font-size: 1.25rem;
  }
  .btn-google-map {
    font-size: 0.625rem;
  }
  .logo_container {
    transform: scale(0.45);
    top: 0px;
    left: -28px;
  }
  .header__inner {
    padding-left: 6px;
    padding-right: 6px;
  }
  .header .logo_container {
    margin-top: 0px;
    padding-left: 0;
  }
  .header__nav .nav__label {
    font-size: 0.8125rem;
  }
  .header__nav li.lang {
    font-size: 0.889375rem;
  }
  .header__nav li.lang a {
    font-size: 0.889375rem;
  }
  .header__nav li a {
    font-size: 0.8125rem;
  }
  .header__nav li a.link-external {
    font-size: 0.8125rem;
  }
  .header__contact-title {
    font-size: 0.875rem;
  }
  .header__contact-link {
    font-size: 0.875rem;
  }
  .header__contact-link--small {
    font-size: 0.75rem;
  }
  .footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer .nav__label {
    font-size: 0.625rem;
  }
  .footer__left {
    gap: 0px 75px;
    padding-left: 16px;
  }
  .footer__nav li .link-label {
    font-size: 0.5rem;
  }
  .footer__contact {
    gap: 0px 13.4%;
    flex-direction: row;
    margin: 9px 47px 0 0;
  }
  .footer__contact__item h5 {
    font-size: 0.875rem;
  }
  .footer__contact__item p {
    font-size: 0.75rem;
  }
  .footer__contact__item a.footer__contact__link {
    font-size: 0.75rem;
  }
  .footer__contact__item span.address-text {
    font-size: 0.6875rem;
  }
  .footer__foot__item a {
    font-size: 0.625rem;
  }
  .footer__foot__item__lang {
    font-size: 0.889375rem;
  }
  .footer__foot__item__lang a {
    font-size: 0.889375rem;
  }
  .footer .copyright {
    font-size: 0.625rem;
  }
  a {
    font-size: 0.875rem;
  }
  a.link-external--large {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .text-link:hover {
    text-decoration: underline;
  }
  .pill-button:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
  }
  .btn-google-map:hover {
    background: #000;
    color: #fff;
    border-color: #000;
  }
  .logo_container:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .header__nav li a:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .header__nav li a:hover {
    color: #000;
  }
  .header__nav li a:hover .color-bar {
    width: 100%;
  }
  .header__nav li a:hover span::after {
    transform: scale(1, 1.1);
  }
  .header__menubtn:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .footer__contact__item a.footer__contact__link:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .footer__foot__item a:hover {
    animation: blinking 0.5s ease 0s both;
  }
  a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}