@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
}

a {
  color: #40b7bc;
  text-decoration: none;
}

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

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

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-header-wrapper {
  position: relative;
  z-index: 1000;
}
@media (max-width: 967.8px) {
  .l-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

.l-sub-navigation {
  background: #40b7bc;
  padding: 8px 0;
}
.l-sub-navigation__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0 70px;
}
@media (max-width: 967.8px) {
  .l-sub-navigation__inner {
    position: relative;
  }
}
.l-sub-navigation .sub-navigation-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-sub-navigation .sub-navigation-list a {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
}
.l-sub-navigation .sub-navigation-list a:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 967.8px) {
  .l-sub-navigation .sub-navigation-list {
    display: none;
  }
}
.l-sub-navigation__text {
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  font-size: 8px;
  display: none;
}
@media (max-width: 967.8px) {
  .l-sub-navigation__text {
    display: block;
  }
}

.l-sp-navigation {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-125%);
  background-color: #ffffff;
  transition: all ease 0.3s;
  overflow-y: auto;
}
@media (max-width: 967.8px) {
  .l-sp-navigation {
    display: block;
    z-index: 1001;
  }
}
.l-sp-navigation:not(.is-active) {
  pointer-events: none;
  visibility: hidden;
}
.l-sp-navigation.is-active {
  transform: translateY(57px);
}
.l-sp-navigation__actions {
  background-color: #f2f5f6;
  width: 100%;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-sp-navigation__actions-item-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 270px;
  margin: 0 auto;
}
.l-sp-navigation__actions-item-inner > div:last-child {
  width: 220px;
  flex-shrink: 0;
  line-height: 1;
}
.l-sp-navigation__menu li {
  list-style: none;
}
.l-sp-navigation__menu a {
  display: block;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  color: #22878B;
  padding: 12px 16px;
  background-color: #EEFFFC;
  border-top: 1px solid #cbcbcb;
}
.l-sp-navigation__menu a:hover {
  background-color: #f2f5f6;
}
.l-sp-navigation__menu .sp-nav-menu > li:nth-child(2) {
  position: relative;
}
.l-sp-navigation__menu .sp-nav-menu > li:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 35px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-bottom: 3px solid #22878B;
  border-right: 3px solid #22878B;
  transform: rotate(45deg);
  transition: all ease 0.4s;
}
.l-sp-navigation__menu .sp-nav-menu > li:nth-child(2).is-submenu-open::before {
  top: 25px;
  transform: rotate(225deg);
}
.l-sp-navigation__menu:last-child {
  border-bottom: 1px solid #cbcbcb;
}

.sub-menu {
  opacity: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}
.sub-menu a {
  background-color: #f2f5f6;
}
.sub-menu a:hover {
  background-color: #dfdfdf;
}

.l-sp-navigation__menu li:nth-child(2).is-submenu-open .sub-menu {
  transition: all 0.4s ease;
  opacity: 1;
  height: auto;
  pointer-events: auto;
  visibility: visible;
}

.l-header__button {
  width: 48px;
  height: 100%;
  padding: 16px 12px;
  background-color: transparent;
  border-color: transparent;
  display: none;
  cursor: pointer;
}
.l-header__button:focus {
  outline: none;
}
.keyboard-nav .l-header__button:focus, .l-header__button.keyboard-focus {
  outline: none;
  position: relative;
}
.keyboard-nav .l-header__button:focus::after, .l-header__button.keyboard-focus::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #40b7bc;
  border-radius: 6px;
  background: rgba(64, 183, 188, 0.1);
  z-index: 1;
  animation: focusAppear 0.2s ease-out;
}
@keyframes focusAppear {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-header__button::after {
    animation: none;
    transition: none;
  }
}
@media (max-width: 967.8px) {
  .l-header__button {
    display: block;
  }
}
.l-header__button-line {
  width: 23px;
  height: 3px;
  background-color: #40b7bc;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.l-header__button-line:nth-child(1) {
  top: 0;
}
.l-header__button-line:nth-child(2) {
  margin: 4px 0;
}
.l-header__button.is-active {
  padding-bottom: 28px;
}
.l-header__button.is-active .l-header__button-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.l-header__button.is-active .l-header__button-line:nth-child(2) {
  display: none;
}
.l-header__button.is-active .l-header__button-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.l-site-footer {
  background: #EEFEFF;
  padding: clamp(3rem, 5vw, 5rem) 0;
}
@media (min-width: 968px) {
  .l-site-footer {
    padding: 5rem 0;
  }
}

.c-footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  text-align: center;
}
@media (min-width: 968px) {
  .c-footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    text-align: left;
  }
}

.c-footer-main {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 968px) {
  .c-footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
  }
}

.c-footer-right {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}
@media (min-width: 968px) {
  .c-footer-right {
    flex: 1 1 auto;
    max-width: 500px;
    align-items: flex-end;
  }
}
@media (max-width: 967px) {
  .c-footer-right {
    align-items: center;
  }
}

.c-footer-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 968px) {
  .c-footer-info {
    max-width: 350px;
    align-items: flex-start;
  }
}

.c-footer-logo {
  margin-bottom: 1.75rem;
}
.c-footer-logo img {
  width: clamp(150px, 20vw, 196px);
  height: auto;
}

.c-footer-address {
  font-style: normal;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.c-footer-tel {
  color: #333333;
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
}
.c-footer-tel:hover {
  color: #40b7bc;
}

.c-footer-nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 968px) {
  .c-footer-nav {
    gap: 8rem;
    justify-content: flex-end;
  }
}

.c-footer-nav__column {
  flex: 1;
  text-align: center;
}
@media (min-width: 968px) {
  .c-footer-nav__column {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: left;
  }
}

.c-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-footer-nav__item {
  padding: 0.5rem 0;
}

.c-footer-nav__link {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  text-decoration: none;
}
.c-footer-nav__link:hover, .c-footer-nav__link:focus {
  color: #40b7bc;
  text-decoration: underline;
}
.c-footer-nav__link:focus-visible {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}

.c-footer-banner {
  text-align: center;
}
@media (min-width: 968px) {
  .c-footer-banner {
    text-align: right;
    margin-top: 1rem;
  }
}
@media (max-width: 967px) {
  .c-footer-banner {
    margin-top: 0.5rem;
  }
}

.c-footer-banner__link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.c-footer-banner__link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.c-footer-banner__link:focus-visible {
  outline: 2px solid #40b7bc;
  outline-offset: 4px;
}

.c-footer-banner__image {
  width: clamp(280px, 50vw, 383px);
  height: auto;
  border-radius: 4px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .c-footer-banner__image {
    width: clamp(240px, 80vw, 320px);
  }
}

.c-footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
}
.c-footer-copyright p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(51, 51, 51, 0.6);
  font-family: "Roboto", sans-serif;
}

.l-site-main {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: clamp(80px, 12vw, 112px) 0;
}
@media (max-width: 967.8px) {
  .l-site-main {
    padding-top: 3.6rem;
    z-index: 1;
  }
}
.l-site-main--has-hero {
  padding-top: 0;
  padding-bottom: clamp(80px, 12vw, 112px);
}
@media (max-width: 967.8px) {
  .l-site-main--has-hero {
    padding-top: 0;
  }
}
.l-site-main:has(.p-hall-archive) {
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 967.8px) {
  .l-site-main:has(.p-hall-archive) {
    padding: 0;
    z-index: 1;
  }
}

.no-posts {
  text-align: center;
  padding: 2rem;
}

/* HubSpot APIカスタムフォームセクション */
.c-hubspot-api-form-section {
  background: #ffffff;
  padding: 80px 0;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form-section {
    padding: 60px 0;
  }
}
@media (max-width: 479.8px) {
  .c-hubspot-api-form-section {
    padding: 40px 0;
  }
}

.c-hubspot-api-form {
  max-width: 980px;
  margin: 0 auto;
  background: #FCFEFF;
  padding: 40px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  outline: 1px solid #B3B3B3;
  outline-offset: -1px;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form {
    max-width: calc(100% - 32px);
    margin: 0 16px;
    padding: 24px;
  }
}
.c-hubspot-api-form__header {
  width: 100%;
  max-width: 815px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 479.8px) {
  .c-hubspot-api-form__header {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.c-hubspot-api-form__form {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__form {
    width: 100%;
  }
}
.c-hubspot-api-form__field {
  margin-bottom: 20px;
  position: relative;
}
.c-hubspot-api-form__field--checkbox {
  margin-bottom: 16px;
}
.c-hubspot-api-form__field--row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__field--row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.c-hubspot-api-form__field--row .c-hubspot-api-form__field {
  margin-bottom: 0;
  flex: 1;
}
.c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-380 {
  width: 380px;
  flex: none;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-380 {
    width: 100%;
    flex: 1;
  }
}
.c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-440 {
  width: 440px;
  flex: none;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-440 {
    width: 100%;
    flex: 1;
  }
}
.c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-200 {
  width: 200px;
  flex: none;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-200 {
    width: 100%;
    flex: 1;
  }
}
.c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-680 {
  width: 680px;
  flex: none;
}
@media (max-width: 967.8px) {
  .c-hubspot-api-form__field--row .c-hubspot-api-form__field--width-680 {
    width: 100%;
    flex: 1;
  }
}
.c-hubspot-api-form__label {
  display: block;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
  font-size: 14px;
}
.c-hubspot-api-form__required {
  display: inline-block;
  padding: 1px 4px;
  background: #FF0000;
  border-radius: 4px;
  outline: 1px #FF0000 solid;
  outline-offset: -1px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 16.8px;
  letter-spacing: 0.12px;
  margin-left: 0;
}
.c-hubspot-api-form__optional {
  display: inline-block;
  padding: 1px 4px;
  background: #999999;
  border-radius: 4px;
  outline: 1px #999999 solid;
  outline-offset: -1px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 16.8px;
  letter-spacing: 0.12px;
  margin-left: 0;
}
.c-hubspot-api-form__input, .c-hubspot-api-form__select, .c-hubspot-api-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  background: #ffffff;
  color: #333333;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.c-hubspot-api-form__input:focus, .c-hubspot-api-form__select:focus, .c-hubspot-api-form__textarea:focus {
  outline: none;
  border-color: #40b7bc;
  box-shadow: 0 0 0 3px rgba(64, 183, 188, 0.1);
}
.c-hubspot-api-form__input::-moz-placeholder, .c-hubspot-api-form__select::-moz-placeholder, .c-hubspot-api-form__textarea::-moz-placeholder {
  color: #9ca3af;
}
.c-hubspot-api-form__input::placeholder, .c-hubspot-api-form__select::placeholder, .c-hubspot-api-form__textarea::placeholder {
  color: #9ca3af;
}
.c-hubspot-api-form__select {
  cursor: pointer;
}
.c-hubspot-api-form__select:invalid {
  color: #9ca3af;
}
.c-hubspot-api-form__textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
}
.c-hubspot-api-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}
.c-hubspot-api-form__checkbox {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #ccc;
  border-radius: 3px;
  background: white;
  position: relative;
}
.c-hubspot-api-form__checkbox:checked {
  background: #40b7bc;
  border-color: #40b7bc;
}
.c-hubspot-api-form__checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 0px;
  left: -1px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-hubspot-api-form__checkbox:focus {
  outline: 2px solid rgba(64, 183, 188, 0.3);
  outline-offset: 2px;
}
.c-hubspot-api-form__checkbox-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
}
.c-hubspot-api-form__error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  min-height: 20px;
  line-height: 1.2;
  visibility: hidden;
}
.c-hubspot-api-form__error.show {
  visibility: visible;
}
.c-hubspot-api-form__submit {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #97D0D2 0%, #3DA8AC 100%);
  border-radius: 40px;
  border: none;
  color: white;
  font-size: 20px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.c-hubspot-api-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.c-hubspot-api-form__submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(64, 183, 188, 0.3);
}
.c-hubspot-api-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.c-hubspot-api-form__submit-container {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.c-hubspot-api-form__message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}
.c-hubspot-api-form__message--success {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  color: #065f46;
}
.c-hubspot-api-form__message--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ヒーローCTAセクション（画像バナー） */
.p-hero-cta {
  padding: 40px 0;
  background: #f3f6f7;
}
@media (max-width: 967.8px) {
  .p-hero-cta {
    padding: 24px 0;
  }
}
.p-hero-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 967.8px) {
  .p-hero-cta__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-hero-cta__item {
  display: block;
}
.p-hero-cta__item:hover {
  transform: translateY(-4px);
}
.p-hero-cta__item:first-child {
  padding-top: 6px;
}
.p-hero-cta__image {
  width: 100%;
  height: auto;
  max-height: 219px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-hero-cta__field--inquiry-type {
  margin-bottom: 32px;
}
@media (max-width: 479.8px) {
  .p-hero-cta__field--inquiry-type {
    margin-bottom: 24px;
  }
}
.p-hero-cta__radio-group {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 967.8px) {
  .p-hero-cta__radio-group {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.p-hero-cta__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  transition: all 0.2s ease;
}
.p-hero-cta__radio-label:hover {
  color: #40b7bc;
}
.p-hero-cta__radio {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: #40b7bc;
  cursor: pointer;
}
.p-hero-cta__radio-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.4;
}
.p-hero-cta__section {
  transition: all 0.3s ease;
}
.p-hero-cta__section[style*="display: none"] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.p-hero-cta__section:not([style*="display: none"]) {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}

.lp-main {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.lp-content {
  text-align: center;
}

/* お知らせセクション */
.p-news {
  background: #ffffff;
}
.p-news__container {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.p-news__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 815px;
}
.p-news__header .c-title--front-h2 {
  color: #333333;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 967.8px) {
  .p-news__header .c-title--front-h2 {
    font-size: 36px;
  }
}
@media (max-width: 479.8px) {
  .p-news__header .c-title--front-h2 {
    font-size: 28px;
  }
}
.p-news__header .c-title--front-sub {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-news__header .c-title--front-sub {
    font-size: 16px;
  }
}
.p-news__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-news__footer {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
@media (max-width: 479.8px) {
  .p-news__footer {
    justify-content: center;
  }
}

/* 地域検索セクション */
.p-region-search__header {
  text-align: center;
}
.p-region-search__content {
  display: block;
  margin-top: 40px;
}
@media (max-width: 967.8px) {
  .p-region-search__content {
    margin-top: 32px;
  }
}
.p-region-search__pc-only {
  display: block;
}
@media (max-width: 1080px) {
  .p-region-search__pc-only {
    display: none;
  }
}
.p-region-search__sp-only {
  display: none;
}
@media (max-width: 1080px) {
  .p-region-search__sp-only {
    display: block;
  }
}
.p-region-search__accordion-container {
  width: 100%;
  margin: 0 auto;
  background: #F2FFFF;
  border-radius: 8px;
  overflow: hidden;
}
.p-region-search__map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 600px;
  margin: 0 auto;
  background-image: url("../images/front-page/japan-map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-region-search__card-wrapper {
  position: absolute;
  width: 300px;
}
.p-region-search__card-wrapper[data-region=hokkaido-tohoku] {
  top: 21%;
  right: max(-21%, -50vw + 500px);
}
.p-region-search__card-wrapper[data-region=kanto] {
  top: 67%;
  right: max(-13%, -50vw + 500px);
}
.p-region-search__card-wrapper[data-region=chubu-koshinetsu] {
  top: 9%;
  right: 39%;
}
.p-region-search__card-wrapper[data-region=kansai] {
  top: 94%;
  left: 41%;
}
.p-region-search__card-wrapper[data-region=chugoku-shikoku] {
  bottom: 38%;
  left: max(-10%, -50vw + 500px);
}
.p-region-search__card-wrapper[data-region=kyushu-okinawa] {
  bottom: -28%;
  left: max(-3%, -50vw + 500px);
}

.p-region-search__map-container .c-region-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.p-region-search__map-container .c-region-card:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.p-region-accordion {
  border-top: 1px solid #ECEAEA;
}
.p-region-accordion:first-child {
  border-top: none;
}
.p-region-accordion__trigger {
  width: 100%;
  padding: 12px 20px;
  background: #F2FFFF;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  text-align: left;
  transition: background-color 0.2s ease;
}
.p-region-accordion__trigger:hover {
  background: rgb(226.7, 255, 255);
}
.p-region-accordion__trigger:focus {
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
}
.p-region-accordion__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #333333;
}
.p-region-accordion__icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #333333;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-region-accordion__content {
  overflow: hidden;
  transition: height 0.3s ease;
  height: 0;
}
.p-region-accordion__prefectures {
  padding: 10px 20px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 479.8px) {
  .p-region-accordion__prefectures {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.p-region-accordion__prefecture {
  padding: 8px 12px;
  background: white;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
.p-region-accordion__prefecture:hover:not(:disabled) {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.p-region-accordion__prefecture:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.p-region-accordion__prefecture[aria-disabled=true] {
  cursor: not-allowed;
}
.p-region-accordion__prefecture[aria-disabled=true]:hover {
  background: white;
  transform: none;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.p-region-accordion__prefecture[aria-disabled=true]:focus {
  outline: none;
}
.p-region-accordion.is-expanded .p-region-accordion__icon {
  transform: rotate(45deg);
}
.p-region-accordion.is-expanded .p-region-accordion__content {
  height: auto;
}

/* お知らせアイテム */
.c-news-item {
  padding: 16px 0;
  border-bottom: 1px solid #B3B3B3;
}
.c-news-item__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.c-news-item__link:hover {
  opacity: 0.7;
}
.c-news-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 479.8px) {
  .c-news-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.c-news-item__date {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  flex-shrink: 0;
  min-width: 120px;
}
@media (max-width: 479.8px) {
  .c-news-item__date {
    font-size: 14px;
    min-width: auto;
  }
}
.c-news-item__title {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  text-align: left;
}
@media (max-width: 479.8px) {
  .c-news-item__title {
    font-size: 14px;
  }
}
.c-news-item__excerpt {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding-left: 136px;
  text-align: left;
}
@media (max-width: 479.8px) {
  .c-news-item__excerpt {
    padding-left: 0;
    font-size: 13px;
  }
}

/* お知らせバッジ */
.c-news-badge {
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  background: #40b7bc;
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 8px;
}

/* お客様の事例 */
.p-cases {
  position: relative;
  background: #f5f5f5 url("../images/front-page/case-section-background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 0;
}
.p-cases__container {
  position: relative;
  z-index: 1;
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(60px, 8vw, 80px);
}
@media (max-width: 967.8px) {
  .p-cases__container {
    padding: 0 16px;
  }
}
.p-cases__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}
.p-cases__header .c-title--front-h2 {
  color: #333333;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.p-cases__header .c-title--front-sub {
  color: #333333;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.p-cases__list {
  width: 100%;
  max-width: 1312px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 968px) {
  .p-cases__item--pc {
    display: block;
  }
}
@media (max-width: 967.8px) {
  .p-cases__item--pc {
    display: none;
  }
}
@media (min-width: 968px) {
  .p-cases__item--sp {
    display: none;
  }
}
@media (max-width: 967.8px) {
  .p-cases__item--sp {
    display: block;
  }
}
.p-cases__item--pc .p-cases__item-wrapper {
  position: relative;
  width: 940px;
  height: 320px;
  margin: 0 auto;
}
.p-cases__item--pc:nth-child(1) .p-cases__item-wrapper, .p-cases__item--pc:nth-child(5) .p-cases__item-wrapper {
  margin-left: 0;
  margin-right: auto;
}
.p-cases__item--pc:nth-child(3) .p-cases__item-wrapper, .p-cases__item--pc:nth-child(7) .p-cases__item-wrapper {
  margin-left: auto;
  margin-right: 0;
}
.p-cases__item--pc .p-cases__image {
  position: absolute;
  left: 0;
  top: 1px;
  width: 450px;
  height: 294px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: -15px 9px 38px 3px rgba(255, 255, 255, 0.8);
}
.p-cases__item--pc .p-cases__content {
  position: absolute;
  right: 0;
  top: 67px;
  width: 522px;
  min-height: 180px;
  background: #ffffff;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.25);
  border-radius: 12px 0 0 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.p-cases__item--pc.p-cases__item--reverse .p-cases__image {
  right: 0;
  left: auto;
}
.p-cases__item--pc.p-cases__item--reverse .p-cases__content {
  left: 0;
  right: auto;
  border-radius: 0 12px 0 0;
}
.p-cases__item--sp .p-cases__card {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.25);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-cases__item--sp .p-cases__image-wrapper {
  order: -1;
}
.p-cases__item--sp .p-cases__image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
.p-cases__item--sp .p-cases__content {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-cases__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.p-cases__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.p-cases__badge {
  background: #b69cdf;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 3px 6px;
  display: inline-block;
  flex-shrink: 0;
}
.p-cases__plan {
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.p-cases__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-cases__title {
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 967.8px) {
  .p-cases__title {
    font-size: clamp(18px, 4vw, 22px);
  }
}
.p-cases__description {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.p-cases__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-cases__footer {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 479.8px) {
  .p-cases__footer {
    justify-content: center;
  }
}

/* CTAボタンセクション */
.p-cta-section {
  background: #ffffff;
  padding: 80px 120px;
}
@media (max-width: 967.8px) {
  .p-cta-section {
    padding: 60px 12px;
  }
}
.p-cta-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.p-cta-section__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons {
    flex-direction: column;
    gap: 24px;
  }
}
.p-cta-section__buttons .cta {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  flex: 1;
  max-width: 560px;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 479.8px) {
  .p-cta-section__buttons .cta {
    max-width: 349px;
  }
}
.p-cta-section__buttons .cta:hover {
  transform: none;
  box-shadow: none;
  filter: none;
}
.p-cta-section__buttons .cta .cta__button {
  width: 100%;
  padding: clamp(15px, 3.5vw, 20px) clamp(20px, 7vw, 40px);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.8vw, 10px);
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: clamp(60px, 12vw, 100px);
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta .cta__button {
    border-radius: 8px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.25);
    min-height: 80px;
    padding: 10px 20px;
  }
}
.p-cta-section__buttons .cta .cta__button:hover {
  transform: translateY(4px);
  box-shadow: none;
  filter: brightness(1.1);
}
.p-cta-section__buttons .cta .cta__button-line1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 4.2vw, 24px);
  font-weight: 600;
  line-height: clamp(24px, 6.4vw, 36px);
  text-align: center;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta .cta__button-line1 {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
  }
}
.p-cta-section__buttons .cta .cta__button-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.8vw, 10px);
  width: 100%;
  min-height: 48px;
}
.p-cta-section__buttons .cta .cta__button-icon-left {
  width: clamp(36px, 8.5vw, 48px);
  height: clamp(36px, 8.5vw, 48px);
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta .cta__button-icon-left {
    width: 44px;
    height: 44px;
  }
}
.p-cta-section__buttons .cta .cta__button-icon-right {
  width: clamp(34px, 8.2vw, 46px);
  height: clamp(34px, 8.2vw, 46px);
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta .cta__button-icon-right {
    width: 40px;
    height: 40px;
  }
}
.p-cta-section__buttons .cta .cta__button-line2 > span {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.9vw, 5px);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta .cta__button-line2 > span {
    white-space: normal;
  }
}
.p-cta-section__buttons .cta--plan .cta__button {
  background: #C94247;
}
.p-cta-section__buttons .cta--plan .cta__button-tag {
  color: #ffffff;
  font-size: clamp(14px, 3.5vw, 20px);
  font-weight: 600;
}
@media (max-width: 493px) {
  .p-cta-section__buttons .cta--plan .cta__button-tag {
    display: none !important;
  }
}
.p-cta-section__buttons .cta--plan .cta__button-highlight {
  color: #F2EE00;
  font-size: clamp(24px, 5.7vw, 32px);
  font-weight: 600;
  line-height: clamp(33.6px, 8vw, 44.8px);
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta--plan .cta__button-highlight {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 33.6px;
  }
}
.p-cta-section__buttons .cta--plan .cta__button-text-after {
  color: #ffffff;
  font-size: clamp(14px, 3.5vw, 20px);
  font-weight: 600;
  line-height: clamp(19.6px, 4.9vw, 28px);
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta--plan .cta__button-text-after {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.p-cta-section__buttons .cta--contact2 .cta__button {
  background: #40B7BC;
}
.p-cta-section__buttons .cta--contact2 .cta__button-line2 {
  gap: clamp(8px, 2.5vw, 14px);
}
.p-cta-section__buttons .cta--contact2 .cta__button-highlight {
  color: #F3F019;
  font-size: clamp(24px, 5.7vw, 32px);
  font-weight: 600;
  line-height: clamp(33.6px, 8vw, 44.8px);
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta--contact2 .cta__button-highlight {
    color: #F2EE00;
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media (max-width: 493px) {
  .p-cta-section__buttons .cta--contact2 .cta__button-highlight {
    font-size: 0;
    display: flex;
    align-items: center;
  }
  .p-cta-section__buttons .cta--contact2 .cta__button-highlight::after {
    content: "ご相談";
    font-size: clamp(20px, 5vw, 24px);
    color: #F2EE00;
    display: inline-block;
    line-height: 1;
  }
}
.p-cta-section__buttons .cta--contact2 .cta__button-text-after {
  color: #ffffff;
  font-size: clamp(14px, 3.5vw, 20px);
  font-weight: 600;
  line-height: clamp(19.6px, 4.9vw, 28px);
}
@media (max-width: 1200px) {
  .p-cta-section__buttons .cta--contact2 .cta__button-text-after {
    font-size: 16px;
    line-height: 22.4px;
  }
}

/* オプションセクション */
.p-option {
  background: #FFFBF5;
}
.p-option__container {
  max-width: 1055px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (max-width: 967.8px) {
  .p-option__container {
    gap: 48px;
  }
}
@media (max-width: 479.8px) {
  .p-option__container {
    gap: 32px;
  }
}
.p-option__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 815px;
  width: 100%;
}
.p-option__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (max-width: 967.8px) {
  .p-option__section {
    gap: 48px;
  }
}
@media (max-width: 479.8px) {
  .p-option__section {
    gap: 32px;
  }
}
.p-option__section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.p-option__section-title {
  background: #40B7BC;
  color: white;
  font-size: 28px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.56px;
  padding: 4px 16px;
  margin: 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 479.8px) {
  .p-option__section-title {
    font-size: 24px;
    padding: 8px 16px;
  }
}
.p-option__section-subtitle {
  color: black;
  font-size: 18px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto;
  text-align: left;
  max-width: 680px;
}
@media (max-width: 479.8px) {
  .p-option__section-subtitle {
    font-size: 16px;
  }
}
.p-option__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 479.8px) {
  .p-option__items {
    gap: 32px;
  }
}
.p-option__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  width: 100%;
}
@media (max-width: 967.8px) {
  .p-option__item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-option__item-image {
  width: 340px;
  height: 200px;
  flex-shrink: 0;
}
.p-option__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 967.8px) {
  .p-option__item-image {
    width: 100%;
    max-width: 340px;
    order: 2;
  }
}
.p-option__item-content {
  width: 477px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 967.8px) {
  .p-option__item-content {
    width: 100%;
    max-width: 477px;
    order: 1;
  }
}
.p-option__item-title {
  color: black;
  font-size: 24px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 2px 12px;
  background: linear-gradient(90deg, #DCFBFC 0%, rgba(220, 251, 252, 0.24) 100%);
  border-left: 4px solid #3DA8AC;
}
@media (max-width: 479.8px) {
  .p-option__item-title {
    font-size: 20px;
    padding: 8px 12px;
  }
}
.p-option__item-description {
  color: black;
  font-size: 18px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-option__item-description {
    font-size: 16px;
  }
}
.p-option__item-price {
  color: #B3261E;
  font-size: 32px;
  font-family: "Futura PT", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-option__item-price {
    font-size: 28px;
  }
}
.p-option__item-price-unit {
  color: #B3261E;
  font-size: 18px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.36px;
}
@media (max-width: 479.8px) {
  .p-option__item-price-unit {
    font-size: 16px;
  }
}
.p-option__item-note {
  color: black;
  font-size: 16px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-option__item-note {
    font-size: 14px;
  }
}
.p-option__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.p-option__table .p-option__item-title {
  margin-top: 32px;
  margin-bottom: 16px;
}
.p-option__table .p-option__item-title:first-child {
  margin-top: 0;
}
@media (max-width: 967.8px) {
  .p-option__table .p-option__item-title {
    width: 100%;
  }
}
@media (max-width: 479.8px) {
  .p-option__table .p-option__item-title {
    margin-top: 24px;
    margin-bottom: 12px;
  }
}
.p-option__table-image {
  max-width: 596px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 967.8px) {
  .p-option__table-image {
    max-width: 100%;
  }
}

/* 葬儀費用 - 4つのポイントセクション */
.p-cost-points {
  background-image: url("../images/front-page/point-background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.p-cost-points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.p-cost-points .l-container {
  position: relative;
  z-index: 1;
}
.p-cost-points__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 815px;
  margin: 0 auto 100px;
}
@media (max-width: 967.8px) {
  .p-cost-points__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 479.8px) {
  .p-cost-points__header {
    gap: 16px;
    margin-bottom: 40px;
  }
}
.p-cost-points__title-accent {
  color: #40b7bc;
}
.p-cost-points__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 967.8px) {
  .p-cost-points__cards {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 479.8px) {
  .p-cost-points__cards {
    gap: 40px;
  }
}
.p-cost-points__card {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 479.8px) {
  .p-cost-points__card {
    padding: 16px;
    gap: 10px;
  }
}
.p-cost-points__number {
  position: absolute;
  left: 18px;
  top: -23px;
  color: #40b7bc;
  font-size: 30px;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-cost-points__number {
    left: 14px;
    top: -20px;
    font-size: 24px;
  }
}
.p-cost-points__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 479.8px) {
  .p-cost-points__content {
    gap: 8px;
  }
}
.p-cost-points__title {
  color: #40b7bc;
  font-size: 24px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-cost-points__title {
    font-size: 20px;
  }
}
.p-cost-points__text {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-cost-points__text {
    font-size: 14px;
  }
}
.p-cost-points__image {
  flex-shrink: 0;
  align-self: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px #40b7bc, 0 2px 8px rgba(0, 0, 0, 0.1);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-cost-points__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
@media (max-width: 479.8px) {
  .p-cost-points__image {
    width: 120px;
    height: 120px;
    box-shadow: 0 0 0 2px #40b7bc, 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* 葬儀費用 - 別途費用セクション */
.p-cost-additional {
  background: #ffffff;
}
.p-cost-additional__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 479.8px) {
  .p-cost-additional__header {
    margin-bottom: 32px;
  }
}
.p-cost-additional__title {
  color: #333333;
  font-size: 22px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  border-bottom: 3px solid #C94247;
  padding-bottom: 8px;
  display: inline-block;
}
@media (max-width: 479.8px) {
  .p-cost-additional__title {
    font-size: 18px;
    padding-bottom: 6px;
  }
}
.p-cost-additional__title-accent {
  color: #C94247;
  font-size: 26px;
}
@media (max-width: 479.8px) {
  .p-cost-additional__title-accent {
    font-size: 22px;
  }
}
.p-cost-additional__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}
@media (max-width: 967.8px) {
  .p-cost-additional__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 479.8px) {
  .p-cost-additional__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-cost-additional__card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #40b7bc;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 191px;
}
@media (max-width: 479.8px) {
  .p-cost-additional__card {
    padding: 20px;
    gap: 16px;
    min-height: auto;
  }
}
.p-cost-additional__card-title {
  color: #40b7bc;
  font-size: 20px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
@media (max-width: 479.8px) {
  .p-cost-additional__card-title {
    font-size: 18px;
  }
}
.p-cost-additional__card-text {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
@media (max-width: 479.8px) {
  .p-cost-additional__card-text {
    font-size: 14px;
  }
}

/* お客様の声 */
@media (max-width: 967.8px) {
  .reviews {
    position: relative;
    z-index: 1;
  }
}
.reviews__list {
  padding: 40px 0;
}
.reviews .c-readmore {
  margin-left: auto;
}

.p-faq__hero {
  position: relative;
  min-height: clamp(400px, 60vh, 600px);
  display: flex;
  align-items: center;
}
.p-faq__hero-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-faq__hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.4);
}
.p-faq__hero .l-container {
  position: relative;
  z-index: 2;
}
.p-faq__hero__title {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(16px, 3vw, 24px);
  text-shadow: 0 2px 4px rgba(51, 51, 51, 0.3);
}
.p-faq__hero__subtitle {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(51, 51, 51, 0.2);
}

.p-faq-content {
  background-color: #ffffff;
  position: relative;
}
.p-faq-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(42, 169, 174, 0.02) 0%, transparent 100%);
  pointer-events: none;
}
.p-faq-content .l-container {
  position: relative;
  z-index: 1;
}

.p-faq-tabs-content {
  margin-top: 115px;
  margin-bottom: 80px;
}
@media (max-width: 967.8px) {
  .p-faq-tabs-content {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.8px) {
  .p-faq-tabs-content {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}

.l-cta-section {
  padding: clamp(60px, 10vw, 80px) 0;
  background: linear-gradient(135deg, rgba(64, 183, 188, 0.05) 0%, rgba(42, 169, 174, 0.05) 100%);
  border-top: 1px solid rgba(42, 169, 174, 0.1);
}
.l-cta-section .cta__button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 4vw, 32px);
  background: linear-gradient(135deg, #40b7bc 0%, #2AA9AE 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(64, 183, 188, 0.3);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}
.l-cta-section .cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(64, 183, 188, 0.4);
}
.l-cta-section .cta__button:focus {
  outline: 3px solid rgba(64, 183, 188, 0.5);
  outline-offset: 2px;
}
.l-cta-section .cta__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(64, 183, 188, 0.3);
}
.l-cta-section .cta__button-line1 {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}
.l-cta-section .cta__button-line2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
}

@media (min-width: 480px) {
  .p-faq-content .l-container {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
  }
}
@media (min-width: 968px) {
  .l-hero-section .c-hero__title {
    font-size: clamp(36px, 5vw, 56px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-cta-section .cta__button {
    transition: none;
  }
  .l-cta-section .cta__button:hover, .l-cta-section .cta__button:active {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .l-hero-section {
    background: Canvas;
    border-bottom: 2px solid CanvasText;
  }
  .p-faq-content {
    background: Canvas;
  }
  .p-faq-content::before {
    display: none;
  }
  .l-cta-section {
    background: Canvas;
    border-top: 2px solid CanvasText;
  }
  .l-cta-section .cta__button {
    background: Highlight;
    color: HighlightText;
    border: 2px solid CanvasText;
  }
}
.p-for-beginners-content {
  background-color: #ffffff;
  position: relative;
}
.p-for-beginners-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(42, 169, 174, 0.02) 0%, transparent 100%);
  pointer-events: none;
}
.p-for-beginners-content .l-container {
  position: relative;
  z-index: 1;
}

.p-for-beginners-intro {
  margin-bottom: 80px;
}
.p-for-beginners-intro__text {
  color: #333333;
  font-size: 22px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 33px;
  word-wrap: break-word;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-intro__text {
    font-size: clamp(18px, 4vw, 22px);
    line-height: clamp(27px, 5vw, 33px);
  }
}

.p-for-beginners-preparation {
  margin-bottom: 80px;
}
.p-for-beginners-preparation__header {
  margin-bottom: 80px;
}
.p-for-beginners-preparation__title {
  color: #333333;
  font-size: 40px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 32px 0;
  padding: 2px 16px 4px 16px;
  border-left: 6px solid #2AA9AE;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__title {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.p-for-beginners-preparation__description {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin: 0;
  padding-right: 20px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__description {
    padding-right: 0;
  }
}
.p-for-beginners-preparation__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-for-beginners-preparation__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item {
    flex-direction: column;
    gap: 10px;
  }
}
.p-for-beginners-preparation__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item-content {
    gap: 10px;
  }
}
.p-for-beginners-preparation__item-title {
  color: #2AA9AE;
  font-size: 26px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 36.4px;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item-title {
    color: #22878B;
    font-size: 18px;
    line-height: 27px;
  }
}
.p-for-beginners-preparation__item-text {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item-text {
    font-size: 14px;
    line-height: 22.4px;
  }
}
.p-for-beginners-preparation__item-image {
  flex-shrink: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item-image {
    align-self: flex-end;
  }
}
.p-for-beginners-preparation__item-image img {
  width: 280px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.8px) {
  .p-for-beginners-preparation__item-image img {
    width: 180px;
    height: 118px;
  }
}

.p-for-beginners-emergency {
  margin-bottom: 80px;
}
.p-for-beginners-emergency__header {
  margin-bottom: 80px;
}
.p-for-beginners-emergency__title {
  color: #333333;
  font-size: 40px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 32px 0;
  padding: 2px 16px 4px 16px;
  border-left: 6px solid #2AA9AE;
}
@media (max-width: 767.8px) {
  .p-for-beginners-emergency__title {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.p-for-beginners-emergency__description {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin: 0 0 24px 0;
}
.p-for-beginners-emergency__description:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-for-beginners-emergency__steps {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 30px;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-emergency__steps {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 30px;
  }
}
@media (min-width: 768px) {
  .p-for-beginners-emergency__step {
    width: 230px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
  }
  .p-for-beginners-emergency__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: -15px;
    transform: translateY(-50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #2AA9AE;
    z-index: 5;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-emergency__step {
    width: 230px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
  }
  .p-for-beginners-emergency__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: -15px;
    transform: translateY(-50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #2AA9AE;
    z-index: 5;
  }
}
@media (min-width: 768px) {
  .p-for-beginners-emergency__step-number {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-emergency__step-number {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
.p-for-beginners-emergency__step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #2AA9AE;
  color: #ffffff;
  font-size: 22px;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  border-radius: 50%;
  line-height: 22px;
}
.p-for-beginners-emergency__step-container {
  width: 200px;
  height: calc(100% - 10px);
  position: relative;
  top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-for-beginners-emergency__step-card {
  width: 200px;
  height: 210px;
  background: #ffffff;
  border-radius: 8px;
  outline: 3px solid #2AA9AE;
  outline-offset: -3px;
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.p-for-beginners-emergency__step-image {
  width: 170px;
  height: 120px;
  margin: 16px 15px 10px 15px;
}
.p-for-beginners-emergency__step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-for-beginners-emergency__step-title {
  color: #22878B;
  font-size: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  padding: 10px;
}
.p-for-beginners-emergency__step-text {
  color: #333333;
  font-size: 14px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
  width: 200px;
  text-align: left;
  flex: 1;
}
@media (min-width: 768px) {
  .p-for-beginners-emergency__step-text {
    max-height: 150px;
    overflow-y: auto;
  }
}
.p-for-beginners-emergency__phone {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .p-for-beginners-content .l-container {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
  }
}
@media (prefers-contrast: high) {
  .p-for-beginners-content {
    background: Canvas;
  }
  .p-for-beginners-content::before {
    display: none;
  }
}
.p-for-beginners-plans {
  margin-bottom: 80px;
}
.p-for-beginners-plans__header {
  margin-bottom: 64px;
}
.p-for-beginners-plans__title {
  color: #333333;
  font-size: 40px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 32px 0;
  padding: 2px 16px 4px 16px;
  border-left: 6px solid #2AA9AE;
}
@media (max-width: 767.8px) {
  .p-for-beginners-plans__title {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.p-for-beginners-plans__description p {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin: 0;
  padding-right: 20px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-plans__description p {
    padding-right: 0;
  }
}
.p-for-beginners-plans__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.p-for-beginners-plans__scroll-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.p-for-beginners-plans__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
}
.p-for-beginners-plans__button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-plans__button {
    justify-content: center;
  }
}

.c-plan-card {
  display: flex;
  border: 1px solid #B3B3B3;
  min-height: 101px;
  width: 100%;
  border-bottom: none;
}
.c-plan-card:last-child {
  border-bottom: 1px solid #B3B3B3;
}
@media (max-width: 767.8px) {
  .c-plan-card {
    min-width: 1200px;
  }
}
.c-plan-card__name {
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  width: 380px;
}
.c-plan-card__name-image {
  flex-shrink: 0;
  width: 104px;
  height: 103px;
}
.c-plan-card__name-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.c-plan-card__name-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px;
}
.c-plan-card__name-brand {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  line-height: 22.4px;
}
.c-plan-card__name-title {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 26px;
  line-height: 36.4px;
}
.c-plan-card__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 260px;
  padding: 20px;
  border-left: 1px solid #B3B3B3;
}
.c-plan-card__price-main {
  display: flex;
  align-items: baseline;
  text-align: center;
}
.c-plan-card__price-main .c-plan-card__price-amount {
  color: #C94247;
  font-size: 28px;
  font-family: "Futura", sans-serif;
  font-weight: 700;
  line-height: 39.2px;
}
.c-plan-card__price-main .c-plan-card__price-unit {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 25.2px;
}
.c-plan-card__price-tax {
  display: flex;
  align-items: baseline;
  text-align: center;
}
.c-plan-card__price-tax-label {
  color: #333333;
  font-size: 14px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 19.6px;
}
.c-plan-card__price-tax-amount {
  color: #333333;
  font-size: 20px;
  font-family: "Futura", sans-serif;
  font-weight: 500;
  line-height: 28px;
}
.c-plan-card__price-tax-unit {
  color: #333333;
  font-size: 14px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 19.6px;
}
.c-plan-card__people {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 260px;
  padding: 20px;
  border-left: 1px solid #B3B3B3;
}
.c-plan-card__people-count {
  color: #333333;
  font-size: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}
.c-plan-card__people-label {
  color: #333333;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}
.c-plan-card__services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 300px;
  padding: 0 16px;
  border-left: 1px solid #B3B3B3;
  border-right: 1px solid #B3B3B3;
  position: relative;
}
.c-plan-card__services--cremation .c-service-arrow--1-2 {
  display: block;
  left: 76px;
}
.c-plan-card__services--cremation .c-service-arrow--2-5 {
  display: block;
  left: 120px;
}
.c-plan-card__services--cremation .c-service-arrow--2-3,
.c-plan-card__services--cremation .c-service-arrow--3-4,
.c-plan-card__services--cremation .c-service-arrow--4-5 {
  display: none;
}
.c-plan-card__services--family .c-service-arrow--1-2 {
  display: block;
  left: 74px;
}
.c-plan-card__services--family .c-service-arrow--2-3 {
  display: block;
  left: 118px;
}
.c-plan-card__services--family .c-service-arrow--3-4 {
  display: block;
  left: 166px;
}
.c-plan-card__services--family .c-service-arrow--4-5 {
  display: block;
  left: 210px;
}
.c-plan-card__services--family .c-service-arrow--2-5 {
  display: none;
}

.c-plan-card--kazoku-88 .c-plan-card__name-image img {
  -o-object-position: calc(50% + 35px) center;
     object-position: calc(50% + 35px) center;
}

.c-plan-card--kazoku-108 .c-plan-card__name-image img {
  -o-object-position: calc(50% + 63px) center;
     object-position: calc(50% + 63px) center;
}

.c-plan-card--premium-kasou-43 .c-plan-card__name-image img {
  -o-object-position: calc(50% - 33px) center;
     object-position: calc(50% - 33px) center;
}

.c-service-badge {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 72px;
  padding: 6px 2px;
  position: relative;
}
.c-service-badge__text {
  text-align: center;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  width: 24px;
  font-size: 18px;
  line-height: 21.6px;
}
.c-service-badge--active .c-service-badge__text {
  color: #ffffff;
}
.c-service-badge--option {
  background: #ffffff;
  border: 2px solid var(--plan-color, #40b7bc);
  box-sizing: border-box;
}
.c-service-badge--option .c-service-badge__text {
  color: var(--plan-color, #40b7bc);
}
.c-service-badge--inactive {
  background: #ffffff;
  outline: 1px solid #B3B3B3;
  outline-offset: -1px;
}
.c-service-badge--inactive .c-service-badge__text {
  color: #B3B3B3;
}

.c-service-arrow {
  position: absolute;
  z-index: 2;
  top: 55px;
  height: 2px;
}
.c-service-arrow--1-2, .c-service-arrow--2-3, .c-service-arrow--3-4, .c-service-arrow--4-5 {
  width: 8px;
}
.c-service-arrow--2-5 {
  width: 95px;
}
.c-service-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--arrow-color, #40b7bc);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.p-for-beginners-flow {
  position: relative;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .p-for-beginners-flow {
    padding: 112px 0;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow {
    padding: 60px 0;
  }
}
.p-for-beginners-flow__header {
  position: relative;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 80px;
    max-width: 712px;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__header {
    margin-bottom: 80px;
  }
}
.p-for-beginners-flow__title {
  margin: 0 0 32px 0;
  padding: 2px 16px 4px 16px;
  border-left: 6px solid #2AA9AE;
}
.p-for-beginners-flow__title--pc {
  color: #333333;
  font-size: 40px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 48px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__title--pc {
    display: none;
  }
}
.p-for-beginners-flow__title--sp {
  color: #333333;
  font-size: 32px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 38.4px;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__title--sp {
    display: none;
  }
}
.p-for-beginners-flow__description--sp {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__description--sp {
    display: none;
  }
}
.p-for-beginners-flow__description--sp p {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin: 0 0 24px 0;
}
.p-for-beginners-flow__description--sp p:last-child {
  margin-bottom: 0;
}
.p-for-beginners-flow__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-for-beginners-flow__image--pc {
  position: absolute;
  top: 31px;
  right: 0;
  width: 496px;
  height: 299px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__image--pc {
    display: none;
  }
}
.p-for-beginners-flow__image--pc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 75%, white 100%);
  pointer-events: none;
}
.p-for-beginners-flow__image--pc img {
  width: 100%;
  height: 100%;
}
.p-for-beginners-flow__image--sp {
  height: 200px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__image--sp {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-for-beginners-flow__content {
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__content {
    padding: 0 20px;
  }
}
.p-for-beginners-flow__steps {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__steps {
    gap: 16px;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__steps {
    gap: 40px;
  }
}
.p-for-beginners-flow__step {
  position: relative;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__step:not(.p-for-beginners-flow__step--last)::after {
    content: "";
    position: absolute;
    left: -37px;
    width: 2px;
    background: #40b7bc;
    z-index: 1;
    top: 32px;
    height: calc(100% + 26px);
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__step:not(.p-for-beginners-flow__step--last)::after {
    content: "▼";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    color: #40b7bc;
    font-size: 16px;
    z-index: 1;
  }
}
.p-for-beginners-flow__step-header {
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-for-beginners-flow__step-header {
    padding: 10px;
  }
  .p-for-beginners-flow__step-header::before {
    content: "";
    position: absolute;
    left: -46px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #40b7bc;
    border-radius: 50%;
    z-index: 2;
  }
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__step-header {
    padding: 10px;
  }
}
.p-for-beginners-flow__step-title {
  color: #22878B;
  font-size: 32px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 44.8px;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__step-title {
    font-size: 26px;
    line-height: 36.4px;
  }
}
.p-for-beginners-flow__step-content {
  background: #F4feff;
  border-top: 4px solid #2AA9AE;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 24px;
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__step-content {
    padding: 24px 10px;
  }
}
.p-for-beginners-flow__step-text {
  color: #333333;
  font-size: 22px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 30.8px;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-for-beginners-flow__step-text {
    font-size: 18px;
    line-height: 27px;
  }
}

.p-plan-content {
  padding-top: spacing(40);
  padding-bottom: spacing(80);
}
@media (max-width: 967.8px) {
  .p-plan-content {
    padding-top: spacing(24);
    padding-bottom: spacing(40);
  }
}
.p-plan-intro {
  margin-bottom: spacing(80);
}
@media (max-width: 967.8px) {
  .p-plan-intro {
    margin-bottom: spacing(40);
  }
}
.p-plan-intro__container {
  max-width: 1160px;
  margin: 0 auto;
}
.p-plan-intro__text {
  color: #333333;
  font-size: 22px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 33px;
  text-align: left;
}
@media (max-width: 967.8px) {
  .p-plan-intro__text {
    font-size: 18px;
    line-height: 1.6;
  }
  .p-plan-intro__text br {
    display: none;
  }
}
@media (max-width: 479.8px) {
  .p-plan-intro__text {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 spacing(16);
  }
}

.p-plan-diagnosis {
  background: linear-gradient(180deg, #F2F5F6 0%, #F4FCFF 100%);
  position: relative;
  overflow: hidden;
}
.p-plan-diagnosis__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__container {
    gap: 60px;
  }
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__container {
    gap: 40px;
  }
}
.p-plan-diagnosis__header {
  width: 100%;
  max-width: 815px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__header {
    gap: 16px;
  }
}
.p-plan-diagnosis__title {
  color: #333333;
  font-size: 48px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__title {
    font-size: 36px;
  }
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__title {
    font-size: 28px;
  }
}
.p-plan-diagnosis__subtitle {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__subtitle {
    font-size: 16px;
  }
}
.p-plan-diagnosis__card {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  background: #ffffff;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__card {
    padding: 30px;
  }
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__card {
    padding: 20px;
  }
}
.p-plan-diagnosis__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-plan-diagnosis__question {
  padding: 16px 2px;
  border-bottom: 1px solid #B3B3B3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-plan-diagnosis__question:last-of-type {
  border-bottom: none;
}
.p-plan-diagnosis__question-header {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.p-plan-diagnosis__question-number {
  color: #333333;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__question-number {
    font-size: 18px;
  }
}
.p-plan-diagnosis__question-text {
  color: #333333;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__question-text {
    font-size: 18px;
  }
}
.p-plan-diagnosis__options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__options {
    flex-direction: column;
    gap: 12px;
  }
}
.p-plan-diagnosis__option {
  width: 240px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__option {
    width: 100%;
  }
}
.p-plan-diagnosis__option:hover {
  opacity: 0.8;
}
.p-plan-diagnosis__radio {
  position: absolute;
  opacity: 0;
}
.p-plan-diagnosis__radio:checked + .p-plan-diagnosis__radio-custom {
  background: #40b7bc;
  border-color: #40b7bc;
}
.p-plan-diagnosis__radio:checked + .p-plan-diagnosis__radio-custom::after {
  opacity: 1;
}
.p-plan-diagnosis__radio:focus + .p-plan-diagnosis__radio-custom {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.p-plan-diagnosis__radio-custom {
  position: relative;
  width: 20px;
  height: 20px;
  background: #D9D9D9;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
}
.p-plan-diagnosis__radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.p-plan-diagnosis__option-text {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__option-text {
    font-size: 16px;
  }
}
@media (max-width: 967.8px) {
  .p-plan-diagnosis__option-text .br-pc-only {
    display: none;
  }
}
.p-plan-diagnosis__submit {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__submit {
    padding: 20px 0 0;
  }
}
.p-plan-diagnosis__submit-btn {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  background: linear-gradient(90deg, #97D0D2 0%, #3DA8AC 100%);
  border: none;
  border-radius: 40px;
  color: #ffffff;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}
@media (max-width: 479.8px) {
  .p-plan-diagnosis__submit-btn {
    font-size: 18px;
  }
}
.p-plan-diagnosis__submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.p-plan-diagnosis__submit-btn:active {
  transform: translateY(0);
}
.p-plan-diagnosis__submit-btn:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}

.p-policy .c-title--h2 {
  margin-top: 30px;
}
.p-policy__description {
  font-size: 18px;
}
.p-policy__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 80px 0 0;
}
.p-policy__address {
  margin-top: 16px;
}
.p-policy__tel {
  color: #333333;
  border-bottom: 1px solid #333333;
}

.p-review {
  padding-bottom: 64px;
}
.p-review__text {
  margin-top: 30px;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 968px) {
  .p-review__text {
    font-size: 22px;
  }
}
@media (max-width: 767.8px) {
  .p-review__text {
    font-size: 18px;
  }
}
.p-review__lists {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 967.8px) {
  .p-review__lists {
    gap: 50px;
    margin-top: 50px;
  }
}
.p-review__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-review__item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border: 3px solid #40b7bc;
  border-radius: 10px;
  padding: 50px;
}
@media (max-width: 967.8px) {
  .p-review__item {
    flex-direction: column;
    padding: 20px;
  }
}
.p-review__left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
}
@media (max-width: 967.8px) {
  .p-review__left {
    width: 100%;
    text-align: center;
  }
}
.p-review__right {
  width: 73%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 967.8px) {
  .p-review__right {
    width: 100%;
  }
}
.p-review__comment {
  font-size: 22px;
}
@media (max-width: 967.8px) {
  .p-review__comment {
    font-size: 20px;
  }
}
.p-review__info {
  display: flex;
  gap: 20px;
}
.p-review__name {
  font-size: 20px;
  font-weight: bold;
}
.p-review__address {
  font-size: 16px;
  line-height: 2;
}
.p-review__cta {
  margin-top: 80px;
}
@media (max-width: 967.8px) {
  .p-review__cta {
    margin-top: 50px;
  }
}

.page-head {
  width: 100%;
  height: 290px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgb(230, 254, 255) 50%, rgba(255, 255, 255, 0));
}
@media (max-width: 967.8px) {
  .page-head {
    height: 200px;
  }
}

.p-partner-content {
  background-color: #ffffff;
}

.p-partner .c-title--h2 {
  margin-top: 30px;
  margin-bottom: 32px;
}
.p-partner__description {
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 767.8px) {
  .p-partner__description {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.p-partner__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}
.p-partner__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-partner__heading {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  padding: 2px 16px;
  background: linear-gradient(90deg, #3DA8AC 0%, #E8FEFF 81%);
  margin: 0;
}
@media (max-width: 967.8px) {
  .p-partner__heading {
    background: linear-gradient(90deg, #3DA8AC 0%, #E8FEFF 110%);
  }
}
@media (max-width: 767.8px) {
  .p-partner__heading {
    font-size: 20px;
    background: linear-gradient(90deg, #3DA8AC 0%, #E8FEFF 150%);
  }
}
.p-partner__text {
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  padding: 0 16px;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-partner__text {
    font-size: 14px;
    padding: 0 8px;
  }
}
.p-partner__contact-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}
@media (max-width: 767.8px) {
  .p-partner__contact-content {
    padding: 0 8px;
  }
}
.p-partner__tel {
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #333333;
}
.p-partner__tel:hover {
  opacity: 0.8;
}

.p-company__greeting {
  margin-bottom: 24px;
}
.p-company__hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px 0;
}
@media (min-width: 968px) {
  .p-company__hero {
    padding: 64px 0;
    min-height: 869px;
  }
}
.p-company__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 100%);
  pointer-events: none;
}
.p-company__title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
  font-size: clamp(32px, 4vw, 48px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.p-company__title--with-border::after {
  content: "";
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #40b7bc;
}
.p-company__greeting-content {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 40px;
}
@media (min-width: 968px) {
  .p-company__greeting-content {
    padding: 40px;
  }
}
.p-company__greeting-text {
  margin-bottom: 40px;
}
.p-company__greeting-lead {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}
.p-company__greeting-body {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}
@media (min-width: 968px) {
  .p-company__greeting-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 968px) {
  .p-company__greeting-text-section {
    flex: 1;
    max-width: 600px;
  }
}
.p-company__greeting-message {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}
@media (min-width: 968px) {
  .p-company__greeting-message {
    margin-bottom: 0;
  }
}
.p-company__greeting-signature {
  display: block;
  margin-top: 16px;
  font-weight: 500;
}
@media (min-width: 968px) {
  .p-company__greeting-signature {
    text-align: left;
  }
}
.p-company__greeting-highlight {
  color: #d73502;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #d73502;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.p-company__greeting-photo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 968px) {
  .p-company__greeting-photo {
    width: 255px;
    height: 231px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    flex-shrink: 0;
  }
}
.p-company__table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
}
.p-company__table th,
.p-company__table td {
  padding: 14px 10px;
  border: 1px solid #eee;
  vertical-align: middle;
}
.p-company__table th {
  background-color: #EEFEFF;
  font-weight: 700;
  text-align: center;
  width: 30%;
  font-size: clamp(16px, 2vw, 22px);
}
@media (min-width: 968px) {
  .p-company__table th {
    width: 400px;
  }
}
.p-company__table td {
  font-weight: 500;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
}
.p-company__table a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-company__table a:hover {
  opacity: 0.7;
}
.p-company__table a:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
  background-color: rgba(64, 183, 188, 0.1);
  border-radius: 2px;
}
.p-company__table a[href^="tel:"] {
  color: #40b7bc;
  font-weight: 600;
}
.p-company__table a[href^="tel:"]:hover, .p-company__table a[href^="tel:"]:focus {
  text-decoration: underline;
}
.p-company__media-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}
.p-company__media-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 968px) {
  .p-company__media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 40px;
  }
}
.p-company__media-more {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 479.8px) {
  .p-company__media-more {
    text-align: center;
  }
}
.p-company__media-empty {
  text-align: center;
  color: #f8f9fa;
  margin-top: 40px;
}

.p-single__layout {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 968px) {
  .p-single__layout {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
}
.p-single__main {
  min-width: 0;
}
.p-single__sidebar-desktop {
  display: block;
}
@media (max-width: 967.8px) {
  .p-single__sidebar-desktop {
    display: none;
  }
}
.p-single__sidebar-mobile {
  display: block;
  margin-top: 32px;
  margin-bottom: clamp(60px, 10vw, 112px);
}
@media (min-width: 968px) {
  .p-single__sidebar-mobile {
    display: none;
  }
}
.p-single__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  margin-bottom: clamp(16px, 2vw, 24px);
}
@media (min-width: 968px) {
  .p-single__title {
    font-size: clamp(32px, 4vw, 42px);
  }
}
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 15px);
  color: #333333;
}
.p-single__date {
  display: inline-block;
  color: #666;
}
.p-single__categories {
  display: flex;
  gap: clamp(6px, 1vw, 8px);
}
.p-single__category {
  background-color: #40b7bc;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.p-single__category:hover {
  background-color: #2AA9AE;
}
.p-single__thumbnail {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
}
.p-single__thumbnail img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-single__content {
  margin-bottom: clamp(40px, 5vw, 60px);
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p-single__content p {
  margin-bottom: clamp(16px, 2vw, 24px);
}
.p-single__content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin: clamp(32px, 4vw, 48px) 0 clamp(16px, 2vw, 24px);
  color: #333333;
}
.p-single__content h2:first-child {
  margin-top: 0;
}
.p-single__content h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  margin: clamp(24px, 3vw, 32px) 0 clamp(12px, 1.5vw, 16px);
  color: #333333;
}
.p-single__content h4, .p-single__content h5, .p-single__content h6 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  margin: clamp(20px, 2.5vw, 24px) 0 clamp(12px, 1.5vw, 16px);
  color: #333333;
}
.p-single__content img {
  max-width: 100%;
  height: auto;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-radius: 4px;
}
.p-single__content blockquote {
  background-color: #f8f8f8;
  border-left: 4px solid #40b7bc;
  padding: clamp(16px, 2vw, 24px);
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-radius: 0 4px 4px 0;
}
.p-single__content ul, .p-single__content ol {
  margin-bottom: clamp(16px, 2vw, 24px);
  padding-left: clamp(20px, 2.5vw, 32px);
}
.p-single__content li {
  margin-bottom: 8px;
}
.p-single__content table {
  width: 100%;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-collapse: collapse;
}
.p-single__content table th, .p-single__content table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}
.p-single__content table th {
  background-color: #f8f8f8;
  font-weight: 600;
}
.p-single__related {
  margin: clamp(48px, 6vw, 80px) 0;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 2px solid #f0f0f0;
}
.p-single__related-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #333333;
}
.p-single__related-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 480px) {
  .p-single__related-list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }
  .p-single__related-list::-webkit-scrollbar {
    height: 4px;
  }
  .p-single__related-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
  }
  .p-single__related-list::-webkit-scrollbar-thumb {
    background: #40b7bc;
    border-radius: 2px;
  }
}
@media (min-width: 968px) {
  .p-single__related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    gap: clamp(20px, 2.5vw, 32px);
  }
}
.p-single__related-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 480px) {
  .p-single__related-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
}
@media (min-width: 968px) {
  .p-single__related-item {
    flex: unset;
  }
}
.p-single__related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.p-single__related-link {
  display: block;
  text-decoration: none;
  color: #333333;
}
.p-single__related-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #ffffff;
}
.p-single__related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.p-single__related-image--default img {
  padding: 12px;
  box-sizing: border-box;
}
.p-single__related-content {
  padding: clamp(16px, 2vw, 20px);
}
.p-single__related-post-title {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-single__related-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: clamp(11px, 1.3vw, 13px);
}
.p-single__related-date {
  color: #666;
}
.p-single__related-category {
  background-color: #2AA9AE;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 500;
}
.p-single__related-excerpt {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-links {
  text-align: center;
  margin: clamp(40px, 5vw, 60px) 0;
}
.page-links a, .page-links span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  font-size: clamp(13px, 1.4vw, 15px);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page-links a:hover, .page-links span:hover {
  background-color: #40b7bc;
  color: #ffffff;
}
.page-links span:not(.current) {
  cursor: default;
  opacity: 0.5;
}
.page-links span.current {
  background-color: #40b7bc;
  color: #ffffff;
  font-weight: 600;
}

.p-single-case__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-case__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  margin-bottom: clamp(16px, 2vw, 24px);
}
@media (min-width: 968px) {
  .p-single-case__title {
    font-size: clamp(32px, 4vw, 42px);
  }
}
.p-single-case__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 15px);
  color: #333333;
}
.p-single-case__date {
  display: inline-block;
  color: #666;
}
.p-single-case__plan {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-single-case__plan-label {
  color: #666;
}
.p-single-case__plan-name {
  background-color: #40b7bc;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
}
.p-single-case__thumbnail {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
}
.p-single-case__thumbnail img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-single-case__content {
  margin-bottom: clamp(40px, 5vw, 60px);
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p-single-case__content p {
  margin-bottom: clamp(16px, 2vw, 24px);
}
.p-single-case__content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin: clamp(32px, 4vw, 48px) 0 clamp(16px, 2vw, 24px);
  color: #333333;
}
.p-single-case__content h2:first-child {
  margin-top: 0;
}
.p-single-case__content h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  margin: clamp(24px, 3vw, 32px) 0 clamp(12px, 1.5vw, 16px);
  color: #333333;
}
.p-single-case__content h4, .p-single-case__content h5, .p-single-case__content h6 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  margin: clamp(20px, 2.5vw, 24px) 0 clamp(12px, 1.5vw, 16px);
  color: #333333;
}
.p-single-case__content img {
  max-width: 100%;
  height: auto;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-radius: 4px;
}
.p-single-case__content blockquote {
  background-color: #f8f8f8;
  border-left: 4px solid #40b7bc;
  padding: clamp(16px, 2vw, 24px);
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-radius: 0 4px 4px 0;
}
.p-single-case__content ul, .p-single-case__content ol {
  margin-bottom: clamp(16px, 2vw, 24px);
  padding-left: clamp(20px, 2.5vw, 32px);
}
.p-single-case__content li {
  margin-bottom: 8px;
}
.p-single-case__content table {
  width: 100%;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-collapse: collapse;
}
.p-single-case__content table th, .p-single-case__content table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}
.p-single-case__content table th {
  background-color: #f8f8f8;
  font-weight: 600;
}
.p-single-case__related {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid #e0e0e0;
}
.p-single-case__related-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #333333;
}
.p-single-case__related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (min-width: 480px) {
  .p-single-case__related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 968px) {
  .p-single-case__related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-single-case__related-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-single-case__related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.p-single-case__related-link {
  display: block;
  text-decoration: none;
  color: #333333;
}
.p-single-case__related-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f0f0f0;
}
.p-single-case__related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.p-single-case__related-image:hover img {
  transform: scale(1.05);
}
.p-single-case__related-content {
  padding: clamp(16px, 2vw, 20px);
}
.p-single-case__related-case-title {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-single-case__related-excerpt {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-links {
  text-align: center;
  margin: clamp(40px, 5vw, 60px) 0;
}
.page-links a, .page-links span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  font-size: clamp(13px, 1.4vw, 15px);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page-links a:hover, .page-links span:hover {
  background-color: #40b7bc;
  color: #ffffff;
}
.page-links span:not(.current) {
  cursor: default;
  opacity: 0.5;
}
.page-links span.current {
  background-color: #40b7bc;
  color: #ffffff;
  font-weight: 600;
}

.p-archive__header {
  background: rgba(64, 183, 188, 0.02);
  border-bottom: 1px solid rgba(64, 183, 188, 0.15);
  padding: clamp(20px, 4vw, 32px) 0;
}
.p-archive__header-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  color: #333333;
  margin: 0;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.3;
}
.p-archive__layout {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: clamp(60px, 10vw, 112px);
}
@media (min-width: 968px) {
  .p-archive__layout {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
}
.p-archive__main {
  min-width: 0;
}
.p-archive__sidebar-desktop {
  display: block;
}
@media (max-width: 967.8px) {
  .p-archive__sidebar-desktop {
    display: none;
  }
}
.p-archive__sidebar-mobile {
  display: block;
  margin-top: 32px;
  margin-bottom: clamp(60px, 10vw, 112px);
}
@media (min-width: 968px) {
  .p-archive__sidebar-mobile {
    display: none;
  }
}
.p-archive__posts {
  display: grid;
  gap: 20px;
}
@media (min-width: 968px) {
  .p-archive__posts {
    gap: 24px;
  }
}
.p-archive__pagination {
  margin-top: 32px;
  margin-bottom: clamp(60px, 10vw, 112px);
  text-align: center;
}
.p-archive__pagination ul {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-archive__pagination a.page-numbers,
.p-archive__pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
}
.p-archive__pagination a.page-numbers.current,
.p-archive__pagination span.page-numbers.current {
  background: #40b7bc;
  border-color: #40b7bc;
  color: #ffffff;
}
.p-archive__pagination a.page-numbers.prev, .p-archive__pagination a.page-numbers.next,
.p-archive__pagination span.page-numbers.prev,
.p-archive__pagination span.page-numbers.next {
  padding: 8px 12px;
}
.p-archive__pagination a.page-numbers:hover {
  background: #40b7bc;
  border-color: #40b7bc;
  color: #ffffff;
}
.p-archive__empty {
  text-align: center;
  padding: 32px 0;
}
.p-archive__empty h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 16px;
  color: #333333;
}
.p-archive__empty p {
  margin-bottom: 20px;
  color: #333333;
}
.p-archive__result-count {
  font-size: 16px;
  color: #333333;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(64, 183, 188, 0.05);
  border-left: 4px solid #40b7bc;
  border-radius: 4px;
}
.p-archive__search-again {
  margin: 20px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.p-case__text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin: 40px 0;
  text-align: left;
}
@media (max-width: 479.8px) {
  .p-case__text {
    font-size: 16px;
    margin: 30px 0;
  }
}
.p-case__text .d-inline-block {
  display: inline-block;
}
.p-case__cards {
  margin-bottom: 60px;
}
.p-case__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}
.p-case .posts-navigation {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 479.8px) {
  .p-case .posts-navigation {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.p-case .no-posts {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #666;
}
@media (max-width: 479.8px) {
  .p-case .no-posts {
    padding: 40px 20px;
    font-size: 16px;
  }
}
.p-case__cta {
  margin-top: 80px;
}
@media (max-width: 479.8px) {
  .p-case__cta {
    margin-top: 60px;
  }
}

.p-single-case__header {
  margin-bottom: 30px;
}
.p-single-case__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 479.8px) {
  .p-single-case__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.p-single-case__date {
  font-size: 14px;
  color: #666;
}
.p-single-case__plan {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-single-case__plan-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.p-single-case__plan-name {
  font-size: 14px;
  color: #b69cdf;
  font-weight: 700;
  background: rgba(182, 156, 223, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}
.p-single-case__thumbnail {
  margin: 30px auto;
  text-align: center;
}
.p-single-case__thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.p-single-case__content {
  margin: 40px 0;
  line-height: 1.8;
}
.p-single-case__content p {
  margin-bottom: 20px;
}
.p-single-case__content p:last-child {
  margin-bottom: 0;
}
.p-single-case__related {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0;
}
@media (max-width: 479.8px) {
  .p-single-case__related {
    margin: 40px 0;
    padding: 30px 0;
  }
}
.p-single-case__related-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 479.8px) {
  .p-single-case__related-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.p-single-case__related-list {
  display: grid;
  gap: 20px;
}
@media (min-width: 968px) {
  .p-single-case__related-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 479.8px) {
  .p-single-case__related-list {
    gap: 16px;
  }
}
.p-single-case__related-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-single-case__related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.p-single-case__related-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-single-case__related-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.p-single-case__related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.p-single-case__related-item:hover .p-single-case__related-image img {
  transform: scale(1.05);
}
.p-single-case__related-content {
  padding: 20px;
}
@media (max-width: 479.8px) {
  .p-single-case__related-content {
    padding: 16px;
  }
}
.p-single-case__related-case-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-single-case__related-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-case-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
}
@media (min-width: 968px) {
  .c-case-item {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (max-width: 967.8px) {
  .c-case-item {
    flex-direction: column;
  }
}
.c-case-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.c-case-item__image {
  overflow: hidden;
}
@media (min-width: 968px) {
  .c-case-item__image {
    flex: 0 0 280px;
    height: auto;
  }
}
@media (max-width: 967.8px) {
  .c-case-item__image {
    width: 100%;
    height: 200px;
  }
}
.c-case-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.c-case-item:hover .c-case-item__image img {
  transform: scale(1.05);
}
.c-case-item__content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 479.8px) {
  .c-case-item__content {
    padding: 20px;
  }
}
.c-case-item__meta {
  margin-bottom: 16px;
}
.c-case-item__plan {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.c-case-item__plan-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.c-case-item__plan-name {
  font-size: 12px;
  color: #b69cdf;
  font-weight: 700;
  background: rgba(182, 156, 223, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.c-case-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 16px;
}
.c-case-item__title a {
  text-decoration: none;
  color: inherit;
}
.c-case-item__title a:hover {
  color: #40b7bc;
}
@media (max-width: 479.8px) {
  .c-case-item__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.c-case-item__excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
@media (max-width: 479.8px) {
  .c-case-item__excerpt {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.c-case-item__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 479.8px) {
  .c-case-item__action {
    justify-content: center;
  }
}

.p-plan-section {
  background: #FFF6E8;
}
.p-plan-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 815px;
  margin: 0 auto 60px;
}
.p-plan-section__header .c-title--front-h2 {
  color: #333333;
  font-size: 48px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 967.8px) {
  .p-plan-section__header .c-title--front-h2 {
    font-size: 36px;
  }
}
@media (max-width: 479.8px) {
  .p-plan-section__header .c-title--front-h2 {
    font-size: 28px;
  }
}
.p-plan-section__header .c-title--front-sub {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 479.8px) {
  .p-plan-section__header .c-title--front-sub {
    font-size: 16px;
  }
}
.p-plan-section__content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-plan-section__category {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-plan-section__category--family {
  background: #FFF5F8;
  border-radius: 12px;
  padding: 24px 40px 60px;
}
@media (max-width: 479.8px) {
  .p-plan-section__category--family {
    padding: 20px 16px 40px;
  }
}
.p-plan-section__category--cremation {
  background: #F3F2F5;
  border-radius: 12px;
  padding: 24px 40px 60px;
}
@media (max-width: 479.8px) {
  .p-plan-section__category--cremation {
    padding: 20px 16px 40px;
  }
}
.p-plan-section__category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-plan-section__category-title {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-plan-section__category-title .p-plan-section__category-prefix {
    flex-basis: 100%;
  }
}
.p-plan-section__category-prefix, .p-plan-section__category-suffix {
  color: #333333;
  font-size: 24px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.48px;
}
.p-plan-section__category-main {
  color: #D65778;
  font-size: 36px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.72px;
}
.p-plan-section__category--cremation .p-plan-section__category-main {
  color: #7A669B;
}
.p-plan-section__category-sub {
  color: #D65778;
  font-size: 24px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.48px;
}
.p-plan-section__category-badge {
  background: #FF0606;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 479.8px) {
  .p-plan-section__category-badge {
    padding: 6px 12px;
    font-size: 12px;
  }
}
.p-plan-section__badge-text {
  color: white;
  font-size: 14px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.28px;
}
@media (max-width: 479.8px) {
  .p-plan-section__badge-text {
    font-size: 12px;
  }
}
.p-plan-section__badge-price {
  color: #F3F019;
  font-size: 20px;
  font-family: Futura, sans-serif;
  font-weight: 500;
  letter-spacing: 0.4px;
}
@media (max-width: 479.8px) {
  .p-plan-section__badge-price {
    font-size: 16px;
  }
}
.p-plan-section__badge-unit {
  color: #F3F019;
  font-size: 14px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.28px;
}
@media (max-width: 479.8px) {
  .p-plan-section__badge-unit {
    font-size: 12px;
  }
}
.p-plan-section__category-description {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.p-plan-section__plans {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 479.8px) {
  .p-plan-section__plans {
    gap: 20px;
  }
}
.p-plan-section__plans-row {
  display: flex;
  justify-content: center;
  gap: 94px;
}
@media (max-width: 967.8px) {
  .p-plan-section__plans-row {
    gap: 40px;
  }
}
@media (max-width: 967.8px) {
  .p-plan-section__plans-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-plan-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
@media (max-width: 479.8px) {
  .p-plan-section__footer {
    justify-content: center;
  }
}

.p-plan-card {
  width: 330px;
  height: 307px;
  background: white;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.p-plan-card__header {
  padding: 6px 16px;
  color: white;
  text-align: center;
}
.p-plan-card__subtitle {
  font-size: 16px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.p-plan-card__title-section {
  padding: 8px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-plan-card__brand {
  font-size: 18px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.p-plan-card__title {
  font-size: 26px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.p-plan-card__content {
  display: flex;
  gap: 8px;
  padding: 0 10px;
  flex: 1;
}
.p-plan-card__image {
  width: 160px;
  height: 112px;
  flex-shrink: 0;
}
.p-plan-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-plan-card__image--zoom-out img {
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f5f5f5;
}
.p-plan-card__services {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.p-plan-card__service {
  color: white;
  font-size: 14px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  padding: 2px 6px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-plan-card__price {
  padding: 0px 10px 6px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.p-plan-card__price-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.p-plan-card__price-amount {
  color: #B3261E;
  font-size: 50px;
  font-family: "Futura", "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
.p-plan-card__price-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 72px;
  padding-bottom: 16px;
  padding-left: 2px;
}
.p-plan-card__price-tax {
  color: #B3261E;
  font-size: 12px;
  font-family: "YuGothic", "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-plan-card__price-unit {
  color: #B3261E;
  font-size: 16px;
  font-family: "YuGothic", "BIZ UDGothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/**
 * 葬儀場アーカイブページスタイル
 * 
 * 市区町村選択画面と一覧表示のスタイル定義
 */
.p-hall-archive {
  padding: 80px 0;
  background-color: #fff;
}
.p-hall-archive__header {
  padding: 10px;
  background-color: #90D5D7;
  text-align: center;
}
.p-hall-archive__title {
  margin: 0;
  display: inline-block;
}
.p-hall-archive__title-prefecture {
  color: #333333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-hall-archive__title-prefecture {
    font-size: 24px;
  }
}
.p-hall-archive__title-suffix {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-hall-archive__title-suffix {
    font-size: 14px;
    display: block;
    margin-top: 8px;
  }
}
.p-hall-archive__subtitle {
  padding: 10px;
  text-align: center;
  margin: 24px 0;
}
.p-hall-archive__subtitle-highlight {
  color: #CD1211;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-hall-archive__subtitle-highlight {
    font-size: 24px;
  }
}
.p-hall-archive__subtitle-text {
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 479.8px) {
  .p-hall-archive__subtitle-text {
    font-size: 18px;
  }
}
.p-hall-archive__container {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #B3B3B3;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 967.8px) {
  .p-hall-archive__container {
    margin: 0 20px;
  }
}
@media (max-width: 479.8px) {
  .p-hall-archive__container {
    margin: 0 15px;
  }
}
.p-hall-archive__container-header {
  padding: 10px 20px;
  background-color: #EDE8E8;
  border-bottom: 1px solid #B3B3B3;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.p-hall-archive__section {
  padding: 0 40px 40px;
}
@media (max-width: 767.8px) {
  .p-hall-archive__section {
    padding: 0 20px 40px;
  }
}
.p-hall-archive__section:last-child {
  padding-bottom: 40px;
}
.p-hall-archive__section-header {
  margin: 46px 0 10px;
  padding: 10px 20px;
  background-color: #B0E5E7;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
@media (max-width: 479.8px) {
  .p-hall-archive__section-header {
    margin: 30px 0 10px;
    font-size: 16px;
  }
}
.p-hall-archive__cities {
  padding: 10px 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 34px 70px;
}
@media (max-width: 967.8px) {
  .p-hall-archive__cities {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 24px 40px;
  }
}
@media (max-width: 479.8px) {
  .p-hall-archive__cities {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px 20px;
  }
}
.p-hall-archive__city-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1569CD;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid #1569CD;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
.p-hall-archive__city-link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.p-hall-archive__city-link--disabled {
  color: #999;
  border-bottom-color: #999;
  cursor: not-allowed;
  pointer-events: none;
}
.p-hall-archive__city-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  font-size: 10px;
  color: inherit;
}
.p-hall-archive__city-name {
  color: inherit;
}

.p-hall-list-content {
  padding: 60px 0;
}
.p-hall-list-content .p-hall-list__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 480px));
  gap: 32px;
  justify-content: center;
}
@media (max-width: 967.8px) {
  .p-hall-list-content .p-hall-list__cards {
    grid-template-columns: repeat(auto-fill, minmax(320px, 400px));
    gap: 24px;
    justify-content: center;
  }
}
@media (max-width: 479.8px) {
  .p-hall-list-content .p-hall-list__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-hall-list-content .p-hall-list__no-results {
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 80px 20px;
}

a.c-hall-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-hall-card {
  background-color: #F3FAFA;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.c-hall-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.c-hall-card:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.c-hall-card__inner {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.c-hall-card__title {
  margin: 0 0 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
.c-hall-card__info {
  margin-bottom: 24px;
  flex-grow: 1;
}
.c-hall-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.c-hall-card__info-item:last-child {
  margin-bottom: 0;
}
.c-hall-card__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.c-hall-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  word-break: break-word;
}
.c-hall-card__text--phone {
  color: #40b7bc;
  cursor: pointer;
}
.c-hall-card__text--phone:hover {
  text-decoration: underline;
}
.c-hall-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-hall-card__tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background-color: #fff;
}
.c-hall-card__tag--active {
  border: 2px solid #40B7BC;
  color: #40B7BC;
}
.c-hall-card__tag--inactive {
  border: 2px solid #B3B3B3;
  color: #B3B3B3;
}

.p-hall-error {
  padding: 80px 0;
  text-align: center;
}
.p-hall-error h1 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  color: #333333;
}
.p-hall-error p {
  margin: 0 0 30px;
  font-size: 16px;
  color: #666;
}

.navigation.pagination {
  margin: 40px 0;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  color: #40b7bc;
  text-decoration: none;
  border: 1px solid #40b7bc;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navigation.pagination .page-numbers:hover {
  background-color: #40b7bc;
  color: #fff;
}
.navigation.pagination .page-numbers.current {
  background-color: #40b7bc;
  color: #fff;
  pointer-events: none;
}
.navigation.pagination .page-numbers.dots {
  border: none;
  padding: 8px 4px;
}

.p-single-hall {
  padding: clamp(40px, 5vw, 60px) 0;
}
.p-single-hall__header {
  margin: clamp(24px, 3vw, 32px) 0 clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 24px);
}
.p-single-hall__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}
.p-single-hall__category {
  display: inline-block;
  padding: 6px 16px;
  background-color: #40b7bc;
  color: #ffffff;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  border-radius: 20px;
}
.p-single-hall__description {
  margin: clamp(20px, 2.5vw, 32px) 0 clamp(24px, 3vw, 32px);
}
.p-single-hall__description p {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
  color: #666;
  margin: 0;
  white-space: pre-line;
}
.p-single-hall__thumbnail {
  margin: clamp(20px, 2.5vw, 32px) auto clamp(32px, 4vw, 48px);
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.p-single-hall__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.p-single-hall .c-title--h2 {
  margin-bottom: clamp(24px, 3vw, 32px);
}
.p-single-hall__access-item .c-title--h3 {
  margin-bottom: 8px !important;
}
.p-single-hall__info {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-hall__info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.p-single-hall__info-table th {
  background-color: #F8F8F8;
  padding: clamp(12px, 1.5vw, 16px);
  text-align: left;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  color: #333333;
  border: 1px solid #E0E0E0;
  width: 150px;
}
@media (max-width: 479.8px) {
  .p-single-hall__info-table th {
    width: 120px;
  }
}
.p-single-hall__info-table td {
  padding: clamp(12px, 1.5vw, 16px);
  font-size: clamp(14px, 1.6vw, 16px);
  color: #333333;
  line-height: 1.6;
  border: 1px solid #E0E0E0;
}
.p-single-hall__info-table tr:nth-child(even) {
  background-color: #FAFAFA;
}
.p-single-hall__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #40b7bc;
}
.p-single-hall__phone::before {
  content: "📞";
  font-size: 18px;
}
.p-single-hall__facilities {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-hall__facility-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
}
@media (min-width: 768px) {
  .p-single-hall__facility-tags {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
.p-single-hall__facility-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 2px solid #40b7bc;
  border-radius: 8px;
}
.p-single-hall__facility-icon {
  font-size: 20px;
  line-height: 1;
}
.p-single-hall__facility-name {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
}
.p-single-hall__details {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-hall__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 32px);
}
@media (min-width: 768px) {
  .p-single-hall__details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-single-hall__detail-item {
  padding: clamp(20px, 2.5vw, 24px);
  background-color: #F9F9F9;
  border-left: 4px solid #40b7bc;
  border-radius: 0 8px 8px 0;
}
.p-single-hall__detail-value {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #333333;
  line-height: 1.8;
  margin: 0;
  white-space: pre-line;
}
.p-single-hall__external-link {
  color: #40b7bc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.p-single-hall__external-link:hover {
  color: rgb(51.0476190476, 145.9642857143, 149.9523809524);
  text-decoration: underline;
}
.p-single-hall__access {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-hall__map {
  margin-bottom: clamp(24px, 3vw, 32px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-single-hall__map iframe {
  display: block;
  width: 100%;
  height: 400px;
}
@media (max-width: 479.8px) {
  .p-single-hall__map iframe {
    height: 300px;
  }
}
.p-single-hall__access-info {
  background-color: #F0F8F8;
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
}
.p-single-hall__access-item {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.p-single-hall__access-item:last-child {
  margin-bottom: 0;
}
.p-single-hall__access-text {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #333333;
  margin: 0;
}
.p-single-hall__gallery {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.p-single-hall__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 479.8px) {
  .p-single-hall__gallery-grid {
    grid-template-columns: 1fr;
  }
}
.p-single-hall__gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: #F0F0F0;
  aspect-ratio: 4/3;
}
.p-single-hall__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.p-single-hall__gallery-item img:hover {
  transform: scale(1.05);
}
.p-single-hall__content {
  margin-bottom: clamp(40px, 5vw, 60px);
  line-height: 1.8;
  font-size: clamp(14px, 1.6vw, 16px);
}
.p-single-hall__content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin: clamp(32px, 4vw, 48px) 0 clamp(16px, 2vw, 24px);
  color: #333333;
}
.p-single-hall__content h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  margin: clamp(24px, 3vw, 32px) 0 clamp(12px, 1.5vw, 16px);
  color: #333333;
}
.p-single-hall__content p {
  margin-bottom: clamp(16px, 2vw, 24px);
}
.p-single-hall__content img {
  max-width: 100%;
  height: auto;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-radius: 4px;
}
.p-single-hall__content ul, .p-single-hall__content ol {
  margin-bottom: clamp(16px, 2vw, 24px);
  padding-left: clamp(20px, 2.5vw, 32px);
}
.p-single-hall__content li {
  margin-bottom: 8px;
}
.p-single-hall__content table {
  width: 100%;
  margin: clamp(20px, 2.5vw, 32px) 0;
  border-collapse: collapse;
}
.p-single-hall__content table th, .p-single-hall__content table td {
  padding: 12px;
  border: 1px solid #E0E0E0;
}
.p-single-hall__content table th {
  background-color: #F8F8F8;
  font-weight: 600;
}
.p-single-hall__related {
  margin: clamp(48px, 6vw, 80px) 0;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 2px solid #F0F0F0;
}
.p-single-hall__related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 967.8px) {
  .p-single-hall__related-list {
    grid-template-columns: 1fr;
  }
}

.p-404 {
  padding: 80px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-404 {
    padding: 120px 0;
  }
}
.p-404__content {
  max-width: 620px;
  margin: 0 auto;
}
.p-404__number {
  font-size: 80px;
  font-weight: 700;
  color: rgba(64, 183, 188, 0.3);
  line-height: 1;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-404__number {
    font-size: 120px;
    margin-bottom: 32px;
  }
}
.p-404__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-404__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.p-404__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-404__text {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
.p-404__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(90deg, #97D0D2 0%, #3DA8AC 100%);
  border-radius: 40px;
  color: #ffffff;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.c-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.c-btn--small {
  width: 150px;
  height: 41px;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21.7px;
  border-radius: 33px;
  justify-content: center;
  gap: 12px;
}
.c-btn--small .c-btn__text {
  text-align: center;
}
.c-btn--small .c-btn__arrow {
  width: 23px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-btn--small .c-btn__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4px;
}
.c-btn--large {
  width: 600px;
  height: 40px;
  padding: 10px 20px;
}
.c-btn--simple {
  background: #40b7bc;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
}
.c-btn--simple:hover {
  background: rgb(51.0476190476, 145.9642857143, 149.9523809524);
  transform: none;
  filter: none;
}

.c-btn-header-pc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 4px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 968px) and (max-width: 1200px) {
  .c-btn-header-pc {
    font-size: 20px;
    line-height: 30px;
  }
}
.c-btn-header-pc--urgent {
  background: #cd1211;
  color: #ffffff;
}
.c-btn-header-pc--urgent:hover {
  background: rgb(157.9054054054, 13.8648648649, 13.0945945946);
  color: #ffffff;
}
.c-btn-header-pc--primary {
  background: #40b7bc;
  color: #ffffff;
}
.c-btn-header-pc--primary:hover {
  background: rgb(51.0476190476, 145.9642857143, 149.9523809524);
  color: #ffffff;
}

.c-btn-header-sp {
  width: 100%;
  min-height: 50px;
  padding: 6px 20px 8px 90px;
  border-radius: 8px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.25);
}
.c-btn-header-sp:hover {
  box-shadow: none;
  transform: translateY(3px);
  filter: brightness(1.1);
}
.c-btn-header-sp--urgent {
  background-color: #C94247;
}
.c-btn-header-sp--primary {
  background-color: #2AA9AE;
}
.c-btn-header-sp__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  margin-top: 3px;
  flex-shrink: 0;
}
.c-btn-header-sp__icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-btn-header-sp__text--yellow {
  color: #F2EE00;
}
.c-btn-header-sp__text--bold {
  font-weight: 600;
}
.c-btn-header-sp__text--large {
  font-size: 18px;
  line-height: 25px;
}
.c-btn-header-sp__text--medium {
  font-size: 16px;
  line-height: 22px;
}
.c-btn-header-sp__text--small {
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
}

.c-urgent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 26.333px;
  height: 23.408px;
}
.c-urgent-icon .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 17px;
  z-index: 0;
}
.c-urgent-icon .exclamation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 7px;
  z-index: 1;
}

.c-readmore {
  width: 310px;
  padding: 10px;
  outline: 2px solid #97D0D2;
  outline-offset: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}
@media (max-width: 479.8px) {
  .c-readmore {
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    position: relative;
  }
}
.c-readmore:focus {
  outline: 2px solid #97D0D2;
  outline-offset: -2px;
}
.c-readmore:focus-visible {
  outline: 2px solid #97D0D2;
  outline-offset: 2px;
}
.c-readmore:hover {
  background-color: #97D0D2;
}
.c-readmore:hover .c-readmore__text {
  color: #fff;
}
.c-readmore:hover .c-readmore__arrow {
  filter: brightness(0) invert(1);
}
.c-readmore__text {
  width: 190px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #40B7BC;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: right;
  margin: 0;
}
@media (max-width: 479.8px) {
  .c-readmore__text {
    width: auto;
    justify-content: center;
  }
}
.c-readmore__arrow {
  width: 55px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/icon-arrow.svg");
  background-size: 36px 9px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 479.8px) {
  .c-readmore__arrow {
    position: absolute;
    right: 15px;
  }
}

.c-readmore--outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 310px;
  height: 50px;
  padding: 10px;
  outline: 2px solid #97D0D2;
  outline-offset: -2px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}
.c-readmore--outline:hover {
  background: linear-gradient(90deg, #97D0D2 0%, #3DA8AC 100%);
}
.c-readmore--outline:hover .c-readmore__text {
  color: #fff;
}
.c-readmore--outline:hover .c-readmore__arrow-line {
  background-color: #fff;
}
.c-readmore--outline:hover .c-readmore__arrow-line::after {
  border-color: #fff;
}
.c-readmore--outline .c-readmore__text {
  color: #40B7BC;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 30px;
  text-align: right;
  width: 190px;
  margin: 0;
}
.c-readmore--outline .c-readmore__arrow-container {
  width: 55px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-readmore--outline .c-readmore__arrow-line {
  width: 36px;
  height: 2px;
  background: #97D0D2;
  position: relative;
  transition: all 0.3s ease;
}
.c-readmore--outline .c-readmore__arrow-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #97D0D2;
  border-right: 2px solid #97D0D2;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.c-hero {
  position: relative;
  width: 100vw;
  height: 290px;
  background: #FEFEFE;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.c-hero::before {
  content: "";
  position: absolute;
  width: 651px;
  height: 290px;
  right: 0;
  top: 1px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.c-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #E6FEFF 0%, #E6FEFF 48%, rgba(230, 254, 255, 0.9) 52%, rgba(230, 254, 255, 0.7) 58%, rgba(230, 254, 255, 0.4) 68%, rgba(230, 254, 255, 0.1) 78%, rgba(255, 255, 255, 0) 85%);
  z-index: 2;
}
.c-hero .image-gradient {
  position: absolute;
  width: 651px;
  height: 290px;
  right: 0;
  top: 1px;
  background: linear-gradient(90deg, #E6FEFF 0%, rgba(230, 254, 255, 0.8) 10%, rgba(230, 254, 255, 0.3) 20%, rgba(255, 255, 255, 0) 30%);
  z-index: 3;
}
@media (max-width: 767.8px) {
  .c-hero {
    height: 200px;
  }
  .c-hero::before {
    width: 50%;
    height: 200px;
    top: 0;
  }
  .c-hero .image-gradient {
    width: 50%;
    height: 200px;
    top: 0;
  }
}
.c-hero--faq::before {
  background-image: url("../images/faq-hero.png");
}
.c-hero--partner::before {
  background-image: url("../images/handshake.png");
}
.c-hero--urgency {
  background: linear-gradient(90deg, #F2F6FF 48%, #BDC9F3 69%, #40476B 100%);
}
.c-hero--urgency::after {
  display: none;
}
.c-hero--urgency .image-gradient {
  display: none;
}
.c-hero--for-beginners::before {
  background-image: url("../images/for-beginners/hero-background-02.jpeg");
}
.c-hero--plan::before {
  background-image: url("../images/plan/plan-hero-image.png");
}
.c-hero--review::before {
  background-image: url("../images/review/review-hero-image.jpeg");
}

.c-title {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 0;
}
.c-title--h1 {
  position: absolute;
  left: max(20px, (100vw - 1200px) / 2 + 20px);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: bold;
  line-height: 1.2;
  z-index: 4;
}
@media (min-width: 768px) {
  .c-title--h1 {
    left: max(30px, (92vw - 1200px) / 2 + 64px);
  }
}
.c-title--h1::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(57px);
  box-shadow: 0 0 57px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
@media (max-width: 967.8px) {
  .c-title--h1::before {
    display: none;
  }
}
.c-title--h1.c-title--overlay {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.c-title--h2 {
  margin-bottom: 20px;
  padding: 2px 16px 4px 16px;
  border-left: 6px solid #40b7bc;
}
.c-title--h2 h2 {
  font-size: 32px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 48px;
  color: #333333;
  margin: 0;
  word-wrap: break-word;
}
@media (max-width: 767.8px) {
  .c-title--h2 h2 {
    font-size: 28px;
    line-height: 43.2px;
  }
}
.c-title--front-h2 {
  font-size: 48px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 20px;
  padding: 2px 16px 4px 16px;
  position: relative;
  text-align: center;
}
@media (max-width: 967.8px) {
  .c-title--front-h2 {
    font-size: 32px;
  }
}
.c-title--front-h2::before {
  content: "";
  position: absolute;
  top: 107%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #40b7bc;
}
@media (max-width: 967.8px) {
  .c-title--front-h2::before {
    width: 60px;
  }
}
.c-title--front-sub {
  font-size: 18px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  color: #333333;
  padding: 10px;
}
.c-title--h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 8px;
}
@media (max-width: 767.8px) {
  .c-title--h3 {
    font-size: 20px;
  }
}
.c-title--blue {
  color: #40b7bc;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
}

.c-skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 9999;
  padding: 8px 16px;
  background: #40b7bc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: top 0.2s ease-in-out;
}
.c-skip-link:focus {
  top: 6px;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.c-skip-link:hover {
  text-decoration: underline;
}
@media (prefers-contrast: high) {
  .c-skip-link {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
  }
  .c-skip-link:focus {
    outline: 3px solid #ffff00;
  }
}

.card {
  text-align: center;
  width: 100%;
}
.card__title {
  box-shadow: 6px 1px 6px 0px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 30px;
  background-color: #40b7bc;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 967.8px) {
  .card__title {
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.25);
    font-size: 22px;
    border-radius: 8px 8px 0 0;
    display: block;
  }
}
.card__inner {
  display: flex;
  justify-content: space-between;
  background-color: #F4feff;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.25);
  border: 3px solid #40b7bc;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 967.8px) {
  .card__inner {
    border-radius: 0 0 8px 8px;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 40px 10px;
  }
}
.card__left {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 967.8px) {
  .card__left {
    width: 100%;
    gap: 24px;
  }
}
.card__text {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 967.8px) {
  .card__text {
    font-size: 16px;
  }
}
.card__right {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 967.8px) {
  .card__right {
    width: 100%;
  }
}

.cta {
  border-radius: 8px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.cta:hover {
  transform: translateY(4px);
  box-shadow: none;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}
.cta--contact1, .cta--contact2 {
  background-color: #40b7bc;
}
.cta--faq {
  background-color: #EF872F;
}
.cta--plan {
  background-color: #C94247;
}
.cta__button {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 967.8px) {
  .cta__button {
    padding: 20px 10px;
  }
}
.cta__button-line1 {
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 967.8px) {
  .cta__button-line1 {
    font-size: 14px;
  }
}
.cta__button-line2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta__button-icon-left {
  margin-right: 10px;
}
@media (max-width: 967.8px) {
  .cta__button-icon-left {
    width: 30px;
  }
}
.cta__button-tag {
  color: #ffffff;
}
.cta__button-highlight {
  color: #F2EE00;
  font-weight: bold;
  font-size: 26px;
}
@media (max-width: 967.8px) {
  .cta__button-highlight {
    font-size: 20px;
  }
}
.cta__button-text-after {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 967.8px) {
  .cta__button-text-after {
    font-size: 12px;
  }
}
.cta__button-icon-right {
  margin-left: 10px;
}
@media (max-width: 967.8px) {
  .cta__button-icon-right {
    width: 30px;
  }
}

@media (max-width: 967.8px) {
  .pc-only {
    display: none;
  }
}

.c-breadcrumb {
  padding: 10px 0;
}
.c-breadcrumb__home-link {
  color: #a8a8a8;
  font-size: 14px;
}
.c-breadcrumb__parent-link, .c-breadcrumb__category-link, .c-breadcrumb__archive-link {
  color: #a8a8a8;
  font-size: 14px;
  text-decoration: none;
}
.c-breadcrumb__parent-link:hover, .c-breadcrumb__category-link:hover, .c-breadcrumb__archive-link:hover {
  color: #40b7bc;
}
.c-breadcrumb__current-link {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.reviews__item {
  min-width: 31.6666666667%;
}
@media (max-width: 967.8px) {
  .reviews__item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
}
.reviews__link {
  border: 2px solid #40b7bc;
  border-radius: 8px;
  padding: 30px 50px;
  display: inline-block;
}
.reviews__link:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  filter: brightness(1.05);
  opacity: 0.8;
}
@media (max-width: 967.8px) {
  .reviews__link {
    padding: 30px 24px;
    align-items: center;
  }
}
.reviews__title {
  font-size: 22px;
  color: #333333;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  height: 6.3rem;
  margin-bottom: 10px;
}
@media (max-width: 967.8px) {
  .reviews__title {
    height: 2.1rem;
  }
}
@media (max-width: 767.8px) {
  .reviews__title {
    height: 4.2rem;
  }
}
@media (max-width: 479.8px) {
  .reviews__title {
    height: 6.3rem;
  }
}
.reviews__content {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  text-align: left;
}
.reviews__name {
  text-align: left;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.reviews__address {
  text-align: left;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}

.slider {
  /* ← 左向き三角 */
  /* → 右向き三角 */
}
.slider__container {
  position: relative;
  width: 100%;
}
@media (max-width: 967.8px) {
  .slider__container {
    padding: 0 20px;
  }
}
.slider__wrapper {
  overflow: hidden;
}
@media (max-width: 967.8px) {
  .slider__wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.slider__track {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
@media (max-width: 967.8px) {
  .slider__track {
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }
}
.slider__button {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent; /* 背景色 */
  border-top: none;
  border-right: none;
  cursor: pointer;
  z-index: 10;
  transition: ease;
}
.slider__button:hover {
  border-width: 3px;
}
.slider__button--prev {
  left: -3%;
  top: 50%;
  transform: rotate(45deg);
}
@media (max-width: 1200px) {
  .slider__button--prev {
    left: 0%;
  }
}
@media (max-width: 967.8px) {
  .slider__button--prev {
    left: 0;
  }
}
.slider__button--next {
  right: -3%;
  top: 50%;
  transform: rotate(-135deg);
}
@media (max-width: 1200px) {
  .slider__button--next {
    right: 0%;
  }
}
@media (max-width: 967.8px) {
  .slider__button--next {
    right: 0;
  }
}

@media (max-width: 967.8px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 12px 0px 20px;
  background: #ffffff;
}
@media (min-width: 968px) {
  .l-header__inner {
    padding: 10px 54px;
  }
}
@media (min-width: 968px) and (max-width: 1200px) {
  .l-header__inner {
    padding: 10px 20px;
  }
}
@media (min-width: 968px) {
  .l-header__pc-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .l-header__pc-fixed.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 967.8px) {
  .l-header__pc-fixed {
    display: none;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-header__logo img {
  width: 150px;
  height: 80px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 967.8px) {
  .l-header__logo img {
    width: 72px;
    height: auto;
    padding-top: 10px;
  }
}
.l-header__title {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  text-decoration: none;
  margin: 0;
}
.l-header__title:hover {
  opacity: 0.8;
}
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 968px) and (max-width: 1200px) {
  .l-header__actions {
    gap: 12px;
  }
}
.l-header__description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.l-main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 968px) and (max-width: 1200px) {
  .l-main-navigation .nav-menu {
    gap: 20px;
  }
}
.l-main-navigation .nav-menu a {
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
}
@media (min-width: 968px) and (max-width: 1200px) {
  .l-main-navigation .nav-menu a {
    font-size: 20px;
  }
}
.l-main-navigation .nav-menu a:hover {
  color: #40b7bc;
}
@media (max-width: 967.8px) {
  .l-main-navigation {
    display: none;
  }
}

.c-page-section {
  background-color: #ffffff;
}
.c-page-section--padding-base {
  padding: clamp(60px, 10vw, 80px) 0;
}
.c-page-section--padding-md {
  padding: clamp(60px, 10vw, 112px) 0;
}
.c-page-section--padding-lg {
  padding: clamp(80px, 12vw, 112px) 0;
}
.c-page-section--padding-xl {
  padding: clamp(100px, 12vw, 160px) 0;
}
.c-page-section--bg-gray {
  background-color: #f8f9fa;
}
.c-page-section--bg-gradient {
  background: linear-gradient(135deg, rgba(64, 183, 188, 0.05) 0%, rgba(42, 169, 174, 0.05) 100%);
}
.c-page-section--border-top {
  border-top: 1px solid rgba(42, 169, 174, 0.1);
}
.c-page-section--bg-decoration {
  position: relative;
}
.c-page-section--bg-decoration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(42, 169, 174, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.c-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.c-section-title--primary {
  color: #40b7bc;
}
.c-section-title--secondary {
  color: #22878B;
}
.c-section-title--size-md {
  font-size: clamp(28px, 4vw, 40px);
}
.c-section-title--size-lg {
  font-size: clamp(32px, 4vw, 48px);
}
.c-section-title--with-underline::after {
  content: "";
  display: block;
  width: 130px;
  height: 4px;
  background-color: currentColor;
  margin: 16px auto 0;
}

.c-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(400px, 60vh, 600px);
}
@media (max-width: 967.8px) {
  .c-page-hero {
    margin-top: 3.6rem;
  }
}
.c-page-hero__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-page-hero__bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.4);
}
.c-page-hero__bg-wrapper--overlay-light::before {
  background: rgba(255, 255, 255, 0.28);
}
.c-page-hero__bg-wrapper--overlay-gradient::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 100%);
}
.c-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.c-page-hero__title {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 4px rgba(51, 51, 51, 0.3);
  margin-bottom: clamp(16px, 3vw, 24px);
}
.c-page-hero__title--primary {
  color: #40b7bc;
}
.c-page-hero__title--secondary {
  color: #22878B;
}
.c-page-hero__subtitle {
  color: #ffffff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(51, 51, 51, 0.2);
}
.c-page-hero--padding-sm {
  padding: 24px 0;
}
@media (min-width: 968px) {
  .c-page-hero--padding-sm {
    padding: 64px 0;
  }
}
.c-page-hero--padding-lg {
  padding: 24px 0;
}
@media (min-width: 968px) {
  .c-page-hero--padding-lg {
    padding: 64px 0;
    min-height: 869px;
  }
}

.c-hero-content-box {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 40px;
}
.c-hero-content-box__text {
  margin-bottom: 40px;
}
.c-hero-content-box__lead {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}
.c-hero-content-box__body {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}

.c-flow-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 16px 0;
}
@media (max-width: 767.8px) {
  .c-flow-arrow {
    margin: 10px 0;
  }
}
.c-flow-arrow img {
  display: block;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #262626;
  min-height: 100vh;
  width: 100%;
}
body.menu-open {
  overflow: hidden;
}

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

ul,
ol {
  padding-left: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}

.sr-only, .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.sr-only:focus, .visually-hidden:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  padding: 4px 8px !important;
  background: #40b7bc;
  color: #ffffff;
  border-radius: 4px;
  z-index: 9999;
}

@media (max-width: 967.8px) {
  .u-mobile-header-spacing {
    margin-top: 54px;
  }
}

/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:

    Eric Meyer                    :: http://meyerweb.com
    HTML5 Doctor                :: http://html5doctor.com
    and the HTML5 Boilerplate    :: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
    In fact, it *will* cause problems with Google Maps' controls at small size.
    If this is the case for you, try uncommenting the following:

#map img {
        max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
    you'll have to restore the bullets within content,
    which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.c-service-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 9px;
  background: white;
  border: 2px solid #40B7BC;
  border-radius: 8px;
  width: 200px;
  height: 76px;
  box-sizing: border-box;
}
.c-service-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 56px;
}
.c-service-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-service-item__content {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}
.c-service-item__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c-service-item__title {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}
.c-service-item__subtitle {
  color: #333333;
  font-size: 10px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 15px;
  word-wrap: break-word;
  margin-top: 0;
}
.c-service-item__note {
  color: #333333;
  font-size: 10px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 15px;
  word-wrap: break-word;
}
.c-service-item--inactive {
  position: relative;
  border-color: #D4D1D1;
  background: #f5f5f5;
}
.c-service-item--inactive::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 209, 209, 0.4);
  border-radius: 6px;
  pointer-events: none;
}
.c-service-item--inactive .c-service-item__icon {
  opacity: 0.4;
  filter: grayscale(100%);
}
.c-service-item--inactive .c-service-item__title,
.c-service-item--inactive .c-service-item__subtitle,
.c-service-item--inactive .c-service-item__note {
  color: #999;
  opacity: 0.6;
}
@media (max-width: 479.8px) {
  .c-service-item {
    padding: 8px 10px;
    gap: 10px;
  }
  .c-service-item__icon {
    width: 50px;
    height: 46px;
  }
  .c-service-item__title {
    font-size: 14px;
    line-height: 21px;
  }
}

.c-plan-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  position: relative;
}
.c-plan-summary__header {
  align-self: stretch;
  padding: 2px 0;
  border-bottom: 3px solid var(--accent-color, #3DA8AC);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-plan-summary__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-plan-summary__catchphrase {
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.c-plan-summary__plan-name {
  align-self: stretch;
  padding: 0 4px 8px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
.c-plan-summary__plan-name-prefix {
  color: #333333;
  font-size: 40px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
}
.c-plan-summary__plan-name-main {
  color: #333333;
  font-size: 48px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
}
.c-plan-summary__badge {
  width: 99px;
  height: 80px;
  padding: 8px 16px;
  background: #EF872F;
  border-radius: 5.58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}
.c-plan-summary__price-section {
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.c-plan-summary__price-main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.c-plan-summary__tax-label {
  position: absolute;
  right: -20px;
  top: -20px;
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 479.8px) {
  .c-plan-summary__tax-label {
    position: static;
    order: -1;
    font-size: 14px;
  }
}
.c-plan-summary__price-number {
  color: #C94247;
  font-size: 60px;
  font-family: "Futura", "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
}
.c-plan-summary__price-unit {
  color: #333333;
  font-size: 36px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-summary__price-tax {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.c-plan-summary__price-tax-number {
  font-size: 28px;
  font-family: "Futura", "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.c-plan-summary__features-title {
  align-self: stretch;
  padding: 20px 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-size: 26px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-summary__features {
  align-self: stretch;
  padding: 10px;
  border-radius: 8px;
  outline: 2px solid var(--accent-color, #3DA8AC);
  outline-offset: -2px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
.c-plan-summary__feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.c-plan-summary__feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.c-plan-summary__feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-plan-summary__feature-text {
  text-align: center;
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  word-wrap: break-word;
}
@media (max-width: 479.8px) {
  .c-plan-summary__catchphrase {
    font-size: 14px;
    line-height: 1.2;
  }
  .c-plan-summary__plan-name-prefix {
    font-size: 20px;
    line-height: 1.2;
  }
  .c-plan-summary__plan-name-main {
    font-size: 26px;
    line-height: 1.2;
  }
  .c-plan-summary__badge {
    width: 60px;
    height: 52px;
    padding: 6px 10px;
    font-size: 16px;
    line-height: 1.2;
  }
  .c-plan-summary__tax-label {
    font-size: 8px;
    line-height: 1.2;
    margin-top: -1px;
  }
  .c-plan-summary__price-section {
    gap: 4px;
  }
  .c-plan-summary__price-number {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 1.28px;
  }
  .c-plan-summary__price-unit {
    font-size: 20px;
    line-height: 1.2;
  }
  .c-plan-summary__price-tax {
    font-size: 10px;
    line-height: 1.2;
  }
  .c-plan-summary__price-tax-number {
    font-size: 16px;
    line-height: 1.2;
  }
  .c-plan-summary__features-title {
    font-size: 20px;
    line-height: 1.2;
  }
  .c-plan-summary__features {
    gap: 20px;
  }
  .c-plan-summary__feature-text {
    font-size: 12px;
    line-height: 1.4;
  }
}

.c-plan-detail {
  --accent-color: #3DA8AC;
  width: 100%;
  max-width: none;
}
.c-plan-detail__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(15px, 2vw, 30px);
  width: 100%;
  padding: 0 10px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 15px;
  }
}
.c-plan-detail__summary {
  flex: 0 1 60%;
  min-height: 411px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: relative;
  min-width: 200px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__summary {
    flex: 1 1 auto;
    min-height: auto;
    min-width: 0;
  }
}
.c-plan-detail__summary-header {
  align-self: stretch;
  padding: 2px 0;
  border-bottom: 3px solid var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 450px) {
  .c-plan-detail__summary-header {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.c-plan-detail__summary-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 450px) {
  .c-plan-detail__summary-content {
    flex: 1 1 100%;
  }
}
.c-plan-detail__catchphrase {
  padding: 0 8px;
  text-align: center;
  color: #333333;
  font-size: clamp(16px, 3.5vw, 20px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-detail__plan-name {
  align-self: stretch;
  padding: 0 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.c-plan-detail__plan-name-prefix {
  color: #333333;
  font-size: clamp(22px, 5vw, 40px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-detail__plan-name-main {
  color: #333333;
  font-size: clamp(26px, 6vw, 48px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-detail__badge {
  width: clamp(70px, 15vw, 99px);
  height: clamp(60px, 12vw, 80px);
  padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 16px);
  background: #EF872F;
  border-radius: 5.58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
  color: #ffffff;
  font-size: clamp(16px, 4vw, 24px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 967.8px) {
  .c-plan-detail__badge {
    align-self: center;
  }
}
@media (max-width: 450px) {
  .c-plan-detail__badge {
    width: auto;
    height: auto;
    min-height: 40px;
    padding: 4px 12px;
  }
}
.c-plan-detail__price-section {
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.c-plan-detail__price-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.c-plan-detail__price-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}
.c-plan-detail__tax-label {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 479.8px) {
  .c-plan-detail__tax-label {
    font-size: 14px;
  }
}
.c-plan-detail__price-number {
  color: #C94247;
  font-size: clamp(36px, 5vw, 60px);
  font-family: "Futura", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-detail__price-unit {
  color: #333333;
  font-size: clamp(20px, 2.5vw, 36px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
.c-plan-detail__price-tax {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.c-plan-detail__price-tax-number {
  font-size: clamp(20px, 2vw, 28px);
  font-family: "Futura", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.c-plan-detail__features-title {
  align-self: stretch;
  text-align: center;
  color: #333333;
  font-size: clamp(20px, 2vw, 26px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-plan-detail__features {
  align-self: stretch;
  padding: 10px;
  border-radius: 8px;
  outline: 2px solid var(--accent-color);
  outline-offset: -2px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 48px);
}
@media (max-width: 479.8px) {
  .c-plan-detail__features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
.c-plan-detail__feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.c-plan-detail__feature-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.c-plan-detail__feature-icon img {
  width: 40px;
  height: 40px;
}
.c-plan-detail__feature-text {
  text-align: center;
  color: #333333;
  font-size: clamp(12px, 1.2vw, 16px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.c-plan-detail__visual {
  flex: 0 1 40%;
  align-self: stretch;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  min-width: 180px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__visual {
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    min-width: 0;
    width: 100%;
  }
}
.c-plan-detail__image {
  width: 100%;
}
@media (max-width: 967.8px) {
  .c-plan-detail__image {
    width: 100%;
  }
}
.c-plan-detail__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.c-plan-detail__flow-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__flow-image {
    padding: 10px 0;
  }
}
.c-plan-detail__flow-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 967.8px) {
  .c-plan-detail__flow-image img {
    width: 65%;
    max-width: 100%;
    min-width: 450px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__flow-image img {
    width: 60%;
    max-width: 100%;
  }
}
.c-plan-detail__steps {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__steps {
    padding: 10px 0;
  }
}
.c-plan-detail__steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  position: relative;
}
@media (max-width: 967.8px) {
  .c-plan-detail__steps-container {
    gap: 32px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__steps-container {
    gap: 20px;
    padding: 0 5px;
  }
}
.c-plan-detail__step {
  height: 90px;
  padding: 6px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 967.8px) {
  .c-plan-detail__step {
    height: 80px;
    padding: 6px;
    min-width: 40px;
    flex-shrink: 0;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__step {
    height: 70px;
    padding: 4px;
    min-width: 36px;
    flex-shrink: 0;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__step {
    height: 65px;
    padding: 3px;
    min-width: 32px;
  }
}
.c-plan-detail__step--option {
  background: #ffffff !important;
  border: 2px solid var(--plan-color);
  box-sizing: border-box;
  padding: 4px;
}
.c-plan-detail__step--option .c-plan-detail__step-text {
  color: var(--plan-color) !important;
}
@media (max-width: 967.8px) {
  .c-plan-detail__step--option {
    padding: 4px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__step--option {
    padding: 2px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__step--option {
    padding: 1px;
  }
}
.c-plan-detail__step-text {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  writing-mode: vertical-rl;
}
@media (max-width: 967.8px) {
  .c-plan-detail__step-text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__step-text {
    font-size: 14px;
    line-height: 18px;
  }
}
.c-plan-detail__arrow {
  position: absolute;
  z-index: 2;
  top: 44px;
  height: 2px;
  background-color: var(--arrow-color);
}
.c-plan-detail__arrow::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--arrow-color);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.c-plan-detail__arrow--1-2 {
  left: 38px;
  width: 36px;
}
.c-plan-detail__arrow--2-3 {
  left: 118px;
  width: 36px;
}
.c-plan-detail__arrow--3-4 {
  left: 198px;
  width: 36px;
}
.c-plan-detail__arrow--4-5 {
  left: 278px;
  width: 36px;
}
.c-plan-detail__arrow--5-6 {
  left: 358px;
  width: 36px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow {
    top: 39px;
    height: 2px;
  }
  .c-plan-detail__arrow::after {
    right: -4px;
    top: -2px;
    border-left: 5px solid var(--arrow-color);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
  }
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow--1-2 {
    left: 52px;
    width: 25px;
  }
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow--2-3 {
    left: 124px;
    width: 25px;
  }
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow--3-4 {
    left: 196px;
    width: 25px;
  }
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow--4-5 {
    left: 268px;
    width: 25px;
  }
}
@media (max-width: 967.8px) {
  .c-plan-detail__arrow--5-6 {
    left: 340px;
    width: 25px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow {
    top: 34px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow--1-2 {
    left: 36px;
    width: 32px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow--1-2 {
    left: 32px;
    width: 20px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow--2-3 {
    left: 104px;
    width: 32px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow--2-3 {
    left: 84px;
    width: 20px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow--3-4 {
    left: 172px;
    width: 32px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow--3-4 {
    left: 136px;
    width: 20px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow--4-5 {
    left: 240px;
    width: 32px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow--4-5 {
    left: 188px;
    width: 20px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-detail__arrow--5-6 {
    left: 308px;
    width: 32px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow--5-6 {
    left: 240px;
    width: 20px;
  }
}
@media (max-width: 420px) {
  .c-plan-detail__arrow {
    top: 32px;
    height: 1px;
  }
  .c-plan-detail__arrow::after {
    right: -3px;
    top: -1px;
    border-left: 3px solid var(--arrow-color);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
  }
}
.c-plan-detail__upgrade-option {
  position: absolute;
  top: 27px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(201, 66, 71, 0.95);
  border-radius: 5.58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 967.8px) {
  .c-plan-detail__upgrade-option {
    position: static;
    align-self: center;
    margin-top: 10px;
  }
}
.c-plan-detail__upgrade-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-plan-detail__upgrade-price {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-plan-detail__upgrade-label, .c-plan-detail__upgrade-unit {
  color: #ffffff;
  font-size: 14px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 16.8px;
}
.c-plan-detail__upgrade-amount {
  color: #F2EE00;
  font-size: 22px;
  font-family: "Futura", sans-serif;
  font-weight: 700;
  line-height: 26.4px;
}
.c-plan-detail__upgrade-type {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-plan-detail__upgrade-plan {
  color: #F2EE00;
  font-size: 26px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 31.2px;
}
.c-plan-detail__upgrade-text {
  color: #ffffff;
  font-size: 14px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 16.8px;
}
.c-plan-detail__upgrade-tax {
  position: absolute;
  top: 5.5px;
  right: 16px;
  color: #ffffff;
  font-size: 6px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 7.2px;
}

.c-plan-services {
  margin-top: 48px;
  padding: 32px;
  background: #F0F9F9;
  border-radius: 8px;
  border: 1px solid #B3B3B3;
}
.c-plan-services__title {
  color: #000;
  font-size: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 33.6px;
  margin: 0 0 32px 0;
  text-align: left;
}
.c-plan-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 16px;
  justify-content: center;
}
@media (min-width: 1440px) {
  .c-plan-services__grid {
    max-width: 1280px;
    margin: 0 auto;
  }
}
@media (max-width: 479.8px) {
  .c-plan-services__grid {
    gap: 10px;
  }
}
@media (max-width: 479.8px) and (max-width: 400px) {
  .c-plan-services__grid {
    grid-template-columns: 200px;
  }
}
.c-plan-services__notes {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 967.8px) {
  .c-plan-services__notes {
    gap: 8px;
  }
}
.c-plan-services__notes-item {
  color: #000000;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  word-wrap: break-word;
}
@media (max-width: 967.8px) {
  .c-plan-services__notes-item {
    font-size: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 700px) {
  [data-tab=plan-43] .c-plan-detail__plan-name {
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 700px) {
  [data-tab=plan-43] .c-plan-detail__catchphrase {
    font-size: 20px;
    padding: 4px 8px;
    line-height: 1.3;
  }
}
@media (max-width: 400px) {
  [data-tab=plan-43] .c-plan-detail__catchphrase {
    font-size: clamp(16px, 5vw, 20px);
  }
}
@media (max-width: 700px) {
  [data-tab=plan-43] .c-plan-detail__plan-name-prefix {
    font-size: 26px;
    order: 1;
    line-height: 1.2;
  }
}
@media (max-width: 400px) {
  [data-tab=plan-43] .c-plan-detail__plan-name-prefix {
    font-size: clamp(20px, 6.5vw, 26px);
  }
}
@media (max-width: 700px) {
  [data-tab=plan-43] .c-plan-detail__plan-name-main {
    font-size: 32px;
    order: 2;
    line-height: 1.2;
    font-weight: 900;
  }
}
@media (max-width: 400px) {
  [data-tab=plan-43] .c-plan-detail__plan-name-main {
    font-size: clamp(24px, 8vw, 32px);
  }
}

.c-funeral-flow {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.c-funeral-flow__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.c-funeral-flow__title-wrapper {
  padding: 2px 16px 4px;
  border-left: 6px solid #40b7bc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.c-funeral-flow__title {
  color: #333333;
  font-size: clamp(32px, 4vw, 40px);
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.c-funeral-flow__description p {
  color: #333333;
  font-size: 18px;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.c-funeral-flow__image {
  width: 100%;
  max-width: 933px;
  margin: 0 auto;
}
@media (max-width: 967.8px) {
  .c-funeral-flow__image {
    max-width: 700px;
  }
}
@media (max-width: 767.8px) {
  .c-funeral-flow__image {
    max-width: 450px;
  }
}
@media (max-width: 479.8px) {
  .c-funeral-flow__image {
    max-width: 400px;
  }
}
.c-funeral-flow__image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.c-modal.is-active {
  display: block;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  overflow: auto;
}
@media (max-width: 479.8px) {
  .c-modal__content {
    width: 95%;
    max-height: 90vh;
  }
}
.c-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #333333;
  cursor: pointer;
  transition: opacity 0.2s;
}
.c-modal__close:hover {
  opacity: 0.7;
}
.c-modal__close:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.c-modal__title {
  padding: 24px 24px 16px;
  margin: 0;
  font-size: 24px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 479.8px) {
  .c-modal__title {
    font-size: 20px;
    padding: 20px 20px 16px;
  }
}
.c-modal__body {
  padding: 24px;
}
@media (max-width: 479.8px) {
  .c-modal__body {
    padding: 20px;
  }
}
.c-modal__body p {
  margin: 0 0 16px;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
}
.c-modal__body p:last-child {
  margin-bottom: 0;
}
.c-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 479.8px) {
  .c-modal__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
}
.c-modal__btn {
  padding: 12px 32px 8px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
@media (max-width: 479.8px) {
  .c-modal__btn {
    width: 100%;
    padding: 12px 20px 8px;
  }
}
.c-modal__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.c-modal__btn:active {
  transform: translateY(0);
}
.c-modal__btn:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.c-modal__btn--primary {
  background: #40b7bc;
  color: #ffffff;
  border: none;
}
.c-modal__btn--secondary {
  background: #ffffff;
  color: #333333;
  border: 2px solid #D0D0D0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.c-post-card {
  background: #ffffff;
  border: 2px solid #40b7bc;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.c-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(64, 183, 188, 0.2);
}
.c-post-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-post-card__link:hover {
  text-decoration: none;
}
.c-post-card__content {
  display: flex;
  gap: 16px;
  padding: 20px;
}
@media (max-width: 479.8px) {
  .c-post-card__content {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
}
.c-post-card__image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 479.8px) {
  .c-post-card__image {
    width: 100%;
    height: 200px;
  }
}
.c-post-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.c-post-card:hover .c-post-card__img {
  transform: scale(1.05);
}
.c-post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
@media (max-width: 479.8px) {
  .c-post-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.c-post-card__category {
  background: #40b7bc;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.c-post-card__date {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.c-post-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}
@media (max-width: 479.8px) {
  .c-post-card__title {
    font-size: 16px;
  }
}
.c-post-card__excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-post-card__readmore {
  color: #40b7bc;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
}
.c-post-card__readmore::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.c-post-card:hover .c-post-card__readmore::after {
  transform: translateX(2px);
}

.c-column-section__header {
  margin-bottom: 40px;
}
@media (max-width: 479.8px) {
  .c-column-section__header {
    margin-bottom: 32px;
  }
}
.c-column-section__title-wrapper {
  display: flex;
}
.c-column-section__title-wrapper--right {
  justify-content: flex-end;
}
.c-column-section__title-wrapper--left {
  justify-content: flex-start;
}
.c-column-section__title-wrapper--center {
  justify-content: center;
}
.c-column-section__title {
  position: relative;
  padding: 10px 0 14px;
  border-bottom: 2px solid #40b7bc;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.c-column-section__title-wrapper--right .c-column-section__title {
  width: 320px;
  text-align: right;
}
@media (max-width: 479.8px) {
  .c-column-section__title-wrapper--right .c-column-section__title {
    width: 260px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.c-column-section__title-wrapper--left .c-column-section__title {
  width: 320px;
  text-align: left;
}
@media (max-width: 479.8px) {
  .c-column-section__title-wrapper--left .c-column-section__title {
    width: 260px;
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 479.8px) {
  .c-column-section__title-pc {
    display: none;
  }
}
.c-column-section__title-sp {
  display: none;
}
@media (max-width: 479.8px) {
  .c-column-section__title-sp {
    display: inline;
  }
}
.c-column-section__content {
  margin-bottom: 0;
}
.c-column-section__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 968px) {
  .c-column-section__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px 64px;
  }
}
@media (max-width: 967.8px) {
  .c-column-section__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
}
.c-column-section__footer {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 479.8px) {
  .c-column-section__footer {
    justify-content: center;
  }
}
.c-column-section__no-posts {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin: 40px 0;
}

.c-column-card {
  display: block;
  text-decoration: none;
}
.c-column-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-column-card__link:hover {
  text-decoration: none;
}
.c-column-card__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 16px;
}
@media (min-width: 968px) {
  .c-column-card__content {
    flex-direction: row-reverse;
  }
}
@media (max-width: 967.8px) {
  .c-column-card__content {
    flex-direction: row;
    gap: 16px;
    padding-left: 0;
    align-items: flex-start;
  }
}
.c-column-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.c-column-card__title {
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 967.8px) {
  .c-column-card__title {
    font-size: 16px;
    line-height: 1.4;
  }
}
.c-column-card__excerpt {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 967.8px) {
  .c-column-card__excerpt {
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }
}
.c-column-card__image {
  flex-shrink: 0;
  width: 180px;
  height: 152px;
  overflow: hidden;
}
@media (max-width: 967.8px) {
  .c-column-card__image {
    width: 80px;
    height: 80px;
  }
}
.c-column-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.c-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(64, 183, 188, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(64, 183, 188, 0.05);
}
.c-sidebar-widget__title {
  background: #40b7bc;
  color: #ffffff;
  margin: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.c-sidebar-widget__content {
  padding: 16px;
}

.c-search-form__wrapper {
  display: flex;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  overflow: hidden;
}
.c-search-form__input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
}
.c-search-form__input::-moz-placeholder {
  color: #999;
}
.c-search-form__input::placeholder {
  color: #999;
}
.c-search-form__button {
  padding: 12px;
  background: #40b7bc;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.c-search-form__button:hover {
  background: #40b7bcdd;
}
.c-search-form__icon {
  font-size: 16px;
}

.c-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-category-list__item {
  border-bottom: 1px solid #f8f9fa;
}
.c-category-list__item:last-child {
  border-bottom: none;
}
.c-category-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: #333333;
  transition: color 0.3s ease;
}
.c-category-list__link:hover {
  color: #40b7bc;
}
.c-category-list__link--child {
  padding: 10px 0;
}
.c-category-list__name {
  font-weight: 500;
}
.c-category-list__count {
  color: #666;
  font-size: 13px;
}
.c-category-list__children {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-category-list__child {
  position: relative;
  padding-left: 24px;
  border-bottom: none;
}
.c-category-list__child::before {
  content: "└";
  position: absolute;
  left: 8px;
  top: 10px;
  color: #999;
  font-size: 12px;
}
.c-category-list__child:not(:last-child) {
  border-bottom: 1px dotted rgba(248, 249, 250, 0.5);
}

.c-recent-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-recent-posts__item {
  border-bottom: 1px solid #f8f9fa;
}
.c-recent-posts__item:last-child {
  border-bottom: none;
}
.c-recent-posts__link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.c-recent-posts__link:hover {
  opacity: 0.8;
}
.c-recent-posts__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-recent-posts__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-recent-posts__date {
  font-size: 12px;
  color: #666;
}

.c-faq-tabs {
  margin-bottom: 80px;
}
@media (max-width: 967.8px) {
  .c-faq-tabs {
    margin-bottom: 50px;
  }
}
.c-faq-tabs__wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  border-bottom: 2px solid #22878B;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.c-faq-tabs__wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 968px) {
  .c-faq-tabs__wrapper {
    overflow-x: visible;
    justify-content: flex-start;
  }
}
.c-faq-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  background-color: transparent;
  border: none;
  color: #A8A7A7;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex-shrink: 0;
}
.c-faq-tabs__tab:hover {
  color: #22878B;
  background-color: rgba(42, 169, 174, 0.05);
}
.c-faq-tabs__tab:focus {
  outline: none;
}
.c-faq-tabs__tab:focus-visible {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
  z-index: 1;
}
.keyboard-nav .c-faq-tabs__tab:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
  z-index: 1;
}
.c-faq-tabs__tab.is-active, .c-faq-tabs__tab[aria-selected=true] {
  background-color: #2AA9AE;
  color: #ffffff;
  border-bottom-color: #2AA9AE;
}
.c-faq-tabs__tab.is-active:hover, .c-faq-tabs__tab[aria-selected=true]:hover {
  background-color: rgb(37.0416666667, 149.0486111111, 153.4583333333);
  color: #ffffff;
}
.c-faq-tabs__tab[tabindex="-1"] {
  cursor: default;
}
@media (max-width: 967.8px) {
  .c-faq-tabs__tab {
    font-size: 18px;
    line-height: 27px;
    padding: 4px 20px;
  }
}

.c-faq-panels {
  position: relative;
  min-height: 200px;
}

.c-faq-panel[hidden] {
  display: none;
}
.c-faq-panel.is-active {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-contrast: high) {
  .c-faq-tabs__tab {
    border: 1px solid;
  }
  .c-faq-tabs__tab.is-active {
    background-color: Highlight;
    color: HighlightText;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-faq-tabs__tab {
    transition: none;
  }
  .c-faq-panel.is-active {
    animation: none;
  }
  @keyframes fadeIn {
    from, to {
      opacity: 1;
      transform: none;
    }
  }
}
.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-faq-accordion {
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #2AA9AE;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.c-faq-accordion:hover {
  box-shadow: 0 2px 8px rgba(42, 169, 174, 0.15);
}
.c-faq-accordion__header {
  background: #F7FFFF;
  border-bottom: 2px solid #2AA9AE;
}
.c-faq-accordion.is-expanded .c-faq-accordion__header {
  border-bottom: 2px solid #2AA9AE;
}
.c-faq-accordion__trigger {
  width: 100%;
  padding: clamp(16px, 3vw, 24px);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 24px);
  text-align: left;
  transition: background-color 0.3s ease;
}
.c-faq-accordion__trigger:hover {
  background-color: rgba(42, 169, 174, 0.05);
}
.keyboard-nav .c-faq-accordion__trigger:focus, .c-faq-accordion__trigger.keyboard-focus {
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
  z-index: 1;
}
.c-faq-accordion__trigger.is-expanded {
  background-color: rgba(42, 169, 174, 0.05);
}
.c-faq-accordion__question {
  flex: 1;
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .c-faq-accordion__question {
    line-height: 1.5;
  }
}
.c-faq-accordion__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.c-faq-accordion__icon-horizontal {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #2AA9AE;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-faq-accordion__icon-vertical {
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #2AA9AE;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-faq-accordion.is-expanded .c-faq-accordion__icon-vertical {
  transform: rotate(90deg);
  opacity: 0;
}
.is-expanded .c-faq-accordion__icon {
  transform: rotate(45deg);
}
.c-faq-accordion__content {
  background: #F7FFFF;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.c-faq-accordion__content[hidden] {
  display: none;
}
.c-faq-accordion__content.is-expanded {
  display: block;
}
.c-faq-accordion__answer {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-faq-accordion__text {
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}
.c-faq-accordion__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .c-faq-accordion__detail {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.c-faq-accordion__detail-text {
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .c-faq-accordion__detail-text {
    flex: 1;
  }
}
.c-faq-accordion__detail-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  border: 2px solid #B69CDF;
  background: transparent;
  color: #8572A2;
  text-decoration: none;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 0.3s ease;
  gap: 12px;
  min-width: 160px;
  justify-content: center;
}
.c-faq-accordion__detail-btn:hover {
  background-color: rgba(182, 156, 223, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(133, 114, 162, 0.2);
}
.c-faq-accordion__detail-btn:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.c-faq-accordion__detail-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(133, 114, 162, 0.2);
}
.c-faq-accordion__detail-btn-text {
  flex: 1;
}
.c-faq-accordion__detail-btn-icon {
  width: 34px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
.c-faq-accordion__detail-btn-arrow {
  width: 24px;
  height: 6px;
  border: 2px solid #8572A2;
  border-left: none;
  border-right: none;
  position: relative;
}
.c-faq-accordion__detail-btn-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #8572A2;
  border-top: 2px solid #8572A2;
  transform: rotate(45deg);
}

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

@media (prefers-contrast: high) {
  .c-faq-accordion {
    border: 3px solid;
  }
  .c-faq-accordion__trigger {
    border: 1px solid transparent;
  }
  .c-faq-accordion__trigger:focus {
    border-color: Highlight;
    background-color: Highlight;
    color: HighlightText;
  }
  .c-faq-accordion__detail-btn {
    border: 3px solid;
  }
  .c-faq-accordion__detail-btn:focus {
    background-color: Highlight;
    color: HighlightText;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-faq-accordion__trigger, .c-faq-accordion__icon, .c-faq-accordion__icon-horizontal, .c-faq-accordion__icon-vertical, .c-faq-accordion__content, .c-faq-accordion__detail-btn {
    transition: none;
  }
  .c-faq-accordion:hover {
    transform: none;
    box-shadow: none;
  }
  .c-faq-accordion__detail-btn:hover {
    transform: none;
    box-shadow: none;
  }
}
.c-plan-tabs {
  margin-bottom: 80px;
}
.c-plan-tabs__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 3px solid #40b7bc;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.c-plan-tabs__wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1440px) {
  .c-plan-tabs__wrapper {
    overflow-x: hidden;
  }
}
@media (max-width: 1439.8px) {
  .c-plan-tabs__wrapper {
    overflow-x: auto;
  }
}
.c-plan-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 13px;
  background-color: transparent;
  border-left: 1px solid #B3B3B3;
  border-top: 1px solid #B3B3B3;
  border-right: 1px solid #B3B3B3;
  border-bottom: none;
  color: #A8A7A7;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.c-plan-tabs__tab:hover:not(.is-active) {
  background-color: rgba(64, 183, 188, 0.05);
}
.c-plan-tabs__tab.is-active, .c-plan-tabs__tab[aria-selected=true] {
  background-color: #40b7bc;
  color: #ffffff;
  border-color: #B3B3B3;
}
.c-plan-tabs__tab.is-active::after, .c-plan-tabs__tab[aria-selected=true]::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #40b7bc;
}
.c-plan-tabs__tab:focus-visible {
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
}
.c-plan-tabs__tab.keyboard-focus {
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
}
@media (max-width: 967.8px) {
  .c-plan-tabs__tab {
    font-size: 18px;
    padding: 4px 10px;
    line-height: 24px;
  }
}
@media (max-width: 479.8px) {
  .c-plan-tabs__tab {
    font-size: 16px;
    padding: 4px 8px;
    line-height: 22px;
  }
}

.c-plan-panels {
  margin-top: 60px;
}
@media (max-width: 967.8px) {
  .c-plan-panels {
    margin-top: 40px;
  }
}

.c-plan-panel {
  display: none;
}
.c-plan-panel.is-active, .c-plan-panel:not([hidden]) {
  display: block;
  animation: fadeIn 0.3s ease;
}
.c-plan-panel__content {
  width: 100%;
  padding: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-plan-tabs-content {
  margin-bottom: 80px;
  margin-top: 60px;
}
@media (max-width: 967.8px) {
  .p-plan-tabs-content {
    margin-bottom: 60px;
  }
}

.keyboard-nav .c-plan-tabs__tab:focus {
  outline: 2px solid #40b7bc;
  outline-offset: -2px;
}

.c-reason-section {
  background: linear-gradient(180deg, #F1F7FB 0%, #E2E7F8 100%);
  padding: clamp(60px, 10vw, 112px) clamp(20px, 5vw, 120px);
  overflow: hidden;
}
.c-reason-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 8vw, 80px);
}
.c-reason-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  text-align: center;
}
.c-reason-section__accent {
  color: #40b7bc;
  font-family: Arial, sans-serif;
}
.c-reason-section__content {
  width: 100%;
}
.c-reason-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  row-gap: 64px;
}
@media (max-width: 967.8px) {
  .c-reason-section__list {
    gap: 20px;
    row-gap: 40px;
  }
}
@media (max-width: 767.8px) {
  .c-reason-section__list {
    flex-direction: column;
    gap: 64px;
    align-items: center;
  }
}
.c-reason-section__item {
  flex: 0 0 calc(25% - 18px);
  max-width: 266px;
}
@media (max-width: 967.8px) {
  .c-reason-section__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 767.8px) {
  .c-reason-section__item {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }
}
.c-reason-section__item--reverse .c-reason-section__card .c-reason-section__card-content {
  border-top-right-radius: 0;
  border-top-left-radius: 60px;
}
@media (max-width: 767.8px) {
  .c-reason-section__item--reverse .c-reason-section__card .c-reason-section__card-content {
    border-radius: 0;
  }
}
.c-reason-section__item--reverse .c-reason-section__card .c-reason-section__card-content .c-reason-section__image img {
  border-top-left-radius: 60px;
  border-top-right-radius: 0;
}
@media (max-width: 767.8px) {
  .c-reason-section__item--reverse .c-reason-section__card .c-reason-section__card-content .c-reason-section__image img {
    border-radius: 0;
  }
}
.c-reason-section__item--reverse .c-reason-section__card .c-reason-section__text {
  text-align: right;
  justify-content: flex-end;
}
.c-reason-section__item--reverse .c-reason-section__card .c-reason-section__text .c-reason-section__card-title {
  text-align: right;
}
@media (max-width: 767.8px) {
  .c-reason-section__item--reverse .c-reason-section__card .c-reason-section__text {
    text-align: left;
    justify-content: flex-start;
  }
  .c-reason-section__item--reverse .c-reason-section__card .c-reason-section__text .c-reason-section__card-title {
    text-align: left;
  }
}
.c-reason-section__item--reverse .c-reason-section__card .c-reason-section__number {
  right: -10px;
  left: auto;
}
@media (max-width: 767.8px) {
  .c-reason-section__item--reverse .c-reason-section__card .c-reason-section__number {
    right: auto;
    left: 0;
    top: -28px;
  }
}
.c-reason-section__card {
  position: relative;
  height: 281px;
  width: 100%;
}
@media (max-width: 767.8px) {
  .c-reason-section__card {
    height: 120px;
    display: flex;
    align-items: center;
  }
}
.c-reason-section__card-content {
  background: #ffffff;
  border-top-right-radius: 60px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 6px;
  margin-top: 13px;
}
@media (max-width: 767.8px) {
  .c-reason-section__card-content {
    flex-direction: row;
    height: 120px;
    width: calc(100% - 26px);
    margin-left: 26px;
    margin-top: 0;
    border-radius: 0;
  }
}
.c-reason-section__image {
  flex-shrink: 0;
}
.c-reason-section__image img {
  width: 100%;
  height: 154px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 60px;
}
@media (max-width: 767.8px) {
  .c-reason-section__image img {
    width: 140px;
    height: 120px;
    border-radius: 0;
  }
}
.c-reason-section__text {
  padding: 16px 10px;
  display: flex;
  align-items: center;
  flex: 1;
  text-align: left;
  min-width: 0;
}
@media (max-width: 767.8px) {
  .c-reason-section__text {
    padding: 10px 12px;
    align-items: center;
    flex: 1;
  }
}
.c-reason-section__card-title {
  color: #333333;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  margin: 0;
  width: 100%;
}
@media (max-width: 767.8px) {
  .c-reason-section__card-title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.c-reason-section__number {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 10;
}
@media (max-width: 767.8px) {
  .c-reason-section__number {
    top: -28px;
    left: 0;
  }
}
.c-reason-section__number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #40b7bc;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  transform: rotate(-1deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.8px) {
  .c-reason-section__number-badge {
    width: 58px;
    height: 58px;
    font-size: 34px;
  }
}
@media (max-width: 767.8px) {
  .c-reason-section .pc-br {
    display: none;
  }
}
.c-reason-section .sp-br {
  display: none;
}
@media (max-width: 767.8px) {
  .c-reason-section .sp-br {
    display: inline;
  }
}

.c-region-card {
  width: 100%;
  padding: 16px 12px;
  background: #F1F1F1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.c-region-card__title {
  align-self: stretch;
  text-align: center;
  color: #E47B11;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 22.4px;
  word-wrap: break-word;
}
.c-region-card--chugoku-shikoku .c-region-card__title {
  color: #E47B11;
}
.c-region-card--hokkaido-tohoku .c-region-card__title {
  color: #5671AF;
}
.c-region-card--kanto .c-region-card__title {
  color: #53B2B8;
}
.c-region-card--kansai .c-region-card__title {
  color: #F0B827;
}
.c-region-card--kyushu-okinawa .c-region-card__title {
  color: #C54556;
}
.c-region-card--chubu-koshinetsu .c-region-card__title {
  color: #4E9E4F;
}
.c-region-card__content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.c-region-card__row {
  align-self: stretch;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: sm) {
  .c-region-card__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.c-region-card__prefecture {
  width: 74px;
  padding: 4px 6px;
  background: #ffffff;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border: 1px solid #928E8E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.c-region-card__prefecture:hover {
  transform: translateY(-1px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.c-region-card__prefecture:focus {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
}
.c-region-card__prefecture[aria-disabled=true] {
  cursor: not-allowed;
}
.c-region-card__prefecture[aria-disabled=true]:hover {
  transform: none;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.c-region-card__prefecture[aria-disabled=true]:focus {
  outline: none;
}
.c-region-card__prefecture-name {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 22.4px;
  word-wrap: break-word;
  flex: 1;
}
@media (max-width: sm) {
  .c-region-card__prefecture-name {
    font-size: 14px;
    line-height: 19.6px;
  }
}
.c-region-card__prefecture-icon {
  width: 8px;
  height: 8px;
  background: #D9D9D9;
  margin-left: 4px;
  position: relative;
}
.c-region-card__prefecture-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.92px;
  height: 6.67px;
  background: #333333;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-region-search__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 967.8px) {
  .p-region-search__content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
}
@media (max-width: sm) {
  .p-region-search__content {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
}

@media (max-width: sm) {
  .c-region-card {
    padding: 12px;
    gap: 8px;
  }
  .c-region-card__title {
    font-size: 14px;
    line-height: 19.6px;
  }
  .c-region-card__content {
    gap: 8px;
  }
  .c-region-card__row {
    padding-left: 8px;
    padding-right: 8px;
  }
  .c-region-card__prefecture {
    width: auto;
    min-width: 60px;
    padding: 3px;
  }
}
.c-funeral-tips {
  width: 100%;
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .c-funeral-tips {
    margin-top: 70px;
  }
}
.c-funeral-tips__header {
  padding: 10px;
  background: #D23B49;
  border-top-right-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.c-funeral-tips__header-title {
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 30.8px;
  word-wrap: break-word;
  margin: 0;
}
@media (max-width: sm) {
  .c-funeral-tips__header-title {
    font-size: 18px;
    line-height: 25.2px;
  }
}
.c-funeral-tips__content {
  align-self: stretch;
  padding: 10px;
  background: #FFF8F8;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 2px solid #DC3E4C;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.c-funeral-tips__item {
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}
.c-funeral-tips__item-title {
  color: #E35400;
  font-size: 20px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  margin: 0;
}
@media (max-width: sm) {
  .c-funeral-tips__item-title {
    font-size: 18px;
    line-height: 25.2px;
  }
}
.c-funeral-tips__item-title::before {
  content: "・";
}
.c-funeral-tips__item-content {
  padding-left: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.c-funeral-tips__item-text {
  color: #333333;
  font-size: 16px;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 22.4px;
  word-wrap: break-word;
  margin: 0;
  flex: 1;
}
@media (max-width: sm) {
  .c-funeral-tips__item-text {
    font-size: 14px;
    line-height: 19.6px;
  }
}

.p-urgency__content {
  background: #ffffff;
}
.p-urgency__section {
  padding: 64px 0;
}
@media (max-width: 767.8px) {
  .p-urgency__section {
    padding: 40px 0;
  }
}
.p-urgency__section--scenarios {
  background: #ffffff;
}
.p-urgency__section--flow {
  background: #ffffff;
  padding: 64px 0 50px 0;
}
.p-urgency__section--faq {
  background: #ffffff;
  padding: 30px 0 112px 0;
}
@media (max-width: 767.8px) {
  .p-urgency__section--faq {
    padding: 30px 0 64px 0;
  }
}

.p-urgency__hero-content {
  position: relative;
  z-index: 4;
  min-height: 290px;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-content {
    width: 100%;
    min-width: 375px;
    min-height: 200px;
    padding: 16px 0;
  }
}

.p-urgency__hero-text {
  margin-left: max(20px, (100vw - 1170px) / 2);
  margin-top: 40px;
  max-width: 700px;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-text {
    position: absolute;
    left: 34px;
    top: 22px;
    margin-left: 0;
    margin-top: 0;
    z-index: 2;
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.p-urgency__hero-title {
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-title {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }
}
.p-urgency__hero-title .p-urgency__title-pc {
  display: block;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-title .p-urgency__title-pc {
    display: none;
  }
}
.p-urgency__hero-title .p-urgency__title-mobile-line1 {
  display: none;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-title .p-urgency__title-mobile-line1 {
    display: block;
    font-size: 14px;
    line-height: 16.8px;
    font-weight: 700;
    color: #333333;
  }
}
.p-urgency__hero-title .p-urgency__title-mobile-line2 {
  display: none;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-title .p-urgency__title-mobile-line2 {
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #333333;
  }
}

.p-urgency__hero-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-subtitle {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }
}
.p-urgency__hero-subtitle .p-urgency__subtitle-pc {
  display: block;
  color: #C94247;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-subtitle .p-urgency__subtitle-pc {
    display: none;
  }
}
.p-urgency__hero-subtitle .p-urgency__subtitle-mobile-line1,
.p-urgency__hero-subtitle .p-urgency__subtitle-mobile-line2 {
  display: none;
}
@media (max-width: 767.8px) {
  .p-urgency__hero-subtitle .p-urgency__subtitle-mobile-line1,
  .p-urgency__hero-subtitle .p-urgency__subtitle-mobile-line2 {
    display: block;
    color: #C94247;
    font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.2px;
    margin: 0;
  }
}

.p-urgency__phone-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767.8px) {
  .p-urgency__phone-area {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
}

.p-urgency__phone-icon {
  width: 40px;
  height: 40px;
  background: #C94247;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-urgency__phone-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 767.8px) {
  .p-urgency__phone-icon {
    width: 22px;
    height: 22px;
  }
  .p-urgency__phone-icon img {
    width: 18px;
    height: 18px;
  }
}

.p-urgency__phone-number {
  color: #C94247;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 46px);
  line-height: 1.2;
  text-decoration: none;
}
.p-urgency__phone-number:hover {
  color: #C94247;
  text-decoration: underline;
}
.p-urgency__phone-number:focus-visible {
  outline: 2px solid #40b7bc;
  outline-offset: 2px;
  border-radius: 4px;
  background: rgba(64, 183, 188, 0.1);
}
@media (max-width: 767.8px) {
  .p-urgency__phone-number {
    font-size: 28px;
    line-height: 33.6px;
  }
}

.p-urgency__badges {
  display: flex;
  gap: 8px;
}
@media (max-width: 767.8px) {
  .p-urgency__badges {
    gap: 4px;
  }
}

.p-urgency__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background: #C94247;
  color: #ffffff;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.2;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}
.p-urgency__badge--time-pc {
  display: flex;
}
@media (max-width: 767.8px) {
  .p-urgency__badge--time-pc {
    display: none;
  }
}
.p-urgency__badge--time-mobile {
  display: none;
}
@media (max-width: 767.8px) {
  .p-urgency__badge--time-mobile {
    display: flex;
    padding: 3.7px 5px;
    font-size: 10px;
    line-height: 12px;
    border-radius: 2.5px;
  }
}
@media (max-width: 767.8px) {
  .p-urgency__badge {
    padding: 3.7px 5px;
    font-size: 12px;
    line-height: 14.4px;
    border-radius: 2.5px;
  }
}

.p-urgency__badge-number {
  font-family: "Avenir", sans-serif;
  font-weight: 800;
}

.p-urgency__badge-text {
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.p-urgency__hero-image {
  position: absolute;
  right: max(20px, (100vw - 1200px) / 2);
  top: 159px;
  width: 320px;
  height: auto;
  aspect-ratio: 338/290;
  z-index: 1;
}
.p-urgency__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 967.8px) {
  .p-urgency__hero-image {
    top: 69px;
  }
}
@media (max-width: 767.8px) {
  .p-urgency__hero-image {
    right: 54px;
    left: auto;
    top: 59px;
    width: 230px;
    height: 195px;
    aspect-ratio: auto;
    z-index: 0;
  }
  .p-urgency__hero-image img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 479.8px) {
  .p-urgency__hero-image {
    right: 0;
  }
}

.p-urgency__inquiry-content {
  background: #E2F8F9;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 767.8px) {
  .p-urgency__inquiry-content {
    padding: 16px;
  }
}

.p-urgency__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.p-urgency__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #000000;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 767.8px) {
  .p-urgency__checklist-item {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }
}
.p-urgency__checklist-item:last-child {
  margin-bottom: 0;
}

.p-urgency__checkbox {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 2px solid #40b7bc;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.p-urgency__checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #40b7bc;
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 767.8px) {
  .p-urgency__checkbox {
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }
  .p-urgency__checkbox::after {
    font-size: 14px;
  }
}

.p-urgency__notes {
  padding-top: 16px;
  border-top: 1px solid rgba(64, 183, 188, 0.2);
}

.p-urgency__note {
  color: #C94247;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.p-urgency__note:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.8px) {
  .p-urgency__note {
    font-size: 14px;
  }
}

.p-urgency__scenario {
  margin-bottom: 64px;
}
.p-urgency__scenario:last-child {
  margin-bottom: 0;
}

.p-urgency__scenario-header {
  background: #40b7bc;
  padding: 10px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
@media (max-width: 767.8px) {
  .p-urgency__scenario-header {
    text-align: center;
    padding: 10px;
  }
}

.p-urgency__scenario-title {
  color: #ffffff;
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-urgency__scenario-title {
    font-size: 20px;
  }
}

.p-urgency__scenario-content {
  padding: 0 16px;
}
@media (max-width: 767.8px) {
  .p-urgency__scenario-content {
    padding: 0 10px;
  }
}

.p-urgency__scenario-text {
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 767.8px) {
  .p-urgency__scenario-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.p-urgency__phone-highlight {
  color: #C94247;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 767.8px) {
  .p-urgency__phone-highlight {
    font-size: 18px;
  }
}

.p-urgency__scenario-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.p-urgency__scenario-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}
.p-urgency__scenario-item:last-child {
  margin-bottom: 0;
}

.p-urgency__scenario-checkbox {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 2px solid #40b7bc;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.p-urgency__scenario-checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #40b7bc;
  font-weight: bold;
  font-size: 14px;
}

.p-urgency__scenario-highlight {
  padding: 16px;
  background: rgba(64, 183, 188, 0.1);
  border-radius: 8px;
  margin-top: 16px;
}
.p-urgency__scenario-highlight p {
  margin: 0;
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.p-urgency__emphasis {
  color: #C94247;
  font-weight: 600;
}

.p-urgency__flow-intro {
  margin-bottom: 64px;
}

.p-urgency__flow-description {
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.p-urgency__flow-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.8px) {
  .p-urgency__flow-description {
    font-size: 16px;
  }
}

.p-urgency__flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767.8px) {
  .p-urgency__flow-steps {
    gap: 4px;
  }
}

.p-urgency__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767.8px) {
  .p-urgency__step {
    margin-bottom: 4px;
  }
}

.p-urgency__step-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 715px;
}
@media (max-width: 767.8px) {
  .p-urgency__step-header {
    gap: 4px;
    max-width: 100%;
  }
}

.p-urgency__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-urgency__step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #40b7bc;
  color: #ffffff;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  border-radius: 50%;
}
@media (max-width: 767.8px) {
  .p-urgency__step-badge {
    width: 39px;
    height: 39px;
    font-size: 22px;
  }
}

.p-urgency__step-title {
  color: #22878B;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.8px) {
  .p-urgency__step-title {
    font-size: 24px;
    line-height: 1.4;
  }
}

.p-urgency__step-content {
  width: 100%;
  max-width: 715px;
}
@media (max-width: 767.8px) {
  .p-urgency__step-content {
    max-width: 100%;
  }
}

.p-urgency__step-card {
  border: 3px solid #40b7bc;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
}
@media (max-width: 767.8px) {
  .p-urgency__step-card {
    flex-direction: column;
    padding: 10px;
    gap: 16px;
    text-align: center;
  }
}

.p-urgency__step-image {
  flex-shrink: 0;
  width: 154px;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767.8px) {
  .p-urgency__step-image {
    width: 290px;
    height: 180px;
  }
}

.p-urgency__step-text {
  flex: 1;
}
.p-urgency__step-text p {
  margin: 0;
  color: #333333;
  font-family: "BIZ UDPGothic", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.p-urgency__faq-button-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 767.8px) {
  .p-urgency__section--inquiry .p-urgency__inquiry-content {
    border-radius: 8px;
    margin: 0 12px;
  }
  .p-urgency__phone-area {
    align-items: center;
  }
  .p-urgency__checklist-item {
    align-items: flex-start;
    gap: 8px;
  }
  .p-urgency__step-card {
    padding: 16px 10px;
    gap: 10px;
  }
  .p-urgency__step-image {
    width: 100%;
    max-width: 290px;
    height: auto;
  }
}
@media (max-width: 967.8px) {
  .p-urgency__step-card {
    flex-direction: column;
    text-align: center;
  }
}
.p-urgency__badge-number {
  font-family: "Avenir", sans-serif;
  font-weight: 800;
}
@media (max-width: 767.8px) {
  .p-urgency__badge-number {
    font-size: 12px;
    line-height: 14.4px;
  }
}

.p-urgency__badge-text {
  font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media (max-width: 767.8px) {
  .p-urgency__badge-text {
    font-size: 12px;
    line-height: 14.4px;
  }
}

.p-urgency__badge-pc {
  display: block;
}
@media (max-width: 767.8px) {
  .p-urgency__badge-pc {
    display: none;
  }
}

.p-urgency__badge-mobile {
  display: none;
}
@media (max-width: 767.8px) {
  .p-urgency__badge-mobile {
    display: block;
  }
}

.p-mv {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 967.8px) {
  .p-mv {
    padding-top: 60px;
  }
}
.p-mv__container {
  width: 100%;
  position: relative;
  height: 45.28vw;
  min-height: 400px;
}
@media (max-width: 767.8px) {
  .p-mv__container {
    height: calc(88.27vw + 222.48px);
    min-height: 350px;
  }
}
.p-mv__flower {
  position: absolute;
  left: 0;
  top: 3.19vw;
  width: 56.53vw;
  height: auto;
  z-index: 1;
}
.p-mv__flower img {
  width: 100%;
  height: auto;
}
@media (max-width: 767.8px) {
  .p-mv__flower {
    width: calc(114.5vw - 54.38px);
    top: calc(22.14vw + 60.07px);
    left: calc(-12.21vw + 45.79px);
  }
}
.p-mv__persons {
  position: absolute;
  left: 17.15vw;
  top: 12.92vw;
  width: 48.75vw;
  height: auto;
  z-index: 2;
}
@media (max-width: 767.8px) {
  .p-mv__persons {
    bottom: 0;
    top: calc(49.87vw + 116.88px);
    left: 0px;
    width: calc(68.2vw + 176.25px);
  }
}
.p-mv__right-group {
  position: absolute;
  right: 3.89vw;
  top: 0;
  width: 36.8vw;
  height: 45.28vw;
  z-index: 3;
}
@media (max-width: 767.8px) {
  .p-mv__right-group {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
}
.p-mv__title-image {
  position: absolute;
  top: 0;
  right: 3.89vw;
  width: 27.78vw;
  height: auto;
}
@media (max-width: 767.8px) {
  .p-mv__title-image {
    display: none;
  }
}
.p-mv__title-group {
  position: absolute;
  top: 0;
  right: 3.89vw;
  display: none;
}
@media (max-width: 767.8px) {
  .p-mv__title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    right: auto;
    top: calc(2.8vw + 6.5px);
    left: calc(11.22vw + 6.17px);
  }
  .p-mv__title-group::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -5px;
    width: calc(44.02vw + 61.92px);
    height: 2px;
    background: linear-gradient(90deg, #3DA8AC 0%, rgba(61, 168, 172, 0.3) 70%, transparent 100%);
  }
  .p-mv__title-group::after {
    content: "";
    position: absolute;
    top: calc(19.08vw + 28.45px);
    left: -5px;
    width: calc(44.02vw + 61.92px);
    height: 2px;
    background: linear-gradient(90deg, #3DA8AC 0%, rgba(61, 168, 172, 0.3) 70%, transparent 100%);
  }
}
.p-mv__title-part {
  width: 100%;
  height: auto;
}
@media (max-width: 767.8px) {
  .p-mv__title-part--1 {
    width: calc(31.56vw + 57.65px);
  }
  .p-mv__title-part--2 {
    width: calc(37.15vw + 64.69px);
    margin-bottom: calc(2.54vw + 0.47px);
  }
  .p-mv__title-part--3 {
    width: calc(34.35vw + 66.19px);
  }
  .p-mv__title-part--4 {
    width: calc(19.34vw + 31.47px);
  }
}
.p-mv__medals {
  position: absolute;
  right: 0;
  top: 20.42vw;
  display: flex;
  gap: 1.11vw;
}
@media (max-width: 767.8px) {
  .p-mv__medals {
    position: absolute;
    left: calc(5.05vw + 1.56px);
    top: calc(4.33vw + 6.76px);
    flex-direction: column;
    gap: 2vw;
    justify-content: center;
  }
}
.p-mv__medal {
  width: 10.97vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767.8px) {
  .p-mv__medal {
    width: calc(13.23vw + 38.44px);
  }
}
.p-mv__banner {
  position: absolute;
  right: 4.3vw;
  bottom: 2.5vw;
  height: auto;
  width: 25.69vw;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
@media (max-width: 767.8px) {
  .p-mv__banner {
    position: absolute;
    top: calc(34.82vw + 77.93px);
    left: calc(30.88vw + 32px);
    width: calc(59.36vw - 40.38px);
  }
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

.align-right {
  text-align: right;
}

.c-section-padding {
  padding: clamp(60px, 10vw, 112px) 0;
}
/*# sourceMappingURL=../css/map/app.css.map */
