/* ==============================
共通
==============================*/
/* レイアウト */
main {
  min-height: 100vh;
}

/* ページタイトル */
.page_title_common {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 0 40px;
  background: linear-gradient(to left, rgb(230 175 185 / .8), rgb(210 185 215 / .8));
}

/* 戻る矢印がある場合 */
.page_title_back {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 13px;
  height: auto;
  aspect-ratio: 1/2;
  background: url(../images/arrow_back.png) no-repeat center/cover;
}

.page_title_common h1 {
  padding: 0 9px 8px;
  border-bottom: 1px dotted #fff;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: .19em;
  font-size: 14px;
  font-weight: 600;
}

.under_title_en {
  display: block;
  padding-top: 8px;
  color: #fff;
  letter-spacing: .24em;
  line-height: 1;
  font-size: 11px;
}

/* 英語タイトルなし */

.page_title_common:not(:has(.under_title_en)) {
  min-height: 40px;
}

.page_title_common:not(:has(.under_title_en)) h1 {
  padding-bottom: 0;
  border: none;
}

/* 美容・育児等お役立ち情報ページのタイトル */
.post_care .page_title_common {
  background: linear-gradient(to right, rgb(240 210 155 / .9), rgb(197 215 193 / .9));
}

/* ==============================
aboutページ
==============================*/
.under_about {
  padding-top: 48px;
  padding-bottom: 60px;
}

.under_about h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 46px;
  color: var(--main-color);
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  font-size: calc(12px * var(--font-scale));
}

.under_about h1 span {
  display: block;
  margin-bottom: 7px;
  padding: 0 5px 9px;
  border-bottom: dotted 1px var(--main-color);
  font-size: calc(150% * var(--font-scale));
}

.about_img {
  margin-bottom: 32px;
}

.about_text p {
  color: var(--main-color);
  line-height: 2;
  letter-spacing: .09em;
  text-align: center;
  font-size: calc(12px * var(--font-scale));
  font-weight: bold;
}

.about_text p:not(:last-child) {
  margin-bottom: 13px;
}

/* ==============================
analysisページ
==============================*/
main:has(.under_analysis) {
  background: #fdf7fa;
}

.under_analysis .inner {
  padding-bottom: 43px;
  margin-bottom: 0;
  background: #fdf7fa;
}

.under_analysis .page_title_common {
  background: linear-gradient(to right, rgb(230 175 185 / .8), rgb(235 180 145 / .8));
}

.under_top_text {
  padding: 32px 0;
  text-align: center;
  line-height: 1.673;
  letter-spacing: .12em;
  font-size: calc(10px * var(--font-scale));
}

.analysis_quiz {
  position: relative;
  padding: 65px 30px 49px;
  background: #fff;
  box-shadow: 6px 12px 17px rgb(71 41 41 / .2);
}

.result .analysis_quiz {
  padding-top: 55px;
  padding-bottom: 65px;
}

.analysis_question {
  margin-bottom: 24px;
  text-align: center;
}

.analysis_question__number {
  margin-bottom: 18px;
  color: var(--main-color);
  line-height: 1;
  letter-spacing: .12em;
  font-size: 48px;
}

.analysis_question__text {
  position: relative;
  min-height: 115px;
  padding-bottom: 35px;
  color: var(--main-color);
  letter-spacing: .12em;
  line-height: 1.63;
  font-size: 16px;
  font-weight: 600;
}

.analysis_question__text::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 11px;
  height: auto;
  aspect-ratio: 11/9;
  background: #dcd7d7;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.analysis_options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 162px;
  margin: 0 auto;
}

.analysis_option {
  width: 100%;
  margin: 0 auto;
  padding: 4px 10px 5px;
  border: 1px solid #dcd7d7;
  background: #fff;
  color: #a09696;
  font-size: calc(12px * var(--font-scale));
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.analysis_option.selected {
  background: #a09696;
  color: #fff;
}

.analysis_result {
  text-align: center;
  color: var(--main-color);
}

.analysis_result__message {
  font-size: calc(20px * var(--font-scale));
  font-weight: 600;
  margin-bottom: 8px;
}

.analysis_result__cta {
  font-size: 14px;
  color: #666;
}

.analysis_progressbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.analysis_progressbar_track {
  position: relative;
  width: 100%;
  height: 6px;
  background: #a09696;
  overflow: hidden;
}

.analysis_progressbar_fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--main-color);
  transition: width .25s ease;
}

.analysis_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 10px;
}

.analysis_nav_button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0 3px;
  border: none;
  background: transparent;
  color: #a09696;
  letter-spacing: .12em;
  line-height: 1;
  font-size: 11px;
  font-family: var(--font-en);
  cursor: pointer;
  transition: color 0.2s;
}

.analysis_nav_button::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 35px;
  height: auto;
  aspect-ratio: 74/14;
  mask: url(../images/analysis_arrow.png) no-repeat center/cover;
  background: #a09696;
}

.analysis_nav_button.analysis_nav_button--back::before {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}

.analysis_nav_button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==============================
analysis結果ページ
==============================*/
.under_analysis.result h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 38px;
  text-align: center;
  line-height: 2;
  letter-spacing: .12em;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
}

.under_analysis.result02 h2 {
  margin-bottom: 40px;
}

.under_analysis.result03 h2 {
  margin-bottom: 72px;
}

.under_analysis.result04 h2 {
  margin-bottom: 71px;
}

.under_analysis.result05 h2 {
  margin-bottom: 91px;
}

.under_analysis.result h2 span {
  display: block;
  width: fit-content;
  padding: 0 6px 2px;
  background: linear-gradient(transparent 70%, #f8e9ed 70%);
  color: var(--main-color);
  line-height: 1;
  font-size: calc(18px * var(--font-scale));
}

.result_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.result_image img {
  max-width: 43%;
  margin: 0 auto 4px;
}

.under_analysis.result02 .result_image img {
  max-width: 42%;
}

.under_analysis.result03 .result_image img {
  position: relative;
  right: 10px;
  max-width: 30%;
}

.under_analysis.result04 .result_image img {
  max-width: 18.5%;
}

.under_analysis.result05 .result_image img {
  max-width: 15%;
}

.result_image h3 {
  text-align: center;
  line-height: 2;
  letter-spacing: .12em;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
}

.result_text {
  margin-bottom: 18px;
}

.result_text p {
  text-align: center;
  line-height: 1.673;
  letter-spacing: .12em;
  font-size: calc(10px * var(--font-scale));
}

.share_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 29px 9px 35px;
  background: linear-gradient(to right, rgb(230 175 185 /.8), rgb(235 180 145 /.8));
  border-radius: 4px;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.6;
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
}

.share_btn a::after {
  position: relative;
  bottom: 2px;
  display: inline-block;
  content: "";
  width: 12px;
  height: auto;
  aspect-ratio: 32/46;
  background: url(../images/share_icon.png) no-repeat center center / cover;
}

/* ==============================
serviceページ
==============================*/
.under_service {
  padding: 0;
}

.service_search {
  margin-top: 0;
}

.service_search_lead {
  margin-bottom: 32px;
  color: #5f4f57;
  text-align: center;
  letter-spacing: .12em;
  font-size: 15px;
  font-weight: 600;
}

.service_search_form {
  display: flex;
  flex-direction: column;
  gap: 51px;
}

.service_search_fields {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service_search_fields:last-of-type {
  margin-top: 14px;
}

.service_search_field_group {
  display: flex;
  gap: 16px;
}

.service_search_field_label {
  flex-shrink: 0;
  width: 80px;
  padding: 10px 6px;
  border-right: 1px solid #d2b9d7;
  border-left: 1px solid #d2b9d7;
  line-height: 1;
  font-size: 10px * var(--font-scale);
  text-align: center;
  letter-spacing: .12em;
}

.service_search_field_pair {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding: 10px 14px 10px 0;
  border-right: 1px solid #d2b9d7;
}

.service_search_input {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.service_search_input.free_word {
  padding: 10px 14px 10px 0;
  border-right: 1px solid #d2b9d7;
}

.service_search_input span {
  color: #a78494;
  letter-spacing: .12em;
  font-size: 12px;
}

.service_search_input input, .service_search_input select {
  width: 100%;
  border: none;
  color: var(--text-color);
  font-size: 10px * var(--font-scale);
  font-weight: 400;
}

.service_search_input input:focus,
.service_search_input select:focus {
  outline: none;
}

.service_search_input_select select {
  appearance: none;
  background: transparent;
}

.service_search_icon_button {
  width: 17px;
  height: 17px;
  aspect-ratio: 1;
  background: url(../images/search_icon.png) no-repeat center / contain;
  border: none;
}

.service_search_icon {
  position: relative;
  display: block;
}

.service_search_icon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -2px;
  width: 2px;
  height: 6px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: top;
}

.service_search_tags {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 14px;
  border-right: 1px solid #d2b9d7;
}

.service_search_tag_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service_search_tag_parent {
  color: var(--text-color);
  line-height: 1.2;
  font-size: 12px * var(--font-scale);
  font-weight: 400;
}

.service_search_tag_children {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.service_search_tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px 3px;
  border-radius: 2px;
  background: #d2b9d7;
  color: #fff;
  line-height: 1;
  letter-spacing: .1em;
  font-size: 9px * var(--font-scale);
  font-weight: 600;
  cursor: pointer;
}

.service_search_tag input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.service_search_tag input:checked+span {
  color: #fff;
}

/* 親タグに応じたチェック時・フォーカス時の背景色 */
body .service_search_tag[data-parent-id="mama-care"]:has(input:checked),
body .service_search_tag[data-parent-id="mama-care"]:has(input:focus-visible) {
  background: #af83b8 !important;
  color: #fff;
}

body .service_search_tag[data-parent-id="baby-daily-care"]:has(input:checked),
body .service_search_tag[data-parent-id="baby-daily-care"]:has(input:focus-visible) {
  background: #e7b643 !important;
  color: #fff;
}

body .service_search_tag[data-parent-id="child-rearing-support"]:has(input:checked),
body .service_search_tag[data-parent-id="child-rearing-support"]:has(input:focus-visible) {
  background: #e18f5a !important;
  color: #fff;
}

body .service_search_tag[data-parent-id="life-support"]:has(input:checked),
body .service_search_tag[data-parent-id="life-support"]:has(input:focus-visible) {
  background: #7e98d4 !important;
  color: #fff;
}

.service_search_tag span {
  pointer-events: none;
}


.service_search_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.service_search_reset {
  color: #836273;
  font-size: 13px;
  letter-spacing: .12em;
  text-decoration: underline;
}

.service_search_submit {
  min-width: 160px;
  padding: 9px 12px;
  border: none;
  background: linear-gradient(to left, rgb(230 175 185 / .8), rgb(210 185 215 / .8));
  border-radius: 2px;
  color: #fff;
  letter-spacing: .12em;
  font-size: 12px * var(--font-scale);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.service_results {
  padding: 32px 0;
}

.service_results_header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.service_results_title {
  margin: 0;
  color: #6a4f66;
  letter-spacing: .2em;
  font-size: 18px;
}

.service_results_count {
  margin: 0;
  color: #c08da1;
  font-size: 14px;
  letter-spacing: .2em;
}

.service_results_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service_card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 32px rgb(80 58 82 / .08);
}

.service_card_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  color: #ab849b;
  font-size: 13px;
}

.service_card_title {
  margin: 0 0 12px;
  font-size: 20px;
}

.service_card_title a {
  color: #5b4051;
  text-decoration: none;
}

.service_card_excerpt {
  margin-bottom: 16px;
  color: #6a4f66;
  line-height: 1.8;
  font-size: 14px;
}

.service_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.service_card_tags li {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(214, 182, 238, .3);
  color: #7b5c7a;
  font-size: 12px;
  letter-spacing: .08em;
}

.service_card_link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #af6f8c;
  text-decoration: none;
  font-weight: 600;
}

.service_card_link a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.service_results_pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.service_results_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: 999px;
  background: rgba(214, 182, 238, .2);
  color: #7b5c7a;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.service_results_pagination .page-numbers.arrow,
.service_results_pagination .page-numbers.arrow {
  font-size: 8px;
}

.service_results_pagination .page-numbers.current {
  background: rgb(230 175 185);
  color: #fff;
}

.service_results_pagination .page-numbers.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.service_results_empty {
  text-align: center;
  color: #7b5c7a;
  letter-spacing: .12em;
  font-size: 14px;
}

/* ==============================
service検索結果ページ
==============================*/
.service_result_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 34px 0;
}

.service_result_card a {
  display: flex;
  width: unset;
  gap: 13px;
  padding: 10px 12px 10px 10px;
  background: #fbf7ff;
}

.post_care .service_result_card a {
  background: #fdf9ef;
}


.service_result_card_thumb {
  position: relative;
  flex-shrink: 0;
  width: 45%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
}

.service_result_card_thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_result_card_body {
  width: 100%;
}

.service_result_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.post_care .service_result_card_tags {
  margin-bottom: 12px;
}

.service_result_card_tag {
  padding: 2px 9px 1px;
  border-radius: 2px;
  color: #fff;
  letter-spacing: .12em;
  font-size: 9px * var(--font-scale);
  font-weight: 600;
}

.service_result_card_title {
  margin-bottom: 12px;
  color: var(--text-color);
  text-align: left;
  line-height: 1.45;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
}

.service_result_card_excerpt {
  color: var(--text-color);
  line-height: 1.5;
  letter-spacing: .12em;
  font-size: 9px;
}

/* care.htmlでは抜粋文を非表示 */
.post_care .service_result_card_excerpt {
  display: none;
}

/* ==============================
column アーカイブ
==============================*/
.column_archive_page .inner {
  padding-bottom: 75px;
  padding-top: 30px;
}

.column_card_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px 30px;
  padding-bottom: 34px;
}

.column_card_thumb {
  width: 100%;
  aspect-ratio: 32 / 21;
  overflow: hidden;
  margin-bottom: 5px;
}

.column_title {
  position: relative;
  padding: 3px 10px;
}

.column_title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #ebb491;
}

.column_card_title {
  color: #a09696;
  line-height: 1.57;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 600;
}

.column_card_subtitle {
  margin-top: 3px;
  color: var(--text-color);
  letter-spacing: .12em;
  line-height: 1.6;
  font-size: 11px;
}

.single_column .entry_subtitle {
  margin: 0;
  color: #7b5c7a;
  letter-spacing: .1em;
  font-size: 14px;
}

.column_archive_page_pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.column_archive_page_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(214, 182, 238, .2);
  color: #7b5c7a;
  text-decoration: none;
  font-weight: 600;
}

.column_archive_page_pagination .page-numbers.current {
  background: linear-gradient(120deg, #d2b5ff 0%, #f1b6cd 60%, #ffd2b7 100%);
  color: #fff;
}

.column_archive_page_empty {
  margin: 60px 0;
  text-align: center;
  color: #7b5c7a;
  letter-spacing: .12em;
}

.column_detail_label {
  margin-bottom: 20px;
  color: #c79372;
  letter-spacing: .3em;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}


/* ==============================
サービス詳細ページ
==============================*/
.service_detail_page {
  padding: 0;
}

.service_detail_page .inner {
  padding: 0;
}

.service_detail_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  margin: 30px 20px 20px;
  padding-left: 15px;
}

#service_detail_container {
  margin-bottom: 80px;
}

.service_detail_header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 100%;
  background: #d2b9d7;
}

.service_detail_title {
  width: 80%;
  color: #78736e;
  padding-right: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.service_detail_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 20%;
}

.service_detail_tag {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 2px;
  background: #f5d76e;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.service_detail_gallery {
  width: 100%;
  margin-bottom: 20px;
}

.service_gallery_slider {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}

.service_gallery_slider .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 200;
}

.service_gallery_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_gallery_slider .swiper-pagination {
  bottom: 0;
}

.service_gallery_slider .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  background: #f0eeee;
  border-radius: 50%;
  opacity: 1;
  border-radius: 0;
}

.service_gallery_slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e1d0e4;
}

.service_detail_single_image {
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 200;
  overflow: hidden;
}

.service_detail_single_image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service_detail_content {
  padding: 10px 35px;
  background: #fff;
}

.service_detail_sections {
  margin: 36px 0 40px;
  padding: 36px 0 0;
  border-top: 1px dotted #dcd7d7;
  border-bottom: 1px dotted #dcd7d7;
}

.service_detail_content .entry_content {
  line-height: 1.8;
  font-size: 14px;
}

.service_detail_page h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 13px;
  padding: 0 9px;
  color: #78736e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}

.service_detail_page h3::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #a09696;
}

.service_detail_page h3::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #a09696;
}

.service_detail_content .entry_content ul,
.service_detail_content .entry_content ol {
  margin: 0 0 15px;
  padding-left: 20px;
}

.service_detail_content .entry_content li {
  margin-bottom: 8px;
}

.service_detail_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 30px;
}

.service_detail_actions>* {
  width: calc(50% - 6px);
}

.service_detail_actions .share_btn a {
  width: 100%;
  padding: 10px 0;
  background: #d2b9d7;
}

.service_official_link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #d2b9d7;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.6;
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.service_detail_footer {
  padding: 20px;
  background: #f5f5f5;
  text-align: center;
}

.service_detail_footer .back_to_archive {
  display: inline-block;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: .1em;
}

.service_content_heading {
  margin: 0 0 15px;
  color: #d2b9d7;
  letter-spacing: .12em;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.service_target_age {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

.service_intro {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.78;
}

.service_detail_content .entry_content p {
  color: #78736e;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.78;
}

.service_detail_content .entry_content p:not(:last-of-type) {
  margin-bottom: 16px;
}

.service_form, .service_area, .service_official_account, .service_notes {
  margin: 34px 0 0;
}

.service_detail_page .service_form h3,
.service_detail_page .service_area h3,
.service_detail_page .service_official_account h3,
.service_detail_page .service_notes h3 {
  font-size: 12px;
}

.service_radio {
  display: flex;
  gap: 20px;
}

.service_form p {
  font-size: 12px;
}

.service_form p span {
  color: #d2b9d7;
}

.service_area p {
  font-size: 12px;
}

.service_official_account {
  margin: 30px 0;
}

.service_official_account a {
  color: #7b5c7a;
  text-decoration: underline;
}

.service_notes {
  margin: 30px 0;
}

.service_notes div {
  color: #78736e;
  font-size: 14px;
  line-height: 1.8;
}

/* ==============================
お役立ち情報ページ
==============================*/
.care_detail_page .page_title_common {
  background: linear-gradient(to right, rgb(240 210 155 / .9), rgb(197 215 193 / .9));
}

.care_detail_page .inner {
  padding: 0;
}

.care_detail_page .service_detail_gallery {
  margin-bottom: 35px;
}

.care_detail_page .service_gallery_slider .swiper-pagination-bullet-active {
  background: #efc5a9;
}

.care_detail_text_block {
  padding: 0 20px 30px;
}

.care_detail_tags {
  width: 100%;
  margin-bottom: 12px;
}

.care_detail_page .service_detail_tag {
  padding: 2px 11px;
  font-size: 9px * var(--font-scale);
}

.care_article_title {
  margin-bottom: 26px;
  line-height: 1.57;
  letter-spacing: .12em;
  font-size: 16px;
  font-weight: 600;
}

.care_detail_text_block:has(.care_article_subtitle) .care_article_title {
  margin-bottom: 0;
}

.care_article_subtitle {
  margin-top: 8px;
  margin-bottom: 26px;
  line-height: 1.57;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 600;
}

.care_detail_page .content_wrap:last-of-type {
  margin-bottom: 11px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #dcd7d7;
}

.care_detail_page .content_wrap:not(:last-of-type) {
  margin-bottom: 35px;
}

.care_detail_page h3 {
  margin-bottom: 8px;
  color: #edc884;
  line-height: 1.45;
  letter-spacing: .1em;
  font-size: 14px;
  font-weight: 600;
}

.care_detail_page .content_wrap p {
  line-height: 1.78;
  letter-spacing: .12em;
  font-size: 12px;
}

.care_detail_page .content_wrap p:not(:last-of-type) {
  margin-bottom: 16px;
}

.care_detail_page .care_img {
  margin-top: 22px;
  margin-bottom: 24px;
}

.care_reference_block, .care_supervision_block, .care_address_block {
  margin-bottom: 10px;
  font-size: 11px;
}

.post_care .service_results_pagination .page-numbers {
  background: #fdf9ef;
}

.post_care .service_results_pagination .page-numbers.current {
  background: rgb(240 210 155);
}

/* ==============================
コラムページ
==============================*/
.column_detail_page {
  min-height: 100vh;
  background: #fdf4f0;
}

.column_detail_page .inner {
  padding-top: 20px;
  padding-bottom: 75px;
}

.column_archive_page .page_title_common,
.column_detail_page .page_title_common {
  background: linear-gradient(to right, rgb(235 180 145 / .9), rgb(240 210 155 / .9));
}

.column_detail_content {
  padding: 20px 15px 25px;
  background: #fff;
  box-shadow: 6px 12px 17px rgb(71 41 41 / .2);
}

.column_detail_headline h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 10px 1px;
  color: var(--text-color);
  line-height: 1.57;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 600;
}

.column_detail_headline h2::before,
.column_detail_headline h2::after {
  position: absolute;
  content: "";
  width: 5px;
  height: auto;
  aspect-ratio: 20 / 59;
}

.column_detail_headline h2::before {
  left: 0;
  top: 0;
  background: url(../images/column/clumn_title_left.png) no-repeat center/cover;
}

.column_detail_headline h2::after {
  right: 0;
  bottom: 0;
  background: url(../images/column/clumn_title_right.png) no-repeat center/cover;
}

.column_detail_headline h3 {
  margin-bottom: 20px;
  line-height: 1.45;
  letter-spacing: .12em;
  font-size: 12px;
}

.column_detail_wrap {
  position: relative;
  margin-bottom: 20px;
}

.column_detail_wrap:has(.column_wrap_caption)::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgb(51 31 22 / .6));
}

.column_detail_page:has(.column_content_color02) .column_detail_wrap:has(.column_wrap_caption)::before {
  background: linear-gradient(transparent, rgb(165 153 98 / .6));
}

.column_wrap_caption {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 0;
  padding: 0 10px;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.38;
  font-size: 10px;
}

.column_content:not(:last-of-type) {
  margin-bottom: 20px;
}

.column_content p {
  text-align: left;
  letter-spacing: .12em;
  line-height: 1.7;
  font-size: 12px;
}

.column_content p span.name {
  padding-right: 5px;
  color: #ebb491;
  font-weight: bold;
}

.column_content_img {
  margin-bottom: 10px;
}

.column_archive_page .service_results_pagination .page-numbers {
  background: #fdf4f0;
}

.column_archive_page .service_results_pagination .page-numbers.current {
  background: rgb(235 180 145);
  color: #fff;
}

/* ==============================
利用規約ページ・監修ページ
==============================*/
.text p:not(:last-of-type) {
  margin-bottom: 16px;
}

/* ==============================
検索結果なしページ
==============================*/
#search_results_container:has(.service_results_page_empty) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 160px);
}

.service_results_page_empty {
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: .12em;
  font-size: 12px;
}

#search_results_container:has(.service_results_page_empty) .btn a {
  width: fit-content;
  padding: 6px 16px 5px;
  border-radius: 3px;
}