@charset "UTF-8";

/* カスタムスタイル: ベースカラー緑を基調とした調整 */
:root {
    --main-green: #2e7d32;
    --light-green: #e8f5e9;
    --accent-yellow: #fff9c4;
    --text-color: #333;
}

body {
  margin: 0;
  /* font */
  font-family: "Kosugi Maru", sans-serif;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
}

@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;
}

header a { text-decoration: none;}

.logo_area {width: 65%;}

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  main {
    margin-top: 104px;
  }
}

/* =============================================
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;
  }
}

/* =============================================
footer
============================================= */
footer {
  background-color: var(--main-green);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

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

.ft_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_logo_img {width: 10%;}
.ft_logo a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
}

.copy {
  font-size: 11px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .ft_logo_img {width: unset;}
  .ft_logo a {
    font-size: 1.4rem;
  }
}

/* =============================================
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;
}

/* =============================================
こんなお悩みありませんか
============================================= */
h2.nayami_ttl {
  position: relative;
  padding: 0.6em;
  background: #1f924440;
  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;
  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 ***/

/* =============================================
7つのポイント
============================================= */
.points_ttl {margin: 0 14px 8px;}

.points_box {
  margin: 0 14px 40px;
  border-bottom: 3px solid #f4dcc9;
}

.p_item_text {margin-top: 0;}

h3.p_item_ttl {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 2rem 65px;
  word-break: auto-phrase;
  border-top: 3px solid #f4dcc9;
  border-radius: 12px 0 0 0;
}

h3.p_item_ttl span {
  font-size: 40px;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 10px 10px;
  color: #fff;
  border-radius: 10px 0 20px 10px;
  background: #f4dcc9;
}
.points_box .points_item2 {
  margin: 10px auto;
  width: 50%;
}

.banner_box {margin: 0 14px 8px;}

/* =============================================
店舗情報
============================================= */
#access h2 {
  text-align: center;
  color: #219244;
}
#access {padding: 50px 0 50px;}
.access {padding:10px;}
.access_info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  border-top: solid 1px #ddd;
}
.access_info .box {
  display: flex;
  width:100%;
  border-bottom: solid 1px #ddd;
  padding: 2px 0;
}
.access_info .box .item1 {
  width:25%;
  padding: 20px 10px;
  background: #c7e4d0;
}
.access_info .box .item2 {
  padding: 20px 10px;
  background: #ffffff;
  width: 80%;
}

/* =============================================
WEB予約フォーム
============================================= */
#formWrap {
  width:700px;
  margin:0 auto;
  color:#555;
  line-height:120%;
  font-size:90%;
  padding-top: 50px;
}
#formWrap h2 {
  text-align: center;
  color: #219244;
}
table.formTable{
  width:100%;
  margin:0 auto;
  border-collapse:collapse;
}
table.formTable td,table.formTable th{
  border:1px solid #ccc;
  padding:10px;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#efefef;
  text-align:left;
}
table.formTable th span {
  color: red;
  font-size: 0.8em;
}
table.formTable select {
  height: 26px;
}
input::placeholder {
  color: #dddddd;
}


/*　SP表示　*/
@media screen and (max-width:572px) {
  #formWrap {
    width:95%;
    margin:0 auto;
  }
  table.formTable th, table.formTable td {
    width:auto;
    display:block;
  }
  table.formTable th {
    margin-top:5px;
    border-bottom:0;
  }
  form input[type="text"], form textarea {
    width:80%;
    padding:5px;
    font-size:110%;
    display:block;
  }
  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display:block;
    width:100%;
    height:40px;
  }
}

/*** menuボタン追加、料金・症状ページ追加　2026年1月 start ***/
/* --- ハンバーガーメニューのスタイル --- */
.menu-trigger {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: relative;
    width: 45px;
    height: 45px;
    background: #219244;
    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;
}

/* コンテンツ部分の余白（ヘッダー固定分） */
main { margin-top: 70px; }
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; }

.ft_logo img { margin: 0 auto; }
.copy { font-size: 12px; margin-top: 20px; }
/*** menuボタン追加、料金・症状ページ追加　2026年1月 end ***/

/*** 各ページ（症状・料金）追加　2026年2月 start ***/
.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-green); 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-green); border: 2px dashed var(--main-green); padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.nayami_list h3 { font-size: 20px; font-weight: bold; color: var(--main-green); 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-green); }

.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-green); 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-green); 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-green); border-radius: 50px; padding: 10px 15px; }
.flow_num { background: var(--main-green); 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-green); 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-green); 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-green); 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-green); }

/*.flow_list { margin-top: 30px; }
.flow_item { display: flex; align-items: center; margin-bottom: 15px; background: #fff; border: 1px solid var(--main-green); border-radius: 50px; padding: 15px 25px; }
.flow_num { background: var(--main-green); 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-green); 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-green); 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-green); width: 35%; font-weight: bold; color: var(--main-green); }
.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; }
.pg_content p.price_note { font-size: 13px; color: #666; margin-top: 5px; line-height: 1.4; }

/* 保険施術セクション */
.insurance_box { background: var(--light-green); border: 2px solid var(--main-green); padding: 30px; border-radius: 10px; margin-bottom: 40px; }
.insurance_box h3 { font-size: 20px; font-weight: bold; color: var(--main-green); 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-green); }
.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, #61e88b, #61e88b38 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: #219244;
  text-decoration: underline #fbee90 1px solid;
}

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

/* =============================================
症状ページ
============================================= */
.pg_heading {
  background: linear-gradient(135deg, var(--main-green), #43a047);
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0;
  font-weight: bold;
  position: relative;
}

/*.pg_heading::after {
  content: '';
  position: absolute;
  border-bottom: 10px dotted #47a05f;
  width: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}*/

.pg_fv {
  margin: 14px;
}

.pg_fv img {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.pg_check {
  margin: 20px;
}
.pg_check_box {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.pg_check_box > li {
    position: relative;
    padding: 0px 0px 0px 2em;
    margin: 0px;
    font-size: 1rem;
}
.pg_check_box > li::before,
.pg_check_box > li::after {
    position: absolute;
    top: 50%;
    height: 1em;
    content: "";
}
.pg_check_box > li::before {
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    border: 1px solid #25d09d;
}
.pg_check_box > li::after {
    left: 0.5em;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    border-bottom: 3px solid #1f9244;
    border-right: 3px solid #1f9244;
}

.pg_check_box > li + li {
    margin: 1em 0px 0px;
}

.pg_subheading {
  font-weight: bold;
  padding: 0.5em 1em;
  background-color: #219244;
  color: #fff;
  overflow: hidden;
  position: relative;
  font-size: 1.2rem;
}
.pg_subheading::after {
  content: '';
  background-color: #fff;
  opacity: 0.3;
  transform: rotate(-65deg);
  position: absolute;
  bottom: -290px;
  right: -290px;
  width: 300px;
  height: 500px;
}

@media screen and (min-width: 768px) {
  .pg_heading { font-size: 1.4rem; }
  .pg_subheading::after {
    content: '';
    background-color: #fff;
    opacity: 0.3;
    transform: rotate(-65deg);
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 300px;
    height: 500px;
  }
}

.pg_content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.pg_content p {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
  text-align: justify;
}

.point_box {
  background-color: var(--light-green);
  border-left: 8px solid var(--main-green);
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.point_box h3 {
  color: var(--main-green);
  font-weight: bold;
  margin-bottom: 10px;
}
