/****************************************

  Page Block

*****************************************/
.bl_page_heading {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  border-bottom: 1px solid #707070;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .bl_page_heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_heading {
    font-size: 3.6rem;
  }
}

/****************************************

  NewsPage Block　-SCHEDULE

*****************************************/

.bl_pagetop_ttl {
  font-weight: 380; /* 基本フォントの太さ */
  line-height: 1.4; /* 行間を調整 */
  text-align: left; /* 中央揃え */
  margin-bottom: 20px; /* 下部余白 */
}

.bl_pagetop_ttl_en {
  font-family: "Gill Sans", sans-serif; /* 英語部分にのみ Gill Sans を適用 */
  font-size: 45px; /* 英語部分のフォントサイズ */
  font-weight: 302; /* 英語部分の太さ */
  text-transform: uppercase; /* 英語をすべて大文字に */
  letter-spacing: 0.1em; /* 英語部分の文字間隔 */
  display: block; /* 英語部分を独立して表示 */
}

.bl_pagetop_ttl_ja {
  font-size: 20px; /* 日本語部分のフォントサイズ */
  font-weight: 400; /* 日本語部分の太さ */
  color: #a9a9a9; /* 日本語部分の文字色 */
  letter-spacing: 0.2em; /* 日本語部分の文字間隔 */
  margin-top: 10px; /* 英語との間隔 */
}


/* カテゴリーメニュー全体のスタイル */
.l-cateList {
  display: flex; /* フレックスボックスで横並びに */
  flex-wrap: wrap; /* 折り返しを有効に */
  gap: 10px; /* 各項目の間隔を調整 */
  margin: 0 auto 10px auto; /* 上下の余白を調整、中央揃え */
  padding: 0; /* パディングをリセット */
  max-width: 1200px; /* コンテンツ幅に合わせて調整 */
}

/* カテゴリーメニューのコンテナ全体を中央に揃える */
.ly_section_inner {
  max-width: 1200px; /* 全体の幅を揃える */
  margin: 0 auto; /* 中央揃え */
  padding: 0 20px; /* サイドに余白を追加（レスポンシブ対応） */
}

/* 各カテゴリ項目のスタイル */
.l-cateLi a {
  display: inline-block; /* インラインブロックで幅と高さを指定可能に */
  padding: 10px 20px; /* 内側の余白を設定 */
  border: 1px solid #ffffff; /* 枠線を白で設定 */
  text-decoration: none; /* 下線を削除 */
  font-size: 14px; /* フォントサイズ */
  font-weight: 500; /* フォントの太さ */
  color: #000000; /* テキストの色 */
  border-radius: 2px; /* 角を丸くする */
  transition: all 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー時のスタイル */
.l-cateLi a:hover {
  background-color: #ffffff; /* 背景を白に変更 */
  color: #000000; /* テキストの色を黒に変更 */
  border-color: #ffffff; /* 枠線の色は白のまま */
}

/* 現在のカテゴリに適用されるスタイル */
.l-cateLi_active a {
  background-color: #ffffff;; /* 背景を白に変更 */
  color: #000000; /* テキストの色を黒に */
  border-color: #ffffff; /* 枠線の色は白のまま */
}

.l-cateLi_parent {
  position: relative; /* 親要素を基準にする */
}

.l-cateLi_parent .l-cateLi_child {
  display: none; /* 初期状態で非表示 */
  position: absolute; /* 親カテゴリから相対的に配置 */
  top: 100%; /* 親カテゴリの下に配置 */
  left: 0; /* 左寄せ */
  background-color: #424242; /* 背景色 */
  color: #000000; /* テキストの色を黒に */
  border: 1px solid #ccc; /* 枠線 */
  padding: 10px; /* 内側の余白 */
  z-index: 10; /* 前面に表示 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 軽い影 */
}

.l-cateLi_parent:hover > .l-cateLi_child {
  display: block; /* ホバー時に表示 */
}


.bl_page_news_listitem {
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 20px;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #cccccc;
  position: relative;
  display: flex;
  align-items: center;
}
.bl_page_news_list_thumbnail{
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
}
.bl_page_news_listlink {
  position: relative;
  display: flex;
  flex-direction: column;
}
.bl_page_news_listdate {
  margin-bottom: 4px;
  margin-right: 24px;
  letter-spacing: 0;
}
.bl_page_news_listttl {
  margin-right: 24px;
}
.bl_page_news_listarrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
}
@media screen and (min-width: 960px) {
  .bl_page_news_list_thumbnail{
    width: 180px;
    height: 180px;
    margin-right: 50px;
  }
  .bl_page_news_listarrow{
    right: 30px;
  }
}
/****************************************

  modelPage Block

*****************************************/
#news{
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/**************************
.bl_attribute_list{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  padding: 25px 20%;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.el_current_term{
  border-bottom: 1px solid black;
}
****************************/

/* カテゴリーメニュー全体のスタイル */
.l-cateList {
  display: flex; /* フレックスボックスで横並びに */
  justify-content: center;
  flex-wrap: wrap; /* 折り返しを有効に */
  gap: 10px; /* 各項目の間隔を調整 */
  margin: 0 auto 10px auto; /* 上下の余白を調整、中央揃え */
  padding: 0; /* パディングをリセット */
  max-width: 1200px; /* コンテンツ幅に合わせて調整 */
}

/* カテゴリーメニューのコンテナ全体を中央に揃える */
.ly_section_inner {
  max-width: 1200px; /* 全体の幅を揃える */
  margin: 0 auto; /* 中央揃え */
  padding: 0 20px; /* サイドに余白を追加（レスポンシブ対応） */
}

/* 各カテゴリ項目のスタイル */
.l-cateLi a {
  display: inline-block; /* インラインブロックで幅と高さを指定可能に */
  padding: 10px 20px; /* 内側の余白を設定 */
  border: 1px solid #ffffff; /* 枠線をサーモンピンクで設定 */
  text-decoration: none; /* 下線を削除 */
  font-size: 14px; /* フォントサイズ */
  font-weight: 500; /* フォントの太さ */
  color: #ffffff; /* テキストの色 */
  border-radius: 2px; /* 角を丸くする */
  transition: all 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー時のスタイル */
.l-cateLi a:hover {
  background-color: #ffffff; /* 背景をサーモンピンクに変更 */
  color: #000000; /* テキストの色を白に変更 */
  border-color: #ffffff; /* 枠線の色はサーモンピンクのまま */
}

/* 現在のカテゴリに適用されるスタイル */
.l-cateLi_active a {
  background-color: #ffffff;; /* 背景をサーモンピンクに変更 */
  color: #000000; /* テキストの色を白に */
  border-color: #ffffff; /* 枠線の色はサーモンピンクのまま */
}

.ly_model{
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.bl_mediaCard_wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bl_mediaCard_item{
  position: relative;
}
.bl_mediaCard_item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.bl_mediaCard_item__model{
  text-align: center;
}
.bl_mediaCard_item__model .hp_fc_g{
  font-size: 12px;
}
.bl_mediaCard_item__model p{
  /* overflow-wrap: break-word; */
  line-break: anywhere;
}
@media screen and (min-width: 560px) {
  .bl_mediaCard_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
  .bl_mediaCard_item__model .hp_fc_g{
    font-size: 14px;
  }

}
/****************************************

  FlowPage Block

*****************************************/
@media screen and (min-width: 560px) {
  .bl_page_flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_list {
    margin-bottom: 100px;
  }
}
.bl_page_flow_listitem {
  margin-bottom: 32px;
}
@media screen and (min-width: 560px) {
  .bl_page_flow_listitem {
    width: 46%;
  }
  .bl_page_flow_listitem:nth-of-type(2n) {
    margin-left: 8%;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_listitem {
    width: 30%;
  }
  .bl_page_flow_listitem:nth-of-type(2n) {
    margin-left: 0;
  }
  .bl_page_flow_listitem:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
}
.bl_page_flow_listttl {
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}
.bl_page_flow_listttl > span {
  margin-left: 8px;
  font-size: 1rem;
}
@media screen and (min-width: 560px) {
  .bl_page_flow_listttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_page_flow_listttl {
    font-size: 2rem;
  }
  .bl_page_flow_listttl > span {
    font-size: 1.2rem;
  }
}

/****************************************

  FAQPage Block

*****************************************/
@media screen and (min-width: 768px) {
  .bl_page_faq_list {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_list {
    margin-bottom: 150px;
  }
}
.bl_page_faq_listitem {
  position: relative;
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 40px;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_faq_listitem {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_listitem {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.bl_page_faq_icon {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.bl_page_faq_icon > span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: all 0.4s ease-in-out;
}
.bl_page_faq_icon > span:nth-of-type(2) {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_faq_icon {
    right: -40px;
  }
}
.bl_page_faq_question {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
.bl_page_faq_question:before {
  content: "Q.";
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_question {
    font-size: 1.5rem;
  }
}
.bl_page_faq_answer {
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
.bl_page_faq_answer:before {
  content: "A.";
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  .bl_page_faq_answer {
    font-size: 1.5rem;
  }
}

.bl_faq_check:checked ~ .bl_page_faq_question .bl_page_faq_icon {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.bl_faq_check:checked ~ .bl_page_faq_question .bl_page_faq_icon > span:nth-of-type(2) {
  -webkit-animation: voice-icon 0.4s ease-in-out 0s forwards;
          animation: voice-icon 0.4s ease-in-out 0s forwards;
}
.bl_faq_check:checked ~ .bl_page_faq_question {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.bl_faq_check:checked ~ .bl_page_faq_answer {
  display: flex;
}

/****************************************

  VoicePage Block

*****************************************/
@media screen and (min-width: 768px) {
  .bl_page_voice_list {
    margin-bottom: 100px;
  }
}
.bl_page_voice_listitem {
  position: relative;
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_voice_listitem {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_listitem {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.bl_page_voice_icon {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}
.bl_page_voice_icon > span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: all 0.4s ease-in-out;
}
.bl_page_voice_icon > span:nth-of-type(2) {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_voice_icon {
    right: -40px;
  }
}
.bl_page_voice_ttl {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_ttl {
    font-size: 1.5rem;
  }
}
.bl_page_voice_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .bl_page_voice_txt {
    font-size: 1.5rem;
  }
}

.bl_voice_check:checked ~ .bl_page_voice_ttl .bl_page_voice_icon {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.bl_voice_check:checked ~ .bl_page_voice_ttl .bl_page_voice_icon > span:nth-of-type(2) {
  -webkit-animation: voice-icon 0.4s ease-in-out 0s forwards;
          animation: voice-icon 0.4s ease-in-out 0s forwards;
}
.bl_voice_check:checked ~ .bl_page_voice_ttl {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.bl_voice_check:checked ~ .bl_page_voice_txt {
  display: block;
}

@-webkit-keyframes voice-icon {
  0% {
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    opacity: 0;
  }
}

@keyframes voice-icon {
  0% {
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    opacity: 0;
  }
}
/****************************************

  AboutPage Block

*****************************************/
/****************************************
.bl_table{
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}
.bl_table table{
  width: 100%;
}
.bl_table  th,
.bl_table  td{
  width: 100%;
  padding-left: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: normal;
  display: block;
}
.bl_table  td{
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_table{
    margin-top: 100px;
    margin-bottom: 150px;
  }
  .bl_table table{
    /*セル同士の間に隙間を空けない
    border-collapse:collapse;		
  }
  /****************************************
  .bl_table  th,
  .bl_table  td{
    display: table-cell;
    width: 80%;
    padding: 20px;
  }
  .bl_table  th{
    width: 20%;
    border-bottom: 1px solid #707070;
  }
}

@media screen and (min-width: 1024px) {
  .bl_page_about_flex {
    /* display: flex; 
    justify-content: space-between;
    align-items: flex-start; 
  }
}
/****************************************
.bl_page_about_box {
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .bl_page_about_box {
    margin-bottom: 64px;
    /* width: 46%; */
  }
}
/****************************************
.bl_page_about_txt {
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}
.bl_page_about_txt:not(:last-of-type) {
  margin-bottom: 16px;
}
.bl_page_about_map {
  margin-bottom: 50px;
}
.bl_page_about_map iframe,
.bl_page_about_map object,
.bl_page_about_map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: .3s;
}
.bl_page_about_map iframe:hover,
.bl_page_about_map object:hover,
.bl_page_about_map embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media screen and (min-width: 768px) {
  .bl_page_about_map {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_about_map {
    margin-bottom: 150px;
  }
}
*****************************************/

/****************************************

　--Profile page Block

*****************************************/

/* プロフィールボックス全体 */
.p-prof_box {
  display: grid; /* グリッドレイアウトを適用 */
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  gap: 20px; /* カラム間の間隔 */
  align-items: start; /* 上端で揃える */
  margin: 40px auto; /* 中央寄せと上下余白 */
  max-width: 1200px; /* 最大幅を設定 */
  width: 100%; /* 全幅 */
}

/* 画像ボックス */
.p-prof_img {
  width: 100%; /* 画像ボックスを親の幅に合わせる */
}

.p-prof_img img {
  width: 100%; /* 画像をボックスにフィット */
  height: auto; /* アスペクト比を維持 */
  border-radius: 8px; /* 角を丸くする */
}

/* テキストボックス */
.p-prof_txt {
  font-size: 16px; /* フォントサイズ */
  line-height: 1.6; /* 行間を調整 */
  color: #333; /* テキスト色 */
}

/* SNSリストのスタイル */
.p-prof_snsList {
  display: flex; /* 横並びに配置 */
  gap: 10px; /* 各アイコン間の間隔 */
  list-style: none; /* リストスタイルを削除 */
  padding: 0; /* リストの余白を削除 */
  margin: 0; /* マージンを削除 */
}

/* SNSアイコン */
.p-prof_snsList img {
  width: 24px; /* アイコンの幅を指定 */
  height: 24px; /* アイコンの高さを指定 */
  object-fit: contain; /* 画像が歪まないように調整 */
}

@media screen and (max-width: 768px) {
  .p-prof_txt {
    font-size: 14px; /* スマホ画面用にフォントサイズを小さく */
    line-height: 1.4; /* 行間を調整 */
  }

  .p-prof_snsList img {
    width: 20px; /* SNSアイコンをさらに小さく */
    height: 20px;
  }
}


/****************************************

  ServicePage Block

*****************************************/
.bl_page_service_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 6%;
  padding-right: 6%;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_box {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.bl_page_service_box_inner {
  font-family: "Noto Serif JP", serif;
}
.bl_page_service_box_inner:not(:last-of-type) {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_inner:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.bl_page_service_box_name {
  margin-bottom: 4px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_name {
    text-align: left;
  }
}
.bl_page_service_box_price {
  font-size: 2rem;
  text-align: center;
}
.bl_page_service_box_price > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_price {
    text-align: left;
  }
}
.bl_page_service_box_cp {
  font-size: 2.4rem;
  text-align: center;
}
.bl_page_service_box_cp > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_box_cp {
    text-align: left;
  }
}
.bl_page_service_arrow {
  margin-bottom: 24px;
  width: 12px;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_service_arrow {
    margin-bottom: 0;
    width: 64px;
    transform: none;
  }
}
.bl_page_service_boxarrow {
  margin-bottom: 8px;
  width: 12px;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .bl_page_service_boxarrow {
    margin-bottom: 0;
    width: 64px;
    transform: none;
  }
}

.bl_page_service_list {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_list {
    margin-bottom: 150px;
  }
}
.bl_page_service_listitem {
  border: 1px solid #cccccc;
}
.bl_page_service_listitem:not(:last-of-type) {
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .bl_page_service_listitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.bl_page_service_listttl {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1024px) {
  .bl_page_service_listttl {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    width: 24%;
    border-bottom: none;
    border-right: 1px solid #707070;
  }
}
.bl_page_service_list_boxwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxwrap {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .bl_page_service_list_boxwrap {
    padding-top: 32px;
    padding-bottom: 32px;
    width: 76%;
  }
}
.bl_page_service_list_boxttl {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxttl {
    text-align: left;
  }
}
.bl_page_service_list_boxprice {
  margin-bottom: 8px;
  text-align: center;
  font-size: 2rem;
}
.bl_page_service_list_boxprice > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxprice {
    margin-bottom: 0;
    text-align: left;
  }
}
.bl_page_service_list_boxcp {
  text-align: center;
  font-size: 2.4rem;
}
.bl_page_service_list_boxcp > span {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_boxcp {
    text-align: left;
  }
}
.bl_page_service_list_note {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .bl_page_service_list_note {
    font-size: 1.4rem;
  }
}

/****************************************

 Audition

*****************************************/
.bl_audition_flow{
  margin-top: 100px;
}
.bl_audition_flow_item{
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}
.bl_audition_flow_item p{
  display: flex;
  align-items: center;
}
.bl_audition_flow_ttl{
  margin-bottom: 15px;
}
.bl_audition_flow_num{
  margin-right: 30px;
  padding: 25px;
  color: white;
  font-size: 20px;
  background-color: black;
}
@media screen and (min-width: 1200px) {
  .bl_audition_flow_item{
    display: flex;
    align-items: stretch;
  }
  .bl_audition_flow_ttl{
    margin-right: 100px;
    margin-bottom: 0px;
  }
}

/****************************************

  Helper

*****************************************/
.hp_fc_g{
  color: #CCCCCC;
}

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