/*-------------------------------------------
共通部分
-------------------------------------------*/
:root {
    --main-color: #FF6600;
    --sub-color: #FF9900;
    --accent-color: #;
    --layout-max-width: 680px;
    --layout-padding-inline: 10px;
}
/* 
max-width: var(--layout-max-width);
padding-inline: var(--layout-padding-inline); 
*/
html {
	font-size: 62.5%;  /*10px*/
  scroll-behavior: smooth;
}
body {
	font-family: '游ゴシック体', 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
	font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}
a:hover {
    opacity: 0.8;
    transition: all 0.3s;
}
/* PCとSPの表示非表示の切り替え */
.sp {
    display: none;
}
@media screen and (max-width: 680px) {
    .sp {
        display: block;
    }
}
@media screen and (max-width: 680px) {
    .pc {
        display: none;
    }
}
/* 画像の縦横比設定 */
img {
    width: 100%;
    height: auto;
    display: block;
}
#main {
    max-width: var(--layout-max-width);
    padding-inline: var(--layout-padding-inline);
    width: 100%;
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 40px;
}
@media screen and (max-width: 680px) {
#main {
    padding-top: 78px;
}
}
.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt18 {margin-top: 18px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mb10 {margin-bottom: 10px;}

.red {
  color: #FF0000;
}
/*-------------------------------------------
header
-------------------------------------------*/
#head {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fff; /* 背景色がないと中身が透けて見えることがあります */
  width: 100%;
  padding-inline: var(--layout-padding-inline);
}
.head_body {
  border-top: 5px solid var(--sub-color);
  border-bottom: 5px solid var(--sub-color);
  padding-block: 6px;
  max-width: 660px;
  margin-inline: auto;
  height: 100px;
}
@media screen and (max-width: 680px) {
#head {
 padding-inline: 0;
}
.head_body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding-inline: 10px;
    border-top: 0;
    border-bottom: 2px solid #fe6600;
}
}
.logo a {
        font-size: 2.5em;
        color: var(--main-color);
        text-decoration: none;
        font-weight: bold;
        display: block;
        padding-top: 5px;
}
@media screen and (max-width: 680px) {
.logo a {
        font-size: 1.2em;
  }
}
.sp-tel img {
  width: 47px;
}
.side_bt2 {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: fixed;
  top: 80px; 
  right: 24px;
  z-index: 10;
  background-color: var(--main-color);
  padding: 0.5em;
  color: #fff;
  width: 300px;
  border: 1px solid #fff;

  pointer-events: none; /* 非表示時にクリックできなくする */
}

.side_bt2.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.side_bt2 li {
  padding: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 5px;
}
/*-------------------------------------------
main
-------------------------------------------*/
.top_consultation {
      display: flex;
    align-items: center;
    justify-content: center;
}
.text_top_consultation {
  width: 70%;
}
.text_top_consultation img {
  width: 250px;
      padding-bottom: 10px;
}
.image_top_consultation {
 width: 30%;
}
.onayami-new {
  position: relative;
  width: 100%;
}
.anayami-back img {
  width: 100%;
  height: auto;
  display: block;
}
.onayami-text {
  font-size: 1.5em;
  color: #333;
  margin-block: 40px;
  text-align: left;
  padding: 0 10px 0px;
}
.onayami-text span {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto; 
    font-size: 1.3em;
    color: var(--main-color);
    font-weight: bold;
}
@media screen and (max-width: 640px) {
.onayami-text {
  font-size: 1.1em;
}
.onayami-text span { 
    font-size: 1.3em;
}
}

div.manga-img img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
div.manga-img img {
  width: 90%;
}
}

/* 2025年7月　漫画LPへのTimerex複数店舗実装 start*/
/* コンテナの基本設定 */
.timerex-select-box {
  position: relative;
  max-width: 360px;      /* お好みで幅を調整 */
  margin: 1em auto;      /* 中央寄せ＋上下マージン */
}

/* セレクトボックス本体 */
.timerex-select-box select {
  width: 100%;
  padding: 12px 40px 12px 16px;   /* 右側に矢印用スペースを確保 */
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  appearance: none;               /* デフォルトの矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* カスタム矢印 */
.timerex-select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;    /* 矢印の色 */
  transform: translateY(-50%);
}

/* フォーカス時の強調表示 */
.timerex-select-box select:focus {
  border-color: #F59202;          /* Timerex のプライマリカラー */
  outline: none;
  box-shadow: 0 0 0 2px rgba(245,146,2,0.2);
}
/* 見出し */
.timerex-heading {
  position: relative;
  font-size: 1.25em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5em;
	text-align:center;
	padding:30px 15px;
}
	#store-select option{
		font-weight:bold;
	}

/* 2025年7月　漫画LPへのTimerex複数店舗実装 end*/

/* 20250710 漫画の開閉 start*/
.manga-content {
  display: none;
  margin-top: 10px;
}

.manga-toggle:checked + .manga-label + .manga-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}


/* カーソルを指に、中央寄せ */
.manga-label {
  cursor: pointer;
  display: block;
  text-align: center;
}

/* 表示時アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* 20250710 漫画の開閉 end */
/* page-test.php（固定ページ トップページ）のみの記述 */
.tel-lists-conainer {
	background-color: #ffffcc;
    padding: 0.5em;		
}
.tel-lists {
    display: grid;
    gap: 10px;
	padding: 0;
    width: fit-content;
    margin-inline: auto;
	margin-block: 14px;
	font-size: 1.08em;
}
.tel-list {
	list-style: none;
    border-bottom: 1px solid currentColor;
}
.tel-list a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 6px;
}
i.fa-phone-square {
   margin-right: 0.5rem;
}
/* 近隣の店舗一覧 */
.shops-container {
	background-color: #ffffcc;
	padding: 20px;
}
#main .shops-title {
	text-align: center;
    font-size: 1.3em;
    color: #ff6600;
	margin: 0;
	padding: 0;
	background: none;
    border: none;
	text-indent: 0;
}
/* 上部の店舗を選んで予約ボタン */
#main .to-reservation-title {
	background: none;
    text-indent: 0;
	padding: 0;
	text-align: center;
}
#main .to-reservation-title a {
	font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 30px 40px;
	background: orange;
	border-radius: 20px;
display: inline-block;
}
#main .to-reservation-title a:hover{
	opacity: 0.8;
}
#main .reservation-area-wrap {
	font-size: 1.2em;
	text-align: center;
	width: fit-content;
    margin-inline: auto;
}

/* 視覚的に非表示にするが、スクリーンリーダーや検索エンジンには認識させるためのCSS */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/*-------------------------------------------
トップへ戻る
-------------------------------------------*/
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  width: 50px; /* ボタンの幅 */
  height: 50px; /* ボタンの高さ */
  border-radius: 50%; /* 丸くする */
  background-color:#4d4d4d;
  text-align: center; /* 矢印を中央に配置 */
  line-height: 50px; /* 矢印を垂直中央に配置（高さと同じ値） */
  cursor: pointer;
  color: #fff; /* 矢印の色 */
  font-size: 2em; /* 矢印の大きさ */
  text-decoration: none; /* <a>タグのテキスト装飾を削除 */
}

.page-top.is-active {
  opacity: 0.8;
  visibility: visible;
}

.page-top a {
  display: block; /* <span> を <a> 全体でクリックできるように */
  width: 100%;
  height: 100%;
  text-decoration: none; /* <a> タグのテキスト装飾を削除 */
  color: inherit; 
}
.arrow-up::before {
  font-family: "Font Awesome 5 Free"; /* or "Font Awesome 6 Free" */
  content: "\f077"; /* fa-chevron-up のユニコード */
  font-weight: 900; /* Solidアイコンの場合は900にする */
  display: block;
  font-size: 1em;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .page-top{
    display: none;
  }
}
/*-------------------------------------------
thanks
-------------------------------------------*/
.thanks-text {
  text-align:  center;
  padding-top:  20px;
  font-size: 1.2em;
}