/* フルスクリーン */
.fv-section {
  background-image: url('img/fv-img.webp');
  background-size: cover; /* coverに変更し、画像が全画面をカバーする */
  background-position: center; /* 背景画像を中央に配置 */
  position: relative; /* 子要素の位置を絶対配置できるようにする */
  width: 100%;
  height: 100vh; /* 画面全体をカバー */
  z-index: 1;
}

/* コンテナ内の位置を調整 */
.fv-container {
  position: relative;
  z-index: 100; /* 木漏れ日オーバーレイより上に表示 */
  height: 100%;
}

.fv-content {
  position: absolute;
  left: 120px;
  top: 225px;
  z-index: 100; /* コンテンツを上に表示 */
}


.consultation-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* 広告セクション */
.promo-section {
  position: absolute;
  right: 120px;
  bottom: 120px;
	z-index: 10;
}

.promo-section img {
  width: 300px;
  height: auto;
}

/* 木漏れ日エフェクト */
.fv-section {
  background-image: url('img/fv-img.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.fv-container {
  position: relative;
  z-index: 10;
}

.fv-content {
  position: absolute;
  left: 120px;
  top: 225px;
  z-index: 10;
}

.light-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.light {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent);
  filter: blur(150px);
  animation: light-animation 10s ease infinite;  /* 速度を遅め、滑らかさを重視 */
  opacity: 0.8;
}

.light1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.light2 {
  top: 50%;
  left: 40%;
  animation-delay: 2s;
}

.light3 {
  top: 80%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes light-animation {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  50% {
    transform: translateX(100px) translateY(-100px) scale(1.3);  /* 少し大きめの動き */
  }
  100% {
    transform: translateX(-100px) translateY(100px) scale(1);
  }
}

.fv-text {
  display: flex;
  flex-direction: column;
}

.fv-text span:nth-child(2){
	margin-left: 70px;
}

.fv-text2{
	margin: 33px 0 67px;
}

.fv-text2-wrp{
	margin-left: 70px;
}



/* header 2024119
-----------------------------------*/
/* ヘッダーのスタイル */
.header {
  position: absolute; /* ヘッダーを固定位置に */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; /* fv-sectionよりも前面に表示するため */
  background-color: transparent; /* 背景色を透明にして、背景画像が見えるようにする */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px; /* パディングを小さく調整 */
  margin: 0 auto;
  flex-direction: row;
}

/* ロゴセクション */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  width: 120px; /* ロゴのサイズ調整 */
}

/* ナビゲーションメニュー */
.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #000;
}

/* アイコンセクション */
.header-icons {
  display: flex;
  align-items: center;
}

.header-icons ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-icon-top {
  margin-right: 15px;
  font-size: 14px;
  color: #333;
}

/* fvセクションのスタイル */
.fv-section {
  position: relative; /* 背景画像が画面全体をカバーする */
  width: 100%;
  height: 100vh; /* 画面全体をカバー */
  background-image: url('img/fv-img.webp'); /* 背景画像を設定 */
  background-size: cover; /* 画像を全体にフィット */
  background-position: center;
  z-index: 1; /* 背景として扱う */
}

/* fvコンテンツのスタイル */
.fv-content {
  position: absolute;
  left: 120px;
  top: 225px;
  z-index: 100; /* ヘッダーよりも前に表示 */
}

.promo-section {
  position: absolute;
  right: 120px;
  bottom: 120px;
  z-index: 10;
}

.promo-section img {
  width: 300px;
  height: auto;
}


/*  scroll
--------------------------------------*/
/* スクロールインジケーターのスタイリング */
.scroll-text img{
  width: auto;
}
.scroll-indicator {
  position: absolute;
  bottom: 10%;
	right: 50%;
  writing-mode: vertical-rl; /* 縦書きにする */
  text-align: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0.8;
  transition: opacity 0.3s ease;
	bottom: -5%;
}

.scroll-indicator:hover {
  opacity: 1;
}


.scroll-text {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  animation: scroll-animation 1.5s infinite alternate;
}

/* アニメーション効果 */
@keyframes scroll-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* セクションのスタイル */
.content-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7; /* セクションごとに異なる背景色を設定 */
}




/*  common
--------------------------------------------------------*/
h2{
	font-family: Qanoar;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 240%; /* 67.2px */
	letter-spacing: 5.6px;
}


hgroup p{
	font-family: "Shippori Mincho B1";
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 32px */
	letter-spacing: 1px;	
}


/* container
--------------------------*/
.sec-container {
  padding: 0 14.71%;
}

#sec03 .sec-container {
  padding: 0;
}

.inner_container {
  padding: 0 14.71%;
}

#sec03 .inner_container {
  padding: 88px 14.71% 227px;
}


/* btn
----------------------*/
.nav-button:hover svg path{
	stroke:#fff;
}



/*  about
----------------------------------------------------------*/
.cosmetics-section{
	margin-bottom: 90px;
}

.cosmetics-image {
    margin-top: 111px;
}

.main-content {
  padding: 20px;
}

.cosmetics-section {
  margin-bottom: 40px;
}

.cosmetics-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cosmetics-text {
  flex: 1;
  margin-right: 20px;
}

.sec-container {
    padding: 0 14.71% 65px;
}

.cosmetics-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.cosmetics-image img {
	max-width: 100%;
	height: auto;
	width: 882px;
}

.about-us-section h2{
	text-align: center;
}

.about-us-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
	width: 958px;
}

.about-us-text {
	margin-top: 77px;
	display: flex;
	flex-direction: row;
	width: 953px;
	justify-content: center;
	align-items: flex-start;
	gap: 120px;
}

.text-block {
}

.description-block {
  margin-bottom: 10px;
}

.about-us-link {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	margin-top: 66px;
}

.about-us-text{
	gap:20px;
}




/*  sec02
    当クリニックが選ばれる理由
----------------------------------------------------------*/
#sec02 hgroup {
  text-align: right;
}

/* Featuresセクション全体 */
.features-section {
  	padding: 60px 0;
	background: url("img/sec02-bg1.webp") top center;
	background-size: cover;
}

.features-section h2 {
}

.features-section p {
}

/* 画像とリストを横並びにする */
.features-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 159px;
}

/* 画像部分のスタイル */
.features-image img {
	max-width: 100%;
	height: auto;
	width: 372px;
}

/* 特徴リストのスタイル */
.features-list {
	border-top: 1px solid #C8C8C8;
	width: 100%;
  	max-width: 498px;
}

.feature-item {
	margin-bottom: 20px;
	display: flex;
	padding: 40px 0px;
	align-items: center;
	gap: 50px;
	align-self: stretch;
	flex-direction: row;
	border-bottom: 1px solid #C8C8C8;
}

.feature-item h3 {
}

.feature-item span {
	display: block;
	text-align: center;
}

.feature-item p {
}

/* リンクボタンのスタイル */
.features-link {
	margin-top: 77px;
	justify-content: flex-end;
	flex-direction: row;
}





/*  sec
------------------------------------*/
.clinic-visit-links ul {
  display: flex;
  width: 336px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}


/* クリニック訪問セクションの全体 */
.clinic-visit-section {
}

/* テキストと画像を横並びにする */
.clinic-visit-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 画像部分のスタイル */
.clinic-visit-image img {
  max-width: 100%;
  height: auto;
}

/* テキスト部分のスタイル */
.clinic-visit-text {
	margin-top: 26px;
}

.clinic-visit-text h2 {
}

.clinic-visit-text p {
}

.clinic-visit-links {
  flex-direction: row;
  justify-content: flex-end;
	margin-top: 30px;
}




/*  sec04
----------------------------------------------*/

/* トリートメントメニューのセクション全体 */
.treatment-menu-section {
	background: url("common/img/common_bg.webp") no-repeat center center /cover;
}

#sec04 .sec-container{
	padding: 140px 14.71%;
}

.treatment-menu-section hgroup{
	text-align: center;
	margin-bottom: 52px;

}

hgroup{
	
}

/* セクションの見出し */
.treatment-menu-section h2 {
}

.treatment-menu-section p {

}

/* カテゴリのタイトル */
.treatment-menu-category h3 {
	font-weight: 400;
	text-align: left;
	margin-bottom: 20px;
}

/* カテゴリのアイテム行のレイアウト */
.category-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 24px;
  gap: 20px;
}

/* 各カテゴリアイテムのスタイル */
.category-item {
  flex: 1 0 48%; /* 2列表示にするために48%の幅を指定 */
  position: relative;
}

.category-item img {
  width: 100%;
  height: auto;
}

/* カテゴリテキストの配置 */
.category-item p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* テキストに影を付けて見やすくする */
  margin: 0;
}


.treatment-menu-category:first-of-type {
	border-bottom: 1px solid #B3B3B3;
	margin-bottom: 92px;
	padding: 0 0px 92px;
}


/*  tab
-----------------------------------------*/
/* タブのスタイル */
.tabs {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin-bottom: 4px;
}

.tab {
  cursor: pointer;
display: flex;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex: 1 0 0;
align-self: stretch;
	background: var(--BG-2, #F9F9F9);
}

.tab.active {
  background-color: #ffffff;
  border-bottom: none;
  font-weight: bold;
	border-top: 4px solid var(--Text-1, #544B4B);
  background: var(--Text-, #FFF);
}

/* コンテンツのスタイル */
.tab-content .content {
  display: none;
}

.tab-content .content.active {
  display: block;
}




/* sec05 
   case
----------------------------------------------*/

/* Caseセクション全体 */
.case-section {
  padding: 60px 0;
  background: url();
  text-align: center;
}


.case-section p {
}

/* ナビゲーション部分 */
.case-navigation {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	flex-direction: row;
	align-items: flex-start;
}

.nav-button {
  background-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 15px;
  transition: background-color 0.3s ease;
	border: 1px solid #544B4B;
}

.nav-button:hover {
  background-color: #333;
  color: #fff;
}

.view-all-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333; /* ボタンの色 */
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.view-all-button:hover {
  background-color: #555;
}

/* ケースカードのレイアウト */
.case-container {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	flex-direction: row;
}

.case-item {
  text-align: left;
  display: flex;
  flex-direction: column;
	width: 240px;
	flex-shrink: 0;
}

.case-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.case-title {
  font-weight: 700;
}

.case-info span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.case-more {
  display: inline-block;
  padding: 8px 15px;
  background-color: #333;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.case-more:hover {
  background-color: #555;
}

.title-nav-container {
  flex-direction: row;
  justify-content: space-between;
}


.post-menu-list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  align-self: stretch;
  flex-wrap: wrap;
	height: 100px;
}

.btn_circle-arrow_wrp {
    align-items: end;
}

.case-item .btn_circle-arrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(common/img/svg-circle.svg);
    background-size: cover;
}

.case-item .btn_circle-arrow::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("common/img/svg-arrow.svg");
    background-size: cover;
}

hgroup {
    text-align: left;
	display: flex;
	flex-direction: column;
	gap:20px;
}

.btn-wrp {
  flex-direction: row;
}

.post-menu-list li {
  border-radius: 4px;
  background: var(--BG-, #F1F1F1);
  display: flex;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#sec06 .btn_circle-arrow_wrp {
  flex-direction: row;
  justify-content: flex-end;
}

#sec06{
	background: url("img/sec06-bg.webp") no-repeat top center;
	background-size:cover; 
}



/*  sec07
    faq
--------------------------------------------*/
#sec07 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#sec07 .sec-container {
  display: flex;
  flex-direction: row-reverse;
/*  max-width: 1100px;
  padding-left: 70px;*/
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* タイトル部分とFAQを横並びにする */
.title-nav-container {
  display: flex;
  flex-direction: row; 
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}



/* FAQのコンテナ */
.faq-container {
	display: flex;
	margin-bottom: 40px;
	padding-top: 120px;
	flex-direction: column;
	align-items: flex-start;
	gap: 56px;
	flex-shrink: 0;
}

.faq-item {
  display: flex;
  flex-direction: row; /* 質問とアイコンを横並びにする */
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  color: #333;
}

.faq-question {
  margin: 0;
}

.faq-toggle {
  cursor: pointer;
  font-size: 24px;
  color: #333;
  transition: transform 0.3s ease;
}

/* FAQが開かれたときのアイコンの回転 */
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq_wrp{
	width: 600px;
}

#sec07 .sec-container{
	margin-top: 93px;
}


/*  sec08
    コラム　SNS
------------------------------------*/
/* 背景画像用のラッパー */
.background-wrapper {
  background-image: url('img/sec08-bg.webp'); /* 背景画像を指定 */
  background-size: cover;
  background-position: center;
  padding: 60px 0; /* 上下のスペース */
}

/* Column セクション */
.column-section {
  margin-bottom: 60px;
}

.sns_wrp{
	display: flex;
	flex-direction: row;
	padding: 0px 70px;
	padding-right: 0;
	align-items: center;
	gap: 70px;
}

#sec08 .sec-container {
    padding-right: 0;
}
#sec08 .title-nav-container{
	padding-right: 14.71%;
}


.title-nav-container {
  display: flex;
  flex-direction: row; /* タイトルとナビゲーションを横並びに */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}


.column-container {
  display: flex;
  flex-direction: row; /* コラム記事を横並びに */
  justify-content: space-between;
  gap: 20px;
}

.column-article-wrp {
  display: flex;
  padding-left: 70px;
  align-items: flex-start;
  gap: 70px;
  align-self: stretch;
  flex-direction: row;
}

.column_text {
  display: flex;
  width: 196px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 29px;
  align-self: stretch;
	flex-shrink: 0;
}

.column-item {
	display: flex;
	width: 250px;
	flex-direction: column;
	align-items: flex-start;
	gap: 6.75px;
}

.column-item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.column-title {
	font-weight: 400;
}

.column-description {
  font-size: 14px;
  color: #777;
}

.column-date{
	color: rgba(84, 75, 75, 0.29);
}


.btn_circle-arrow.sp{
	display: none;
}


/*20241104*/
.column-article-wrp {
  display: flex;
  padding-left: 70px;
  align-items: flex-start;
  gap: 70px;
  flex-direction: row;
}

.column_text {
  width: 196px;
  flex-shrink: 0;
}

.slider-wrapper {
  flex: 1;
  overflow: hidden; /* スライド部分が固定要素に重ならないように */
}

.column-container {
  display: flex;
  flex-direction: row; /* コラム記事を横並びに */
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.column-item {
  display: flex;
  width: 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.75px;
}

.column-item img {
  width: 100%;
  height: 170px;
  margin-bottom: 10px;
	background: #fff;
}



/* SNS セクション */
.sns-section {
  margin-bottom: 60px;
}

.sns-links {
  display: flex;
  flex-direction: row; /* SNSリンクを横並びに */
  gap: 20px;
  margin-bottom: 40px;
}

.sns-link-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
	gap: 16px;
}

.sns-icon {
width: 87px;
  height: 87px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;	
}
.sns-name{
	font-weight: 400;
}
.instagram-icon img {
  width: 87px;
  height: 87px;
  border-radius: 50%; /* これにより正円になります */
  object-fit: cover; /* 画像を正円にする際、内容が適切に収まるように調整します */
}


.instagram-icon {
}

.twitter-icon {
}

.sns-gallery {
  display: flex;
  flex-direction: row; /* SNSギャラリー画像を横並びに */
  gap: 10px;
/*  overflow-x: auto; 
  scroll-behavior: smooth; */
  padding-bottom: 10px; 
}

/* スクロールバーのスタイルをカスタマイズ */
.sns-gallery::-webkit-scrollbar {
  height: 6px; /* スクロールバーの高さを小さくする */
}

.sns-gallery::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* スクロールバーの色を薄いグレーにして目立たなくする */
  border-radius: 10px; 
}

.sns-gallery::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1); 
}

.sns-gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0; /* 子要素の幅を保持し、縮小されないようにする */
}
.sns-section .sec-container{
	padding-right: 0;
}







.sns-view-all {
  text-align: right;
}

.sns-section .sec-container {
  gap: 28px;
}

.sns-link-item {
  display: flex;
  width: 203px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
  align-self: stretch;
  flex-shrink: 0;
}


/* 20241105
-------------------------------*/




/* sec09
   Information
-------------------------------*/

/* 画像部分 */
.information-images {
  display: flex;
  flex-direction: row; /* 横並びに配置 */
  justify-content: center;
  margin-bottom: 40px;
	gap: 100px;
}

.info-image {
  width: auto;
  object-fit: cover;
  height: 400px;
}

/* タイトル部分 */
.info-title-group {
	text-align: center;
	margin-bottom: 40px;
	margin-top: -80px;
}

/* クリニックの詳細情報 */
.clinic-info {
  display: flex;
  flex-direction: row; /* 横並びに配置 */
  justify-content: space-between;
  margin-bottom: 40px;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
	width: 435px;
}

/* 詳細情報のリスト */
.clinic-info-list {
}

.clinic-info-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  flex-direction: row;
	margin-bottom: 20px;
}

.clinic-info-label {
	width: 90px;
}

.clinic-info-detail {
}

.map-container {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
	gap: 31px;
}

.map-placeholder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 営業日カレンダー */
.calendar-section {
  text-align: center;
}

.calendar-month {
  display: inline-block;
  margin: 0 20px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th, .calendar-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #C8C8C8;
}

.calendar-table th {
  background-color: #fff;
}

.calendar-table td {
  background-color: #fff;
	width: 55px;
	padding: 8.806px;
}


.calendar {
    flex-direction: row;
	justify-content: center;
}

.month-title{
	margin-bottom: 26.42px;
}

.calendar-title{
	margin-bottom: 20px;
}


/* レスポンシブ対応
-----------------------------------*/
/* メディアクエリでレスポンシブ対応 */
@media (max-width: 768px) {
	
	/* common
	------------------------*/
	section {
    	overflow: hidden;
	}

	
	h2{
	color: var(--Text-1, #544B4B);
	font-family: Qanoar;
	font-size: 20.162px;
	font-style: normal;
	font-weight: 400;
	line-height: 26.471px; /* 131.291% */
	letter-spacing: 4.032px;
	}
	
	/* header
	--------------------*/
	.header-nav,
	.header-icons{
		display: none;
	}
	
	
	/* layout
	-----------------------*/
	.sec-container{
		padding: 0;
	}
	
	#sec03 .inner_container{
		padding: 0px 6.15% 92px;
	}
	
	#sec04 .sec-container{
		padding: 60px 6.15% 92px;
	}
	
	/* fv
	-----------------------*/
	.fv-section{
		height: auto;
	}
	
	.promo-section{
		position: static;
		justify-content: center;
		display: flex;
		flex-direction: row;
	}
	
	.fv-content{
		position: static;
		margin-top: 100px;	
	}
	.fv-text span:nth-child(2){
		margin-left: 0;
	}
	.fv-text2-wrp{
		margin-left: 0;
		margin-bottom: 55px;
	}
	.fv-container {
    	padding: 0 6.15%;
	}
	.promo-section img{
		width: 240px;
	}
	
	.scroll-indicator{
		right:0;
		left: 6.15%;
	}
	.fv-text{
		gap:20px;
	}
	.fv-text2{
		margin: 28px 0;
	}
	
	.about-us-text{
		flex-direction: column;
  		width: 100%;
	}
	
	.about-us-text{
		font-size:16px;
		letter-spacing: 0.8px;
	}
	
	.scroll-indicator {
    right: auto; /* rightを無効化 */
    left: 6.15% !important; /* SP版ではleftを優先 */
  }
	
	
	/* sec01
	   about-us
	----------------------*/
	.sec-container{
		padding: 60px 6.15%;
	}
	
	.about-us-text{
		font-size:16px;
		letter-spacing: 1px;
	}
	
	#sec07 .sec-container{
		/*padding: 0 6.15% 92px;*/
	}
	
	
		/*  about
	----------------------------------------------------------*/



	.about-us-container {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  margin-top: 50px;
	}

	.about-us-image img {
	  max-width: 100%;
	  height: auto;
		width: 100%;
	}
	
	.about-us-text{
		margin-top: 33px;
	}


	
	/* sec03
	----------------------*/
	.features-image img{
		width: 242.328px;
		height: 413px;
		flex-shrink: 0;
		margin-left: -12.3%;
	}
	
	.features-section{
		padding: 0;
	}
	
	.features-image hgroup {
  		margin-top: -155px;
	}
	
	.features-section h2{
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 240%; /* 43.2px */
		letter-spacing: 3.6px;
	}
	
	.features-container {
	  flex-direction: column;
	  gap: 43px;
	}
	
	.feature-item {
	  padding: 27.952px 0px;
	}
	
	.features-link {
		margin-top: 43px;
	}
	
	.clinic-visit-image {
  		position: relative;
	}
	
	.sp.sec03-hg {
  		position: absolute;
  		bottom: 9.49%;
  		left: 8.72%;
	}
	
	.clinic-visit-links ul{
		gap:30px;
	}
	
	
	/* sec04
	----------------------*/
  .category-item {
    flex: 0 0 100%; /* 画面幅が狭い場合、1列表示に変更 */
	  margin-bottom: 4px;
  }
	
	.treatment-menu-category h3{
		display: none;
	}
	
	.category-row{
		gap:0;
		margin-bottom: 0;
	}
	
	.treatment-menu-category:first-of-type{
		border: none;
		margin: 0;
		padding: 0;
	}
	
	hgroup{
		gap:9px;
	}
	
	/* sec05
	----------------------*/
  .case-container {
    flex-direction: row;
  }

  .case-item {
  }

	
	 .case-navigation {
		justify-content: center;
		flex-direction: column;
		gap: 10px;
		 align-items: center;
  }


	/* sec07
	-------------------*/
	
  
	  .title-nav-container {
		align-items: center;
	  }

	  .faq-item {
	  }

	  .faq-toggle {
		align-self: self-start;
	  }
	
	#sec07 .sec-container{
		flex-direction: column;
	}
	
	.faq_wrp{
		width: 100%;
	}
	
	.faq-container{
		padding-top: 0;
	}
	.title-nav-container{
		margin-bottom: 33px;
	}
	
	#sec07 .sec-container{
		max-width: 100%;
		  padding-left: 6.15%;
	}
	
	#sec07 .sec-container{
		margin-top: 0;
		align-items: end;
	}
	
	
	/*  sec08
	    column　SNS
	--------------------------------*/
	　 .column-container, .sns-gallery {
		flex-direction: row;
		gap: 10px;
		flex-shrink: 0;
	  }

	  .sns-links {
		flex-direction: column;
	  }

	  .column-item img {
		width: 100%;
	  }

	  .sns-gallery img {
		width: 150px;
		  height: 150px;
	  }
	
	.btn_circle-arrow.sp{
		display: flex;
	}
	
	.btn_circle{
		display: none;
	}
	
	.column-article-wrp{
		padding-left: 0;
	}
	.column_text{
		width: 100%;
	}
	
	.sns_wrp{
		flex-direction: column;
		padding: 0;
		align-items: self-start;
	}
	
	.column-section{
		margin-bottom: 0;
	}
	
	
	/* sec09
	------------------------*/
	.information-images {
		gap: 20px;
	  }

	  .info-image {
		  height: 150px;
	  }

	  .clinic-info {
		flex-direction: column; /* モバイルでは縦並びに変更 */
		gap: 20px;
	  }

	  .calendar-month {
		display: block;
		margin-bottom: 20px;
	  }
	
	.clinic-details{
		width: 100%;
	}
	
	iframe{
		width: 100%;
	}
	.info-title-group{
		margin-top: -70px;
	}
	
	.calendar{
		flex-direction: column;
		gap: 35.23px;
	}
	
	
	/*  column
	--------------------- */
	.column-article-wrp{
		flex-direction: column;
	}
	
	
	
}/*@media (max-width: 768px*/




