@charset "UTF-8";

body {
  margin: 0 auto;
  /* font */
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #484848;
  color: #333;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  body {
    margin: 0 auto;
    max-width: 750px;
    min-width: 320px;
  }
}

/* =============================================
header
============================================= */
header {
  /*padding-left: 1rem;*/
  background-color: #fff;
  position: fixed;
  /*left: 50%;
  transform: translateX(-50%);*/
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  min-width: 320px;
  height: 70px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 1000;
}

.logo img {
  height: 36px;
}
.logo_txt img {
  height: 42px;
}
header a { text-decoration: none;}

.logo_area {width: 60%;}

.logo_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo_img {
  /*width: 20%;*/
  /*padding: 16px 2px 0 5px;*/
}
.logo_img img {
  width: 100%;
  margin: 0 auto;
  /*padding: 4px 1px 4px 4px;*/
}
.logo_txt {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f84c05;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .logo img {
    height: 60px;
  }
}

@media screen and (min-width: 768px) {
  .logo_box {
    justify-content: flex-start;
  }
  .logo_txt {
    font-size: 2.2rem;
  }
}

.header_btn_area {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header_btn img {
    height: 45px;
    display: block;
    max-height: 52px;
}

@media screen and (min-width: 768px) {
  .header_btn img {
    max-height: initial;
  }
}

/* =============================================
main
============================================= */
main {
  margin-top: 70px;
  padding-bottom: 75px;
}

/* =============================================
media
============================================= */
.media_tv {
  margin-top: 27px;
  max-width: 86%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .media_tv {
    margin-top: 54px;
  }
}

.media img {
  padding: 12px;
}

/* =============================================
voice
============================================= */
.voice img {
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
}

.voice_intro {
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .voice_intro {
    margin-top: 72px;
  }
}

.voice_detail {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .voice_detail {
    margin-top: 60px;
  }
}

.voice_txt {
  margin-top: 32px;
  max-height: 436px;
  overflow-y: scroll;
  margin-right: 15px;
  scrollbar-color: #e46b8a #e46b8a;
  margin-bottom: 55px;
  scrollbar-width: thin;
}

.voice_box {
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #f69600;
  border-radius: 10px;
  padding: 20px 10px;
}

@media screen and (min-width: 768px) {
  .voice_box {
    padding: 20px 20px;
  }
}

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

.voice_box_ttl {
  margin-top: 0;
  color: #723710;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6cccc;
}

.voice_box_txt {
  color: #1d1d1d;
}

/* =============================================
shops
============================================= */
.shops_info {
  margin-top: 25px;
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
}

.shops_info_area_ttl {
  background-color: #931e23;
  border-radius: 5px;
  color: #fff;
  padding: 15px 24px;
  font-size: 25px;
}

.accordion_inner {
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  display: none;
}

.accordion_inner.shop_list {
  padding-top: 0;
}

.shops_info_area_pref {
  font-size: 20px;
  padding: 14px;
  border-bottom: 1px solid #484848;
}

.shops_info_area .shops_info_area_pref:first-of-type {
  margin-top: 0;
}

/* 矢印 */
.accordion_title {
  position: relative;
}

.accordion_title:hover {
  cursor: pointer;
}

.accordion_title::after {
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 16px;
}

.accordion_title.shops_info_area_pref::after {
  border-right: solid 3px #484848;
  border-top: solid 3px #484848;
  top: 30%;
}

.accordion_title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.shop_list {
  padding-left: 32px;
}

.shop_ttl {
  font-size: 16px;
  color: #931e23;
  margin-top: 0;
  margin-bottom: 10px;
}

.shop_list_detail {
  font-size: 14px;
}

.shop_list_detail p {
  margin-top: 0;
}

.shop_list_detail p:first-of-type {
  margin-bottom: 8px;
}

.shop_list_ic {
  height: auto;
  width: 1em;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}

.shop_time {
  font-size: 13px;
}

.shop_list_item {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 10px;
  padding-top: 12px;
}

/* =============================================
contact
============================================= */
.contact_head {
  font-size: 35px;
  color: #931e23;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .contact_head {
    font-size: 70px;
    margin-bottom: 80px;
  }
}

.contact_head::before {
  position: absolute;
  border-bottom: 3px solid #931e23;
  bottom: -0.4em;
  left: 50%;
  transform: translateX(-50%);
  width: 22.6%;
  content: "";
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .contact_head::before {
    border-bottom: 6px solid #931e23;
  }
}

.form_area {
  max-width: 86%;
  margin-right: auto;
  margin-left: auto;
}

.form_item {
  margin-bottom: 16px;
}

.form_head {
  font-size: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .form_head {
    font-size: 30px;
  }
}

span.required {
  padding: 0 15px;
  border-radius: 100px;
  font-size: 11px;
  background-color: #d02a2e;
  color: #fff;
  margin-left: 8px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  span.required {
    font-size: 22px;
    padding: 0 30px;
    margin-left: 16px;
  }
}

.form_input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #707070;
  height: 44px;
  padding: 1em;
}

input::placeholder {
  color: #dddddd;
}

input[type="radio"] {
  appearance: none;
  display: none;
}

.form_content.radio_parts {
  padding-left: 0.5em;
}

.mwform-radio-field label {
  display: inline-block;
}

.radio_item + span {
  padding-left: 18px;
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-left: -0.5em;
  font-weight: 600;
}

.radio_item + span::after,
.radio_item + span::before {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
}

.radio_item + span::before {
  border: 1px solid #707070;
  left: 0;
  top: 0;
  height: 14px;
  width: 14px;
}

.radio_item + span::after {
  background: #213c8f;
  height: 10px;
  left: 2px;
  opacity: 0;
  top: 2px;
  width: 10px;
}

.radio_item:checked + span::after {
  opacity: 1;
}

.form_content.select_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select_item {
  border: 1px solid #707070;
  padding: 0.5em;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  color: #1d1d1d;
  background-color: #fff;
}

@media screen and (min-width: 768px) 
{
  .select_item {
    height: 54px;
  }
}

select.select_item.short {
  max-width: 20%;
  width: 100%;
}

select.select_item.short.time {
  max-width: 40%;
  width: 100%;
}

optgroup {
  font-size: 16px !important;
}

.textarea {
  max-width: 100%;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 1em;
  height: 205px;
  line-height: 1.5;
}

.form_note {
  font-size: 15px;
  font-weight: bold;
}

.form_note.red {
  font-size: 18px;
  color: #931e23;
  margin-top: 30px;
  margin-bottom: 50px;
}

.form_note.info {
  text-align: center;
  font-size: 14px;
  line-height: 2.14;
  margin-bottom: 40px;
}

input[type="submit"] {
  background-image: linear-gradient(to right bottom, #931e23 0%, #951c21 48.77%, #4a0f12 100%);
  font-size: 17px;
  color: #fff;
  width: 100%;
  border-radius: 32px;
  border: none;
  padding: 20px;
}
.yoyaku_title{
	font-size: 1.2em;
	text-align: center;
}
h2.yoyaku_tl{
	font-size:1.7em;
	margin-top: 50px;
    color: #ac0e0e;
}
.yoyaku_tel{
	font-size:1.5em;
	padding-bottom:50px;
}
.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

@media screen and (min-width: 768px) {
  input[type="submit"] {
    font-size: 20px;
  }
}

input[type="submit"]:hover {
  cursor: pointer;
}

.mw_wp_form .error {
  margin-top: 0.5em;
}

.send_btn[disabled] {
  background-image: none;
  background-color: #aaa;
  cursor: not-allowed;
  color: #931e23;
}

.txt_comment{
	margin:0 10px;
}
.txt_kuchikomi{
	margin:-30px 10px 30px;
}

/* =============================================
footer
============================================= */
footer {
  background: #0f3c83;
  color: #fff;
  padding: 30px 15px;
  text-align: center;
}

.ft_inner {
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .ft_inner {
    padding-bottom: 4rem;
  }
}

.ft_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.ft_logo {
	width: 77%;
	margin:auto;
}

.ft_logo img { margin: 0 auto; }

.ft_link {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid;
  padding-left: 0.5em;
}

@media screen and (min-width: 768px) {
  .ft_link {
    font-size: 28px;
  }
}

.ft_link a {
  display: block;
  text-decoration: none;
}

.ft_link a:not(:last-of-type) {
  margin-bottom: 0.8em;
}

.copy {
  font-size: 12px;
  text-align: center;
	margin-top: 20px;
}

/* =============================================
fix_bnr
============================================= */
.fix_bnr {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .fix_bnr {
    width: initial;
  }
}

.fix_bnr a {
  max-width: 96%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.fix_bnr a::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.fix_bnr a img {
  padding-left: 1em;
}

.fix_bnr a img {
  padding-left: 1em;
}

.area-info{
	margin: 30px 0 0 0;
}
.area {
  display: none;
  background-color: #f1f1f1;
  padding: 20px;
}
.show {
  display: block;
}
.area p{
	margin: 5px 0 0 0;
}
.area .name{
	color: #931e23;
	font-weight: 700;
}

.price01 {
  padding: 5px 0 30px;
  /*background: #f1e4c5;*/
  background: #f1e4c55e;
}
.price01 p {
  text-align: center;
  color: #723611;
  font-size: 1.2rem;
}

/* =============================================
こんなお悩みありませんか > 5つのポイント
============================================= */
h2.nayami_ttl {
  position: relative;
  padding: 0.6em;
  /*background: #1f924440;*/
  background: #badaf3a3;
  margin: 14px 14px 8px;
  border-radius: 10px;
  color: #7a3c17;
  text-align: center;
}

h2.nayami_ttl:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  /*border-top: 15px solid #1f924440;*/
  border-top: 15px solid #badaf3a3;
  width: 0;
  height: 0;
}

h2.nayami_ttl span {
  font-weight: normal;
  font-size: 1rem;
}

/*** モーダルウィンドウ追加　2025年11月 start ***/
.nayami_container {
  margin: 14px 14px;
}
.nayami_box {
  display: flex;
  row-gap: 2px;
  column-gap: 2px;
  margin-bottom: 2px;
}

/* モーダルを開くボタンのスタイル */
.openModal {
    /*position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;*/
    background: #fff;
    border: none;
    /*border-radius: 14px;*/
    cursor: pointer;
    /*transform: translate(-50%, -50%);*/
}

/* モーダルウィンドウの基本スタイル */
.myModal {
    display: none;
}

/* モーダルウィンドウの背景スタイル */
.ui-widget-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* 背景を半透明に設定 */
}
/*** モーダルウィンドウ追加　2025年11月 end ***/

/*** menuボタン追加、料金・症状ページ追加　2026年1月 start ***/
/* --- ハンバーガーメニューのスタイル --- */
.menu-trigger {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: relative;
    width: 45px;
    height: 45px;
    /*background: #b77e1c;*/
    background: #0f3c83;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1002;
}
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) { top: 13px; }
.menu-trigger span:nth-of-type(2) { top: 21px; }
.menu-trigger span:nth-of-type(3) { top: 29px; }

/* アクティブ時のアニメーション (X印) */
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
}

/* ドロワーメニューの背景 */
#sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    padding: 80px 20px 40px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}
#sp-menu.open {
    right: 0;
}

/* メニュー内のリスト項目 */
#sp-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#sp-menu ul li {
    border-bottom: 1px solid #eee;
}
#sp-menu ul li a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sp-menu ul li a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #b77e1c;
}
.menu-category {
    background: #f9f9f9;
    padding: 5px 10px;
    font-size: 12px;
    color: #b77e1c;
    font-weight: bold;
    margin-top: 15px;
}

/* オーバーレイ */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* コンテンツ部分の余白（ヘッダー固定分） */
section img { width: 100%; height: auto; display: block; }

.nayami { padding: 40px 15px; background: #edf2f7; }
.nayami_ttl { text-align: center; font-size: 20px; color: #b77e1c; margin-bottom: 20px; }
.nayami_ttl span { font-size: 14px; color: #666; }
.nayami_container { display: flex; flex-wrap: wrap; gap: 2px; justify-content: center; }
.nayami_item { width: 33%; min-width: 100px; }
.nayami_item button { border: none; background: none; padding: 0; cursor: pointer; }

.price01 { text-align: center; padding: 20px 0; background: #fff; }
.price01 p { font-weight: bold; color: #b77e1c; margin-bottom: 10px; }
/*** menuボタン追加、料金・症状ページ追加　2026年1月 end ***/

/*** 各ページ（症状・料金）追加　2026年2月 start ***/
/* ブルーベースへの調整スタイル */
:root {
    --main-blue: #005bac;
    --sub-blue: #0072bc;
    --light-blue: #f0f7ff;
    --accent-blue: #3c79db;
}
/**/
.symptoms_content { padding-bottom: 50px; background: #fff; }
.symptoms_fv img { width: 100%; height: auto; display: block; }

.section_inner { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }

.c-headline { text-align: center; margin-bottom: 30px; }
.c-headline h2 { font-size: 22px; color: var(--main-blue); font-weight: bold; position: relative; display: inline-block; padding-bottom: 10px; }

.c-headline h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #a0aec0; }

.nayami_list { background: var(--light-blue); border: 2px dashed var(--main-blue); padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.nayami_list h3 { font-size: 20px; font-weight: bold; color: var(--main-blue); margin-bottom: 20px; text-align: center; }
.nayami_list ul { padding: 0 0 0 10px; }
.nayami_list ul li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 16px; line-height: 1.6; list-style: none; }
.nayami_list ul li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--main-blue); }

.reason_box { margin-bottom: 50px; }
.reason_item { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 30px; gap: 20px; }
.reason_txt { flex: 1; min-width: 300px; }
.reason_txt h3 { font-size: 20px; color: #333; font-weight: bold; margin-bottom: 15px; border-left: 5px solid var(--main-blue); padding-left: 10px; }
.reason_txt p { line-height: 1.8; color: #555; }

.reason_img { flex: 0 0 100%; }
.reason_img img { width: 100%; border-radius: 8px; }

.method_container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.method_card { background: #fdfdfd; border: 1px solid #eee; padding: 25px; border-radius: 10px; box-shadow: 0 3px 6px rgba(0,0,0,0.05); }
.method_card h4 { font-size: 18px; color: var(--main-blue); font-weight: bold; margin-bottom: 15px; text-align: center; }
.method_card p { font-size: 14px; line-height: 1.6; color: #666; }

.flow_list { margin-top: 30px; }
.flow_item { display: flex; align-items: center; margin-bottom: 15px; background: #fff; border: 1px solid var(--main-blue); border-radius: 50px; padding: 10px 15px; }
.flow_num { background: var(--main-blue); color: #fff; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 20px; font-weight: bold; font-size: 18px; flex-shrink: 0; }
.flow_txt { font-weight: bold; color: #333; }

.frequency_note { background: #f3f3f3; border-top: 4px solid var(--main-blue); padding: 30px; border-radius: 10px; text-align: center; margin-top: 40px; }
.frequency_note h3 { font-size: 22px; color: #d32f2f; font-weight: bold; margin-bottom: 15px; }
.frequency_note p { line-height: 1.8; }

/* 「ここが違う」セクションのスタイル */
.difference_section { background: var(--light-blue); border-radius: 15px; padding: 40px 30px; margin: 50px 0; border: 1px solid #cce3ff; }
.diff_message_box { text-align: center; }
.diff_message_box p { font-size: 16px; line-height: 1.8; color: #333; }
.diff_highlight { color: var(--main-blue); font-weight: bold; display: block; font-size: 18px; margin: 10px 0; }
.diff_sub_text { font-weight: bold; text-decoration: underline; text-decoration-color: var(--main-blue); }

/*.flow_list { margin-top: 30px; }
.flow_item { display: flex; align-items: center; margin-bottom: 15px; background: #fff; border: 1px solid var(--main-blue); border-radius: 50px; padding: 15px 25px; }
.flow_num { background: var(--main-blue); color: #fff; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 20px; font-weight: bold; font-size: 18px; flex-shrink: 0; }
.flow_txt { font-weight: bold; color: #333; }

.frequency_note { background: #f3f3f3; border-top: 4px solid var(--main-blue); padding: 30px; border-radius: 10px; text-align: center; margin-top: 40px; }
.frequency_note h3 { font-size: 22px; color: #d32f2f; font-weight: bold; margin-bottom: 15px; }
.frequency_note p { line-height: 1.8; }*/

/* 料金テーブル */
.price_table_container { margin-bottom: 50px; }
.price_table_title { background: var(--main-blue); color: #fff; padding: 10px 20px; font-weight: bold; border-radius: 8px 8px 0 0; font-size: 18px; }
.price_table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border-color); border-top: none; }
.price_table th, .price_table td { padding: 20px; border-bottom: 1px solid var(--border-color); text-align: left; }
.price_table th { background: var(--light-blue); width: 35%; font-weight: bold; color: var(--main-blue); }
.price_table td { width: 65%; }
.price_val { font-size: 20px; font-weight: bold; color: #d32f2f; }
.price_sub { font-size: 14px; color: #666; margin-left: 5px; }
.price_note { font-size: 13px; color: #666; margin-top: 5px; line-height: 1.4; }

/* 保険施術セクション */
.insurance_box { background: var(--light-blue); border: 2px solid var(--main-blue); padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.insurance_box h3 { font-size: 20px; font-weight: bold; color: var(--main-blue); margin-bottom: 15px; text-align: center; }
.insurance_box p { line-height: 1.7; font-size: 15px; }

/* 決済方法 */
.payment_box { background: #f9f9f9; padding: 30px; border-radius: 10px; text-align: center; border: 1px solid #eee; }
.payment_box h3 { font-size: 18px; font-weight: bold; margin-bottom: 20px; color: var(--main-blue); }
.payment_icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
.payment_icons i { font-size: 32px; color: #555; }
.payment_text { margin-top: 15px; font-size: 14px; color: #666; }

/* 共通の注釈 */
.price_general_note { background: #fffbe6; border: 1px solid #ffe58f; padding: 20px; border-radius: 8px; margin-bottom: 30px; }
.price_general_note p { font-size: 14px; line-height: 1.6; color: #856404; }

@media screen and (min-width: 768px) {
    .reason_img { flex: 0 0 350px; }
    .c-headline h2 { font-size: 28px; }
    .flow_item { padding: 15px 25px; }
}
/*** 各ページ（症状・料金）追加　2026年2月 end ***/

/*** CTAボタン追加　2026年2月 start ***/
.cta_btn_box {
  display: block;
  padding: 50px 0;
  background-image: linear-gradient(90deg, #6fbcf3d4, #98e2f357 79%);
  /*background-image: linear-gradient(90deg, #f4eed0a6, #edc771 83%);*/

}
.cta_btn_item {padding: 10px 15px;}

@media screen and (min-width: 768px) {
  .cta_btn_box {
    display: flex;
    /*background-image: linear-gradient(90deg, #f4eed0a6, #edc771 79%);*/
  }
}

/*** CTAボタン追加　2026年2月 end ***/

/* =============================================
thanks.html
============================================= */
.thanks-heading {
  padding: 30px 5px 5px;
  text-align: center;
  font-size: 1.2rem;
  color: #3c78d8;
  text-decoration: underline #fbee90 1px solid;
}

.thanks-text {
  padding: 5px 10px 30px;
  text-align: center;
}
