@charset "UTF-8";
/* #region サイト基本設定（Variables）*/
/* 一般的なスマホ・タブレットの境目 */
/* 基本色 */
/* #endregion */
/* #region CSSreset */
*, *::before, *::after {
  box-sizing: border-box; /* サイズ計算を直感的に、計算を「内側に含める」設定する */
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* iOSの文字サイズ変更を防止 */
}

body {
  line-height: 1.6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #fff;
}

img, picture, canvas, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* #endregion CSSreset */
/* #region サイト基本設定 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/*全体共通クラス*/
.keep {
  display: inline-block;
}

/* #endregion サイト基本設定 */
/* #region サイト基本設定（Mixins） */
/* 600px以上のPC(iPad含む)向け */
/* 600px未満のデバイス（iPhone SE含む）向け */
/* #endregion */
/* #region フロート電話ボタン */
.mobile-float-call {
  display: none;
}
@media screen and (max-width: 599px) {
  .mobile-float-call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: -100px;
    width: 70px;
    height: 70px;
    background: #f39c12;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
  }
  .mobile-float-call i { /* 受話器アイコン（FontAwesome等を想定） */
    font-size: 1.5rem;
    margin-bottom: 2px;
  }
  .mobile-float-call span {
    font-size: 0.65rem;
    font-weight: bold;
  }
  body.is-scrolled .mobile-float-call {
    left: 20px;
    animation: float-shaking 3s infinite;
  }
}

@keyframes float-shaking {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* #endregion */
/* #region ※未使用 ボトム固定電話バー（スマホ専用） */
/* #endregion */
/* #region ドロワー用オーバーレイ */
.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 80;
}
.drawer-overlay.is-open {
  display: block;
}

/* #endregion */
/* #region ドロワーメニュー */
.mobile-drawer {
  display: none;
}
@media screen and (max-width: 599px) {
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 100px;
    right: -250px;
    width: 200px;
    height: auto;
    max-height: calc(100dvh - 100px);
    background: #fff;
    z-index: 100;
    transition: 0.3s;
    padding: 10px 20px 30px;
    box-shadow: -8px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px 0 0 15px;
  }
  .mobile-drawer.is-open {
    right: 0;
  }
  .mobile-drawer .drawer-close {
    text-align: right;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .mobile-drawer:hover {
    color: #f39c12;
  }
  .mobile-drawer ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 3rem;
  }
}

/* #endregion */
/* #region ヘッダー */
.site-header {
  width: 100%;
  background-color: #fff;
  border-bottom: 3px solid #005bac;
  position: sticky;
  top: 0;
  height: 100px;
  z-index: 10;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 599px) {
  .site-header {
    height: 100px;
    overflow: hidden;
  }
}
.site-header .header-content {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.site-header .header-content .header-logo {
  display: flex;
  align-items: center;
  height: auto;
  gap: 10px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-logo {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-header .header-content .header-logo .company-logo {
  display: block;
  height: 60px;
  width: auto;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-logo .company-logo {
    height: 40px;
  }
}
.site-header .header-content .header-logo .site-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #005bac;
  line-height: 60px;
  margin: 0;
}
.site-header .header-content .header-logo .site-title a {
  text-decoration: none;
  color: #005bac;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-logo .site-title {
    font-size: 1.2rem;
    line-height: 40px;
  }
}
.site-header .header-content .pc-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.site-header .header-content .pc-nav ul a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.site-header .header-content .pc-nav ul a:hover {
  color: #005bac;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .pc-nav {
    display: none;
  }
}
.site-header .header-content .header-info {
  text-align: right;
  transition: all 0.4s ease;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-info {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-header .header-content .header-info .header-tel {
  font-size: 1.8rem;
  font-weight: bold;
  color: #005bac;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-info .header-tel {
    font-size: 1.2rem;
  }
}
.site-header .header-content .header-info .header-time {
  font-size: 0.9rem;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .header-info .header-time {
    font-size: 0.7rem;
  }
}
.site-header .header-content .menu-toggle {
  display: none;
}
@media screen and (max-width: 599px) {
  .site-header .header-content .menu-toggle {
    display: block;
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    z-index: 70;
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .site-header .header-content .menu-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #005bac;
    transition: 0.3s;
  }
  .site-header .header-content .menu-toggle span:nth-child(1) {
    top: 0;
  }
  .site-header .header-content .menu-toggle span:nth-child(2) {
    top: 11px;
  }
  .site-header .header-content .menu-toggle span:nth-child(3) {
    top: 22px;
  }
}

/* #endregion */
/* #region スクロールアクション */
@media screen and (max-width: 599px) {
  body.is-scrolled .site-header {
    height: 90px;
  }
  body.is-scrolled .site-header .header-content .header-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
  }
  body.is-scrolled .site-header .header-content .header-logo .company-logo {
    height: 35px;
  }
  body.is-scrolled .site-header .header-content .header-logo .site-title {
    line-height: 35px;
  }
  body.is-scrolled .site-header .header-content .header-info {
    left: 0px;
    width: 33%;
    transform: translateY(-50%) scale(0.8);
    text-align: left;
  }
  body.is-scrolled .site-header .header-content .header-info .header-tel {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1.2rem;
  }
  body.is-scrolled .site-header .header-content .menu-toggle {
    right: 15px;
  }
  body.is-scrolled .mobile-drawer {
    top: 90px;
  }
  body.is-scrolled .mobile-float-call {
    left: 20px;
  }
}
/* #endregion */
/* #region フロントページアピールエリア */
/* =========================================
   フロントページアピールエリア
   ========================================= */
.appeal {
  max-width: 1100px;
}
.appeal .appeal-content {
  background-color: transparent;
  background-image: url(img/topimage.png);
  position: relative;
  height: 400px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .appeal .appeal-content {
    width: auto;
    background-position: center;
  }
}
.appeal .appeal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.appeal .appeal-title {
  padding: 30px 1px;
  word-break: keep-all;
  overflow-wrap: break-word;
  font-size: 2.5rem;
}
@media screen and (max-width: 599px) {
  .appeal .appeal-title {
    font-size: 2rem;
  }
}
.appeal .appeal-message {
  word-break: keep-all;
  font-size: 2rem;
  line-height: 4rem;
}
@media screen and (max-width: 599px) {
  .appeal .appeal-message {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.appeal .appeal-title,
.appeal .appeal-message {
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}
.appeal .appeal-button {
  display: none;
}
@media screen and (max-width: 599px) {
  .appeal .appeal-button {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.5s, background-color 0.5s ease;
    margin-top: 20px;
  }
}
.appeal .appeal-button:hover {
  color: #333;
  transform: scale(1.05);
  background-color: rgb(240.5656626506, 194.8882168675, 122.4343373494);
}

/* #endregion フロントページアピールエリア */
/* =========================================
   セクション・特徴・価格
   ========================================= */
/* #region セクション・特徴・価格 */
section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
section .section-title {
  text-align: center;
  font-size: 2rem;
  position: relative;
}
section .section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #005bac;
  background: linear-gradient(90deg, #003366, #A7DAFC);
  margin: 10px auto;
}

.threereasons {
  max-width: 1100px;
  margin: 30px auto;
}
.threereasons .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  padding: 0 20px;
}
.threereasons .features h3 {
  border: none;
}
.threereasons .feature-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.threereasons .fas {
  font-size: 3rem;
  color: #005bac;
  margin-bottom: 20px;
}

.price {
  text-align: center;
  background: #f8f9fa;
}
.price .price svg {
  font-size: 3rem;
  color: #005bac;
}
.price .price h2 {
  background-color: transparent;
}
.price .fas {
  font-size: 3rem;
  color: #005bac;
  margin-bottom: 20px;
}

.trouble {
  max-width: 1100px;
  text-align: center;
  padding: 30px auto;
}

.price-box {
  background: #fff;
  border: 2px solid #005bac;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #005bac;
}

.price-amount span {
  font-size: 1rem;
  color: #666;
}

.contact-section {
  text-align: center;
}

.tel-number {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
}

.tel-number a {
  color: #005bac;
  text-decoration: none;
}

.fz-14px {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}

.trouble-box {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border-left: 5px solid #005bac;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.speech-balloon-left {
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.speech-balloon-left::before {
  content: "？";
  background: #d32f2f;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 0.8rem;
}

.answer-text {
  margin-left: 34px;
  line-height: 1.6;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.diagnosis-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.diagnosis-card span {
  color: #005bac;
  font-size: 1.25rem;
  font-style: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 10px;
}

.check-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✔";
  color: #005bac;
  margin-right: 8px;
  font-weight: bold;
}

.local-message {
  background: #fdfdfd;
  padding: 30px 0;
  line-height: 1.8;
}

.message-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.message-content p {
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 1.2rem;
  color: #005bac;
  border-left: 4px solid #005bac;
  padding-left: 15px;
  margin: 30px 0 !important;
}

/* #endregion セクション・特徴・価格 */
/* #region フッター */
/* =========================================
   フッター
   ========================================= */
.footercontent div {
  background: #333;
  color: #fff;
  margin: 15px 0;
  text-align: center;
  display: block;
}

.footerhr {
  border: 0;
  border-top: 1px solid #555;
  margin: 10px 0;
}

/* #endregion フッター *//*# sourceMappingURL=basestyle.css.map */