.faq-details {
  box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 2rem;
  padding: 2.4rem 6.6rem 2.4rem 3.2rem;
}

@media (max-width: 768px) {
  .faq-details {
    padding-bottom: 1.2rem;
    padding-top: 1.2rem;
    padding-inline: 0;
  }
}
.faq-details-summary {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--faq-details-summary-color, inherit);
  padding-left: 5.4rem;
  position: relative;
  cursor: pointer;
}
.faq-details-summary::-webkit-details-marker {
  display: none;
}
.faq-details-summary::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.8rem;
  aspect-ratio: 1;
  background-color: #A22946;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  letter-spacing: 0.1em;
}
.faq-details-summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.4rem;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .faq-details-summary {
    font-size: 1.8rem;
    padding-left: 6rem;
    padding-right: 3.6rem;
  }
  .faq-details-summary::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    left: 1.6rem;
  }
  .faq-details-summary::after {
    right: 1.6rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.faq-details[open] .faq-details-summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-details-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2.4rem;
}

@media (max-width: 768px) {
  .faq-details-text {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.information-subtitle, .support-subtitle, .voice-subtitle, .reason-subtitle, .plan-content-subtitle, .concept-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #A22946;
  font-family: "Noto Sans JP", sans-serif;
}

.support-description, .voice-description, .reason-description, .plan-content-description, .concept-description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .support-description, .voice-description, .reason-description, .plan-content-description, .concept-description {
    font-size: 1.7rem;
  }
}
.column-faq-link, .voice-link, .plan-content-link {
  border-radius: 5rem;
  width: 31.8rem;
  height: 6.9rem;
  background-color: #A22946;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #A22946;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.column-faq-link::after, .voice-link::after, .plan-content-link::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: bottom;
  transition: border-color 0.3s ease;
}
.column-faq-link:hover, .voice-link:hover, .plan-content-link:hover {
  background-color: #ffffff;
  color: #A22946;
}
.column-faq-link:hover::after, .voice-link:hover::after, .plan-content-link:hover::after {
  border-right-color: #A22946;
  border-bottom-color: #A22946;
}

.column-faq-tabs {
  display: flex;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
  border-radius: 5rem;
  background-color: #F1F1F1;
}

@media (max-width: 768px) {
  .column-faq-tabs {
    width: calc(100% - 3.2rem);
  }
}
.column-slider-wrap, .voice-slider-wrap {
  width: 100%;
  max-width: 130rem;
  margin-inline: auto;
  position: relative;
}

.column-swiper, .voice-swiper {
  width: 116.7rem;
  margin-inline: auto;
  overflow: hidden;
  padding: 5.6rem 2rem;
}

@media (max-width: 768px) {
  .column-swiper, .voice-swiper {
    width: 100%;
    padding: 2.4rem 4rem;
  }
}
.main-visual {
  background-image: url(../../../../images/top/main-visual.jpg);
  background-repeat: no-repeat;
  height: 64.1rem;
  width: 100%;
  background-position: 0 -14rem;
  background-size: 100%;
  position: relative;
}
.main-visual::after {
  content: "";
  background: linear-gradient(90deg, rgba(254, 246, 255, 0.1) 19.71%, rgba(254, 246, 255, 0.8) 56.25%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .main-visual {
    background-image: url(../../../../images/top/sp/main-visual.jpg);
    background-position: top center;
    background-size: 100% auto;
    height: 42.6rem;
  }
  .main-visual::after {
    display: none;
  }
}
.main-visual-inner {
  max-width: 164rem;
  margin-inline: auto;
  padding-inline: 27rem;
}

@media (max-width: 768px) {
  .main-visual-inner {
    padding-inline: 1.6rem;
  }
}
.main-visual-content {
  width: max-content;
  margin-inline: auto 0;
  padding-top: 5.8rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .main-visual-content {
    padding-top: 3.2rem;
    margin-inline: 0;
  }
}
.main-visual-catch {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Zen Old Mincho", serif;
  color: #A22946;
}

@media (max-width: 768px) {
  .main-visual-catch {
    font-size: 1.7rem;
  }
}
.main-visual-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-family: "Zen Old Mincho", serif;
  color: #A22946;
  margin-top: 2.4rem;
}

@media (max-width: 768px) {
  .main-visual-title {
    font-size: 2.6rem;
    line-height: 1.45;
    margin-top: 1.6rem;
  }
}
.main-visual-description {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.95;
  margin-top: 2.4rem;
}

@media (max-width: 768px) {
  .main-visual-description {
    font-size: 1.5rem;
    margin-top: 1.6rem;
  }
}
.emergency {
  padding-top: 4.2rem;
  padding-bottom: 6.4rem;
  background-image: url(../../../../images/top/emergency-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  margin-top: -12.7rem;
  position: relative;
}

@media (max-width: 768px) {
  .emergency {
    background-image: url(../../../../images/top/sp/emergency-bg.png);
    padding-top: 4.2rem;
    padding-bottom: 4.6rem;
    margin-top: -7.4rem;
  }
}
.concept {
  padding-top: 8rem;
  padding-bottom: 12.5rem;
  background-color: #FBF9F3;
}

@media (max-width: 768px) {
  .concept {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }
}
.concept-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
  justify-content: center;
  align-items: center;
}
.concept-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .concept-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .concept-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    padding-bottom: 3.6rem;
    justify-content: center;
    align-items: center;
  }
  .concept-title::before {
    content: "";
    position: absolute;
    width: 13.2rem;
    height: 0.3rem;
    background-color: #A22946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .concept-title {
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .concept-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}
.concept-description {
  text-align: center;
  margin-top: 4.2rem;
}

@media (max-width: 768px) {
  .concept-description {
    padding-inline: 1.6rem;
  }
}
.plan {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  .plan {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.plan-inner {
  max-width: 164rem;
  margin-inline: auto;
  padding-inline: 27rem;
  display: flex;
  align-items: center;
  gap: 8rem;
}

@media (max-width: 768px) {
  .plan-inner {
    flex-direction: column;
    gap: 4.4rem;
    padding-inline: 1.6rem;
  }
}
.plan-figure {
  width: 48rem;
  display: flex;
}

@media (max-width: 768px) {
  .plan-figure {
    width: 100%;
  }
}
.plan-figure-image {
  width: 100%;
  height: auto;
}

.plan-content {
  flex: 1;
}

.plan-content-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
}
.plan-content-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .plan-content-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .plan-content-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    padding-bottom: 3.6rem;
    justify-content: center;
    align-items: center;
  }
  .plan-content-title::before {
    content: "";
    position: absolute;
    width: 13.2rem;
    height: 0.3rem;
    background-color: #A22946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .plan-content-title {
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .plan-content-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}
.plan-content-description {
  margin-top: 4.2rem;
}

@media (max-width: 768px) {
  .plan-content-description {
    text-align: center;
  }
}
.plan-content-link {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .plan-content-link {
    margin-inline: auto;
  }
}
.reason {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #FFEEEF;
}

@media (max-width: 768px) {
  .reason {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.reason-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
  justify-content: center;
  align-items: center;
}
.reason-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .reason-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .reason-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    padding-bottom: 3.6rem;
    justify-content: center;
    align-items: center;
  }
  .reason-title::before {
    content: "";
    position: absolute;
    width: 13.2rem;
    height: 0.3rem;
    background-color: #A22946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .reason-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}
.reason-description {
  text-align: center;
  margin-top: 4.2rem;
}

@media (max-width: 768px) {
  .reason-description {
    padding-inline: 1.6rem;
  }
}
.reason-list {
  display: flex;
  gap: 4rem 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 107.8rem;
  margin-inline: auto;
  margin-top: 4.2rem;
}

@media (max-width: 768px) {
  .reason-list {
    flex-direction: column;
    gap: 4rem;
    width: calc(100% - 3.2rem);
  }
}
.reason-list-item {
  width: calc((100% - 3.6rem) / 3);
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 1.6rem;
  box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .reason-list-item {
    width: 100%;
  }
}
.reason-list-item-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.4rem;
}

.reason-list-item-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  color: #A22946;
}

.reason-list-item-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2.4rem;
  text-align: center;
  flex: 1;
}

.reason-list-item-figure {
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

.reason-list-item-figure-image {
  width: 100%;
  height: auto;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  top: auto;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EDE5E5;
  height: 0.9rem;
}

.swiper-scrollbar-drag {
  background-color: #A22946;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #A22946;
  top: 50%;
  margin-top: -2.4rem;
  border: 2px solid #A22946;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #ffffff;
  color: #A22946;
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 2.7rem;
    height: 2.7rem;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1rem;
  }
}
.swiper-button-prev {
  left: 0;
}

@media (max-width: 768px) {
  .swiper-button-prev {
    left: 1.8rem;
  }
}
.swiper-button-next {
  right: 0;
}

@media (max-width: 768px) {
  .swiper-button-next {
    right: 1.8rem;
  }
}
.voice {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #FBF9F3;
}

@media (max-width: 768px) {
  .voice {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.voice-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
  justify-content: center;
  align-items: center;
}
.voice-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .voice-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .voice-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    padding-bottom: 3.6rem;
    justify-content: center;
    align-items: center;
  }
  .voice-title::before {
    content: "";
    position: absolute;
    width: 13.2rem;
    height: 0.3rem;
    background-color: #A22946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .voice-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}
.voice-description {
  text-align: center;
  margin-top: 4.2rem;
}

@media (max-width: 768px) {
  .voice-description {
    text-align: center;
    padding-inline: 1.6rem;
  }
}
.voice-list {
  margin-top: 0;
}

.voice-list-item {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 3.2rem 1.6rem 2.4rem;
  box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.voice-list-item-figure {
  width: 10.6rem;
  display: flex;
}

.voice-list-item-figure-image {
  width: 100%;
  height: auto;
}

.voice-list-item-user {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.6rem;
}

.voice-list-item-plan {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.2rem;
  background-color: #FFEEEF;
  color: #A22946;
  border-radius: 2px;
  padding: 0.8rem;
  width: fit-content;
}

.voice-list-item-title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 1.6rem;
  border-left: 0.6rem solid #A22946;
  color: #A22946;
  font-family: "Zen Old Mincho", serif;
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  min-height: 5rem;
}

.voice-list-item-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.6rem;
  flex: 1;
}

.voice-link {
  margin-top: 5.6rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .voice-link {
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .voice-scrollbar {
    display: none;
  }
}
.voice-pagination {
  display: none;
}

@media (max-width: 768px) {
  .voice-pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 4.2rem;
    position: static;
  }
}
@media (max-width: 768px) {
  .voice-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    background-color: #D9D9D9;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .voice-pagination-bullet-active {
    background-color: #A22946;
  }
}
.support {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #F4DCE7;
}

@media (max-width: 768px) {
  .support {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.support-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
  justify-content: center;
  align-items: center;
}
.support-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .support-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .support-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    padding-bottom: 3.6rem;
    justify-content: center;
    align-items: center;
  }
  .support-title::before {
    content: "";
    position: absolute;
    width: 13.2rem;
    height: 0.3rem;
    background-color: #A22946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .support-title {
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .support-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}
.support-description {
  text-align: center;
  margin-top: 4.2rem;
}

.support-list {
  display: flex;
  gap: 2.8rem;
  margin-top: 4.2rem;
  width: 109.8rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .support-list {
    flex-direction: column;
    gap: 1.8rem;
    width: calc(100% - 3.2rem);
  }
}
.support-list-item {
  width: calc((100% - 5.6rem) / 3);
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 1.6rem 1.6rem 4.6rem;
  box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .support-list-item {
    width: 100%;
  }
}
.support-list-item-figure {
  width: 100%;
  display: flex;
}

.support-list-item-figure-image {
  width: 100%;
  height: auto;
}

.support-list-item-title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2.4rem;
  text-align: center;
}

.support-list-item-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2.4rem;
  flex: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

.column-faq {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  .column-faq {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.column-faq-tabs {
  position: relative;
  overflow: hidden;
}
.column-faq-tabs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #A22946;
  border-radius: 5rem;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.column-faq-tabs:has(.column-faq-tabs-button:last-child.is-active)::after {
  transform: translateX(100%);
}

.column-faq-tabs-button {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  width: 28.75rem;
  height: 4.8rem;
  color: #7F7F7F;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.column-faq-tabs-button.is-active {
  color: #ffffff;
}
.column-faq-tabs-button.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30.8rem;
  height: 100%;
  background-color: #A22946;
  border-radius: 5rem;
  z-index: -1;
}
.column-faq-tabs-button:last-child.is-active::before {
  left: auto;
  right: 0;
}
@media (max-width: 768px) {
  .column-faq-tabs-button {
    width: 50%;
    font-size: 1.6rem;
  }
  .column-faq-tabs-button.is-active::before {
    width: 19rem;
  }
}
.column-faq-tabs-button {
  z-index: 1;
}
.column-faq-tabs-button.is-active::before {
  display: none;
}

.column-faq .column-faq-panel {
  display: none;
}
.column-faq .column-faq-panel.is-active {
  display: flex;
}

.column-faq .faq-list {
  width: 110rem;
  margin-inline: auto;
  margin-top: 8rem;
  flex-direction: column;
  gap: 2.4rem;
}

@media (max-width: 768px) {
  .column-faq .faq-list {
    width: calc(100% - 3.2rem);
    margin-top: 4rem;
  }
}
.column-faq-link {
  margin-top: 8rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .column-faq-link {
    margin-top: 4rem;
  }
}
.column-slider-wrap {
  margin-top: 8rem;
}

@media (max-width: 768px) {
  .column-slider-wrap {
    margin-top: 4.4rem;
  }
}
.column-swiper {
  padding-top: 0;
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  .column-swiper {
    overflow: visible;
    padding-inline: 1.6rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.column-list {
  margin-top: 0;
}

@media (max-width: 768px) {
  .column-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}
.column-list-item {
  background-color: #ffffff;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 2rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .column-list-item {
    width: 100%;
    margin-right: 0;
  }
}
.column-list-item-figure {
  flex-shrink: 0;
  width: 100%;
  display: flex;
}

.column-list-item-figure-image {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.column-list-item-content {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.6rem;
}

.column-list-item-date {
  font-size: 1.4rem;
  color: #555555;
  font-weight: 500;
}

.column-list-item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.2rem;
  min-height: 6.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.column-list-item-link {
  font-size: 1.4rem;
  color: #A22946;
  margin-top: 1.8rem;
  display: block;
  width: 11.2rem;
  margin-inline: auto 0;
  position: relative;
}
.column-list-item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #A22946;
  border-right: 1px solid #A22946;
}

@media (max-width: 768px) {
  .column-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .column-button-prev {
    display: none;
  }
}
@media (max-width: 768px) {
  .column-button-next {
    display: none;
  }
}
.information {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #FBFBFB;
}

@media (max-width: 768px) {
  .information {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.information-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-bottom: 3.6rem;
  justify-content: center;
  align-items: center;
}
.information-title::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 0.3rem;
  background-color: #A22946;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .information-title {
    font-size: 3.2rem;
    padding-bottom: 4rem;
  }
}

.information-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .information-list {
    gap: 4rem;
    margin-top: 4rem;
    padding-inline: 1.6rem;
  }
}
.information-content {
  display: flex;
  align-items: center;
  gap: 6.8rem;
  width: 110rem;
  margin-inline: auto;
}
.information-content:not(:has(.information-content-figure)) {
  justify-content: flex-start;
}
.information-content:not(:has(.information-content-figure)) .information-content-detail {
  flex: 0 0 auto;
  width: 53.9rem;
}

@media (max-width: 768px) {
  .information-content {
    flex-direction: column;
    gap: 3.2rem;
    width: 100%;
  }
  .information-content:not(:has(.information-content-figure)) .information-content-detail {
    width: 100%;
  }
}
.information-content-detail {
  flex: 1;
}

@media (max-width: 768px) {
  .information-content-detail {
    width: 100%;
  }
}
.information-content-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.information-content-detail-header-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  color: #3A3A3A;
}

@media (max-width: 768px) {
  .information-content-detail-header-title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.information-content-detail-header-tel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  color: #184059;
  border: 1px solid #184059;
  height: 3.6rem;
  padding-inline: 0.8rem;
  border-radius: 0.5rem;
  font-family: "Zen Old Mincho", serif;
}

@media (max-width: 768px) {
  .information-content-detail-header-tel {
    font-size: 1.5rem;
    height: 3rem;
    padding-inline: 0.6rem;
    gap: 0.6rem;
  }
}
.information-content-detail-header-tel-icon {
  width: 1.6rem;
  display: flex;
}

@media (max-width: 768px) {
  .information-content-detail-header-tel-icon {
    width: 1.2rem;
  }
}
.information-content-detail-header-tel-icon-image {
  width: 100%;
  height: auto;
}

.information-content-detail-list {
  border-bottom: 1px solid #8E8E8E;
  margin-top: 3.2rem;
}

@media (max-width: 768px) {
  .information-content-detail-list {
    margin-top: 2.4rem;
  }
}
.information-content-detail-list-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #8E8E8E;
}

.information-content-detail-list-item-term {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  width: 12rem;
  font-family: "Zen Old Mincho", serif;
  color: #3A3A3A;
}

@media (max-width: 768px) {
  .information-content-detail-list-item-term {
    font-size: 1.5rem;
    width: 8.8rem;
  }
}
.information-content-detail-list-item-description-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #3A3A3A;
  font-family: "Zen Old Mincho", serif;
}

@media (max-width: 768px) {
  .information-content-detail-list-item-description-text {
    font-size: 1.3rem;
  }
}
.information-content-detail-list-item-description-map {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #2F83B7;
  text-decoration: underline;
  font-family: "Zen Old Mincho", serif;
  display: block;
  width: max-content;
  margin-inline: auto 0;
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .information-content-detail-list-item-description-map {
    font-size: 1.4rem;
  }
}
.information-content-figure {
  width: 49.3rem;
  display: flex;
}

@media (max-width: 768px) {
  .information-content-figure {
    width: 100%;
  }
}
.information-content-figure-image {
  width: 100%;
  height: auto;
}

.news {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #FBFBFB;
}

@media (max-width: 768px) {
  .news {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.news-inner {
  width: 110rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .news-inner {
    width: 100%;
    padding-inline: 2.4rem;
  }
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
}

@media (max-width: 768px) {
  .news-title {
    font-size: 3.2rem;
  }
}
.news-link {
  width: 12rem;
  color: #9CA3AF;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  margin-inline: auto 0;
  position: relative;
}
.news-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #9CA3AF;
  border-right: 0.2rem solid #9CA3AF;
}

.news-list {
  margin-top: 2.8rem;
  border-top: 1px solid #A22946;
  padding-top: 2.4rem;
}

.news-list-item {
  border-bottom: 1px solid #E5E7EB;
}

.news-list-item-link {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-bottom: 3.2rem;
  padding-top: 3.2rem;
}

@media (max-width: 768px) {
  .news-list-item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-bottom: 2.4rem;
    padding-top: 2.4rem;
  }
}
.news-list-item-date {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.news-list-item-date-time {
  color: #9CA3AF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.news-list-item-date-label {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #A22946;
  background-color: #FFEEEF;
  border-radius: 0.2rem;
  height: 2.7rem;
  width: 7.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list-item-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .news-list-item-title {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
