@charset "UTF-8";
/* panelリンクのホバーエフェクト */
.panel__link,
.panel a,
.grid3__item > a {
  /* ホバーアウト時は即座に消える */
}
.panel__link:not(:hover) .panel__img .color-bar,
.panel a:not(:hover) .panel__img .color-bar,
.grid3__item > a:not(:hover) .panel__img .color-bar {
  width: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
}

@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;
}

.news-detail {
  padding-top: 124px;
}
.news-detail__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
.news-detail__hero {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.news-detail__hero__inner {
  width: 100%;
  height: auto;
}
.news-detail__hero__img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.news-detail__hero__img img {
  width: 100%;
  height: auto;
}
.news-detail__hero__content {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 42px;
}
.news-detail__hero__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: #D9D9D9;
}
.news-detail__hero__ttl {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 18px;
}
.news-detail__hero__date {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #848484;
}
.news-detail .description {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}
.news-detail .description__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.news-detail .description__ttl p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 32px;
}
.news-detail .description__text p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 32px;
}
.news-detail .description__text p a {
  text-decoration: underline;
}
.news-detail .article {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}
.news-detail .article__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.news-detail .article__img {
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-bottom: 30px;
}
.news-detail .article__img img {
  width: 100%;
  height: auto;
}
.news-detail .article__content {
  width: 100%;
  height: auto;
}
.news-detail .article__ttl {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 32px;
}
.news-detail .article__text {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 32px;
}
.news-detail .article__text a {
  text-decoration: underline;
}
.news-detail__foot {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@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;
  }
  .news-detail {
    padding-bottom: 200px;
  }
  .news-detail {
    padding-top: 145px;
  }
  .news-detail__hero {
    margin-bottom: 80px;
  }
  .news-detail__hero__img {
    margin-bottom: 32px;
  }
  .news-detail__hero__ttl {
    font-size: 1.25rem;
  }
  .news-detail__hero__ttl {
    margin-bottom: 20px;
  }
  .news-detail__hero__date {
    font-size: 1rem;
  }
  .news-detail .description {
    margin-bottom: 60px;
  }
  .news-detail .description__ttl p {
    font-size: 1.25rem;
  }
  .news-detail .description__ttl p {
    margin-bottom: 56px;
  }
  .news-detail .description__text p {
    font-size: 1rem;
  }
  .news-detail .description__text p {
    margin-bottom: 20px;
  }
  .news-detail .article {
    margin-bottom: 120px;
  }
  .news-detail .article__img {
    margin-top: 0px;
    margin-bottom: 56px;
  }
  .news-detail .article__content {
    width: 640px;
  }
  .news-detail .article__content--right {
    margin-left: auto;
  }
  .news-detail .article__ttl {
    font-size: 1.25rem;
  }
  .news-detail .article__ttl {
    margin-bottom: 56px;
  }
  .news-detail .article__text {
    font-size: 1rem;
  }
  .news-detail .article__text {
    margin-bottom: 20px;
  }
}
@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;
  }
  .news-detail {
    padding-bottom: 200px;
  }
  .news-detail__inner {
    padding-left: 90px;
    padding-right: 90px;
  }
  .news-detail__hero__content {
    padding-bottom: 56px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .news-detail__hero__content::after {
    left: 0;
    right: 0;
  }
  .news-detail__hero__ttl {
    font-size: 2rem;
  }
  .news-detail__hero__date {
    font-size: 1rem;
  }
  .news-detail .description__inner {
    max-width: 1100px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .news-detail .description__ttl p {
    font-size: 1.5rem;
  }
  .news-detail .description__text p {
    font-size: 1rem;
  }
  .news-detail .article__inner {
    max-width: 1100px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .news-detail .article__ttl {
    font-size: 1.5rem;
  }
  .news-detail .article__text {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .panel__link:hover .panel__img .color-bar,
.panel a:hover .panel__img .color-bar,
.grid3__item > a:hover .panel__img .color-bar {
    width: 100%;
  }
  .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;
  }
}
@media (max-width: 639.98px) {
  .news-detail {
    padding-bottom: 100px;
  }
}