body {
  font-family: "noto-sans-jp", sans-serif;
  line-height: 1.8em;
  color: #635622;
}

html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
  padding-bottom: 16px;
}

a {
  color: #00ac00;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

a:hover,
a:focus-visible {
  opacity: 0.6;
}

.wrapper_sp {
  padding: 0 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .wrapper_sp {
    padding: 0 32px 96px;
    max-width: 1320px;
  }
}

.header {
  padding: 24px 0 16px;
  position: relative;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header_logo img {
  width: 160px;
  max-width: 100%;
  display: block;
}

.global_nav {
  display: none;
  flex: 1 1 auto;
}

.global_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.global_nav_list a {
  text-decoration: none;
  color: #635622;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.global_nav_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #00ac00;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.global_nav_list a:hover::after,
.global_nav_list a:focus-visible::after,
.global_nav_list a.is-current::after {
  opacity: 1;
}

.header_cta {
  display: none;
  background-image: url("../img/btn_green.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header_cta:hover,
.header_cta:focus-visible,
.header_cta:active {
  opacity: 0.6;
}

.hamburger {
  background: none;
  border: none;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 12px;
  z-index: 1001;
}

.hamburger_bar {
  width: 28px;
  height: 3px;
  background-color: #00ac00;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.is-open .hamburger_bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-open .hamburger_bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger_bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header_actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.header_action_btn {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 18px;
  background-image: url("../img/btn_green.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.2s ease;
  min-width: 160px;
}

.header_action_btn img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.header_action_btn.tel_btn {
  background: none;
  padding: 0;
  min-width: auto;
}

.header_action_btn.tel_btn:hover,
.header_action_btn.tel_btn:focus-visible,
.header_action_btn.tel_btn:active {
  opacity: 1;
}

.header_action_btn:hover,
.header_action_btn:focus-visible,
.header_action_btn:active {
  opacity: 0.6;
}

.mobile_nav {
  display: none;
  position: fixed;
  inset: 0;
  padding: 96px 24px 40px;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 999;
  overflow-y: auto;
}

.mobile_nav.is-open {
  display: flex;
  justify-content: center;
}

.mobile_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.mobile_nav a {
  text-decoration: none;
  color: #635622;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
  width: 100%;
}

body.is-nav-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (max-width: 1023px) {
  .header_inner {
    padding-right: 56px;
  }
}

@media screen and (min-width: 1024px) {
  .header_inner {
    flex-wrap: nowrap;
    gap: 32px;
  }

  .global_nav {
    display: block;
  }

  .header_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger,
  .header_actions,
  .mobile_nav {
    display: none !important;
  }
}

.nav_hero {
  margin: 32px auto 32px;
  padding: 0 16px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .nav_hero {
    margin-bottom: 16px;
  }
}

.nav_hero_main {
  display: none;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  min-height: 700px;
  background: url("../img/first-view.png") top center/cover no-repeat;
}

.nav_hero_copy {
  position: absolute;
  left: 40px;
  bottom: 120px;
  max-width: 420px;
}

.nav_hero_copy img {
  width: 100%;
  display: block;
}

.nav_hero_cta_row {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav_hero_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-image: url("../img/btn_green.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 150px;
  transition: opacity 0.2s ease;
}

.nav_hero_btn:hover,
.nav_hero_btn:focus-visible {
  opacity: 0.8;
}

.nav_hero_tel_image {
  width: 220px;
  height: auto;
  display: block;
}

.nav_hero_sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 0;
}

.nav_hero_sp_read img {
  width: 100%;
  max-width: 420px;
}

.nav_hero_sp_img img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
}

.nav_hero_sp .nav_hero_cta_row {
  position: static;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  width: 100%;
}

.nav_hero_sp .nav_hero_cta_buttons {
  flex-direction: column;
  width: 100%;
}

.nav_hero_sp .nav_hero_btn {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .nav_hero {
    padding: 0;
  }

  .nav_hero_main {
    display: block;
  }

  .nav_hero_sp {
    display: none;
  }
}

.aisatsu_text {
  margin: auto;
  width: 100%;
  max-width: 480px;
}

.aisatsu_center {
  display: block;
  text-align: center;
  margin-top: 16px;
}

.nayami {
  background-image: url("../img/sp/nayami_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 16px;
  border-radius: 0 50px 0 0;
}

.nayami_item {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  max-width: 520px;
  justify-items: center;

  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .nayami_item {
    grid-template-columns: repeat(4, 1fr);
    max-width: 880px;
    gap: 24px;
  }
}

.nayami_list {
  display: flex;
  justify-content: center;
}

.nayami_list img {
  width: 100%;
  max-width: 240px;
}

.ninki_item,
.menu_item {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 480px;
}

@media screen and (min-width: 768px) {
  .ninki_item,
  .menu_item {
    max-width: 640px;
  }
}

.menu_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sp_contenst {
  padding-top: 32px;
  padding-bottom: 32px;
}

.sp h2.sp,
.h2_contenst .sp {
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .sp_contenst {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .h2_contenst .sp {
    font-size: 36px;
    line-height: 1.4;
  }

  .sp_line {
    display: block;
  }

  .aisatsu_text {
    max-width: 800px;
  }

  .sp_contenst .aisatsu_text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1023px) {
  .sp_contenst:first-of-type {
    padding-top: 16px;
  }
}

.sp_contenst.reason {
  background-image: url("../img/yellow_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 48px 24px;
  border-radius: 8px;
}

.sp_contenst.voice,
.sp_contenst.news {
  background-image: url("../img/yellow_bg.png");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  padding: 48px 24px;
  border-radius: 8px;
}

body.voice-page .sp_contenst.voice {
  background-image: none;
  background-color: #fff;
}

.news_content {
  background-color: #fff;
  border-radius: 32px;
  padding: 32px 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.news_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 24px;
}

.news_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news_date {
  font-weight: 700;
  color: #635622;
  margin: 0 0 0px;
}

.news_title {
  font-weight: 700;
  color: #00ac00;
  text-decoration: underline;
  margin: 0 0 6px;
}

.news_body {
  margin: 0;
  color: #635622;
}

.news_body a {
  color: #00ac00;
  text-decoration: underline;
}

.news_feed {
  margin-top: 32px;
}

.news_feed_title {
  font-size: 1.1em;
  margin: 0 0 16px;
  color: #4b3f1b;
}

.voice_item {
  list-style: none;
  padding: 0 0 30px 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

.voice_list {
  display: flex;
  justify-content: center;
}

.voice_card {
  width: 100%;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  padding: 32px 28px 8px;
  display: flex;
  flex-direction: column;
}

.voice_card h3.voice {
  font-size: 1.25rem;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #d9d4c7;
  color: #4b3f1b;
  font-weight: 700;
}

.sp_contenst.voice > h3.voice,
.sp_contenst.menu > h3.menu {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f2879b;
  width: 100%;
  max-width: 960px;
  margin: 54px auto 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d4c7;
}

.sp_contenst.menu > h3.menu + .menu_item {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .sp_contenst.voice > h3.voice,
  .sp_contenst.menu > h3.menu {
    font-size: 1.1rem;
    margin: 32px auto 10px;
    padding-bottom: 10px;
  }
}

.voice_message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #4a3b19;
}

.voice_meta {
  margin: 0;
  color: #7d6a33;
  text-align: right;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.voice_meta span + span {
  margin-left: 8px;
}

@media screen and (min-width: 1024px) {
  .voice_item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer {
  padding: 48px 24px 64px;
}

.footer_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer_link_row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto 32px;
  max-width: 360px;
}

.footer_tel_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer_tel_image {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer_social {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer_social img {
  width: 54px;
  height: auto;
  display: block;
}

.footer_copy {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #d9d4c7;
  font-size: 0.85rem;
  line-height: 1.6;
  color: inherit;
}

.back_to_top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #00ac00;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.back_to_top::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}

.back_to_top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back_to_top:active {
  transform: scale(0.96);
}

@media screen and (min-width: 1024px) {
  .footer_inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer_link_row {
    max-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 24px;
    margin-left: 0;
  }

  .footer_social {
    justify-content: flex-end;
    gap: 24px;
    margin-left: auto;
  }
}

.sp_contenst.news > .news_content,
.sp_contenst.news > .news_feed {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.reason_item {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 24px;
  max-width: 520px;
}

.reason_list {
  display: flex;
  justify-content: center;
}

.reason_list img {
  width: 100%;
  max-width: 240px;
}

@media screen and (min-width: 1024px) {
  .reason_item {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    max-width: 820px;
  }
}

.menu_h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .menu_h3 {
    font-size: 20px;
  }
}

.menu_list button img {
  width: 140px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.menu_list {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  color: inherit;
}

.menu_img img {
  width: 100%;
  border-radius: 10px;
  display: block;
  padding-bottom: 16px;
}

.menu_text {
  color: #7d6a33;
  margin-bottom: 16px;
}

.menu_entry {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu_entry:last-of-type {
  margin-bottom: 0;
}

.menu_entry .menu_photo {
  width: 100%;
}

.menu_entry .menu_photo img {
  width: 100%;
  display: block;
}

.menu_entry .menu_text {
  color: #7d6a33;
}

.menu_entry .menu_text h4.menu {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 24px;
}

.menu_entry .menu_text_content {
  font-size: 1rem;
  line-height: 1.8;
}

.menu_entry--no-photo .menu_text {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .menu_entry {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .menu_entry .menu_photo {
    flex: 0 0 320px;
    max-width: 320px;
  }

  .menu_entry .menu_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.diet {
  width: 100%;
  max-width: 960px;
  margin: 32px auto 12px;
  color: #78c449;
  font-weight: 700;
  line-height: 1.5;
}

.diet_item {
  list-style: none;
  margin: 0px auto;
  padding: 0;
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.diet_list {
  border: 1px solid #d9d4c7;
  border-radius: 16px;
  padding: 16px;
  background-color: #fff;
  line-height: 1.6;
}

.diet_list span {
  color: #f2879b;
  font-weight: 700;
}

.diet_read {
  width: 100%;
  max-width: 960px;
  margin: 16px auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diet_read p {
  padding-bottom: 0;
}

.diet_big {
  font-weight: 700;
  font-size: 1.4rem;
}

.diet_voice_item {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.diet_voice_list {
  flex: 1 1 280px;
  border: 1px dashed #d9d4c7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: #635622;
  background-color: #fff;
}

.diet_voice_list img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.menu_list button {
  background: transparent;
  border: none;
  padding: 0;
}

.sp_contenst.menu,
.sp_contenst.faq {
  padding: 24px 24px;
}

body.faq-page .sp_contenst.menu {
  background-color: #fff;
}

.price_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media screen and (min-width: 1024px) {
  .menu_item {
    max-width: 960px;
    width: 100%;
  }

  .menu_list {
    flex-direction: row;
    align-items: center;
    padding: 24px 32px;
    gap: 32px;
  }

  .menu_img {
    flex: 0 0 280px;
  }

  .menu_img img {
    padding-bottom: 0;
  }

  .menu_content {
    flex: 1;
  }

  .menu_list button {
    align-self: flex-start;
  }

  .menu_list button img {
    margin: 0;
  }
}

.price_table_wrap {
  overflow-x: auto;
}

.price_table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin: 0 auto;
  color: #635622;
}

.price_table th,
.price_table td {
  border-bottom: 1px solid #d4d4d4;
  padding: 14px;
  text-align: left;
}

.price_table th:nth-child(2),
.price_table th:nth-child(3),
.price_table td:nth-child(2),
.price_table td:nth-child(3) {
  white-space: nowrap;
}

.price_table th {
  background-color: #e2e8ed;
  color: #635622;
  font-weight: 600;
}

.price_scroll_hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85em;
}

.more_btn {
  text-align: center;
  margin-top: 24px;
}

.more_btn img {
  width: 140px;
  max-width: 100%;
  display: inline-block;
}

.mone_cards {
  margin-top: 32px;
  text-align: center;
}

.mone_cards img {
  width: 100%;
  max-width: 480px;
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .price_content {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
  }

  .price {
    flex: 1;
  }

  .price_table_wrap {
    overflow: visible;
  }

  .price_table {
    max-width: none;
    margin: 0;
  }

  .price_scroll_hint {
    display: none;
  }

  .mone_cards {
    flex: 0 0 320px;
    margin-top: 0;
    text-align: center;
  }

  .mone_cards img {
    max-width: 320px;
  }
}

.faq {
  margin: 40px auto 0;
  border-top: 1px solid #d9d4c7;
  width: 100%;
  max-width: 980px;
}

.faq_item {
  border-bottom: 1px solid #d9d4c7;
  padding: 32px 0;
}

.faq_item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 24px;
}

.faq_item summary::-webkit-details-marker {
  display: none;
}

.faq_item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #7d6a33;
  text-align: center;
  transition: transform 0.15s ease;
}

.faq_item[open] summary::after {
  content: "×";
  transform: translateY(-50%);
}

.faq_q,
.faq_label {
  color: #78c449;
  font-weight: 700;
}
.faq_label {
  color: #f2879b;
}

.faq_a {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  color: inherit;
  line-height: 1.6;
}

.staff {
  padding: 48px 24px;
}

.staff_item {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  max-width: 1000px;
}

.staff_item > .staff_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.staff_item > .staff_list .staff_img {
  width: 100%;
  max-width: 360px;
}

.staff_item > .staff_list .staff_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.staff_profile {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.staff_profile .staff_list {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  gap: 24px;
}

.staff_media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.staff_img {
  text-align: center;
}

.staff_img img {
  width: 100%;
  max-width: 360px;
  display: inline-block;
}

.staff_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.staff_identity {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #7d6a33;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.staff_identity_name {
  font-size: 1.4rem;
  color: #4b3f1b;
}

.staff_identity_en {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.staff_copy {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #f2879b;
  margin: 0;
}

.staff_text {
  line-height: 1.8;
  color: #4a3b19;
}

.staff_profile_detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.staff_detail_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f2879b;
  margin: 0;
  padding-bottom: 0;
}

.staff_detail_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.9;
  color: #4b3f1b;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.staff_detail_photo img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {
  .staff_item > .staff_list {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .staff_item > .staff_list .staff_img {
    flex: 0 0 360px;
    display: flex;
    justify-content: center;
  }

  .staff_item > .staff_list .staff_body {
    flex: 1;
  }

  .staff_profile .staff_list {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .staff_media {
    flex: 0 0 auto;
  }

  .staff_body {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .staff_media {
    flex-direction: column;
    align-items: center;
  }

  .staff_identity {
    writing-mode: horizontal-tb;
    flex-direction: row;
    justify-content: center;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 1024px) {
  .staff {
    padding: 24px 32px;
  }
}

#calendar {
  margin-top: 24px;
}
.sp_contenst.calendar {
  background-image: url("../img/blue_bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 48px 24px;
  min-height: 100%;
}

.calendar_wrap,
.access_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}

.calendar_actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.calendar_actions .header_action_btn {
  min-width: 180px;
}

.information {
  margin-top: 32px;
  background-color: #fff;
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.information_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.information_list dt {
  font-weight: 700;
  color: #4b3f1b;
  margin: 0 0 4px;
}

.information_list dd {
  margin: 0;
  line-height: 1.7;
  color: inherit;
}

.info_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info_label::before {
  content: "■";
  font-size: 1.1em;
}

.info_label--pink::before {
  color: #f2879b;
}

.info_label--green::before {
  color: #78c449;
}

@media screen and (min-width: 768px) {
  .access_wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
  }

  .information {
    margin-top: 0;
  }
}
.h2_contenst {
  width: 100%;
  display: flex;
  justify-content: center; /* 中央寄せに変更 */
  align-items: center;
  gap: 16px; /* イラストと文字の距離を一定にする */
  padding: 32px 0 0;
  font-size: 24px;
  margin-bottom: 32px;
}

.h2_contenst .uni_left,
.h2_contenst .uni_right {
  flex: 0 0 32px; /* 固定幅 */
}

.h2_contenst .uni_left img,
.h2_contenst .uni_right img {
  width: 100%;
}

.h2_contenst .sp {
  text-align: center;
}

.text_pk {
  color: #f2879b;
}

.nayami_end {
  text-align: center;
  padding: 20px 16px;
}

.ninki_pc {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px auto 0;
  padding-top: 72px;
}

.ninki_pc-bg {
  width: 100%;
  aspect-ratio: 1486 / 874;
  background-image: url("../img/top3_bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  position: relative;
  border: none;
  outline: none;
}

.ninki_pc-list {
  position: absolute;
  top: clamp(48px, 6vw, 96px);
  bottom: clamp(24px, 4vw, 80px);
  left: clamp(32px, 5vw, 120px);
  right: clamp(32px, 5vw, 120px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
}

.ninki_pc-card {
  flex: 0 1 clamp(220px, 26vw, 300px);
  max-width: clamp(220px, 26vw, 300px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ninki_pc-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 320px;
}

.ninki_list {
  text-align: center;
}

.ninki {
  margin-top: 32px;
}

.ninki_list img {
  width: 100%;
  max-width: 480px;
}

.ninki_list:nth-child(2) img {
  margin: 24px 0;
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}
.menu_read {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 24px;
}
