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

.about {
  padding-top: 127px;
}
.about__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.about__head {
  width: 100%;
  height: auto;
  margin-bottom: 97px;
}
.about__head__inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px 0;
}
.about__head__logo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.about__head #canvas_logo_about {
  width: 102px;
  height: 102px;
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
}
.about__head__text-logo {
  width: 86px;
  margin: 17px 0 0 30px;
}
.about__head__img {
  width: 100%;
  height: auto;
}
.about__head__img img {
  width: 100%;
  height: auto;
}
.about__head__lead {
  width: 100%;
  height: auto;
}
.about__head__lead__ttl {
  font-size: 1.5rem;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 13px;
}
.about__head__lead__text {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  color: #4E4E4E;
}
.about__body {
  width: 100%;
  height: auto;
}
.about__body__inner {
  width: 100%;
  height: auto;
}
.about__foot {
  width: 100%;
  height: auto;
  padding-top: 100px;
}
.about__foot__inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__foot__ttl {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 33px;
}
.about__foot__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  font-weight: 500;
  margin-bottom: 36px;
  text-align: center;
}
.about__foot .pill-button {
  margin-bottom: 16px;
}

.sec-about {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
.sec-about:last-child {
  margin-bottom: 0;
}
.sec-about__head {
  width: 100%;
  height: auto;
}
.sec-about__ttl {
  display: inline-block;
  width: 62%;
  margin-bottom: 36px;
  position: relative;
}
.sec-about__ttl span {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  position: relative;
  display: inline-block;
}
.sec-about__lead {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.sec-about__lead__btn {
  margin: 45px 0;
}
.sec-about__address {
  width: 100%;
  height: auto;
  margin-bottom: 56px;
}
.sec-about__text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #4E4E4E;
}
.sec-about__stext {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4E4E4E;
}
.sec-about__body {
  width: 100%;
  height: auto;
}
.sec-about__content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px 0;
}
.sec-about__content__col {
  height: auto;
}
.sec-about__content__col--left {
  width: 100%;
}
.sec-about__content__col--right {
  width: 100%;
}
.sec-about__content__img {
  width: 100%;
  height: auto;
}
.sec-about__content__img img {
  width: 100%;
  height: auto;
}
.sec-about__article {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 45px 0;
}
.sec-about__article__item {
  width: 100%;
  height: auto;
}
.sec-about__article__ttl {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4E4E4E;
  margin-bottom: 16px;
}
.sec-about__article__text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #4E4E4E;
}
.sec-about .google-map {
  width: 100%;
  height: auto;
}
.sec-about .google-map iframe {
  width: 100%;
  height: 560px;
}
@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;
  }
  .about {
    padding-bottom: 120px;
  }
  .about {
    padding-top: 215px;
  }
  .about__head {
    margin-bottom: 120px;
  }
  .about__head__inner {
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .about__head #canvas_logo_about {
    margin: 32px 0 0 45px;
    width: 204px;
    height: 204px;
    transform: scale(1.5);
  }
  .about__head__text-logo {
    width: 120px;
    margin: 32px 0 0 60px;
  }
  .about__head__lead {
    width: 47%;
  }
  .about__head__lead__ttl {
    font-size: 2rem;
  }
  .about__head__lead__ttl {
    margin-bottom: 14px;
  }
  .about__head__lead__text {
    font-size: 1rem;
  }
  .about__head__lead__text {
    line-height: 1.8;
  }
  .about__foot {
    padding-top: 120px;
  }
  .about__foot__ttl {
    font-size: 1rem;
  }
  .about__foot__ttl {
    margin-bottom: 36px;
  }
  .about__foot__text {
    font-size: 1rem;
  }
  .about__foot__text {
    margin-bottom: 40px;
    text-align: center;
  }
  .about__foot .pill-button {
    margin-bottom: 16px;
  }
  .sec-about {
    margin-bottom: 138px;
  }
  .sec-about__ttl {
    width: 22%;
    margin-bottom: 38px;
  }
  .sec-about__ttl span {
    font-size: 1rem;
  }
  .sec-about__lead {
    margin-bottom: 72px;
  }
  .sec-about__lead__btn {
    margin: 45px 0;
  }
  .sec-about__address {
    margin-bottom: 56px;
  }
  .sec-about__text {
    font-size: 1.25rem;
  }
  .sec-about__stext {
    font-size: 1rem;
  }
  .sec-about__content {
    flex-direction: row;
    gap: 0 40px;
  }
  .sec-about__content__col--left {
    width: 43.5%;
    padding: 45px 0 0 9px;
  }
  .sec-about__content__col--right {
    width: 56.5%;
  }
  .sec-about__article {
    gap: 63px 0;
  }
  .sec-about__article__ttl {
    font-size: 1.375rem;
  }
  .sec-about__article__ttl {
    margin-bottom: 20px;
  }
  .sec-about__article__text {
    font-size: 1rem;
  }
  .sec-about__article__text {
    line-height: 1.6;
  }
}
@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;
  }
  .about {
    padding-bottom: 120px;
  }
  .about {
    padding-top: 304px;
  }
  .about__inner {
    max-width: 1072px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .about__head {
    margin-bottom: 178px;
  }
  .about__head #canvas_logo_about {
    margin: 61px 0 0 130px;
    width: 204px;
    height: 204px;
    transform: scale(2);
  }
  .about__head__text-logo {
    width: 152px;
    margin: 47px 0 0 88px;
  }
  .about__head__lead {
    width: 44.5%;
    margin: 16px 0 0 0px;
  }
  .about__head__lead__ttl {
    font-size: 3rem;
  }
  .about__head__lead__ttl {
    margin-bottom: 15px;
  }
  .about__head__lead__text {
    font-size: 1.125rem;
  }
  .about__foot__ttl {
    font-size: 1rem;
  }
  .about__foot__text {
    font-size: 1rem;
  }
  .sec-about {
    margin-bottom: 175px;
  }
  .sec-about__ttl span {
    font-size: 1rem;
  }
  .sec-about__lead {
    margin-bottom: 103px;
  }
  .sec-about__text {
    font-size: 1.5rem;
  }
  .sec-about__stext {
    font-size: 1rem;
  }
  .sec-about__content {
    flex-direction: row;
    gap: 0;
  }
  .sec-about__content__img {
    margin-left: -50px;
  }
  .sec-about__article {
    gap: 83px 0;
  }
  .sec-about__article__ttl {
    font-size: 1.5rem;
  }
  .sec-about__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) {
  .about {
    padding-bottom: 120px;
  }
}