@charset "utf-8";
@import "reset.css";
/* OSの「視差効果を減らす」設定がオンの場合：アニメーション無効化（または簡略化）する ----------------------------------------------*/
/* アニメーションをオフにする設定がある場合 */
@media (prefers-reduced-motion: reduce) {
  /* 1. ページ内のすべてのCSSアニメーションを強制停止・無効化 */
  *, *::before, *::after {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  /* 2. メインビジュアルのテキストも、ブレずに最初から100%表示された状態にする */
  .mainvisual-text-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }
  /* 3. これまでに作った「.fadein」や「3つの効果」の箱たちも、
     スクロールを待たずに最初からすべて100%出現させた状態に強制上書きします */
  .fadein, .container-b > li, .container-c {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  /* mainvisualテキストエリア */
  #subtitle, .bg-slider__title {
    animation: none !important;
    opacity: 1 !important; /* 両方とも100%表示する */
  }
  /* 停止時は2つの文章が同じ場所（top:50%）で重なって文字が潰れてしまうのを防ぐため、
    タイトル（h2）を少し上に、紹介文（p）を少し下に配置 */
  #subtitle {
    top: 40% !important;
  }
  .bg-slider__title {
    top: 60% !important; /* 紹介文を少し下にずらす */
    text-align: center !important; /* 停止時は中央寄せにして読みやすくする */
  }
  /* /mainvisualテキストエリア */
}
/* /OSの「視差効果を減らす」設定がオンの場合：アニメーション無効化（または簡略化）する ----------------------------------------------*/
/* スマホでボタンやリンクタップ時のhoverを無効にする --------------------------------------------------------------------------*/
@media (hover:hover) {
  /*hoverに対応している媒体向け（PC）*/
  .main-nav li a:hover {
    color: #788d98;
    transition: color 0.5s ease;
  }
  .main-nav li img:hover {
    opacity: 0.4;
    transition: opacity 0.5s ease;
  }
  svg:hover .st0ht {
    stroke-dashoffset: 0;
    z-index: 9999;
  }
}
@media (hover:none) {
  /*hoverに対応していない媒体向け（スマホ、タブレット）*/
  .main-nav li a:active {
    color: #788d98;
    transition: color 0.5s ease;
  }
  .main-nav li img:active {
    opacity: 0.4;
    transition: opacity 0.5s ease;
  }
  svg:active .st0ht {
    stroke-dashoffset: 0;
    z-index: 9999;
  }
}
/* /スマホでボタンやリンクタップ時のhoverを無効にする -------------------------------------------------------------------------*/
/* ページ読み込みフェードイン */
body {
  background: #fff;
  animation: loading 3s;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* /ページ読み込みフェードイン */
/* 共通部分 -------------------------------------------------------------------------------------------------------------*/
html {
  font-size: 100%;
}
/* html 下部の余白をなくす -------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}
/* 
  ★すべての id ターゲットに対して、リンク移動したときに
  画面上部から「250px」手前でピタッと止まる
*/ :target {
  scroll-margin-top: 250px;
}
body {
  font-family: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", Yu Gothic, sans-serif;
  line-height: 2.6em;
  letter-spacing: 0.1em;
  color: #575757;
  font-size: 14px;
  background-color: #fff;
  margin: 0;
  box-sizing: border-box;
}
h2 {
  font-size: 1.6em;
}
h3 {
  font-size: 1.4em;
  text-align: center;
}
h4 {
  font-size: 1.2em;
}
.a_subtitle {
  font-size: 0.5em;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #3583aa;
  word-break: break-all;
}
a:visited {
  color: #788d98;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
}
#top h1 {
  position: fixed;
  left: 25px;
  width: 142px;
  z-index: 9999;
}
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif !important;
}
.blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); /* ロゴ・メニューに重なったか所をぼかす */
}
.main-nav {
  position: fixed;
  right: 25px;
  padding-top: 2px;
  display: flex;
  font-size: 1rem;
  text-decoration: none;
  width: auto;
  color: #575757;
}
.main-nav li {
  padding: 0 20px;
}
.main-nav li a {
  color: rgba(0, 0, 0, 0.9);
  font-family: 'Cormorant Infant', "游明朝体", "Yu Mincho", YuMincho, serif !important;
  transition: color 0.6s ease;
}
.main-nav li a img {
  transition: opacity 0.6s ease;
}
.main-nav li:last-child {
  padding: 0 0 0 20px;
}
.page-header {
  position: fixed;
  top: 0;
  padding: 10px 0;
  width: 100vw;
  height: 3.8rem;
  z-index: 9999;
}
/* メニューボタン切り替え用 */
#menu_t {
  display: none !important;
}
.m_btn_1 {
  position: fixed;
  top: 85px;
  right: 25px;
  padding: 0 20px;
  display: flex;
  font-size: 1rem;
  text-decoration: none;
  width: auto;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
}
/* mainvisualテキストエリア：on/offの箱を分けず、この共通のwrapperの幅を 「915px」にして画面のど真ん中に配置 */
.mainvisual-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 915px; /* PC時のジャストサイズ */
  height: 100vh;
  z-index: 20;
}
/* 1つ目の文字：通常時は2秒後に消えるアニメーション */
#subtitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  letter-spacing: 0.3em;
  text-align: center;
  animation: fadeOut 2s 2s both; /* 2秒後に消える */
}
/* 2つ目の文字：通常時は4秒後に左端から現れるアニメーション */
.bg-slider__title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  text-align: left;
  animation: fadeIn 2s 4s both; /* 4秒後に現れる */
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* /menu --------------------------------------------------------------------------------------------------------------*/
/* bg-slider ----------------------------------------------------------------------------------------------------------*/
.bg-slider {
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
/* top hover svg 始まり ***************************************************************** hover svg 始まり */
.st0ht {
  fill: none;
  stroke: #E8F0FF;
  stroke-width: 1;
  stroke-miterlimit: 10;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 8s linear;
}
ul a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  z-index: 1;
}
ul svg {
  position: absolute;
  z-index: 3;
  width: 40px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* スクロールを促すアニメーション -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.container_s {
  position: fixed;
  left: 25px;
}
.scroll {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}
.scrollbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}
.scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: rgba(0, 0, 0, 0.3);
  animation: liner 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*フッターまでスクロールしたら消す*/
/* 元の状態（表示中） */
.container_s {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
  z-index: 999;
}
/* footerに達したときの状態（非表示） */
.container_s.is-hidden {
  opacity: 0;
  visibility: hidden; /* アニメーション終了後に完全に非表示（クリック等も不可にする） */
}
/* main ---------------------------------------------------------------------------------------------------------------*/
main {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  background-color: #fbfbff;
}
.opacity07 {
  opacity: 0.7;
}
.font-size08 {
  font-size: 0.8em;
}
.blue {
  color: #3479B3;
}
.b_gray {
  color: #6F8BA6;
}
.u_kon {
  color: #274E73;
}
.k_kon {
  color: #213e59;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.margin-top80 {
  margin-top: 80px;
}
.margin-top65 {
  margin-top: 65px;
}
.margin-top60 {
  margin-top: 60px;
}
.margin-top50 {
  margin-top: 50px;
}
.margin-top40 {
  margin-top: 40px;
}
.margin-top35 {
  margin-top: 35px;
}
.margin-top20 {
  margin-top: 20px;
}
.margin-top15 {
  margin-top: 15px;
}
.margin-top08 {
  margin-top: 8px;
}
.margin-bottom15 {
  margin-bottom: 15px;
}
.margin-bottom100 {
  margin-bottom: 100px;
}
.padding-inline02em {
  padding-inline: 0.2em;
}
.padding-inline05em {
  padding-inline: 0.5em;
}
.padding-inline1em {
  padding-inline: 1em;
}
.l_nomal {
  letter-spacing: normal;
}
.block {
  display: block;
}
.none_0, .none_443 {
  display: none;
}
.square {
  width: 100%;
  background-color: #fbfbff;
}
.boxshadow {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}
.u_shadow {
  border-bottom: 1px rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.3);
  padding-bottom: 2px;
}
/*可視状態でフェードイン*/
/* 最初（画面外）の状態：透明 */
.s_t_1, .message_txt01, .message_txt02, .fadein {
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
/* 画面に入ったときの状態：表示 */
.s_t_1.is-show, .message_txt01.is-show, .message_txt02.is-show, .fadein.is-show {
  opacity: 1;
}
/************** ページトップへ *******************************************/
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  line-height: inherit;
  width: 50px;
  z-index: 99999;
}
.pagetop a {
  display: block;
  background-color: #EDF6FF;
  text-align: center;
  color: #406A94;
  border: 1px solid #ccc;
  font-size: 10px;
  text-decoration: none;
  padding: 4.7px 10px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  z-index: 99999;
}
.pagetop a:hover {
  background-color: #b2d1fb;
  color: #fff;
  border: none;
}
/* article ------------------------------------------------------------------------------------------------------------*/
article {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
}
section {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}
/* .article_2 --------------------------------------------------------------------------------------------------------*/
.article_2 {
  margin-top: 100px
}
/* ------------------------------------------------
   Message セクション（PC基本設計：横並び・互い違い）
   ------------------------------------------------ */
.hang_indent {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.7em;
}
/* 文章全体を包む大きな箱 */
.message_txt {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 90%;
  height: auto;
  margin: 55px auto 0;
  font-size: 1.1em;
}
/* 1つ目の文章の箱 */
.message_txt01 {
  width: max-content;
  align-self: flex-start;
}
/* 2つ目の文章の箱 */
.message_txt02 {
  width: max-content;
  align-self: flex-end;
}
/* 各段落（pタグ）の行間と隙間 */
.message_txt p {
  line-height: 1.8;
  margin: 0 0 15px 0;
}
.message_txt p:last-child {
  margin-bottom: 0;
}
/* お片付けサポート ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* お客様の声・Before and after リンクボタン ------------------------------------------------------------------------------------------------------------------------------*/
.service {
  position: relative;
}
.tesimonials {
  position: absolute;
  top: 30px;
  right: 0 !important;
  height: 22px !important;
  z-index: 500;
  border: 1px solid #3583aa !important;
  line-height: 1.1 !important;
  padding: 9px 9px 0 !important;
  box-sizing: content-box !important;
}
.tesimonials a {
  color: #3583aa;
  text-decoration: none;
}
/* /お客様の声・Before and after リンクボタン ------------------------------------------------------------------------------------------------------------------------------*/
/* support ------------------------------------------------------------------------------------------------------------*/
/* 詳細 ----------------------------------------------------------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-color: transparent;
  line-height: 2em;
  font-size: 14px;
}
th {
  width: 8em;
  text-align: justify;
  text-align-last: justify;
  font-weight: 300;
  vertical-align: top;
}
td {
  padding: 0 0 0 10px;
}
.padding-top15 {
  padding-top: 15px;
}
.padding-top20 {
  padding-top: 20px;
}
.padding-top40 {
  padding-top: 40px;
}
.padding-left1 {
  padding-left: 1em;
}
.padding-left10 {
  padding-left: 10px;
}
.padding-left05 {
  padding-left: 0.5em;
}
.padding-right05 {
  padding-right: 0.5em;
}
.padding-right1 {
  padding-right: 1em;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch; /* テーブルとスライダーの縦の長さを「同じ」に揃える */
}
.table-container {
  width: 50%;
  order: 2;
}
.table-container table {
  font-size: 15px;
}
/* お悩み */
/* お悩みエリア全体の箱 */
.box1 {
  border: 1px solid #DBDBFF;
  border-radius: 8px;
  padding: 30px;
  max-width: 700px;
  margin-inline: auto;
  /* box1の中身を中央に集めるための設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* タイトル（こんな悩みのある方に〜） */
.box1 p strong {
  display: block;
  font-size: 18px;
  color: #5c4b37;
  text-align: center;
  margin-bottom: 25px;
}
.box1 p, .square p {
  text-align: center;
  width: 100%;
  padding-bottom: 0.6em;
}
.square p:last-child {
  padding-bottom: 0;
}
/* 箇条書きのリスト */
.box1 ul {
  padding: 0;
  margin: 0;
}
/* 各お悩み項目 */
.box1 li.disk {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}
.box1 li.disk:last-child {
  margin-bottom: 0;
}
/* 文頭のアクセント（小さな四角形） */
.box1 li.disk::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #BDD7FF;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
/* /お悩み */
/* ------------------------------------------------
   共通の土台設定（幅や横並びの基準）
   ------------------------------------------------ */
/* 小さなスライドショー全体・イメージ画像を囲むコンテナ */
.slideshow-container {
  position: relative;
  margin: 0;
  width: 40%;
  max-width: 500px;
  order: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
/* ------------------------------------------------
   スライドショーの設定（消滅対策）
   ------------------------------------------------ */
.slideshow {
  position: relative;
  width: 100%;
  max-width: 500px;
  flex-grow: 1;
  margin: 7px auto 0;
  overflow: hidden;
}
/* スライダー内の画像 */
.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnimation 20s infinite;
}
/* 画像の基本設定 */
.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 0; /* 初期状態は透明 */
  animation: fadeAnimation 20s infinite;
}
/* アニメーションのタイミングをずらす */
.slideshow img:nth-child(1) {
  animation-delay: 0s;
}
.slideshow img:nth-child(2) {
  animation-delay: 4s;
}
.slideshow img:nth-child(3) {
  animation-delay: 8s;
}
.slideshow img:nth-child(4) {
  animation-delay: 12s;
}
.slideshow img:nth-child(5) {
  animation-delay: 16s;
  object-position: bottom;
}
/* フェードイン・アウトのアニメーション定義 */
@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 各画像の縦横比を崩さず、領域いっぱいに広げる魔法の指定 */
.slideshow .service_image {
  width: 100% !important;
  max-width: 500px;
  height: 100% !important;
  object-fit: cover;
}
/* 
  ボタン（Label）の装飾
  .slideshow-containerの「右下」に固定
*/
.m_btn_2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  user-select: none;
  font-size: 10px;
  line-height: normal;
  margin-bottom: 5px; /*tableと下を揃えるため（textの縦幅余白分）*/
}
/* サポートの流れ */
.square_1 {
  position: relative;
  padding: 65px 0 40px;
}
.square h3.mincho {
  text-align: center;
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 20px;
  margin: 0;
}
/* h3のすぐ下に来る紹介文のエリア */
.square .flow-intro {
  text-align: center;
  margin-bottom: 20px;
}
.square .flow-intro p {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
/* ------------------------------------------------
   PC時のレイアウト（基本設定：横並び）
   ------------------------------------------------ */
/* 最初はすべて透明にしておく（JSで順番に表示するため） */
.container-b > li {
  opacity: 0;
}
.container-b, .container-c {
  padding: 35px;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* ★重要：stretch（初期値）にすることで、子要素のli全体の高さが自動で揃います */
  align-items: stretch;
}
/* 各ステップの箱を包むli */
.container-b .box, .container-c .box {
  width: 30%; /* 横幅はパーセントで指定し、画面幅に合わせて縮むようにする */
  box-sizing: border-box;
  /* ★重要：liの中にある .box2 を親（li）と同じ高さまで広げるための魔法 */
  display: flex;
  flex-direction: column;
}
/* 箱の中身のデザイン */
.box2 {
  border: 1px solid #747373;
  padding: 20px;
  background-color: #fff;
  /* ★重要：heightの数値指定は消去します！ */
  height: auto;
  /* ★重要：この1行を入れることで、隣の長い箱と同じ高さまで自動で下へ伸びます */
  flex-grow: 1;
}
.box2 .center {
  text-align: center;
  font-weight: bold;
  /*margin-bottom: 15px;*/
}
/* 矢印を挟む要素 */
.arrow-item {
  width: 3%;
  display: flex;
  align-items: center; /* 矢印だけは箱の「上下中央」に配置する */
  justify-content: center;
  font-size: 24px;
  color: #747373;
}
/* 【PC時の矢印制御】 */
.box3 {
  display: block;
}
.box3_2 {
  display: none;
}
/* /サポートの流れ */
/* /お片付けサポート */
/* consept --------------------------------------------------------------------------------------------------------------------------------------------- */
.square_2 {
  padding: 40px 0;
}
/* ------------------------------------------------
   3つの効果セクション専用
   ------------------------------------------------ */
.square_2 .box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.square_2 .box2 .center {
  width: 100%;
  text-align: center;
}
.square_2 .effect-list {
  padding: 0;
  margin: 0;
  width: max-content;
  max-width: 100%;
  text-align: left;
}
/* 各箇条書きの行（li）のデザイン */
.square_2 .effect-list li {
  display: flex;
  align-items: flex-start; /* 文字が2行になったときにドットが1行目の頭に揃う */
  margin-bottom: 8px; /* 箇条書きの行間 */
  font-size: 14px; /* 文字の大きさ（お好みで調整） */
  line-height: 1.6;
}
.square_2 .effect-list li::before, .pribacy_policy_list li::before {
  content: "・";
  color: rgba(0, 0, 0, 0.5);
  font-size: 1em;
  margin-right: 0.3em;
  flex-shrink: 0;
}
/* ------------------------------------------------
   3つの効果（container-c）の時間差フェードイン
   ------------------------------------------------ */
.square_2 .container-c.fadein {
  transition-delay: 0.5s;
}
/* /consept --------------------------------------------------------------------------------------------------------------------------------------------- */
/* お客様の声・Before and after ---------------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------
   特定エリア内だけで追従するナビゲーション
   ------------------------------------------------ */
/* 追従させたいナビの外枠 */
.sticky-nav-wrapper {
  position: -webkit-sticky; /* Safari対策 */
  position: sticky;
  top: 75px;
  z-index: 100;
  margin: 30px 0 50px;
  width: 100%;
}
/* ナビゲーションの枠線 */
.sticky-nav-list {
  margin: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
}
.sticky-nav-list li {
  border: 1px solid #3583aa;
  padding: 1px 15px 0;
}
.sticky-nav-list li a {
  text-decoration: none;
  color: #3583aa;
  line-height: 1.1;
  font-weight: bold;
  transition: color 0.3s;
}
.sticky-nav-list li a:hover {
  color: #81BAD6;
}
/* お客様の声＿ひし形の右を2段目から右に下げる */
.voice_c {
  position: relative;
  margin: 15px 0 50px;
  padding-left: 1.5em;
}
.d_label {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}
.left_space {
  padding: 0;
  margin: 0;
}
.review {
  color: #326CC2;
}
#before_and_after .voice_c {
  margin-bottom: 0;
}
#before-after-voice {
  padding: 35px;
  margin: 25px auto 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: rgba(204, 214, 237, 0.3);
}
/* 5枚の画像それぞれの箱（li）の設定 */
#before-after-voice li {
  /* 
    5枚綺麗に並べるために、1枚あたりの横幅を「18%」に指定
    （18% × 5枚 ＝ 90% ：残りの10%が隙間）
  */
  width: 18%;
  box-sizing: border-box;
}
/* リスト内のリンクと図（figure, dl）の余白をリセット */
#before-after-voice figure, #before-after-voice dl {
  margin: 0;
  padding: 0;
  width: 100%;
}
/* 画像自体のサイズ設定 */
#before-after-voice dt {
  margin: 0;
  width: 100%;
  height: auto !important;
  overflow: visible;
}
#before-after-voice dt img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
  border-radius: 6px;
  /* アニメーションボケ防止 */
  will-change: transform;
  backface-visibility: hidden;
}
/* 画像の下にあるテキスト */
#before-after-voice dd {
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #38658F;
}
/* ------------------------------------------------
   About simple lifeについて
   ------------------------------------------------ */
.about_base {
  position: relative;
  width: 100%;
  height: auto /*620px*/ ;
  padding-bottom: 20px;
}
/* 1. 左側のカラーゾーン */
.square_g {
  position: absolute;
  top: 18px;
  left: calc(50% - 50vw);
  width: calc(100vw - 20%);
  height: 100%;
  background-color: rgba(245, 245, 247, 0.4);
  z-index: 12;
}
/* 2. 右側の画像ゾーンの枠 */
.square_img {
  position: absolute;
  top: 68px /*10%*/ ;
  right: calc(50% - 50vw);
  width: calc(100vw - 45%);
  height: 100%;
  z-index: 10;
  overflow: hidden;
}
/* 画像自体の設定（縦横比維持・上部固定トリミング） */
.square_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: bottom;
  opacity: 1;
}
/* 3. 背景や画像の上に重ねるテキストゾーン */
.a_text {
  position: relative;
  z-index: 50; /* 一番上のレイヤーにする */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.a_text h3 {
  margin-bottom: 30px;
}
.a_text p {
  line-height: 2;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff;
}
/* プロフィール */
#profile {
  max-width: 1100px;
  padding: 0 20px 80px;
}
#profile h3 {
  text-align: left;
}
.profile-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  padding: 0 20px;
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
}
/* プロフィール画像の箱（PC時は230pxに完全固定） */
.p_image {
  width: 230px;
  height: 230px;
  flex-shrink: 0;
}
/* 画像自体の設定（欠け・潰れを完全に防止） */
.p_image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  border-radius: 8px;
}
.profile-table-container table {
  width: 100%;
  line-height: 2.3em;
}
.name {
  border-bottom: 1px solid #dedede;
  text-align-last: initial;
  letter-spacing: 0.3em;
  padding-left: 0.5em;
}
.profile-table-container th {
  width: 7em;
}
.profile-table-container td {
  padding-left: 15px;
}
/* --- 【PC時の表示・非表示ルール】 --- */
.r_block {
  display: none !important;
} /* スマホ用は非表示 */
.r_none {
  display: block !important;
} /* PC用を表示 */
.r_none_inlineb {
  display: inline-block !important;
} /* スマホ用は非表示 */
/* /About simple lifeについて */
/* お問い合わせ */
/* contact ******************************************************************************** contact*/
.okigaruni {
  margin: 20px auto;
}
/* ★音声専用文字を画面から完全に消す */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.form_background {
  background-color: #fbfbff;
  padding: 80px 0;
}
form {
  width: 80% /*90%*/ ;
  max-width: 600px;
  display: block;
  margin-top: 0em;
  margin-block-end: 1em;
  line-height: 1.8;
  margin: 0 auto;
}
/* 入力欄にカーソルが当たった時（Focus）の、オシャレで親切な光る演出 */
.form-item input:focus, .form-item textarea:focus {
  outline: none;
  border-color: #81BAD6; /* メインカラーの優しいベージュに枠線が変わる */
  box-shadow: 0 0 8px rgba(202, 168, 127, 0.2); /* 枠線の周りがフワッと光る */
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="search"], textarea {
  background-color: #fff;
  color: #666;
  border: 1px solid #E6EBFA;
  width: 100%;
  height: 37px;
  -webkit-appearance: none;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: 5;
  line-height: 1;
  font-size: 15px;
  font-family: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", Yu Gothic;
}
select, textarea {
  color: #666;
  font-family: 'Roboto Condensed', "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", Yu Gothic;
  font-size: 15px;
  height: 2em;
  line-height: 2em;
  border: 1px solid #E6EBFA;
  border-radius: 6px;
  appearance: auto; /* ブラウザ標準の見た目に戻す */
  -webkit-appearance: auto; /* Safari / Chrome向け */
  -moz-appearance: auto; /* Firefox向け */
  background-color: #fff;
}
select::-ms-expand {
  display: block; /* IEなどで矢印を表示する */
}
#contact button, input[type="button"], input[type="reset"], input[type="submit"] {
  border: none;
  background-color: #83a9d0;
  color: #fff;
  font-size: 12.999999996px;
  padding: 0.8em 1.5em;
  text-transform: uppercase;
  -webkit-appearance: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-family: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", Yu Gothic;
  letter-spacing: 1.5;
  cursor: pointer;
}
/* チェックボックス全体の囲み */
.form-item-privacy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 10px 0 30px;
  width: 100%;
}
.form-item-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
/* 隣の「同意します」の文字 */
.form-item-privacy label {
  font-size: 14px;
  cursor: pointer;
  user-select: none; /* 文字のダブルタップによる誤選択を防ぐ */
}
/* ------------------------------------------------
   入力欄の placeholder（ヒント文字）のカラー変更
   ------------------------------------------------ */
/* Google Chrome, Safari, Edge などのモダンブラウザ用 */
.form-item input::placeholder, .form-item textarea::placeholder {
  color: #81BAD6;
  font-size: 14px;
  opacity: 1;
}
/* 万が一のために、セレクトボックス（select）の最初の未選択文字（選択してください）も同じ色に揃える */
.form-item select:invalid, .form-item select option[value=""] {
  color: #b5b5b5;
}
/* espar form用　コンタクト　始まり **************************************************/
#contact .form {
  padding: 0;
}
#contact .form dl dt {
  width: auto;
  padding: 10px 0;
}
#contact .form dd {
  margin-bottom: 1.5em;
}
#contact .form .message {
  height: 250px;
}
#contact form {
  margin-bottom: 25px;
}
#contact .form button:hover {
  background-color: #fff;
  color: #555;
  border: 1px solid #555;
  cursor: pointer;
}
.required:after {
  content: "*";
  color: #ff0000;
}
.c_red {
  color: #ff0000;
}
/* espar form用　コンタクト　終わり **************************************************/
/* /お問い合わせ */
/* プライバシーポリシー */
/* ------------------------------------------------
   プライバシーポリシー用：パンくずリスト
   ------------------------------------------------ */
#privacy_policy section {
  padding: 15px 0 80px;
}
.breadcrumb {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 30px 0;
  padding: 0;
  box-sizing: border-box;
}
.breadcrumb ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb ol li {
  font-size: 13px;
  color: #747373;
}
/* 「ホーム」と「プライバシーポリシー」の間の区切り文字（＞） */
.breadcrumb ol li:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: #ccc;
}
/* ホームへのリンク文字のデザイン */
.breadcrumb ol li a {
  text-decoration: none;
  color: #747373;
  transition: color 0.3s ease;
}
.breadcrumb ol li a:hover {
  color: #81BAD6;
}
.privacy_policy {
  max-width: 1050px;
  margin: 0 auto;
}
/* ----------------------------------------------------------------------------------
   bg-slider・アニメーション両方停止用cssアニメーション.hover時アニメーション停止ボタンのコード
------------------------------------------------------------------------------------- */
/* 停止クラスが付与されたらアニメーションを止める */
body.is-paused .slideshow img, body.is-paused #subtitle2, body.is-paused .subtitle_2, body.is-paused .st0ht, body.is-paused .scrollbar::after {
  animation-play-state: paused !important;
}
body.is-paused .scrollbar::after {
  height: 100px !important;
}
body.is-paused .s_t_1, body.is-paused .message_txt01, body.is-paused .message_txt02, body.is-paused .fadein {
  transition: none !important;
  opacity: 1 !important;
}
body.is-paused .container-b > li {
  opacity: 1 !important;
}
body.is-paused .container-c {
  transition-delay: 0s !important;
  transition: none !important;
  opacity: 1 !important;
}
/* mainvisualテキストエリア */
body.is-paused #subtitle, body.is-paused .bg-slider__title {
  animation: none !important;
  opacity: 1 !important; /* ボタンが押された時だけ、両方とも100%表示する */
}
body.is-paused #subtitle {
  top: 40% !important; /* タイトルを少し上にずらす */
}
body.is-paused .bg-slider__title {
  top: 60% !important; /* 紹介文を少し下にずらす */
  text-align: center !important; /* 停止時は中央寄せにして読みやすくする */
}
/* ------------------------------------------------
   hover（マウスホバー）時の動き・色の停止設定
   ------------------------------------------------ */
/* hover時の「文字色・背景色の変化」を無視させる */
body.is-paused .pagetop a:hover {
  background-color: #EDF6FF !important;
  color: #406A94 !important;
  border: 1px solid #ccc !important;
}
body.is-paused .main-nav li a:hover {
  color: rgba(0, 0, 0, 0.9) !important;
  background-color: transparent !important;
}
body.is-paused .sticky-nav-list li a:hover {
  color: #3583aa !important;
}
body.is-paused .footer-nav ul li:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
body.is-paused .footer-nav ul li a:hover, body.is-paused .breadcrumb ol li a:hover {
  color: #747373 !important;
}
body.is-paused .footer-nav ul .insta_i a:hover {
  filter: none !important;
}
/* ------------------------------------------------
   hover時に動く「内部のSVGアニメーション」を止める
   ------------------------------------------------ */
body.is-paused .main-nav li a:hover svg, body.is-paused .main-nav li img:hover svg {
  animation-play-state: paused !important;
  display: none !important;
}
/* footer */
/* ------------------------------------------------
   フッターデザイン（PC用）
   ------------------------------------------------ */
footer {
  background-color: #fbfbff;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 1);
  padding: 50px 0 20px;
}
/* フッターナビの枠組み */
.footer-nav {
  margin-bottom: 30px;
}
.footer-nav ul {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 15px;
}
/* フッターの文字リンクのデザイン */
.footer-nav ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #747373;
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', Meiryo, serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
/* ------------------------------------------------
   インスタアイコン専用の設定
   ------------------------------------------------ */
.footer-nav ul li.insta_i a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav ul li.insta_i img {
  width: 20px !important;
  height: 20px !important;
  margin-top: 1px;
  display: block;
  opacity: 0.4;
}
.footer-nav ul li a:hover {
  color: #81BAD6;
}
.insta_i a:hover {
  filter: brightness(0) saturate(95%) invert(85%) sepia(10%) saturate(800%) hue-rotate(90deg) brightness(90%) contrast(105%);
}
.footer-nav ul li:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
/* コピーライトの文字 */
footer small {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
}
/* ------------------------------------------------
   レスポンシブレイアウト
   ------------------------------------------------ */
@media (max-width: 1480px) {
  /* プロフィール*/
  .profile-table-container table {
    font-size: 15px;
    line-height: 2.5em;
  }
  /* /プロフィール*/
}
@media (max-width: 1440px) {
  /* --- お片付けサポート（全体を縦並びにする） --- */
  .container {
    flex-direction: column; /* 縦並び */
    gap: 30px;
    width: 100%;
  }
  /* テーブルを1番上（先）にする */
  .table-container {
    width: 100%;
    order: 1;
  }
  .table-container table {
    width: 100%;
  }
  .table-container table .padding-top40 {
    padding-top: 20px !important;
  }
  /* 画像コンテナを2番目（下）にする */
  .slideshow-container, .img_p {
    width: 100%;
    order: 2;
    margin-inline: auto;
  }
  /* --- スライダーサイズ指定 --- */
  .slideshow {
    width: 100%;
    height: 400px;
    position: relative;
  }
  /* --- サービスの流れ（3つのbox） --- */
  .container-b, .container-c {
    flex-direction: column;
    gap: 15px;
  }
  /* スマホ時は横幅いっぱいに広げる */
  .container-b .box, .container-c .box {
    width: 90%;
    max-width: 400px;
    margin-inline: auto;
  }
  /* 矢印の幅をスマホ用に広げる */
  .arrow-item {
    width: 100%;
    margin: 5px 0;
  }
  /* 【スマホ時の矢印制御】 */
  .box3 {
    display: none;
  }
  .box3_2 {
    display: block;
  }
  /* /サービスの流れ */
  /* お客様の声・Before and after */
  .sticky-nav-list {
    gap: 15px;
    padding: 12px 15px;
  }
  .sticky-nav-list li a {
    font-size: 14px;
  }
  /* /お客様の声・Before and after */
  /* about */
  /* プロフィール */
}
@media (max-width: 1400px) {
  .profile-table-container table {
    font-size: 14px;
    line-height: 2em;
  }
}
@media (max-width: 1220px) {
  .main-nav {
    display: none !important;
  }
  #menu_t {
    display: block !important;
  }
  /* トグル始まり *******************************************************/
  /* トグルスイッチのデザイン */
  .toggle-switch {
    display: block;
    width: 300px;
    background: transparent;
    box-shadow: transparent;
    text-align: center;
  }
  .logo5 {
    position: fixed;
    top: 15px;
    right: 25px;
    width: auto;
    z-index: 9999;
  }
  .global-nav_2 {
    font-size: 16px;
    line-height: 1.1em;
    padding: 3px 7px 5px;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
  }
  /* ------------------------------------------------
   文字を「close」に切り替える
   ------------------------------------------------ */
  #side-menu-toggle5:checked ~ .toggle-switch .menu-text {
    font-size: 0;
  }
  #side-menu-toggle5:checked ~ .toggle-switch .menu-text::after {
    content: "close";
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
  }
  #side-menu-toggle5:checked ~ .toggle-switch .global-nav_2 {
    padding: 5px 8px 0 5px !important;
  }
  /* ------------------------------------------------
   メニューリスト本体の基本設定
   ------------------------------------------------ */
  #top .menu-list_k {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    padding: 120px 0;
    margin: 0;
    font-size: 15px;
    font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', Meiryo, serif;
    background: rgba(227, 235, 252, 0.9);
    box-shadow: -1px 0 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    letter-spacing: 2px;
    line-height: 3em;
    z-index: 300;
    transition: all 0.4s ease-in-out;
  }
  /* ------------------------------------------------
   チェック時（メニューが開いたとき）
   ------------------------------------------------ */
  #side-menu-toggle5:checked ~ .menu-list_k {
    right: 0;
  }
  /* チェックボックス非表示 */
  #side-menu-toggle5 {
    display: none;
  }
  /* ------------------------------------------------
   非チェック時（メニューが閉じるとき）
   ------------------------------------------------ */
  /* メニュー内のリンク共通設定 */
  .menu-list_k li a {
    display: block;
    padding: 0.5em 1em;
    color: #3583aa;
    text-decoration: none;
    white-space: nowrap;
  }
  .menu-list_k li a:link, .menu-list_k li a:visited {
    color: #304F6E;
  }
  /* リンクホバー時（停止ボタンとの連動含む） */
  .menu-list_k li a:hover {
    opacity: 0.7;
    color: #81BAD6;
  }
  /* 停止ボタンとの連動 */
  body.is-paused .menu-list_k li a:hover {
    opacity: 1 !important;
    color: #304F6E !important;
  }
  /* Befoe and after */
  #before-after-voice dd {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  /* message */
  .message_txt {
    width: 95%;
  }
  .message_txt01, .message_txt02 {
    width: 100%;
    align-self: flex-start;
  }
  .none {
    display: none;
  }
  /* /message */
}
/* ------------------------------------------------
   レスポンシブ対応（画面幅 1023px 以下）*mainvisual テキストエリア含む
   ------------------------------------------------ */
@media (max-width: 1023px) {
  /* mainvisual テキストエリア */
  #mainvisual h2, #subtitle {
    font-size: 1em !important;
  }
  /* タブレット時の幅（570px）に自動切り替え */
  .mainvisual-text-wrapper {
    width: 570px;
  }
  .bg-slider__title {
    font-size: 10px !important;
    text-align: center !important; /* タブレット時は中央寄せ */
  }
  /* /mainvisual テキストエリア */
  .table-container {
    width: 100% !important;
  }
  .profile-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0;
  }
  .p_image {
    width: 200px;
    height: 200px;
  }
  .profile-table-container {
    width: 100%;
  }
  .name {
    text-align: center;
  }
  /* --- 【スマホ・タブレット時の表示・非表示ルール】 --- */
  .r_block {
    display: block !important;
  } /* スマホ用を表示する */
  .r_none {
    display: none !important;
  } /* PC用は非表示 */
  .r_none_inlineb {
    display: none !important;
  } /* スマホ用は非表示 */
  .table-container table .padding-top40 {
    padding-top: 5px !important;
  }
  .table-container table {
    font-size: 14px !important;
  }
  table {
    border-top: 1px solid #CCCCE6;
    border-left: 1px solid #CCCCE6;
  }
  th, td {
    padding: 5px;
    vertical-align: middle;
    border-bottom: 1px solid #CCCCE6;
    border-right: 1px solid #CCCCE6;
  }
}
@media (max-width: 990px) {
  .none_2 {
    display: none;
  }
  .block_2 {
    display: block;
  }
  .r_padding-left05 {
    padding-left: 0.5em;
  }
}
@media (max-width: 770px) {
  .none_0 {
    display: block !important;
  }
  .block_770 {
    display: block !important;
  }
  .none_770 {
    display: none !important;
  }
  /* message */
  h2, .hang_indent {
    font-size: 1.3em !important;
  }
  h3 {
    font-size: 1.1em !important;
  }
  .square h3.mincho {
    top: -1.1em !important;
    width: 100%;
  }
  .message_txt {
    gap: 30px;
    font-size: 14px;
  }
  /* /message */
  /* お客様の声・Before and after */
  .sticky-nav-list {
    flex-direction: column; /* スマホ時は縦並びにする */
    gap: 12px;
    align-items: baseline;
    padding: 20px;
  }
  /* Before and after */
  #before-after-voice {
    display: flex;
    flex-direction: column; /* 5つのセットを縦に並べる */
    gap: 25px;
    padding: 15px;
    width: 100%;
    align-items: center;
  }
  /* 5つの写真セット（li）それぞれの設定 */
  #before-after-voice li {
    width: 300px;
    box-sizing: border-box;
    margin-inline: auto;
  }
  /* リンク（aタグ）の横幅を設定 */
  #before-after-voice figure a {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  /* 画像とテキストを包む箱（dl） */
  #before-after-voice dl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 15px;
  }
  /* 画像が入っている枠（dt） */
  #before-after-voice dt {
    width: 120px;
    flex-shrink: 0;
    height: auto !important;
  }
  #before-after-voice dd {
    margin: 0;
    text-align: left;
    font-size: 13px;
    flex-grow: 1;
  }
  #before_and_after .padding-left1 {
    padding-left: 0 !important;
    font-size: 12px !important;
  }
  /* about */
  #about .margin-top80 {
    margin-top: 35px;
  }
  .about_base {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .square_g {
    display: none;
  }
  .square_img {
    position: static;
    width: 100%;
    height: 150px;
    order: 1;
    margin-bottom: 20px;
  }
  .a_text {
    position: static;
    width: 100%;
    padding: 0 10px;
    order: 2;
  }
  /* footer */
  footer {
    padding: 40px 0 25px;
  }
  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
    max-width: 350px;
    margin: 0 auto;
  }
  .footer-nav ul li {
    width: 100%;
    text-align: left;
    vertical-align: top;
  }
  /* プライバシーポリシー：2列分・一番下中央 */
  .footer-nav ul li.footer-privacy {
    grid-column: 1 / 3; /* 1列目から2列目の終わりまで全部使うという意味 */
    text-align: center;
    margin-top: 10px;
  }
  .footer-nav ul li a {
    font-size: /*12*/ 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 0;
    line-height: 1.4;
  }
  /* スマホ時プライバシーポリシーのリンクだけを真ん中寄せ */
  .footer-nav ul li.footer-privacy a {
    justify-content: center;
  }
  .footer-nav ul li.insta_i a {
    justify-content: flex-start;
    /*font-size: 12px !important;*/
  }
  .footer-nav ul li.insta_i img {
    margin-top: 2px;
  }
  .margin-left55 {
    margin-left: 55px !important;
  }
  /* /footer */
}
/* ------------------------------------------------
   レスポンシブ対応（画面幅 595px 以下）*mainvisual テキストエリア含む
   ------------------------------------------------ */
@media (max-width: 595px) {
  /* mainvisualテキストエリア含む */
  .block_3 {
    display: block !important;
  }
  #mainvisual h2, #subtitle {
    font-size: 13px !important;
  }
  #subtitle .padding-left1 {
    padding-left: 0 !important;
  }
  .mainvisual-text-wrapper {
    width: 330px !important;
  }
  /* /mainvisualテキストエリア含む */
  table th, .profile-table-container th {
    width: 80px !important;
    font-size: 12px !important;
  }
  .price-list-container {
    width: 100% !important;
    font-size: 12px;
  }
}
@media (max-width: 550px) {
  .block_550 {
    display: block !important;
  }
  .none_550 {
    display: none !important;
  }
  /* 流れ */
  .flow-intro .b_gray {
    font-size: 12px !important;
  }
  /* 流れ・効果 */
  .container-b, .container-c {
    padding: 35px 5px !important;
  }
}
@media (max-width: 535px) {
  .none_535 {
    display: none !important;
  }
  .inline_535 {
    display: inline !important;
  }
  .block_535 {
    display: block !important;
  }
}
@media (max-width: 485px) {
  .inline_485 {
    display: inline !important;
  }
  .block_485 {
    display: block !important;
  }
  .hang_indent {
    font-size: 1.2em !important;
  }
  /* contact */
  #contact p {
    font-size: 12px !important;
  }
}
@media (max-width: 443px) {
  .block_443 {
    display: block !important;
  }
  .none_443 {
    display: block !important;
  }
  .inline_443 {
    display: inline !important;
  }
  .r443_padding-right05 {
    padding-right: 0.5em !important;
  }
  .box .center, .box .blue {
    font-size: 12px !important;
  }
}
@media (max-width: 420px) {
  .block_420 {
    display: block !important;
  }
  /* お客様の声・Before and after リンクボタン */
  .tesimonials {
    font-size: 12px !important;
  }
  .block_420 {
    display: block !important;
  }
}