@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #555555;
  background-color: #f9f9f9;
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

html {
  scrollbar-gutter: stable;
}

img {
  width: 100%;
}

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

@media (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 140px;
  padding: 16px 26px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
  .button {
    font-size: 1rem;
    padding: 14px 32px;
  }
}
.button--primary {
  color: #ffffff;
  background-color: #f7b560;
}
.button--primary:hover {
  opacity: 0.85;
}
.button--outline {
  color: #93c572;
  background-color: #ffffff;
  border: 1px solid #93c572;
}
.button--outline:hover {
  color: #ffffff;
  background-color: #93c572;
}

.title__ja {
  display: inline-block;
  padding-bottom: 8px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.1em;
  color: #555555;
  background: url("../images/title-line.svg") no-repeat center bottom;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .title__ja {
    font-size: 2.5rem;
    padding-bottom: 5px;
  }
}
.title--center {
  text-align: center;
}

.drawer {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 200;
  width: 100%;
  height: calc(100dvh - 50px);
  padding: 8px 0 0;
  background-color: #f9f9f9;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.drawer.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .drawer {
    display: none;
  }
}
.drawer__head {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 20px 0 12px;
  background-color: #ffffff;
}
.drawer__logo {
  width: 116px;
}
.drawer__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 29px;
  transform: translateY(7px);
}
.drawer__close-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: transparent;
}
.drawer__close-icon::before, .drawer__close-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #93c572;
  transition: transform 0.5s ease;
}
.drawer__close-icon::before {
  top: 0;
}
.drawer__close-icon::after {
  top: 5px;
}
.drawer.is-open .drawer__close-icon::before {
  transform: translateY(2.5px) rotate(-25deg);
}
.drawer.is-open .drawer__close-icon::after {
  transform: translateY(-2.5px) rotate(25deg);
}
.drawer__close-text {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.625rem;
  line-height: 1.3;
  font-weight: 600;
  color: #93c572;
}
.drawer__list {
  margin: 0 16px 0 14px;
}
.drawer__item {
  border-bottom: 1px solid #93c572;
}
.drawer__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px 0 0;
}
.drawer__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #93c572;
  transform: translateY(-50%);
}
.drawer__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #93c572;
  border-right: 1px solid #93c572;
  transform: translateY(-50%) rotate(45deg);
}
.drawer__ja {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3b4043;
}
.drawer__en {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #f7b560;
}
.drawer__tel {
  margin-top: 14px;
  text-align: center;
  color: #93c572;
}
.drawer__tel-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 24px;
}
.drawer__tel-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 34px;
  color: #93c572;
}
.drawer__tel-time {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 21px;
}
.drawer__contact {
  display: flex;
  width: 300px;
  height: 48px;
  margin: 20px auto 0;
  padding: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 50px 0 0 0;
  z-index: calc(200 - 1);
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .drawer-overlay {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 480px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.01);
  z-index: -1;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  transform: translateY(35px);
}
@media (min-width: 768px) {
  .hero__inner {
    display: block;
    width: auto;
    padding: 0 20px;
    transform: none;
  }
}
.hero__logo {
  flex-shrink: 0;
  width: 70px;
  height: auto;
  margin: 0;
}
@media (min-width: 768px) {
  .hero__logo {
    width: 203px;
    margin: 0 auto;
  }
}
.hero__catch {
  flex-shrink: 0;
  width: 260px;
  margin-top: 0;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  color: #93c572;
}
@media (min-width: 768px) {
  .hero__catch {
    width: auto;
    margin-top: 21px;
    white-space: nowrap;
    font-size: clamp(2.375rem, 4.9vw, 3.125rem);
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-align: center;
  }
}
.hero__scroll {
  display: none;
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 96px;
  text-align: center;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero__scroll {
    display: block;
  }
}
.hero__scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 3px;
  height: 56px;
  background-color: #ffffff;
  transform: translateX(-50%);
  animation: hero-scroll-line 2s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  left: calc(50% - 1.5px);
  top: 80px;
  width: 3px;
  height: 18px;
  background-color: #ffffff;
  transform-origin: top center;
  transform: rotate(-135deg);
  animation: hero-scroll-tip 2s ease-in-out infinite;
}
.hero__balloon {
  position: absolute;
  right: auto;
  bottom: 20px;
  left: 20px;
  display: block;
  width: 142px;
  height: 76px;
  padding: 0;
  background-color: #f7b560;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__balloon {
    right: 45px;
    bottom: 48px;
    left: auto;
    width: 337px;
    height: auto;
    padding: 18px 24px;
    border-radius: 20px;
    overflow: visible;
  }
}
.hero__balloon-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.75rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero__balloon-label {
    position: static;
    display: block;
    font-size: 1.25rem;
    line-height: inherit;
    letter-spacing: inherit;
  }
}
.hero__balloon-date {
  position: absolute;
  top: 14px;
  left: 52px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 0.75rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero__balloon-date {
    position: static;
    display: block;
    margin-top: 4px;
    margin-left: 0;
    font-size: 0.6875rem;
    line-height: inherit;
    letter-spacing: inherit;
  }
}
.hero__balloon-title {
  position: absolute;
  top: 36px;
  left: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 123px;
  height: 30px;
  overflow: hidden;
  margin-top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero__balloon-title {
    position: static;
    -webkit-line-clamp: 1;
    width: auto;
    height: auto;
    margin-top: 4px;
    font-size: 0.875rem;
    line-height: inherit;
    letter-spacing: inherit;
  }
}

@keyframes hero-scroll-line {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}
@keyframes hero-scroll-tip {
  0% {
    opacity: 0;
    transform: translateY(-8px) rotate(-135deg);
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(6px) rotate(-135deg);
  }
  100% {
    opacity: 0;
    transform: translateY(12px) rotate(-135deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll::before,
  .hero__scroll::after {
    animation: none;
  }
}
.about {
  height: 740px;
  padding: 0;
}
@media (min-width: 768px) {
  .about {
    height: auto;
    padding: 45px 20px 100px;
  }
}
.about__inner {
  position: relative;
  width: 100%;
  max-width: 375px;
  height: 740px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about__inner {
    width: auto;
    max-width: 960px;
    height: auto;
    display: block;
    min-height: 703px;
  }
}
.about__body {
  position: absolute;
  top: 129px;
  left: 15px;
  width: 345px;
  text-align: center;
  padding: 0;
}
@media (min-width: 768px) {
  .about__body {
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
}
.about__logo {
  width: 220px;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .about__logo {
    width: 314px;
    margin-bottom: 52px;
  }
}
.about__copy--pc {
  display: none;
}
@media (min-width: 768px) {
  .about__copy--pc {
    display: block;
  }
}
@media (min-width: 768px) {
  .about__copy--sp {
    display: none;
  }
}
.about__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
}
.about__text + .about__text {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about__text + .about__text {
    margin-top: 14px;
  }
}
.about__text br {
  display: inline;
}
.about__img {
  position: absolute;
  width: auto;
  max-height: none;
}
.about__img--01 {
  top: 40px;
  left: 34px;
  width: 63px;
}
@media (min-width: 768px) {
  .about__img--01 {
    top: 0;
    left: 0;
    width: 200px;
  }
}
.about__img--02 {
  top: 51px;
  right: 42px;
  width: 57px;
}
@media (min-width: 768px) {
  .about__img--02 {
    top: 48px;
    right: 0;
    width: 181px;
  }
}
.about__img--03 {
  top: 588px;
  left: 46px;
  width: 86px;
}
@media (min-width: 768px) {
  .about__img--03 {
    top: 434px;
    left: 109px;
    width: 200px;
  }
}
.about__img--04 {
  top: 588px;
  left: 220px;
  width: 99px;
}
@media (min-width: 768px) {
  .about__img--04 {
    top: 434px;
    left: auto;
    right: 24px;
    width: 235px;
  }
}

.about.is-fade-ready .about__img {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.about.is-fade-ready .about__img--01 {
  transform: translateX(-40px);
  transition-delay: 0s;
}
.about.is-fade-ready .about__img--02 {
  transform: translateX(40px);
  transition-delay: 0.25s;
}
.about.is-fade-ready .about__img--03 {
  transform: translateX(-40px);
  transition-delay: 0.5s;
}
.about.is-fade-ready .about__img--04 {
  transform: translateX(40px);
  transition-delay: 0.75s;
}
.about.is-fade-ready.is-visible .about__img {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .about.is-fade-ready .about__img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.tab__btns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .tab__btns {
    justify-content: flex-start;
    gap: 19px;
    margin-top: 21px;
  }
}
.tab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 0;
  height: 50px;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #f7b560;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
  .tab__btn {
    width: 190px;
    height: 65px;
    padding: 0;
    font-size: 1.25rem;
    border-radius: 20px;
  }
}
.tab__btn:last-child {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .tab__btn:last-child {
    font-size: 1.25rem;
  }
}
.tab__btn.is-active {
  color: #ffffff;
  background-color: #93c572;
}
.tab__btn:hover {
  color: #ffffff;
  background-color: #93c572;
}
.tab__panel {
  display: none;
}
.tab__panel.is-active {
  display: block;
}
.tab__lead {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #555555;
  text-align: left;
}
@media (min-width: 768px) {
  .tab__lead {
    margin-top: 50px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.works {
  padding: 0;
}
@media (min-width: 768px) {
  .works {
    padding: 80px 0;
  }
}
.works__card {
  margin: 0;
  padding: 50px 15px;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media (min-width: 768px) {
  .works__card {
    margin: 0;
    width: min(100%, 50% + 480px);
    padding: 80px 0 80px max(20px, 50% - 480px);
    border-radius: 0 100px 100px 0;
  }
}
.works .title {
  text-align: left;
}
.works .title__ja {
  margin-left: 0px;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .works .title__ja {
    margin-left: 0;
    font-size: 2.5rem;
  }
}
.works__slider {
  width: calc(100% + 30px);
  margin-top: 32px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .works__slider {
    margin-top: 61px;
    margin-left: calc(321px - 50vw);
    width: calc(50vw + 630px);
  }
}
.works__slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}
.works__slider:not(.slick-initialized) .works__slide {
  flex: 0 0 274px;
  max-width: 274px;
}
@media (min-width: 768px) {
  .works__slider:not(.slick-initialized) .works__slide {
    flex-basis: 324px;
    max-width: 324px;
  }
}
.works__slide {
  width: 274px;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .works__slide {
    width: 324px;
  }
}
.works__slide img {
  width: 100%;
  aspect-ratio: 6/5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.works__slider .slick-prev,
.works__slider .slick-next {
  z-index: 2;
  width: 32px;
  height: 32px;
}
.works__slider .slick-prev::before,
.works__slider .slick-next::before {
  color: #93c572;
  font-size: 32px;
  opacity: 1;
}
.works__slider .slick-prev {
  left: -6px;
}
.works__slider .slick-next {
  right: 6px;
}
.works__slider .slick-dots {
  position: static;
  margin-top: 24px;
}
.works__slider .slick-dots li button::before {
  font-size: 10px;
  color: #93c572;
  opacity: 0.4;
}
.works__slider .slick-dots li.slick-active button::before {
  opacity: 1;
}

.accordion {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .accordion {
    margin-top: 48px;
    gap: 50px;
  }
}
.accordion__item {
  position: relative;
  background-color: #ffffff;
  border: 3px solid transparent;
  border-radius: 30px;
}
.accordion__item::before, .accordion__item::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: 1;
  border: 3px solid #93c572;
  border-radius: inherit;
  pointer-events: none;
  transition: clip-path 0.3s;
}
.accordion__item::before {
  clip-path: inset(0 0 calc(50% + 7.5px) 0);
}
.accordion__item::after {
  clip-path: inset(calc(50% + 7.5px) 0 0 0);
}
@media (min-width: 768px) {
  .accordion__item {
    border-radius: 50px;
  }
  .accordion__item::before {
    clip-path: inset(0 0 calc(50% + 10px) 0);
  }
  .accordion__item::after {
    clip-path: inset(calc(50% + 10px) 0 0 0);
  }
}
.accordion__q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 97px;
  padding: 18px 17px;
  text-align: left;
}
@media (min-width: 768px) {
  .accordion__q {
    min-height: 64px;
    gap: 20px;
    padding: 10px 40px;
  }
}
.accordion__icon-q, .accordion__icon-a {
  flex-shrink: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) {
  .accordion__icon-q, .accordion__icon-a {
    font-size: 2.1875rem;
  }
}
.accordion__icon-q {
  color: #93c572;
}
.accordion__icon-a {
  color: #f7b560;
}
.accordion__q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #555555;
}
@media (min-width: 768px) {
  .accordion__q-text {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.accordion__mark {
  position: relative;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .accordion__mark {
    width: 24px;
    height: 24px;
  }
}
.accordion__mark::before, .accordion__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #93c572;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.accordion__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__a {
  display: none;
}
.accordion__a-inner {
  display: block;
  padding: 0px 17px 17px;
  transform: translateY(-5px);
}
@media (min-width: 768px) {
  .accordion__a-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 40px 32px;
  }
}
.accordion__a-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #555555;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .accordion__a-text {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.accordion__item.is-open::before {
  clip-path: inset(0 0 calc(50% + 15px) 0);
}
.accordion__item.is-open::after {
  clip-path: inset(calc(50% + 15px) 0 0 0);
}
.accordion__item.is-open .accordion__mark::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.faq {
  padding: 80px 15px 50px;
}
@media (min-width: 768px) {
  .faq {
    padding: 80px 20px;
  }
}
.faq .title__ja {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .faq .title__ja {
    font-size: 2.5rem;
  }
}
.faq__inner {
  max-width: 960px;
  margin-inline: auto;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
}
@media (min-width: 768px) {
  .card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 16px;
    border-radius: 20px;
  }
}
.card__thumb {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .card__thumb {
    width: 200px;
  }
}
.card__thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .card__thumb img {
    border-radius: 12px;
  }
}
.card__body {
  padding: 16px;
}
@media (min-width: 768px) {
  .card__body {
    flex: 1;
    padding: 8px 8px 8px 0;
  }
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card__date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  color: #707070;
}
.card__cat {
  padding: 2px 12px;
  font-size: 0.6875rem;
  color: #ffffff;
  background-color: #93c572;
  border-radius: 100px;
}
.card__title {
  margin-top: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 1rem;
  }
}
.card__excerpt {
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #555555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news {
  padding: 30px 15px 50px;
}
@media (min-width: 768px) {
  .news {
    padding: 80px 0;
    overflow: hidden;
  }
}
.news__inner {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .news__inner {
    max-width: none;
    flex-direction: row;
    align-items: center;
  }
}
.news__head {
  display: contents;
}
@media (min-width: 768px) {
  .news__head {
    display: block;
    width: 50%;
    padding-left: max(20px, 50% - 480px);
    padding-right: 40px;
  }
}
.news .title__ja {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .news .title__ja {
    font-size: 2.5rem;
  }
}
.news__lead {
  margin-top: 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6875;
  letter-spacing: 0;
  color: #555555;
}
@media (min-width: 768px) {
  .news__lead {
    margin-top: 28px;
    font-size: 1rem;
  }
}
.news__more {
  order: 2;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news__more {
    display: block;
    margin-top: 48px;
    margin-left: 50px;
  }
}
.news__more-btn {
  width: 301px;
  height: 70px;
  padding: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-width: 2px;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .news__more-btn {
    width: auto;
    min-width: 290px;
    padding: 22px 32px;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
  }
}
.news__card {
  order: 1;
  width: calc(100% + 16px);
  min-height: 381px;
  margin-top: 27px;
  margin-left: -1px;
  padding: 30px 22px 27px 21px;
  background-color: #ffffff;
  border-radius: 50px 0 0 50px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .news__card {
    margin-top: 0;
    margin-left: 0;
    width: 50%;
    min-height: 438px;
    display: flex;
    align-items: center;
    padding: 40px 20px 40px 44px;
    border-radius: 100px 0 0 100px;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
}
@media (min-width: 768px) {
  .news__list {
    gap: 40px;
  }
}
.news__link {
  display: block;
  transition: opacity 0.3s;
}
.news__link:hover {
  opacity: 0.7;
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 27px;
}
@media (min-width: 768px) {
  .news__meta {
    gap: 22px;
  }
}
.news__date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  color: #555555;
}
@media (min-width: 768px) {
  .news__date {
    font-size: 0.9375rem;
    color: #707070;
  }
}
.news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 26px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #ffffff;
  background-color: #93c572;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .news__cat {
    font-size: 0.8125rem;
  }
}
.news__title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
  letter-spacing: 0;
  color: #555555;
}
@media (min-width: 768px) {
  .news__title {
    margin-top: 12px;
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.access {
  padding: 30px 15px 50px;
}
@media (min-width: 768px) {
  .access {
    padding: 56px 20px 80px;
  }
}
.access__inner {
  max-width: 960px;
  margin-inline: auto;
}
.access .title__ja {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .access .title__ja {
    font-size: 2.5rem;
  }
}
.access__card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 139px minmax(0, 1fr);
  grid-template-rows: 350px 250px;
  width: 100%;
  height: 600px;
  background: linear-gradient(to right, #93c572 139px, #ffffff 139px);
  border-radius: 50px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media (min-width: 768px) {
  .access__card {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    grid-template-rows: 300px 300px;
    width: 100%;
    height: 600px;
    background: linear-gradient(to right, #93c572 250px, #ffffff 250px);
    border-radius: 100px;
  }
}
.access__details {
  grid-column: 1/-1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 139px minmax(0, 1fr);
  grid-template-rows: 46px 86px 46px 62px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .access__details {
    grid-template-columns: 250px 1fr;
    grid-template-rows: none;
    align-content: center;
    padding-top: 0;
    row-gap: 22px;
    transform: translateY(12px);
  }
}
.access__row {
  display: contents;
}
@media (min-width: 768px) {
  .access__row {
    display: contents;
  }
}
.access__label, .access__value {
  align-self: start;
  padding: 0 20px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .access__label, .access__value {
    padding: 0;
    letter-spacing: 0.05em;
  }
}
.access__label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
  background-color: transparent;
}
@media (min-width: 768px) {
  .access__label {
    padding-left: 50px;
    font-size: 1.25rem;
    background-color: transparent;
  }
}
.access__value {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .access__value {
    padding-left: 50px;
    font-size: 1rem;
  }
}
.access__row:nth-child(2) .access__value {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .access__row:nth-child(2) .access__value {
    line-height: 1.5;
  }
}
.access__map-guide {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  z-index: 1;
  height: 80px;
  padding: 10px 20px 0;
  color: #555555;
  background-color: #93c572;
}
@media (min-width: 768px) {
  .access__map-guide {
    grid-row: 2;
    align-self: stretch;
    height: auto;
    padding: 10px 0 0 50px;
  }
}
.access__map-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .access__map-title {
    font-size: 1.25rem;
  }
}
.access__map-link {
  display: inline-block;
  margin-top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}
@media (min-width: 768px) {
  .access__map-link {
    margin-top: 18px;
    font-size: 1rem;
  }
}
.access__map {
  grid-column: 1/-1;
  grid-row: 2;
  height: 250px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .access__map {
    grid-column: 2;
    grid-row: 2;
    height: 300px;
  }
}
.access__map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.329);
}
@media (min-width: 768px) {
  .access__map img {
    transform: none;
  }
}

.cta {
  padding: 30px 15px 60px;
}
@media (min-width: 768px) {
  .cta {
    padding: 80px 20px 120px;
  }
}
.cta__inner {
  height: 450px;
  max-width: 960px;
  margin-inline: auto;
  padding: 50px 20px 0;
  text-align: center;
  color: #ffffff;
  background-color: #f7b560;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    padding: 50px 40px 42px;
    border-radius: 50px;
  }
}
.cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
.cta__lead {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .cta__lead {
    margin-top: 26px;
    font-size: 1.125rem;
    line-height: 1.75;
  }
}
.cta__button {
  width: 301px;
  min-width: 0;
  height: 70px;
  margin-top: 11px;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #93c572;
  background-color: #ffffff;
  border: 2px solid #93c572;
  border-radius: 50px;
  box-shadow: none;
}
@media (min-width: 768px) {
  .cta__button {
    width: auto;
    min-width: 300px;
    min-height: 70px;
    margin-top: 30px;
    padding: 20px 40px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.cta__button:hover {
  opacity: 0.85;
}
.cta__contact {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cta__contact {
    margin-top: 38px;
  }
}
.cta__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .cta__tel {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
    font-size: 1.25rem;
  }
}
.cta__tel span {
  font-weight: 700;
}
.cta__tel a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
  transform: translateY(-8px);
}
@media (min-width: 768px) {
  .cta__tel a {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    transform: none;
  }
}
.cta__hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .cta__hours {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.cta__hours-time {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0;
}
@media (min-width: 1080px) {
  .header {
    padding: 20px 20px 20px 37px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  height: 50px;
  margin-inline: 0;
  padding-inline: 12px;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1080px) {
  .header__inner {
    height: 90px;
    padding-left: 40px;
    padding-right: 30px;
    border-radius: 100px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  width: 116px;
}
@media (min-width: 1080px) {
  .header__logo img {
    width: 169px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1080px) {
  .header__nav {
    display: block;
    margin-left: auto;
    margin-right: 21px;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  transition: color 0.3s;
}
.header__link:hover {
  color: #93c572;
}
.header__contact {
  display: none;
}
@media (min-width: 1080px) {
  .header__contact {
    display: inline-flex;
    flex-shrink: 0;
    width: 148px;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transform: translate(10px, 4px);
}
@media (min-width: 1080px) {
  .header__burger {
    display: none;
    transform: none;
  }
}
.header__burger-lines {
  position: relative;
  display: block;
  width: 21px;
  height: 2px;
  background-color: transparent;
}
.header__burger-lines::before, .header__burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #93c572;
  transition: transform 0.5s ease;
}
.header__burger-lines::before {
  top: 0;
}
.header__burger-lines::after {
  top: 5px;
}
.header__burger[aria-expanded=true] .header__burger-lines::before {
  transform: translateY(2.5px) rotate(-45deg);
}
.header__burger[aria-expanded=true] .header__burger-lines::after {
  transform: translateY(-2.5px) rotate(45deg);
}
.header__burger-text {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: #93c572;
  letter-spacing: 0.06em;
}

.footer {
  min-height: 562px;
  padding: 30px 14px 12px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .footer {
    min-height: 350px;
    padding: 80px 20px 24px;
  }
}
.footer__inner {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .footer__inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: start;
    gap: 0;
    min-height: 200px;
  }
}
.footer__logo img {
  width: 169px;
}
@media (min-width: 768px) {
  .footer__logo img {
    width: 200px;
  }
}
.footer__address {
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .footer__address {
    margin-top: 42px;
    font-size: 0.875rem;
    line-height: 2;
  }
}
.footer__contact-info {
  margin-top: 19px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .footer__contact-info {
    margin-top: 14px;
    font-size: 0.875rem;
    line-height: 2;
  }
}
.footer__nav {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
    grid-column: 2;
    justify-self: end;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  line-height: 1;
}
@media (min-width: 768px) {
  .footer__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.footer__link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .footer__link {
    font-size: 0.875rem;
    line-height: normal;
    letter-spacing: 0;
  }
}
.footer__link:hover {
  color: #93c572;
}
.footer__sns {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  margin-top: 29px;
}
@media (min-width: 768px) {
  .footer__sns {
    position: absolute;
    top: 145px;
    right: 0;
    gap: 30px;
    margin-top: 0;
  }
}
.footer__sns-link {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(85, 85, 85, 0.12);
}
@media (min-width: 768px) {
  .footer__sns-link {
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }
}
.footer__sns-link img {
  width: 25px;
  height: 25px;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .footer__sns-link img {
    width: 40px;
    height: 40px;
  }
}
.footer__sns-link:hover img {
  opacity: 0.7;
}
.footer__copy {
  margin-top: 48px;
  text-align: center;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #555555;
}
@media (min-width: 768px) {
  .footer__copy {
    margin-top: 18px;
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0;
    color: #707070;
  }
}/*# sourceMappingURL=style.css.map */