@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width : 768px) {

  /*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/

  /*--------------------------------------------------
共通設定(スマホ)
-----------------------------------------------------*/

  /*body全体の初期スタイル調整*/
  body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
  h2 {
    margin: 0.5em 0em;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
  }

  h3 {
    margin: 0.5em 0em;
    padding: 0.3em 0.6em;
    font-size: 1.4em;
    font-weight: bold;
    border-left: 8px solid #10559A;
    border-bottom: 1px dotted #10559A;
  }

  h4 {
    margin: 0.5em 0em;
    padding: 0.3em 0.6em;
    font-size: 1.2em;
    border: 1px solid #ccc;
    font-weight: bold;
  }

  h5 {
    margin: 0.5em 0em;
    padding: 0.1em;
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px dotted #ccc;
  }

  /*--------------------------------------------------
全体レイアウト／背景設定（スマホ）
-----------------------------------------------------*/
  /*全体エリア（全体背景を設定するにはここ）*/
  .main {
    background-color: #f2f2f2;
  }

  /*記事(ボディ)エリア*/
  .article {
    background-color: #fff;
    border-left: none;
    border-right: none;
    font-size: 1.6em;
    /*=16px*/
  }

  /*記事(ボディ)エリアの行間*/
  .article p {
    line-height: 1.6;
  }

  /*カラム全体の幅を変更する*/
  .article,
  .top_image_in {
    width: 100%;
    margin: 0 auto;
    /*真ん中に要素を置きたいときに使う*/
  }

  /*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
  /*上部固定ヘッダー全体*/
  .header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 5000;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    height: 60px;
    padding: 5px 0;
    overflow: hidden;
  }

  /*ヘッダー内部をカラム幅にする*/
  .header_inr {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  /*ヘッダーのロゴ*/
  .header_logo {
    width: 28%;
    float: left;
    margin: 0em;
    padding-top: 5px;
  }

  /*ヘッダーの問い合わせボタン*/
  .header_mail {
    width: 30%;
    float: right;
    margin: 0.5em 0em 0em;
  }

  /*ヘッダーの電話ボタン*/
  .header_tel {
    width: 35%;
    float: right;
    margin: 0.7em 0.5em 0em;
  }

  /*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
  .top_image {
    background-image: none;
  }

  .top_image_in img {
    width: 100%;
  }

  /*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
  .seciton_01 {
    padding: 0.5em 0.5em;
  }

  .section_02 {
    background-color: #FFFEF0;
    padding: 0.5em 0.5em;
  }

  /*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
  ul.checklist {
    border: 1px solid #ccc;
    list-style: none;
    padding: 1em;
  }

  ul.checklist li {
    background-image: url("../images/icon-check03-red.png");
    background-repeat: no-repeat;
    background-size: 7%;
    padding-left: 2em;
    margin-bottom: 0.8em;
  }

  ul.checklist li:last-child {
    margin-bottom: 0em;
  }

  /*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
  table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin: 1em 0em;
  }

  th,
  td {
    padding: 0.5em;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  th {
    background-color: #f0f0f0;
    font-weight: bold;
    text-align: center;
  }

  td {
    background-color: #fff;
    text-align: left;
  }

  /*スマホでは行が列になるテーブルタグ*/

  .table_style_01 tr,
  .table_style_01 th,
  .table_style_01 td {
    display: block;
  }

  .table_style_01 th,
  .table_style_01 td {
    width: 100%;
  }




  /*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
  .mailform {
    background-color: #fff;
    margin-bottom: 1em;
    padding: 1em 0em 1.5em;
    box-shadow: 0px 0px 1px #000;
  }

  .input {
    padding: 0 1em;
  }

  .input_style {
    background-color: #FFFBF0;
    width: 100%;
    height: 60px;
    margin-bottom: 0.5em;
    text-align: center;
    font-size: 1.2em;
  }

  input[type="image"] {
    width: 100%;
  }

  .caution {
    text-align: center;
    font-size: 0.8em;
    color: #F00;
  }

  /*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
  .box_qa {
    background-color: #efefef;
    padding: 1em;
  }

  .box_qa_q {
    background-color: #fff;
    padding: 1em 1em 1em 1em;
    border-bottom: 1px solid #ccc;
    font-size: 1.2em;
    font-weight: bold;
    color: #D10003;
  }

  .box_qa_a {
    background-color: #fff;
    padding: 1em 1em 1em 1em;
  }

  .box_qa_q p,
  .box_qa_a p {
    text-indent: 0em;
  }

  /*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
  .area_cta {
    background-color: #105FA3;
    padding: 1em 1em;
  }

  .area_cta_inr {
    background-color: #fff;
    padding: 1em 1em;
    overflow: auto;
  }

  .area_cta_inr_left {
    float: none;
    width: 100%;
  }

  .area_cta_inr_right {
    float: none;
    width: 100%;
    margin-top: 1em;
  }

  /*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
  .footer {
    background-color: #7DD548;
    padding: 2em 0em;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
  }

  .footer a {
    color: #fff;
  }

}

/* ================================================================= */
/* ファーストビュー */
/* ================================================================= */

@media only screen and (max-width: 767px) {

  /* スマホではPC画像を非表示にする */
  .pc_view {
    display: none;
  }

  /* スマホではスマホ画像を表示する */
  .sp_view {
    display: block;
  }
}

@media only screen and (max-width: 767px) {

  /* ================================================================= */
  /* 院長挨拶 導入部分*/
  /* ================================================================= */

  .section_05 {
    padding: 1.5em;
    box-sizing: border-box;
  }

  /* スマホではPC用画像を非表示にする */
  .h2_image.pc_view {
    display: none;
  }

  /* スマホではスマホ用画像を表示する */
  .h2_image.sp_view {
    display: block;
    width: 100%;
    height: auto;
  }

  .greeting_content {
    flex-direction: column;
    align-items: center;
  }

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

  .greeting_image {
    width: 100%;
  }

  .greeting_name {
    font-size: 1.2em;
  }

  .greeting_text_box {
    width: 100%;
    padding: 0;
    line-height: 1.8;
    font-size: 1.2em;
  }

  .greeting_text_box p {
    margin-bottom: 1em;
  }
}


@media only screen and (max-width: 767px) {
  .highlight {
    font-weight: bold;
    color: #c90000;
    background: linear-gradient(transparent 70%, #fffacd 70%);
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* お客様ストーリー */
  /* ================================================================= */

  .story_block {
    margin-bottom: 30px;
  }

  .story_image {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }

  .h2_story {
    width: 100%;
    height: auto;
  }

  .right_float,
  .left_float {
    float: none;
    margin: 0 auto 20px auto;
  }

  .story_block p {
    line-height: 1.6;
    font-size: 1.2em;
  }

  .story_heading {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  /* ...他のスマホ用CSS省略... */

  .strong_text {
    font-weight: bold;
    color: #333;
  }
}



@media only screen and (max-width: 767px) {

  /* ================================================================= */
  /* CTAボタン（ファーストビュー直下） */
  /* ================================================================= */
  .cta_main {
      margin-bottom: 0px;
    padding: 30px 10px 2px;
  }

  .cta_main_buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta_button {
    width: 100%;
  }

  .cta_button,
  .cta_main_inr_right a {
    animation: float 2s ease-in-out infinite;
  }

  .cta_text {
    margin-top: 5px;
    font-size: 1em;
  }
}


/* アニメーションの定義 */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


@media only screen and (max-width: 767px) {

  /* ================================================================= */
  /* なぜ？セクション */
  /* ================================================================= */
  .section_07 {
    padding: 1.5em 0;
    margin-bottom: 30px;
  }

  .text_content {
    line-height: 1.6;
    font-size: 1.2em;
    padding: 0 20px;
  }

  .text_content p {
    margin-bottom: 1em;
  }

  .text_content .strong_text {
    font-weight: bold !important;
    color: #333 !important;
  }

  .text_content .highlight {
    font-weight: bold;
    color: #c90000;
    background: linear-gradient(transparent 70%, #fffacd 70%);
  }
}

@media only screen and (max-width: 767px) {

  /* ================================================================= */
  /* 3つの秘訣（詳細） */
  /* ================================================================= */
  .section_09 {
    padding: 1.5em 1em;
    background-color: #f7f3ed;
    /* 薄いオレンジ色の背景色を追加 */
    background: repeating-linear-gradient -45deg,
      #fff,
      #fff 10px,
      #ffffe0 10px,
      #ffffe0 20px
  }

  .h3_image {
    margin: 5px 0 10px;
    width: 100%;
    height: auto;
  }

  .secret_detail_block {
    margin-bottom: 30px;
  }

  .secret_detail_image {
    width: 90%;
    margin: 0 20px;
  }

  .secret_detail_text {
    line-height: 1.6;
    font-size: 1.2em;
    padding: 0 10px;
  }

  .secret_detail_text p {
    margin-bottom: 1em;
  }

  .secret_detail_text ul {
    font-weight: bold;
    /* ここを追加 */
    margin-left: 0em;
    margin-bottom: 1em;
  }

  .underline {
    text-decoration: underline;
  }

  .secret_detail_text li {
    padding-left: 1.2em;
    line-height: 1.6;
    font-weight: bold;
  }

  .secret_summary {
    margin-top: 30px;
    line-height: 1.6;
    font-size: 1.2em;
  }

  .secret_summary ul {
    font-size: 1.0em;
    font-weight: bold;
    /* ここを追加 */
    margin: 10px 0 20px 0;
    max-width: none;
    padding: 0 10px;
    text-align: left;
  }

  /* 新規追加：アンダーライン */
  .underline {
    /* マーカーの色をオレンジ色に変更 */
    background: linear-gradient(transparent 60%, #ffcc99 60%);
    /* 明るいオレンジ色 */
    text-decoration: none;
  }

  .secret_summary li {
    padding-left: 1.5em;
    margin-bottom: 1em;
  }
}

@media only screen and (max-width: 767px) {

  /* ...省略... */
  /* ================================================================= */
  /* ボックススタイル */
  /* ================================================================= */
  .box {
    padding: 0 15px 15px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .secret_detail_image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 実績・まとめセクション */
  /* ================================================================= */
  .section_10 {
    padding: 1.5em 0em;
  }
  
  .section_10 .text_content p {
    line-height: 1.6;
    font-size: 1.0em;
    margin-bottom: 1.2em;
  }

  .secret_summary_text {
    font-size: 1.4em;
    font-weight: bold;
  }

.section_10 .text_content .data_image {
    margin: 20px auto; /* 上下の余白と中央寄せ */
    width: 100%; /* 親要素に合わせて幅を調整 */
    height: auto;
  }

}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 特典セクション（ワイヤーフレーム版） */
  /* ================================================================= */
  .section_11 {
    padding: 1.5em 1em;
  }

  .benefits_box {
    margin-top: 20px;
  }

  .benefit_item {
    margin-bottom: 30px;
  }

  .benefit_h3 {
    margin: 0 auto 20px;
  }

  .benefit_h3.pc_view {
    display: none;
  }

  .benefit_h3.sp_view {
    display: block;
  }

  .benefit_content {
    background-color: #ffffff;
    margin: -60px 0 0 0;
    padding: 60px 15px 15px 15px;
  }

  .benefit_image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    float: none;
  }
  
  .benefit_image.right_float,
  .benefit_image.left_float {
    float: none;
    margin: 0 auto 15px auto;
  }

  .benefit_text {
    line-height: 1.6;
    font-size: 18px;
  }

  .benefit_heading {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }

  .benefit_text p {
    margin-bottom: 1.2em;
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 最終説得パート */
  /* ================================================================= */
  .section_12 {
    padding: 1.5em 1em;
  }
  
  .reservation_content {
    flex-direction: column; /* スマホでは縦並びにする */
    align-items: center;
    gap: 0;
    padding: 15px;
  }

  .reservation_text {
    width: 100%;
    order: 2; /* テキストを画像の下に配置 */
  }

  .reservation_text p {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 1.2em;
  }

  .reservation_image {
    width: 100%;
    margin-bottom: 20px;
    order: 1; /* 画像をテキストの上に配置 */
  }
}@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 最終説得パート */
  /* ================================================================= */
  .section_12 {
    padding: 1.5em 1em;
  }
  
  .reservation_content {
    flex-direction: column; /* スマホでは縦並びにする */
    align-items: center;
    gap: 0;
    padding: 15px;
  }

  .reservation_text {
    width: 100%;
    order: 2; /* テキストを画像の下に配置 */
  }

  .reservation_text p {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 1.2em;
  }

  .reservation_image {
    width: 100%;
    margin-bottom: 20px;
    order: 1; /* 画像をテキストの上に配置 */
  }
}

@media only screen and (max-width: 767px) {
  
/* ================================================================= */
/* 施術費用セクション */
/* ================================================================= */
.section_13 {
  padding: 3em 1em;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 10px,
    #ffffe0 10px,
    #ffffe0 20px
  );
}

.price_text_content {

  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
}

.price_text_content p {
  margin-bottom: 1.5em;
}

.price_table_image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.price_disclaimer {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 1.0em;
}

.sche_image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* お客様の声セクション */
  /* ================================================================= */
  .section_21 {
    padding: 1.5em 1em;
  }

  .voice_list {
    flex-direction: column;
    gap: 20px;
  }

  .voice_item {
    width: 100%;
    padding: 15px;
  }

  .voice_header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }

  .voice_photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
  }

  .voice_title img.pc_view {
    display: none;
  }

  .voice_title img.sp_view {
    display: block;
    margin: 0 auto;
  }

  .voice_text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 施術の流れセクション */
  /* ================================================================= */
  .section_23 {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* FAQセクション */
  /* ================================================================= */
  .section_24 {
    padding: 30px 10px;
  }
  
  .question {
    font-size: 20px;
    padding: 10px 15px;
  }

  .answer {
    font-size: 20px;
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* 院長の想いセクション */
  /* ================================================================= */
  .section_25 {
    padding: 30px 20px;
  }
  
  .message_content {
    font-size: 20px;
  }
  
  .message_content li {
    font-size: 21px;
  }
  
  .message_image {
    margin-bottom: 20px;
  }

  .message_image img {
  width: 100%;
  max-width: 100%; /* 画像を70%に縮小 */
  height: auto;
  display: block;
  margin: 0 auto; /* 中央配置 */
}
}

@media only screen and (max-width: 767px) {
  /* ================================================================= */
  /* アクセスセクション */
  /* ================================================================= */
  .section_26 {
    padding: 30px 10px;
  }
  
  .access_content {
    flex-direction: column;
  }

  .access_info {
    font-size: 16px;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .access_info img{
    width: 100%;
  }

  .access_info h3 {
    font-size: 20px;
  }

  .access_map iframe {
  margin: 0 auto;
  width: 100%;
  height: 450px;
}
}


/* スマートフォン用CSS */
@media only screen and (max-width: 767px) {
  .section_27 {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 767px) {
.container img{
  width: 100%;

}

.box_nayami p {
  line-height: 1.8;
  font-size: 19px;
}

}

