@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 500 !important;
  color: #5e3925 !important;
  background-color: #fff !important;
  line-height: 1.6 !important;
  background-image: none !important;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

section {
  margin-bottom: 50px;
}
section .section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section .section__inner {
    margin: 0 1rem;
  }
}
@media (max-width: 767px) {
  section .section__inner {
    margin: 0 1rem;
  }
}

.h2_size {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  margin: 0;
}

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

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

.hero {
  position: relative;
  background-color: #fffae6;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #5e3925;
  overflow: hidden;
  width: 100%;
  padding-bottom: 250px;
  /* 左右の線の共通設定 */
  /* 左側の線（バックスラッシュ \ ） */
  /* 右側の線（スラッシュ / ） */
}
.hero .roof-container {
  width: 100%;
  height: 400px; /* 全体の高さ */
  background-color: #ffe197;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.hero .roof-shape {
  width: 100%;
  height: 100%;
  background-color: #fffae6;
  clip-path: polygon(0% 6vw, 30% 0%, 100% 14vw, 100% 100%, 0% 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__inner {
    aspect-ratio: 1200/1300;
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  .hero__inner > div {
    position: absolute;
  }
}
.hero__copy {
  position: relative;
  display: inline-block; /* 中身の幅に合わせる */
  padding: 0 40px; /* 線のスペースを確保 */
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 50px;
}
.hero__copy h1 {
  margin: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .hero__copy h1 {
    font-size: clamp(18px, 2.4vw, 28px);
  }
}
@media (min-width: 768px) {
  .hero__copy {
    font-size: clamp(18px, 2.4vw, 28px);
  }
}
.hero__copy::before, .hero__copy::after {
  content: "";
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  width: 2px; /* 線の太さ */
  height: 80%; /* 線の長さ（文字の高さに合わせる） */
  background-color: #5d4037; /* 線の色（お好みで変更してください） */
}
.hero__copy::before {
  left: 10px;
  transform: translateY(-50%) rotate(-20deg);
}
.hero__copy::after {
  right: 10px;
  transform: translateY(-50%) rotate(20deg);
}
.hero__logo-area {
  margin-bottom: 40px;
  max-width: 400px;
  width: 90%;
  position: relative;
}
@media (min-width: 768px) {
  .hero__logo-area {
    top: 18%;
    left: 2%;
    max-width: 610px;
    width: clamp(150px, 60%, 610px);
  }
}
.hero__logo-area::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -36px;
  background: url("../images/kirakira.webp") no-repeat center center;
  background-size: contain;
  display: block;
  width: 50px;
  height: 60px;
}
.hero__image {
  position: relative;
  max-width: 400px;
  margin: auto 0 auto auto;
  width: 100%;
  margin-bottom: 40px;
}
.hero__image img {
  width: 100%;
}
@media (min-width: 768px) {
  .hero__image {
    top: 20%;
    right: 5%;
    max-width: 580px;
    width: clamp(250px, 45%, 580px);
  }
}
.hero__desc {
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .hero__desc {
    bottom: 8%;
    right: 5%;
    width: clamp(200px, 45%, 580px);
    font-size: clamp(18px, 2vw, 24px);
  }
}
.hero__board {
  max-width: 400px;
  margin: auto;
  width: 80%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .hero__board {
    bottom: 5%;
    left: 5%;
    max-width: 460px;
    width: clamp(180px, 35%, 460px);
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: white;
  transform: skewY(-3deg);
  transform-origin: bottom left;
}

.menu-trigger {
  width: 60px;
  height: 60px;
  background-color: #5e3925;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  padding: 0;
}
.menu-trigger:hover {
  opacity: 0.8;
}
.menu-trigger__bars {
  position: relative;
  width: 30px;
  height: 3px;
  background: #fff;
}
.menu-trigger__bars::before, .menu-trigger__bars::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
}
.menu-trigger__bars::before {
  top: -10px;
}
.menu-trigger__bars::after {
  bottom: -10px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  background: #fff;
  z-index: 200;
  transition: right 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: right 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
@media (min-width: 768px) {
  .menu-overlay {
    width: 400px;
    right: -400px;
  }
}
.menu-overlay.is-open {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.menu-overlay__inner {
  padding: 100px 40px;
  position: relative;
  height: 100%;
}

.menu-close {
  width: 60px;
  height: 60px;
  background-color: #5e3925;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
}
.menu-close:hover {
  opacity: 0.8;
}
.menu-close::before, .menu-close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  transform: rotate(45deg);
}
.menu-close::after {
  transform: rotate(-45deg);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.menu-list li {
  margin-bottom: 25px;
}
.menu-list li a {
  text-decoration: none;
  color: #5e3925;
  font-size: 1.2rem;
  font-weight: 700;
}
.menu-list li a:hover {
  text-decoration: underline;
}

.sns-list {
  list-style: none;
  padding: 0;
}
.sns-list .sns-item {
  margin-bottom: 15px;
}
.sns-list .sns-item a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
}
.sns-list .sns-item .sns-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}
.sns-list .sns-item .sns-icon img {
  width: 100%;
}

.menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.menu-mask.is-open {
  opacity: 1;
  visibility: visible;
}

.next-event {
  padding-bottom: 250px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #5e3925;
  background-color: #fff;
  position: relative;
  margin-top: -150px;
}
.next-event .event-card {
  background-color: #fffae6;
  padding: 25px 15px;
  margin-bottom: 30px;
  outline: 2px solid #3e2723; /* 線の種類 */
  outline-offset: -10px; /* マイナス値を指定すると内側に入る */
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .next-event .event-card {
    flex-direction: inherit;
    padding: 60px 30px 40px;
    margin-bottom: 60px;
  }
}
.next-event .event-card__image {
  width: 100%;
  max-width: 260px;
  margin: auto;
  margin-bottom: 20px;
}
.next-event .event-card__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .next-event .event-card__image {
    margin: 0 50px;
  }
}
.next-event .event-card__content .label-group {
  position: relative;
  margin-bottom: 10px;
}
.next-event .event-card__content .label-group img {
  max-width: 300px;
}
@media (min-width: 768px) {
  .next-event .event-card__content .label-group {
    margin: -10px 0 0;
  }
}
.next-event .event-card__content .event-date {
  font-size: 2.4em;
  font-weight: 700;
  margin: 5px 0;
  position: relative;
  z-index: 0;
  display: inline-block;
}
.next-event .event-card__content .event-date::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -2px;
  width: calc(100% + 4px);
  height: 12px;
  background-color: #ffde8d;
  z-index: -1;
}
.next-event .event-card__content .event-time {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.next-event .event-card__content .event-location {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.next-event .event-card__content .btn-more {
  display: inline-block;
  padding: 8px 40px;
  border: 1px solid #5e3925;
  border-radius: 30px;
  background: #fff;
  color: #5e3925;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.3s;
  position: relative;
}
.next-event .event-card__content .btn-more:hover {
  background: #5e3925;
  color: #fff;
}
.next-event .event-card__content .btn-more span::before {
  content: "";
  width: 15px;
  height: 1px;
  top: 50%;
  position: absolute;
  left: 15px;
  background-color: #5e3925;
}
.next-event .event-card__content .btn-more span::after {
  content: "";
  width: 15px;
  height: 1px;
  top: 50%;
  position: absolute;
  right: 15px;
  background-color: #5e3925;
}
.next-event .sns-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid #5e3925;
  border-radius: 50px;
  text-decoration: none;
  color: #5e3925;
  transition: background 0.3s;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .next-event .sns-banner {
    max-width: 780px;
    margin: auto;
    padding: 30px;
    border-radius: 100px;
  }
}
.next-event .sns-banner:hover {
  background-color: rgba(255, 225, 151, 0.2);
}
.next-event .sns-banner__icon {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .next-event .sns-banner__icon {
    width: 74px;
    height: 74px;
  }
}
.next-event .sns-banner__text {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .next-event .sns-banner__text {
    font-size: 2.1rem;
    font-weight: 400;
  }
}
.next-event .sns-banner__arrow {
  position: relative;
  width: 64px;
  height: 64px;
  background-color: #fbe2a6;
  border-radius: 50%;
}
.next-event .sns-banner__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-65%, -50%);
  width: 24px;
  height: 4px;
  background-color: #5e3925;
  border-radius: 4px;
}
.next-event .sns-banner__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #5e3925;
  border-right: 4px solid #5e3925;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 3px;
}

.next-event::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: #fffae1;
  transform: skewY(3deg);
  transform-origin: bottom left;
}

@media (min-width: 768px) {
  .next-event .event-card__inner {
    flex-direction: row;
    justify-content: center;
    padding: 20px;
  }
  .next-event .event-card__content {
    text-align: left;
  }
}
.how-to-spend::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fffae1;
  transform: skewY(3deg);
  transform-origin: bottom left;
}

.how-to-spend {
  background-color: #fffae1;
  margin-top: -150px;
  padding: 60px 0 120px;
  color: #5e3925;
  position: relative;
  /* 768px以上のデスクトップ・タブレット共通レイアウト */
}
.how-to-spend__header {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.how-to-spend__header .section-title {
  width: 100%;
  max-width: 470px;
  margin-bottom: 30px;
}
.how-to-spend__header .reservation-note {
  margin-left: 20px;
}
.how-to-spend__header .reservation-note__main {
  font-size: 2rem;
  margin: 0;
}
.how-to-spend__header .reservation-note__sub {
  font-size: 1.2rem;
  margin: 5px 0 0;
}
.how-to-spend .spend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .how-to-spend .spend-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.how-to-spend .spend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.how-to-spend .spend-item__icon {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-to-spend .spend-item__icon img {
  margin-top: -50px;
  width: 70%;
  height: 70%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}
.how-to-spend .spend-item span {
  margin-top: -50px;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .how-to-spend .icon-grid {
    /* PC：4列に変更 */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 auto;
  }
}
.how-to-spend .spendinfo-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  font-size: 1.2rem;
}
.how-to-spend .circle-img-wrapper {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.how-to-spend .circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-to-spend .deco-text {
  text-align: center;
  margin-top: 10px;
  color: #5d4037;
}
@media (min-width: 768px) {
  .how-to-spend {
    /* 縦書きテキストの配置も相対的に */
    /* 下中央画像に付随するテキスト（左側） */
    /* 下中央画像に付随するテキスト（右側） */
  }
  .how-to-spend .spendinfo-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* 左のテキストエリアを少し広めに */
    gap: 4vw;
    padding: 5vw;
  }
  .how-to-spend .group-lower {
    grid-column: 1/span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .how-to-spend .main-description {
    max-width: 100%;
    font-size: clamp(14px, 1.5vw, 18px); /* 最小14px、画面幅に応じて拡大、最大18px */
  }
  .how-to-spend .circle-img-wrapper.right {
    /* 画面幅の約25%のサイズ。ただし最小200px、最大400pxに制限 */
    width: clamp(200px, 30vw, 370px);
    height: auto;
    aspect-ratio: 1/1;
  }
  .how-to-spend .circle-img-wrapper.bottom {
    /* 画面幅の約25%のサイズ。ただし最小200px、最大400pxに制限 */
    width: clamp(200px, 30vw, 480px);
    height: auto;
    aspect-ratio: 1/1;
  }
  .how-to-spend .deco-text {
    font-size: clamp(12px, 1.2vw, 16px);
    position: absolute;
    writing-mode: vertical-rl; /* 縦書きにする */
    text-orientation: mixed;
    white-space: nowrap;
    margin: 0;
  }
  .how-to-spend .group-upper {
    position: relative;
  }
  .how-to-spend .group-upper .deco-text {
    top: 5%;
    right: -10%; /* 画像の幅に対して外側に配置 */
    transform: rotate(15deg); /* 少し傾ける */
  }
  .how-to-spend .group-lower .text-left {
    left: 25%;
    top: 20%;
    transform: rotate(-10deg);
  }
  .how-to-spend .group-lower .text-right {
    right: 25%;
    bottom: 10%;
    transform: rotate(10deg);
  }
}
@media (min-width: 1024px) {
  .how-to-spend .spendinfo-container {
    gap: 80px;
    padding: 50px;
  }
  .how-to-spend .group-lower .text-right {
    right: 20%;
  }
  .how-to-spend .group-lower .text-left {
    left: 20%;
  }
}
.how-to-spend .project-card {
  position: relative;
  margin-top: 100px;
}
.how-to-spend .project-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: #ffe197;
  z-index: 0;
}
.how-to-spend .project-card__content {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  z-index: 1;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .how-to-spend .project-card__content {
    padding: 50px 100px;
  }
}
.how-to-spend .project-card__content .project-card__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.how-to-spend .project-card__content p {
  margin-bottom: 1em;
}

@media (min-width: 992px) {
  .snap-gallery {
    width: 40%;
    position: relative;
    min-height: 500px;
  }
  .snap-item {
    position: absolute;
    margin-bottom: 0;
  }
  .snap-item--top {
    top: 0;
    right: 0;
  }
  .snap-item--center {
    top: 180px;
    left: -100px;
  }
  .snap-item--bottom {
    bottom: 0;
    right: 20px;
  }
  .snap-item__image {
    width: 220px;
  }
  .project-card {
    width: 100%;
    margin-top: 60px;
  }
  .project-card__content {
    padding: 50px 80px;
  }
}
.faq {
  padding: 20px 0px;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #5e3925;
  margin-bottom: 180px;
}
.faq__title {
  text-align: center;
  margin-bottom: 15px;
}
.faq__intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
}
.faq .faq-list .faq-item {
  margin-bottom: 35px;
  font-size: 1.5rem;
}
.faq .faq-list .faq-item__question {
  background-color: #fffae1;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .faq .faq-list .faq-item__question {
    padding: 20px 15px;
  }
}
.faq .faq-list .faq-item__q-icon {
  color: #e8800f;
  font-size: 1.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq .faq-list .faq-item__q-icon {
    font-size: 1.5rem;
  }
}
.faq .faq-list .faq-item__answer {
  margin: 15px 20px 0;
}
@media (max-width: 767px) {
  .faq .faq-list .faq-item__answer {
    margin: 10px 15px 0;
    font-size: 1.2rem;
  }
}

.news {
  padding: 20px 0px;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #5e3925;
  margin-bottom: 120px;
}
.news__title {
  text-align: center;
  margin-bottom: 15px;
}
.news__intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news__intro .u-mobile-only {
    display: none;
  }
}
.news .insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  color: #e8800f;
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 3px;
  transition: opacity 0.3s;
}
.news .insta-link:hover {
  opacity: 0.7;
}
.news .insta-link__icon {
  width: 24px;
  height: 24px;
}
.news .insta-link .icon-external {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23e8800f"><path d="M15 3h5v5h-2V5.4l-9.3 9.3-1.4-1.4L16.6 4H15V3zM3 5h6v2H5v10h10v-4h2v6H3V5z"/></svg>') no-repeat center/contain;
}

.philosophy {
  padding: 60px 20px;
  background: url("../images/philosophy_bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .philosophy {
    padding-top: 140px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
}
.philosophy__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.philosophy__main-image {
  width: 100%;
  margin-bottom: 40px;
}
.philosophy__main-image img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}
.philosophy .thought-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 100px;
  flex-direction: column;
}
@media (min-width: 767px) {
  .philosophy .thought-container {
    flex-direction: inherit;
    justify-content: center;
    gap: 80px;
    margin-bottom: 140px;
  }
}
.philosophy .thought-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .philosophy .thought-title {
    writing-mode: horizontal-tb;
    margin-bottom: 20px;
  }
}
.philosophy .thought-content {
  flex: 1;
}
@media (min-width: 768px) {
  .philosophy .thought-content {
    max-width: 520px;
  }
}
.philosophy .thought-content .thought-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 35px;
  font-size: 1.2rem;
}
.philosophy .thought-content .thought-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 12px;
  background-color: #e8800f;
}
.philosophy .thought-content .thought-item:last-child {
  margin-bottom: 0;
}

.staff-intro {
  color: #5e3925;
  font-family: "Zen Maru Gothic", sans-serif;
}
.staff-intro__inner {
  max-width: 800px;
  margin: 0 auto;
}
.staff-intro__title {
  margin-bottom: 15px;
  text-align: center;
}
.staff-intro__lead {
  font-size: 1rem;
  margin-bottom: 40px;
  text-align: center;
}
.staff-intro .staff-image-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .staff-intro .staff-image-box {
    max-width: 850px;
  }
}
.staff-intro .staff-image-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: #e8800f;
  z-index: 0;
}
.staff-intro .staff-image-box__inner {
  position: relative;
  z-index: 1;
}
.staff-intro .staff-image-box__inner img {
  width: 100%;
  height: auto;
  display: block;
}
.staff-intro .staff-details {
  text-align: left;
  border-radius: 10px;
  font-size: 1.2rem;
}

.line-info {
  margin-bottom: 100px;
}
.line-info .line-card {
  background-color: #fffae6;
  padding: 25px 15px;
  outline: 2px solid #3e2723;
  outline-offset: -10px; /* マイナス値を指定すると内側に入る */
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .line-info .line-card {
    padding: 60px;
  }
}
.line-info .line-card__header {
  text-align: center;
  position: relative;
}
.line-info .line-card__header .line-title {
  width: 100%;
  max-width: 350px;
  margin: auto;
}
.line-info .line-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .line-info .line-card__body {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 60px;
  }
}
.line-info .line-card .line-qr {
  max-width: 200px;
  width: 70%;
}
.line-info .line-card .line-qr img {
  width: 100%;
  height: auto;
  background: #fff;
  margin-bottom: 5px;
}
.line-info .line-card .line-desc {
  flex: 1;
  max-width: 500px;
}
.line-info .line-card .line-desc__text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.line-info .line-card .line-desc__text img {
  max-width: 270px;
  width: 90%;
  display: block;
  margin-bottom: 30px;
}
.line-info .line-card .line-desc .line-link {
  color: #e8800f;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  transition: opacity 0.3s;
  font-size: 1.2rem;
}
.line-info .line-card .line-desc .line-link:hover {
  opacity: 0.7;
}

.footer-services {
  padding-top: 60px;
  border-top: 12px solid #ffe197;
}
.footer-services .footer-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.footer-services .footer-title::before {
  content: "";
  width: 8px;
  height: 45px;
  background-color: #e8800f;
}
.footer-services .footer-title__text {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer-services .footer-title__text {
    font-size: 1.8rem;
  }
}
.footer-services .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .footer-services .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.footer-services .service-item__link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}
.footer-services .service-item__link:hover {
  opacity: 0.7;
}
.footer-services .service-item__title {
  color: #e8800f;
  font-size: 1.5rem;
  text-decoration: underline;
}
.footer-services .service-item__desc {
  font-size: 1rem;
}
.footer-services .npo-info {
  margin-bottom: 60px;
}
.footer-services .npo-info__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-services .npo-info__desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-services .npo-info__site-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8800f;
  font-weight: 700;
  text-decoration: underline;
}
.footer-services .npo-info__site-link:hover {
  opacity: 0.7;
}
.footer-services .icon-external {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23e8800f"><path d="M15 3h5v5h-2V5.4l-9.3 9.3-1.4-1.4L16.6 4H15V3zM3 5h6v2H5v10h10v-4h2v6H3V5z"/></svg>') no-repeat center/contain;
}

.copyright-bar {
  background-color: #ffe197;
  padding: 5px 20px;
  text-align: right;
}
.copyright-bar p {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .copyright-bar p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.min.css.map */