@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
:root {
  --font-noto-sans: "Noto Sans Japanese", sans-serif;
  --font-noto-serif: "Noto Serif Japanese", serif;
  --font-hiragino:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-crimson: "Crimson Pro", serif;
  --font-lora: "Lora", serif;
  --font-yugo:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  --font-yumincho:
    "游明朝体", "Yu Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "MS PMincho", "MS 明朝", serif;
  --font-zen: "Zen Old Mincho", serif;
  --font-bison: "Bison", sans-serif;
  --font-bebas: "Bebas Neue", sans-serif;
  --font-en: Arial, Helvetica, sans-serif;
  --hover-opacity: 0.7;
  --header-height-pc: 119px;
  --header-height-sp: 57px;
  --color-primary: #95424d;
  --gradient-primary: linear-gradient(
    90deg,
    #9f3053 0%,
    #d66b7d 46%,
    #9f3053 78%,
    #d66b7d 100%
  );
  --color-secondary: #ffebeb;
  --color-secondary-light: #fff7f7;
  --color-tertiary: #d1667a;
  --color-gold: #eecf68;
  --color-gold-soft: #ede3b7;
  --color-gold-light: #ffebb9;
}

body {
  font-family: var(--font-yugo);
  font-size: 16px;
  color: #333;
  overflow-x: hidden;
}

.wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 1080px;
  height: 100%;
  width: 100%;
  margin-top: var(--header-height-pc);
}
@media screen and (max-width: 744px) {
  .wrapper {
    min-width: 100%;
    width: 100%;
    margin-top: var(--header-height-sp);
  }
}

/**************************************************
  ブレイクポイント改修用
***************************************************/
.tmp-wrapper {
  margin-top: var(--header-height-pc);
  margin-top: 119px;
}
.tmp-wrapper *,
.tmp-wrapper *::before,
.tmp-wrapper *::after {
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.tmp-wrapper *,
.tmp-wrapper *::before,
.tmp-wrapper *::after {
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .tmp-wrapper {
    width: 100%;
    margin-top: var(--header-height-sp);
  }
}

@media (max-width: 767px) {
  .tmp-pc_only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .tmp-sp_only {
    display: none !important;
  }
}

/***********************************
 * WPブログ用リセット
***********************************/
.wp-block-cover .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image .has-background-dim:not([class*=-background-color]),
.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
  background: #fff;
}

.wp-blockcolumns {
  margin-bottom: 0;
}
.wp-block-table thead,
.wp-block-table th,
.wp-block-table td {
  border: none;
}
.wp-block-cover,
.wp-block-cover-image {
  min-height: initial;
}

:where(.wp-block-columns) {
  margin-bottom: 0;
}

/***********************************
 * 共通cssリセット
***********************************/
.detail_column ul,
.detail_column ol,
.detail_column li {
  list-style-type: decimal;
  list-style-position: inside;
}

/***********************************
 * KV
***********************************/
#lower_column .custom-background {
  background-image: url("../images/column/kv.webp");
  background-size: cover;
  /* 画像を要素に合わせてリサイズ */
  background-position: center;
  /* 画像を中央に配置 */
}
@media screen and (max-width: 744px) {
  #lower_column .custom-background {
    background-image: url("../images/column/kv_sp.webp");
    background-size: cover;
    background-position: center, top;
    height: auto;
  }
}

@media screen and (max-width: 744px) {
  .l-container {
    padding: 0 4.2666666667vw 0;
  }
}

/* column page
-------------------------------------------------------------- */
.column__detail {
  max-width: 750px;
  width: 100%;
}

.column_box {
  position: relative;
  background: #fbf8f1;
  padding: 30px 30px 30px 240px;
  margin-bottom: 20px;
  min-height: 200px;
}

.column_box .new_date {
  position: absolute;
  top: 37px;
  right: 30px;
  width: 147px;
  text-align: right;
}

.column_box .new_date .new {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  float: left;
  background: #9f8a47;
  line-height: 22px;
  width: 44px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
}

.column_box .new_date .date {
  font-size: 12px;
  color: #434343;
  position: relative;
  padding-left: 20px;
  margin-top: 2px;
  font-weight: normal;
}

.column_box .new_date .date:before {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #777;
  width: 14px;
  height: 14px;
  line-height: 1;
}

.column_box img {
  position: absolute;
  top: 35px;
  left: 30px;
  border-radius: 5px;
  width: 190px;
  height: 190px;
  object-fit: cover;
}

.column_box h3 {
  font-size: 21px;
  color: #851313;
  width: calc(100% - 162px);
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1.3;
}

.column_box p {
  font-size: 16px;
  margin-bottom: 20px;
  display: -webkit-box; /* Flexboxの一部としてのボックスレイアウト */
  -webkit-box-orient: vertical; /* ボックスの方向を縦方向に設定 */
  overflow: hidden; /* 溢れるコンテンツを隠す */
  text-overflow: ellipsis; /* 溢れる部分に省略記号(...)を表示 */
  -webkit-line-clamp: 3; /* 行数を3行に制限 */
  max-height: 4.5em; /* 行間高さ x 行数 */
}

.column_box p strong {
  font-weight: 600;
}

.column_box .col_link {
  font-size: 16px;
  color: #141414;
  text-decoration: underline;
  position: relative;
  margin-left: 26px; /* 円形アイコン分のスペースを確保 */
}
.column_box .col_link:before {
  content: "\f105"; /* Font Awesomeの右向き矢印 */
  font-family: "Font Awesome 5 Free"; /* Font Awesomeのフォントファミリー */
  font-weight: 900; /* Solidスタイル */
  position: absolute;
  top: 50%; /* 親要素の中央に配置 */
  left: -26px; /* アイコンの位置調整 */
  transform: translateY(-50%); /* 垂直方向で中央揃え */
  width: 20px; /* 円形の幅 */
  height: 20px; /* 円形の高さ */
  line-height: 20px; /* テキストの高さを円形に一致させる */
  text-align: center; /* テキストの水平中央揃え */
  font-size: 12px; /* 矢印アイコンのサイズ */
  background-color: #851313; /* 円形の背景色 */
  color: #fff; /* 矢印の色 */
  border-radius: 50%; /* 円形にする */
}
.column_box .col_link:hover {
  color: #851313;
  text-decoration: none;
}
.column_box .col_link:hover:before {
  background-color: #a52a2a; /* ホバー時の円形背景色 */
  color: #fff; /* ホバー時の矢印の色 */
}

.column_box a:hover {
  opacity: 0.7;
}

#col_sec01 {
  border-bottom: 1px solid #721a1a;
  padding: 0 0 30px;
  margin-bottom: 20px;
}

.col_title01 {
  font-size: 24px;
  color: #721a1a;
  font-weight: 300;
  padding: 0 45px;
  box-sizing: border-box;
  text-align: center;
  width: 237px;
  max-width: 90%;
  margin: 0 auto;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
  position: relative;
  line-height: 1.3;
}

.col_title01 span {
  font-size: 18px;
  display: block;
  color: #d4bd70;
}

/* Responsive */
@media only screen and (max-width: 744px) {
  #col_sec01 {
    padding: 0 10px 20px;
    margin-bottom: 20px;
  }
  .col_title01 {
    font-size: 19px;
  }
  .col_title01 span {
    font-size: 14px;
  }
  .col_title01:before {
    width: 28px;
    background-size: contain;
  }
  #col_sec02 {
    padding: 0 10px 20px;
  }
  .column_box {
    padding: 10px 10px 30px 10px;
    clear: both;
    overflow: hidden;
    margin-bottom: 15px;
  }
  .column_box .new_date {
    position: static;
    width: 100%;
    margin-bottom: 10px;
  }
  .column_box h3 {
    font-size: 18px;
    width: 100%;
  }
  .column_box img {
    position: static; /* モバイルでは相対配置 */
    width: 100%; /* 親要素の幅いっぱいに */
    height: auto; /* アスペクト比を維持 */
    max-height: 100px;
    object-fit: cover; /* ボックス内に収める */
    margin: 0 auto 1rem; /* 中央揃え */
  }
  .column_box .col_link {
    float: right;
  }
  .column_box p {
    font-size: 14px;
    position: static; /* モバイルでは相対配置 */
    width: 100%; /* 親要素の幅いっぱいに */
    height: auto; /* アスペクト比を維持 */
    object-fit: cover; /* ボックス内に収める */
    margin: 0 auto 1rem; /* 中央揃え */
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .pan-header {
    display: none;
  }
}
/* End of 744px */
/***********************************
 * 投稿レイアウト用css
***********************************/
.detail_column {
  background: #fffaf6;
  min-width: 1080px;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 744px) {
  .detail_column {
    min-width: 100%;
    width: 100%;
  }
}
.detail_column .pd24 {
  padding: 24px;
}
@media screen and (max-width: 744px) {
  .detail_column .pd24 {
    padding: 4.2666666667vw;
  }
}
.detail_column .mb24 {
  margin-bottom: 24px;
}
@media screen and (max-width: 744px) {
  .detail_column .mb24 {
    margin-bottom: 16px;
  }
}
.detail_column .mt24 {
  margin-top: 24px;
}
@media screen and (max-width: 744px) {
  .detail_column .mt24 {
    margin-top: 16px;
  }
}
.detail_column .nm {
  margin: 0 !important;
}
.detail_column .nw {
  white-space: nowrap;
}
.detail_column figure {
  text-align: center;
}
.detail_column .has-small-font-size {
  font-size: 13px !important;
}
@media screen and (max-width: 744px) {
  .detail_column .has-small-font-size {
    font-size: 10px !important;
  }
}
.detail_column .has-medium-font-size {
  font-size: 24px !important;
}
@media screen and (max-width: 744px) {
  .detail_column .has-medium-font-size {
    font-size: 18px !important;
  }
}
.detail_column .has-large-font-size {
  font-size: 32px !important;
}
@media screen and (max-width: 744px) {
  .detail_column .has-large-font-size {
    font-size: 20px !important;
  }
}
.detail_column .has-xl-font-size {
  font-size: 40px !important;
}
@media screen and (max-width: 744px) {
  .detail_column .has-xl-font-size {
    font-size: 30px !important;
  }
}
.detail_column .column__article {
  /*************************
  コンテンツ全体
  *************************/
  max-width: 1144px;
  margin: 0 auto;
  padding: 24px 2em 48px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__article {
    padding: 4.2666666667vw 2.1333333333vw 12.8vw;
  }
}
.detail_column .column__article h1 {
  position: relative;
  font-size: 40px;
  text-align: center;
  padding-bottom: 64px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__article h1 {
    font-size: 6.4vw;
  }
}
.detail_column .column__article h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #dd5564;
}
.detail_column .column__article h1 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__article h1 span {
    font-size: 4.8vw;
  }
}
.detail_column .column__article h1 span::before, .detail_column .column__article h1 span::after {
  content: "〜";
}
.detail_column .column__article__date {
  font-size: 13px;
  text-align: right;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 744px) {
  .detail_column .column__article__date {
    text-align: center;
  }
}
.detail_column .column__article__date__published {
  margin-right: 0.5rem;
}
.detail_column .column__article__date__published::before {
  content: "\f040";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}
.detail_column .column__article__date__updated::before {
  content: "\f01e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}

/***********************************
 * プロフィール用css
***********************************/
.detail_column .column__contents .profile {
  display: flex;
  width: 100%;
  padding: 24px 48px;
  align-items: center;
  align-self: stretch;
  border: 16px solid #fdf3f1;
  background: #fff;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile {
    padding: 4.2666666667vw 4.2666666667vw;
    border: 2.1333333333vw solid #fdf3f1;
  }
}
.detail_column .column__contents .profile .bio {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-between;
}
.detail_column .column__contents .profile .bio .details {
  flex: 1;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_wrap {
    display: flex;
    gap: 2.6666666667vw;
    justify-content: space-between;
  }
}
.detail_column .column__contents .profile .bio .details_info {
  width: 100%;
  margin-bottom: 2em;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_info {
    margin-bottom: 8.5333333333vw;
  }
}
.detail_column .column__contents .profile .bio .details_info_author {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-bottom: 1px solid #dd5564;
  margin-bottom: 0.5em;
}
.detail_column .column__contents .profile .bio .details_info_author span {
  display: flex;
  padding: 4px 8px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px 8px 0px 0px;
  background: #dd5564;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_info_author span {
    font-size: clamp(13px, 3.4666666667vw, 18px);
  }
}
.detail_column .column__contents .profile .bio .details_info_clinic {
  margin-bottom: 0;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents .profile .bio .details_info_clinic {
    font-size: clamp(11px, 2.9333333333vw, 16px);
  }
}
.detail_column .column__contents .profile .bio .details_info_name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_info_name {
    font-size: clamp(18px, 4.8vw, 28px);
    line-height: 1.2;
    font-weight: 700;
    white-space: initial;
    margin-bottom: 0;
    padding: 1.0666666667vw 0;
  }
}
.detail_column .column__contents .profile .bio .details_info_name_post, .detail_column .column__contents .profile .bio .details_info_name_inen {
  font-size: 0.8rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_info_name_post, .detail_column .column__contents .profile .bio .details_info_name_inen {
    color: #333;
    font-size: clamp(11px, 2.9333333333vw, 16px);
    line-height: 1.5;
  }
}
.detail_column .column__contents .profile .bio .details_info_name_inen {
  font-family: var(--font-noto-serif);
  color: #dd5564;
}
@media (max-width: 900px) {
  .detail_column .column__contents .profile .bio .details_info_name_inen {
    display: block;
    margin-top: 0.5em;
  }
}
@media (max-width: 945px) {
  .detail_column .column__contents .profile .bio .details_info_sp {
    display: flex;
    width: 100%;
    align-items: flex-start;
    align-self: stretch;
    gap: 24px;
    margin-bottom: 1em;
  }
}
.detail_column .column__contents .profile .bio .details_list {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  align-self: stretch;
}
@media screen and (max-width: 460px) {
  .detail_column .column__contents .profile .bio .details_list {
    flex-wrap: wrap;
  }
}
.detail_column .column__contents .profile .bio .details_list ul,
.detail_column .column__contents .profile .bio .details_list ol,
.detail_column .column__contents .profile .bio .details_list li {
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.detail_column .column__contents .profile .bio .details_list_license, .detail_column .column__contents .profile .bio .details_list_belong {
  width: 100%;
}
.detail_column .column__contents .profile .bio .details_list_license li, .detail_column .column__contents .profile .bio .details_list_belong li {
  position: relative;
  font-size: 13px;
  padding-left: 16px;
  margin-bottom: 0.2em;
}
.detail_column .column__contents .profile .bio .details_list_license li::before, .detail_column .column__contents .profile .bio .details_list_belong li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-color: #dd5564;
  border-radius: 50%;
}
.detail_column .column__contents .profile .bio .details_list_ttl {
  padding: 4px 0 4px 8px;
  gap: 8px;
  border-left: 3px solid #dd5564;
  margin-bottom: 1em;
  font-weight: 700;
}
.detail_column .column__contents .profile .bio .details_list_ttl::after {
  content: "";
  display: block;
  position: relative;
  bottom: -10px;
  left: -11px;
  border-bottom: 1px solid #dd5564;
}
.detail_column .column__contents .profile .photo_pc {
  flex-shrink: 0;
  max-width: 206px;
}
@media screen and (max-width: 945px) {
  .detail_column .column__contents .profile .photo_pc {
    display: none;
  }
}
.detail_column .column__contents .profile .photo_pc img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.detail_column .column__contents .profile .photo_sp {
  display: none;
}
@media screen and (max-width: 945px) {
  .detail_column .column__contents .profile .photo_sp {
    display: block;
    max-width: 206px;
    height: auto;
  }
}
.detail_column .column__contents .profile .photo_sp img {
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: cover;
}

/***********************************
 * 目次用css
***********************************/
.detail_column .column__toc__box {
  display: flex;
  flex-direction: column;
  padding: 16px 0px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  padding: 24px;
  background: #f8dde0;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__box {
    padding: 2.1333333333vw;
    gap: 2.1333333333vw;
  }
}
.detail_column .column__toc__ttl {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__ttl {
    margin-bottom: 0 !important;
  }
}
.detail_column .column__toc__inner {
  width: 100%;
  background: #fff;
  display: flex;
  padding: 24px 40px;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner {
    flex-direction: column;
    padding: 4.2666666667vw 4.2666666667vw 6.4vw;
  }
}
.detail_column .column__toc__inner__img {
  flex-shrink: 0;
  width: 40%;
  max-width: 280px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner__img {
    width: 100%;
    max-width: inherit;
  }
}
.detail_column .column__toc__inner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner__img img {
    max-height: 34vw;
  }
}
.detail_column .column__toc__inner__list {
  flex-grow: 1;
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.5rem;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner__list {
    font-size: 14px;
    margin-top: 4.2666666667vw;
    padding-left: 0;
  }
}
.detail_column .column__toc__inner__list a {
  position: relative;
  color: #dd5564;
  text-decoration: none;
  padding-left: 0.5rem;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner__list a {
    padding-left: 0;
  }
}
.detail_column .column__toc__inner__list a::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #dd5564;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.detail_column .column__toc__inner__list a:hover::after {
  transform: scaleX(1);
}
.detail_column .column__toc__inner__list li {
  color: #dd5564;
  margin-bottom: 0.25rem;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 744px) {
  .detail_column .column__toc__inner__list li {
    text-indent: -1rem;
    padding-left: 1rem;
  }
}

/***********************************
 * コンテンツ（記事内）用scss
***********************************/
.detail_column .column__contents {
  background: #fff;
  width: 100%;
  display: flex;
  padding: 48px 10% 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents {
    padding: 4.2666666667vw;
    gap: 24px;
  }
}
.detail_column .column__contents h2 {
  border-left: 5px solid #dd5564;
  background: #fdf5f6;
  padding: 8px 13px;
  margin-bottom: 0;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h2 {
    padding: 6px 13px;
  }
}
.detail_column .column__contents .wp-block-cover h2 {
  color: #dd5564;
  border-top: 2px solid #dd5564;
  border-bottom: 1px solid #dd5564;
  border-left: none;
  margin-bottom: 1em;
}
.detail_column .column__contents h3 {
  font-size: 21px;
  padding: 0.5rem 0 0.5rem 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #dd5564;
  border-left: 5px solid #dd5564;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h3 {
    padding: 0.25rem 0 0.25rem 0.5rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .detail_column .column__contents h3 {
    margin-bottom: 1rem;
  }
}
.detail_column .column__contents h3.blue {
  border-bottom: 1px solid #14708f;
  border-left: 5px solid #14708f;
}
.detail_column .column__contents h4 {
  position: relative;
  font-size: 21px;
  color: #dd5564;
  background: #fdf5f6;
  padding: 0.5rem 0 0.5rem 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h4 {
    font-size: 18px;
  }
}
.detail_column .column__contents h4.sub {
  color: #da4454;
  background: #fff6e1;
}
.detail_column .column__contents h4.before, .detail_column .column__contents h4.after {
  display: flex; /* フレックスボックスを使用 */
  align-items: center; /* 縦方向にセンター揃え */
  text-align: left;
  background: none;
  padding: 0 0 0 4.5rem; /* アイコン分の左余白 */
  min-height: 4.5rem;
  color: #333;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h4.before, .detail_column .column__contents h4.after {
    font-size: clamp(13px, 3.4666666667vw, 18px);
    padding: 0 0 0 9.6vw; /* アイコン分の左余白 */
    margin-bottom: 0.5rem;
  }
}
.detail_column .column__contents h4.before::before, .detail_column .column__contents h4.after::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 4rem; /* 円の幅 */
  height: 4rem; /* 円の高さ */
  border-radius: 50%; /* 円形にする */
  background-color: #333; /* 背景色 */
  display: flex; /* テキストを中央揃え */
  justify-content: center; /* 水平中央揃え */
  align-items: center; /* 垂直中央揃え */
  font-size: 1rem; /* テキストのサイズ */
  font-weight: 400;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h4.before::before, .detail_column .column__contents h4.after::before {
    width: 8.5333333333vw; /* モバイル用のサイズ */
    height: 8.5333333333vw;
    font-size: 2.1333333333vw; /* モバイル用のテキストサイズ */
  }
}
.detail_column .column__contents h4.before {
  color: #333;
}
.detail_column .column__contents h4.before::before {
  content: "Before";
  background-color: #333;
}
.detail_column .column__contents h4.after {
  color: #dd5564;
}
.detail_column .column__contents h4.after::before {
  content: "After";
  background-color: #dd5564;
}
.detail_column .column__contents h5 {
  font-size: 18px;
  font-weight: 700;
  padding: 0.5rem 0 0.5rem 0.75rem;
  margin: 0 0 1rem;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents h5 {
    padding: 0.25rem 0 0.25rem 0.5rem;
    font-size: 16px;
  }
}
.detail_column .column__contents p {
  line-height: 1.7;
  margin-bottom: 1em;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents p {
    font-size: 14px;
  }
}
@media (min-width: 745px) {
  .detail_column .column__contents p:last-of-type {
    margin-bottom: 0;
  }
}
.detail_column .column__contents p + .wp-block-cover {
  margin-top: 2em;
}
.detail_column .column__contents strong {
  color: #dd5564;
  background-image: linear-gradient(#fffbc6, #fffbc6);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 2s ease-in-out;
}
.detail_column .column__contents strong.animate {
  background-size: 100% 100%;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents strong.animate br {
    display: none;
  }
}
.detail_column .column__contents figcaption {
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents figcaption {
    font-size: 10px;
  }
}
.detail_column .column__contents .comment {
  /*************************
  吹き出し装飾
  *************************/
  width: 100%;
  gap: 0;
  align-items: center !important;
  margin: 1rem 0 2rem;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents .comment {
    margin: 0;
  }
}
.detail_column .column__contents .comment .fukidashi {
  position: relative;
  display: inline-block;
  padding: 1.5rem 2rem;
  border: 2px solid #ccc;
  border-radius: 1rem;
  background-color: #fff;
  text-align: left;
  flex: 1;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents .comment .fukidashi {
    padding: 1rem;
  }
}
.detail_column .column__contents .comment .fukidashi::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent transparent #ccc;
  translate: 100% -50%;
}
.detail_column .column__contents .comment .fukidashi::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 0 0 25.2px 25.2px;
  border-color: transparent transparent transparent #fff;
  translate: 100% calc(-50% - 0.4px);
}
.detail_column .column__contents .comment .illust {
  max-width: 20%;
}
@media screen and (max-width: 744px) {
  .detail_column .column__contents .comment .illust {
    min-width: 30%;
  }
}
.detail_column .column__contents .arrow {
  /*************************
  ボックス内中央に矢印を表示
  *************************/
  position: relative;
}
.detail_column .column__contents .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - clamp(4px, 2vw, 30px) / 2);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: clamp(10px, 2vw, 30px) solid transparent;
  border-bottom: clamp(10px, 2vw, 30px) solid transparent;
  border-left: clamp(4px, 2vw, 30px) solid #dd5564;
}
@media screen and (max-width: 744px) {
  .detail_column .is-layout-flex {
    flex-wrap: initial !important;
    flex-direction: inherit;
  }
}

@media screen and (max-width: 744px) {
  .wp-block-heading {
    font-size: 20px;
  }
}
.wp-block-cover {
  color: #333;
  border: 16px solid #f7f7f7;
  padding: 24px 24px 0;
}
@media screen and (max-width: 744px) {
  .wp-block-cover {
    border: 2.1333333333vw solid #f7f7f7;
    padding: 3.2vw 3.2vw 0;
  }
}
.wp-block-cover__background {
  background: #fff;
}
.wp-block-cover h2 {
  color: #dd5564;
  border-top: 2px solid #dd5564;
  border-bottom: 1px solid #dd5564;
  border-left: none;
  margin-bottom: 1em;
}
.wp-block-cover .wp-block-columns {
  margin-bottom: 0;
}
.wp-block-cover .wp-block-columns:last-of-type {
  margin-bottom: 0;
}
.wp-block-column div {
  margin-bottom: 0;
}
.wp-block-columns div {
  margin-bottom: 0;
}
.wp-block-columns .wp-block-columns {
  margin-bottom: 0;
}
.wp-block-column p:last-of-type {
  margin-bottom: 0;
}
.wp-block-group {
  /*************************
  グループ
  *************************/
  margin-bottom: 24px;
}
@media screen and (max-width: 744px) {
  .wp-block-group {
    margin-bottom: 6.4vw;
  }
}
.wp-block-group .wp-block-columns {
  margin-bottom: 16px;
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-columns.is-layout-flex:not(.is-not-stacked-on-mobile) {
    flex-direction: column;
    margin-bottom: 6.4vw;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-columns.rev:not(.is-not-stacked-on-mobile) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-columns.is-layout-flex {
    gap: 4.2666666667vw;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-column {
    margin-bottom: 6.4vw;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-column figure {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-group .wp-block-column.is-layout-flow {
    margin-bottom: 0;
  }
}
.wp-block-separator {
  border-top: 1px solid #ccc;
  margin-bottom: 1em;
}
.wp-block-table {
  /*************************
  テーブル
  *************************/
}
.wp-block-table th,
.wp-block-table td {
  padding: 1em;
  border: 2px solid #fff;
  text-align: left;
}
@media screen and (max-width: 744px) {
  .wp-block-table th,
  .wp-block-table td {
    font-size: clamp(13px, 3.4666666667vw, 16px);
    padding: 0.5em;
    line-height: 1.3;
  }
}
.wp-block-table thead th {
  background-color: #dd5564;
  color: #fff;
}
.wp-block-table tr:nth-child(odd) {
  background: #f7f7f7;
  font-weight: 500;
}
.wp-block-table tr:nth-child(odd) td:nth-child(1) {
  background: #f8dee1;
  text-align: center;
  font-weight: 700;
}
.wp-block-table tr:nth-child(even) {
  background: #e8e8e8;
}
.wp-block-table tr:nth-child(even) td:nth-child(1) {
  background: #f1bdc3;
  text-align: center;
  font-weight: bold;
}
.wp-block-table tr th {
  background: #dd5564;
  text-align: center;
  color: #fff;
  padding: 1em 0;
  font-weight: 700;
  box-sizing: border-box;
}
@media screen and (max-width: 744px) {
  .wp-block-table tr th:first-of-type {
    width: 10%;
  }
}
.wp-block-table tr td {
  vertical-align: top;
  box-sizing: border-box;
}
.wp-block-button {
  text-align: center;
}
@media screen and (max-width: 744px) {
  .wp-block-button {
    width: 100%;
  }
}
@media screen and (max-width: 744px) {
  .wp-block-buttons {
    width: 100%;
  }
}
.wp-block-button__link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 480px;
  padding: 16px 40px 16px 32px;
  border-radius: 48px;
  background: linear-gradient(180deg, var(--color-tertiary) 0%, #dd5564 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #dd5564;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 744px) {
  .wp-block-button__link {
    font-size: clamp(15px, 4vw, 18px);
    width: 100%;
    min-width: initial;
    min-height: 60px;
    padding: 8px 40px 8px 32px;
  }
}
.wp-block-button__link:hover {
  background: #fff;
  color: #dd5564;
  border-color: #e57373;
}
.wp-block-button__link:hover::after {
  border-right: 2px solid #e57373;
  border-top: 2px solid #e57373;
}
.wp-block-button__link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wp-block-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 744px) {
  .wp-block-image img {
    max-height: 180px;
    object-fit: contain;
  }
}

/***********************************
 * その他のコラム用css
***********************************/
.detail_column .column__related {
  background: #f5f3f0;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related {
    width: 100%;
    margin: 0 auto;
  }
}
.detail_column .column__related__inner {
  max-width: 1144px;
  margin: 0 auto;
  padding: 40px 2em 48px;
  text-align: center;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner {
    padding: 8.5333333333vw 2.1333333333vw 12.8vw;
  }
}
.detail_column .column__related__inner h2[data-name-en="Other Columns"] {
  font-size: 14px;
  color: #aaa;
  text-align: center;
  margin-bottom: 0;
}
.detail_column .column__related__inner h2[data-name-en="Other Columns"]::before {
  content: attr(data-name-en);
  display: block;
  font-family: var(--font-noto-serif);
  font-size: 32px;
  font-weight: 400;
  color: #dd5564;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1;
}
.detail_column .column__related__inner__conts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__conts {
    display: block;
    padding: 30px 0 0px;
  }
}
.detail_column .column__related__inner__box {
  flex: 0 0 calc(25% - 18px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 12px 24px 0;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__box {
    margin: 0 4.2666666667vw 12.8vw 4.2666666667vw;
    position: relative;
  }
  .detail_column .column__related__inner__box:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
  }
}
.detail_column .column__related__inner__box:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__box:nth-child(4n) {
    margin-right: 4.2666666667vw;
  }
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__box a {
    width: 100%;
  }
}
.detail_column .column__related__inner__img {
  flex-shrink: 0;
  display: block;
  height: 114px;
  margin-bottom: 1em;
}
.detail_column .column__related__inner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail_column .column__related__inner__ttl {
  padding: 0 0 0.2em 0.5em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  border-left: 4px solid #dd5564;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__ttl {
    font-size: clamp(18px, 4.8vw, 28px);
    height: 100%;
    padding: 0 0 0 0.5em;
  }
}
.detail_column .column__related__inner__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: left;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__txt {
    font-size: 14px;
  }
}
.detail_column .column__related__inner__btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--color-tertiary) 0%, #dd5564 100%);
  color: #fff;
  font-family: var(--font-noto-serif);
  font-weight: 400;
  padding: 24px 20px;
  text-decoration: none;
  border: 2px solid #dd5564;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 744px) {
  .detail_column .column__related__inner__btn {
    max-width: 327px;
    min-height: 60px;
    padding: 8px 40px 8px 32px;
  }
}
.detail_column .column__related__inner__btn:hover {
  background: #fff;
  color: #dd5564;
  border-color: #e57373;
}
.detail_column .column__related__inner__btn:hover::after {
  border-right: 2px solid #e57373;
  border-top: 2px solid #e57373;
}
.detail_column .column__related__inner__btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/***********************************
 * 個別ページ用scss
***********************************/
@media screen and (max-width: 744px) {
  .detail_column #column_001 .wp-container-core-columns-is-layout-1,
  .detail_column #column_001 .wp-container-core-columns-is-layout-3 {
    flex-direction: column-reverse !important;
  }
}
.detail_column #column_001 .wp-container-core-columns-is-layout-5,
.detail_column #column_001 .wp-container-core-columns-is-layout-6,
.detail_column #column_001 .wp-container-core-columns-is-layout-7,
.detail_column #column_001 .wp-container-core-columns-is-layout-8,
.detail_column #column_001 .wp-container-core-columns-is-layout-9 {
  margin-bottom: 1em;
}
@media screen and (max-width: 744px) {
  .detail_column #column_001 .wp-container-core-columns-is-layout-5,
  .detail_column #column_001 .wp-container-core-columns-is-layout-6,
  .detail_column #column_001 .wp-container-core-columns-is-layout-7,
  .detail_column #column_001 .wp-container-core-columns-is-layout-8,
  .detail_column #column_001 .wp-container-core-columns-is-layout-9 {
    flex-direction: column-reverse !important;
    gap: 4.2666666667vw;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_001 .wp-block-image img {
    width: 100% !important;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_001 .caseColumn .wp-block-image img {
    max-height: inherit;
    object-fit: cover;
  }
}
.detail_column #column_002 h4 {
  padding-left: 0;
  border-bottom: 1px solid #ccc;
}
.detail_column #column_002 .copy {
  font-size: clamp(13px, 3.4666666667vw, 21px);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .copy {
    font-size: clamp(13px, 3.4666666667vw, 16px) !important;
  }
}
.detail_column #column_002 .wp-container-core-columns-is-layout-1 {
  margin-top: 0;
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .wp-container-core-columns-is-layout-1,
  .detail_column #column_002 .wp-container-core-columns-is-layout-2,
  .detail_column #column_002 .wp-container-core-columns-is-layout-3,
  .detail_column #column_002 .wp-container-core-columns-is-layout-4,
  .detail_column #column_002 .wp-container-core-columns-is-layout-5,
  .detail_column #column_002 .wp-container-core-columns-is-layout-6,
  .detail_column #column_002 .wp-container-core-columns-is-layout-7 {
    flex-direction: row !important;
    gap: 2vw;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .wp-container-core-columns-is-layout-1 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-2 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-3 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-4 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-5 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-6 .pd24,
  .detail_column #column_002 .wp-container-core-columns-is-layout-7 .pd24 {
    padding: 2.1333333333vw;
  }
}
.detail_column #column_002 .wp-container-core-columns-is-layout-2 .has-medium-font-size,
.detail_column #column_002 .wp-container-core-columns-is-layout-3 .has-medium-font-size,
.detail_column #column_002 .wp-container-core-columns-is-layout-4 .has-medium-font-size,
.detail_column #column_002 .wp-container-core-columns-is-layout-5 .has-medium-font-size,
.detail_column #column_002 .wp-container-core-columns-is-layout-6 .has-medium-font-size,
.detail_column #column_002 .wp-container-core-columns-is-layout-7 .has-medium-font-size {
  font-size: 21px !important;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .wp-container-core-columns-is-layout-2 .has-medium-font-size,
  .detail_column #column_002 .wp-container-core-columns-is-layout-3 .has-medium-font-size,
  .detail_column #column_002 .wp-container-core-columns-is-layout-4 .has-medium-font-size,
  .detail_column #column_002 .wp-container-core-columns-is-layout-5 .has-medium-font-size,
  .detail_column #column_002 .wp-container-core-columns-is-layout-6 .has-medium-font-size,
  .detail_column #column_002 .wp-container-core-columns-is-layout-7 .has-medium-font-size {
    font-size: 18px !important;
  }
}
.detail_column #column_002 .wp-container-core-columns-is-layout-2 .wp-block-column p:last-of-type,
.detail_column #column_002 .wp-container-core-columns-is-layout-3 .wp-block-column p:last-of-type,
.detail_column #column_002 .wp-container-core-columns-is-layout-4 .wp-block-column p:last-of-type,
.detail_column #column_002 .wp-container-core-columns-is-layout-5 .wp-block-column p:last-of-type,
.detail_column #column_002 .wp-container-core-columns-is-layout-6 .wp-block-column p:last-of-type,
.detail_column #column_002 .wp-container-core-columns-is-layout-7 .wp-block-column p:last-of-type {
  margin-top: 2rem !important;
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .wp-container-core-columns-is-layout-2 .wp-block-column p:last-of-type,
  .detail_column #column_002 .wp-container-core-columns-is-layout-3 .wp-block-column p:last-of-type,
  .detail_column #column_002 .wp-container-core-columns-is-layout-4 .wp-block-column p:last-of-type,
  .detail_column #column_002 .wp-container-core-columns-is-layout-5 .wp-block-column p:last-of-type,
  .detail_column #column_002 .wp-container-core-columns-is-layout-6 .wp-block-column p:last-of-type,
  .detail_column #column_002 .wp-container-core-columns-is-layout-7 .wp-block-column p:last-of-type {
    margin-top: 1rem !important;
  }
}
.detail_column #column_002 .wp-image-17 img {
  max-height: 260px;
}
@media screen and (max-width: 744px) {
  .detail_column #column_002 .wp-image-17 img {
    max-height: 26.6666666667vw;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 h4 {
    line-height: 1.3;
    min-height: 63px;
  }
}
.detail_column #column_003 h4.sub {
  color: #14708f;
  background: #eaf5f9;
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 .wp-container-core-columns-is-layout-5 h4,
  .detail_column #column_003 .wp-container-core-columns-is-layout-6 h4 {
    line-height: 1.3;
    padding-left: 0;
    margin-bottom: 0;
    min-height: 63px;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 .wp-block-cover,
  .detail_column #column_003 .pd24 {
    padding: 2.1333333333vw;
    margin: 0;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 .wp-block-spacer {
    height: 16px !important;
  }
}
.detail_column #column_003 .wp-container-core-columns-is-layout-2,
.detail_column #column_003 .wp-container-core-columns-is-layout-3,
.detail_column #column_003 .wp-container-core-columns-is-layout-5,
.detail_column #column_003 .wp-container-core-columns-is-layout-6 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 .wp-container-core-columns-is-layout-2,
  .detail_column #column_003 .wp-container-core-columns-is-layout-3,
  .detail_column #column_003 .wp-container-core-columns-is-layout-5,
  .detail_column #column_003 .wp-container-core-columns-is-layout-6 {
    gap: 1em;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 1rem;
  }
}
.detail_column #column_003 .wp-container-core-columns-is-layout-2 .wp-block-image img,
.detail_column #column_003 .wp-container-core-columns-is-layout-3 .wp-block-image img {
  object-fit: contain;
  max-height: 200px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 .wp-container-core-columns-is-layout-5 h4,
  .detail_column #column_003 .wp-container-core-columns-is-layout-6 h4 {
    min-height: 70px;
  }
}
.detail_column #column_003 figcaption {
  font-size: clamp(11px, 2.9333333333vw, 15px);
  text-align: center;
}
@media screen and (max-width: 744px) {
  .detail_column #column_003 figcaption {
    text-align: left;
  }
  .detail_column #column_003 figcaption .nw {
    white-space: inherit;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_004 .wp-container-core-columns-is-layout-2,
  .detail_column #column_004 .wp-container-core-columns-is-layout-4,
  .detail_column #column_004 .wp-container-core-columns-is-layout-10,
  .detail_column #column_004 .wp-container-core-columns-is-layout-13,
  .detail_column #column_004 .wp-container-core-columns-is-layout-15,
  .detail_column #column_004 .wp-container-core-columns-is-layout-17 {
    flex-direction: column-reverse !important;
  }
}
.detail_column #column_004 .wp-container-core-columns-is-layout-4,
.detail_column #column_004 .wp-container-core-columns-is-layout-5,
.detail_column #column_004 .wp-container-core-columns-is-layout-6 {
  margin-bottom: 2rem;
}
.detail_column #column_004 .wp-container-core-columns-is-layout-12.comment {
  margin-bottom: 0;
}
@media screen and (max-width: 744px) {
  .detail_column #column_005 .wp-container-core-columns-is-layout-3,
  .detail_column #column_005 .wp-container-core-columns-is-layout-5,
  .detail_column #column_005 .wp-container-core-columns-is-layout-6 {
    flex-direction: column-reverse !important;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_006 .wp-container-core-columns-is-layout-2,
  .detail_column #column_006 .wp-container-core-columns-is-layout-3,
  .detail_column #column_006 .wp-container-core-columns-is-layout-5 {
    flex-direction: column-reverse !important;
  }
}
.detail_column #column_006 .wp-image-01 img,
.detail_column #column_006 .wp-image-02 img {
  max-height: 260px;
}
@media screen and (max-width: 744px) {
  .detail_column #column_007 .wp-container-core-columns-is-layout-1 {
    flex-direction: column-reverse !important;
  }
}
.detail_column #column_008 .wp-block-image.size-large {
  margin-bottom: 2em;
}
@media screen and (max-width: 744px) {
  .detail_column #column_008 .wp-block-image.size-large {
    margin-bottom: 0;
  }
}
.detail_column #column_008 .wp-container-core-columns-is-layout-9,
.detail_column #column_008 .wp-container-core-columns-is-layout-10,
.detail_column #column_008 .wp-container-core-columns-is-layout-11,
.detail_column #column_008 .wp-container-core-columns-is-layout-12,
.detail_column #column_008 .wp-container-core-columns-is-layout-13 {
  margin-bottom: 2em;
}
@media screen and (max-width: 744px) {
  .detail_column #column_008 .wp-container-core-columns-is-layout-2,
  .detail_column #column_008 .wp-container-core-columns-is-layout-4,
  .detail_column #column_008 .wp-container-core-columns-is-layout-6,
  .detail_column #column_008 .wp-container-core-columns-is-layout-9,
  .detail_column #column_008 .wp-container-core-columns-is-layout-12,
  .detail_column #column_008 .wp-container-core-columns-is-layout-14,
  .detail_column #column_008 .wp-container-core-columns-is-layout-16,
  .detail_column #column_008 .wp-container-core-columns-is-layout-18,
  .detail_column #column_008 .wp-container-core-columns-is-layout-20 {
    flex-direction: column-reverse !important;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_008 .wp-container-core-columns-is-layout-10,
  .detail_column #column_008 .wp-container-core-columns-is-layout-13 {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_008 .wp-element-caption {
    text-align: center;
  }
}
@media screen and (max-width: 744px) {
  .detail_column #column_009 .wp-container-core-columns-is-layout-5,
  .detail_column #column_009 .wp-container-core-columns-is-layout-8,
  .detail_column #column_009 .wp-container-core-columns-is-layout-10,
  .detail_column #column_009 .wp-container-core-columns-is-layout-11,
  .detail_column #column_009 .wp-container-core-columns-is-layout-13,
  .detail_column #column_009 .wp-container-core-columns-is-layout-15,
  .detail_column #column_009 .wp-container-core-columns-is-layout-17,
  .detail_column #column_009 .wp-container-core-columns-is-layout-19 {
    flex-direction: column-reverse !important;
  }
}
.detail_column #column_009 .wp-container-core-columns-is-layout-2 {
  margin: 1rem 0;
}
.detail_column #column_009 .wp-container-core-columns-is-layout-21 {
  flex-direction: row;
  margin: 0;
}
@media screen and (max-width: 744px) {
  .detail_column #column_009 .wp-block-button {
    margin-bottom: 1em;
  }
}

/* --------------------------------------------------
SIDE MENU
-------------------------------------------------- */
#side {
  max-width: 270px;
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
@media screen and (max-width: 744px) {
  #side {
    display: none;
  }
}
#side .c_side__ttl {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 21px;
  font-weight: normal;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: url(../../assets/images/sidebar/side_ttl-bg.png) no-repeat center top/contain;
  max-width: 375px;
  height: 80px;
  width: 100%;
  padding: 15px 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#side .c_side__ttl span {
  font-size: 14px;
  font-weight: 400;
  color: #ddbe6b;
  display: block;
}
#side [class^=c_side__cat-ttl] {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 20px;
  font-weight: normal;
  color: #333;
  line-height: 1;
  background: url(../../assets/images/sidebar/side_cat-ttl-bg.png) no-repeat center top/contain;
  max-width: 250px;
  height: 50px;
  width: 100%;
  padding: 15px 20px;
}
#side [class^=c_side__cat-ttl] span {
  font-size: 11px;
  font-weight: 400;
  color: #ddbe6b;
  display: inline-block;
  margin-left: 10px;
}
#side .c_side_sec {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
#side .c_side_menu {
  display: flex;
  flex-direction: column;
  width: 270px;
  padding: 24px;
  gap: 16px;
  background: #fdf7f7;
  border-top: 2px solid #dd5564;
}
#side .c_side_menu.footer-menu-vein-other {
  background: #f5f4fa;
  border-top: 2px solid #6e6783;
}
#side .c_side_menu.footer-menu-vein-other .cate li::before {
  border-top: 2px solid #6e6783;
  border-right: 2px solid #6e6783;
}
#side .c_side_menu.footer-menu-slim-hair {
  background: #fff8f5;
  border-top: 2px solid #935941;
}
#side .c_side_menu.footer-menu-slim-hair .cate li::before {
  border-top: 2px solid #935941;
  border-right: 2px solid #935941;
}
#side .c_side_menu.footer-menu-skin {
  background: #f9fcff;
  border-top: 2px solid #55a5d1;
}
#side .c_side_menu.footer-menu-skin .cate li::before {
  border-top: 2px solid #55a5d1;
  border-right: 2px solid #55a5d1;
}
#side .c_side_menu .ttl {
  color: #dd5564;
  font-feature-settings: "pwid" on, "palt" on;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.05px;
  padding-bottom: 8px;
}
#side .c_side_menu .ttl.footer-menu-vein-other {
  color: #6e6783;
}
#side .c_side_menu .ttl.footer-menu-slim-hair {
  color: #935941;
}
#side .c_side_menu .ttl.footer-menu-skin {
  color: #55a5d1;
}
#side .c_side_menu .cate {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#side .c_side_menu .cate_ttl {
  color: #fff;
  font-family: var(--font-yugo);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  padding: 4px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: #fff;
  background: #dd5564;
}
#side .c_side_menu .cate ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-yugo);
}
#side .c_side_menu .cate li {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-yugo);
  font-size: 14px;
  color: #333;
  position: relative;
}
#side .c_side_menu .cate li::before {
  content: "";
  display: inline-block;
  margin-top: 5px;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dd5564;
  border-right: 2px solid #dd5564;
  transform: rotate(45deg);
  flex-shrink: 0;
}
#side .c_side_menu .cate a {
  color: #333;
  font-family: var(--font-yugo);
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}
#side .c_side_menu .cate a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#side .c_side_menu .cate a:hover {
  opacity: 1;
}
#side .c_side_menu .cate a:hover::after {
  transform: scaleX(1);
}
#side .c_side_banner {
  text-align: center;
}
#side .c_side_banner li {
  margin-bottom: 10px;
}
#side .c_side_banner li a {
  display: block;
}
#side .c_side_banner li a:hover {
  opacity: 0.6;
}

/*# sourceMappingURL=column.css.map */
