@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
*/



/* スマホ用　768px以下のスタイル */

/************************************
**共通
************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;/* パディングやボーダーを幅に含める */
}

body{
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease; 
  line-height: 1.5;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

dl, ol, ul,li{
	margin: 0;
  list-style: none;
}
.overlay.active {
  transform: translateX(0) !important;
}
table:not(.has-border-color) :where(th, td) {
  border: none;
}
table tr:nth-of-type(2n+1){
  background-color:unset;
}
.faq-item{
  display: unset;
}
table th{
	background-color:#ffffff00;}
a:hover {
  color: #fff;
	text-decoration: none;
}
.article h2 {
	font-size: unset;
  padding: 0;
  background-color: unset;
  border-radius: unset;
	margin-bottom: unset;
}
body:not(.home) .article h2 {
  /* Cocoonのデフォルトh2スタイルをリセット */
  background: none;
  padding: unset;
  border: none ;
  /* 必要に応じて独自のスタイルを追加 */
	border-radius: unset;
    margin: unset;
}

.article-header {
	display: none;
}
button:focus,
button:active,
a:focus,
a:active {
  outline: none !important;
  box-shadow: none !important;
}
/* パンくずリスト */
.breadcrumb{
	background-color: unset;
  position: relative;
  bottom: -70px;
  z-index: 1;
  left: 10px;
  font-size: x-small;
  border-radius: unset;
  padding: unset;
  margin: unset;
}

.breadcrumb span{
  font-size: 10px;
}
.breadcrumb-home{
	width: 75px;
}



:root {
  /***** フォントサイズ *****/
   /* ベース*/
   --base-font-size: 15px;
   /* モバイル用 */
   --font-size-xxs: 0.5rem;   /* 8px */
   --font-size-xs: 0.75rem;   /* 12px */
   --font-size-sm: 0.813rem;  /* 13px */
   --font-size-base: 0.938rem;/* 14px */
   --font-size-lg: 1rem;      /* 15px */
   --font-size-xl: 1.067rem;  /* 16px */
   --font-size-2xl: 1.125rem;  /* 17px */
   --font-size-3xl: 1.125rem;   /* 17px */
   --font-size-4xl: 1.875rem; /* 30px */
   /* 行間の設定 */
   --line-height-tight: 1.25;
   --line-height-normal: 1.5;
   --line-height-relaxed: 1.75;

  /***** カラー*****/
  /* primary */
	--primary-dull: #F1D3C4;
	--primary-100: #FFFAF8;
  --primary-200: #fff6ef;
	--primary-300: #FFC7B6;
	--primary-400: #FA9B7E;
	--primary-700: #FF754B; /* ベースカラー */
	/* secondary 青 */
	--secondary-b-dull: #DBE9F0;
	--secondary-b-200: #F1FAFF;
	--secondary-b-300: #B3D5E5;
	--secondary-b-400: #76C2E5;
	--secondary-b-500: #589BBA;
	--secondary-b-700: #0071A6;
	/* secondary 黄 */
	--secondary-y-dull: #F1ECD9;
  --secondary-y-100: #FFFBEC;
	--secondary-y-200: #FAF3D6;
	--secondary-y-300: #FFEDA9;
	--secondary-y-500: #FFD123;
	--secondary-y-700: #EFBD00;
	/* secondary 緑 */
	--secondary-g-dull: #DFEDE0;
  --secondary-g-200: #F1FCF2;
	--secondary-g-300: #C3E8C5;
	--secondary-g-500: #91CF94;
	/* secondary ピンク */
	--secondary-p-dull: #F6EBEE;
	--secondary-p-200: #FFF5F8;
	--secondary-p-300: #FFECF1;
	--secondary-p-400: #FFC7D4;
	--secondary-p-500: #F7A1B6;
  /* primary テキスト */
  --primary-text-700: #3D170B;
}


 /***** フォントサイズ *****/
/* モバイル用ユーティリティクラス */
.text-xxs {font-size: var(--font-size-xxs);}
.text-xs {font-size: var(--font-size-xs);}
.text-sm {font-size: var(--font-size-sm);}
.text-base {font-size: var(--font-size-base);}
.text-lg {font-size: var(--font-size-lg);}
.text-xl {font-size: var(--font-size-xl);}
.text-2xl {font-size: var(--font-size-2xl);}
.text-3xl {font-size: var(--font-size-3xl);}
.text-4xl {font-size: var(--font-size-4xl);}

/* タブレット・デスクトップ用サイズ（768px以上） */
@media screen and (min-width: 768px) {
:root {
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1.125rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
 }
}
/***** カラー *****/
/* 使用例 
.button-primary {background-color: var(--primary-500);}*/
.color-p{color: var(--primary-700);}
.color-s-b{color: var(--secondary-b-500);}
.color-s-y{color: var(--secondary-y-500);}
.color-s-y_700{color: var(--secondary-y-700);}
.color-s-g{color: var(--secondary-g-500);}
.color-s-p{color: var(--secondary-p-500);}
.color-p-text{color: var(--primary-text-700);}
.color-w{color:#fff;}

/* バックグラウンド */
.bg-p-200{background-color: var(--primary-200);} /*オレンジ */
.bg-p-300{background-color: var(--primary-300);} /*オレンジ */
.bg-s-b-200{background-color: var(--secondary-b-200);}  /* 青 */
.bg-s-b-300{background-color: var(--secondary-b-300);}  /* 青 */
.bg-s-g-300{background-color: var(--secondary-g-300);} /* 緑 */
.bg-s-g-200{background-color: var(--secondary-g-200);} /* 緑 */
.bg-s-p-200{background-color: var(--secondary-p-200);} /* ピンク */
.bg-s-y-100{background-color: var(--secondary-y-100);} /* 黄 */
.bg-s-y-300{background-color: var(--secondary-y-300);} /* 黄 */
.bg-w{background-color: #fff;}
.bg-y-100{background-color: var(--secondary-y-100);}


/***** ベースの設定 *****/
html {
  font-size: var(--base-font-size);
}
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
	background-color: #fff;
}

/* 見出しスタイル */
h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
}
h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
	color: var(--primary-700);
	text-align: center; 
}
h3 {
  font-size: var(--font-size-2xl);
	font-weight: 400;
}
h3>span {
  display: block !important; /* 必要に応じて block にも変更可能 */
  white-space: normal !important; /* 改行を許可 */
}
h4{
  font-size: var(--font-size-2xl);
	font-weight: 400
}

div{font-size: var(--font-size-base);}

a{
	text-decoration: none;
	color: #3D170B;
	}
.entry-content{
	margin-bottom:0;
}
.toc{
  display: none;
}
/* 補足テキストなどの小さいテキスト */
.text-small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
/* 注意書きなどの極小テキスト */
.text-tiny {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
}
.l-wrapper{
  position: relative;
}
/* 最大幅 */
.inner1480 {
  padding: 0 4%;
  margin: 0 auto;
	max-width: calc(1480px + 10%);
}
/* gridレイアウト・スマホで1列*/
.glid_2,.glid_3,.glid_4{   
  grid-template-columns: 1fr;  /* 1列に変更 */
}


/* テキストの配置 */
.text-c{text-align: center;}
.text-l{text-align: left;}
.text-r{text-align: right;}
/* フォントの指定 */
body {
  font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 400; 
	color: #3D170B;
}
/* テキストの太さ*/
.font_b{ font-weight: 500; }
.text_soft{ color: #864B39;}


/* 余白 */
.m_0{margin: 0;}
.m_b_2{margin-bottom:2vw;}
.m_b_3{margin-bottom:3vw;}
.m_b_5{margin-bottom:5vw;}

.p_b_3{padding-bottom:3vw}
.p_b_5{padding-bottom:5vw}
.p_b_5-v{padding-bottom: clamp(70px, 5vw, 90px);}

.m_t_2{margin-top:2vw;}
.m_t_3{margin-top:3vw;}
.m_t_5{margin-top:5vw;}

.p_1{padding:1vw;}
.p_3{padding:3vw;}
.p_t_1{ padding-top: 1vw;}
.p_t_3{ padding-top: 3vw;}
.p_t_5{ padding-top: 5vw;}
.p_x_1{	padding: 0 1vw; }
.p_x_2{	padding: 0 2vw; }
.p_x_3{	padding: 0 3vw; }
.p_x_5{	padding: 0 5vw; }
.p_y_1{padding: 1vw 0; }
.p_y_2{padding: 2vw 0; }
.p_y_5{padding: 5vw 0; }



.section-inner{padding: clamp(55px, 10vw, 100px) 5vw;}

/* ポジション */
.position_l{ 
	position: relative;
  width: 100%;
}
.position_r{ 
	position: relative;
	width: 100%;
}
.position_a{ 
  position: absolute;
  width: 100%;
}

.l_flex{
  display: flex;
  align-items: center;
}

/* サイズ*/
.w_50{ width: 50%; }

/* 要素の枠 */
.frame-p-500{border: 1px solid var(--secondary-y-500);}

/************************************
**見出しの装飾
************************************/
/* 上下に装飾*/
.tb_d_h2{
	padding-top: clamp(18px, 2vw, 60px);
    padding-bottom: clamp(3px, 1vw, 15px);
    background: url(img/deco/attention_yello.png) no-repeat center top 4px / clamp(40px, 5vw, 253px), url(img/deco/footprints_straight_s_pink.png) no-repeat center bottom / clamp(120px, 10vw, 255px);
}



/************************************
**header
************************************/

.header__text--small{
	position: absolute;
  color: #F19232;
  top: 5px;
  width: 160px;
  right: 45px;
}
.header__logo{
	position: absolute;
  top: -60px;
  left: -20px;	
}
.header__logo img{
	width: 40%;	
}
.header__actionBtn {
  position: fixed;
  bottom: 26px;
  right: 0;
  transition: transform 0.3s ease; /* スムーズな変化のためのトランジション */
	z-index: 98;
}
.header__actionBtn-tel:hover{
  width: 42%;
}
.header__actionBtn-web:hover{
	width: 47%;
}
.header__actionBtn.scrolled {
  transform: scale(0.9); /* スクロール時は90%サイズに */
}
.header__actionBtn-tel{
	width: 40%;
  transition: all 0.3s ease; 
}
.header__actionBtn-web{
	width: 45%;
  transition: all 0.3s ease; 
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
	z-index: 98;
	transition: background-color 0.5s ease-in-out;
}
.header__nav{
    display: none;
}

.header__hamburger {
  width: 35px;
  height: 35px;
  position: fixed;
  cursor: pointer;
  z-index: 100;
	top: 0px;
  right: 10px;
}

.header__hamburger img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
	margin-top: 10px;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0); /* 透明 */
}
 /* 初期状態での閉じるアイコン */
.header__hamburger .close-icon {
  opacity: 0;
  visibility: hidden; /* 完全に非表示に */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* 初期状態でのメニューアイコン */
.header__hamburger .menu-icon {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.close-icon{
	position: absolute;
	top:0;
  right: 0;
}

/* アクティブ時の状態 */
.header__hamburger.active .menu-icon {
  opacity: 0;
  visibility: hidden;
  transform: rotate(180deg);
}

.header__hamburger.active .close-icon {
  opacity: 1;
  visibility: visible;
  transform: rotate(180deg);
}
/* オーバーレイがアクティブな時もハンバーガーメニューを表示 */
.overlay.active + .header__hamburger {
  display: block;
  transform: translateX(0);
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: clamp(40px, 4vw, 120px) 2vw;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 99;
  overflow: auto;
}
.overlay-content{
  max-width: 220px;
  margin: 0 auto;
}
.overlay-menu {
  list-style: none;
  margin-bottom: 30px;
}
.info-box {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}
.overlay-menu__icon{
  width: 20px;
}
.overlay-menu>a{
  margin: 0;
}
.overlay-menu>a>p{
  margin: 0;
  padding-left: 1vw;
  padding-top: 10px;
}
.overlay-menu__li{
  padding-left: 1vw;
}
.overlay-menu__li,.overlay-menu__li-item{
  transition: all 0.3s ease; 
}
.overlay-menu__li:hover,.overlay-menu__li-item:hover{
  color: var(--secondary-b-500) ;
}

/* スマホ用固定ボタン */
.header__actionBtn-sp{
  position: fixed;
  width: 100%;
  z-index: 100;
  bottom: 0;
}
.actionBtn-sp__icon{
  width: 35px;
  background-color: #555;
  padding: 3px;
  border-radius: 50%;
}
.header__actionBtn-glid{
  display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.actionBtn-sp__item>a{
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease; 
}
.actionBtn-sp__item{
  padding: 5px 3px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.actionBtn-sp__p{
  margin-bottom: 0;
  padding-left: 3px;
  line-height: 1;
}
.icon-home__w{
  background-color: var(--secondary-b-400);
}
.icon-access__w{
  background-color: var(--secondary-g-500);
}
.icon-tel__w{
  background-color: var(--secondary-y-500);
}
.icon-web__w{
  background-color: var(--primary-700);
}
/************************************
**フロントページ
************************************/

.top-info__deco-01{
	width: 24%;
  position: absolute;
  right: -32px;
  top: 25px;

}


.main-visual{
	padding-top: 30px;
	width: 100%;
}
.main-visual__catchcopy-sp{
	width:  clamp(70px, 23%, 130px); 
    position: absolute;
    z-index: 1;
    bottom: -10%;
    left: 3%;
}
.main-visual__movie-sp{
	width: 100%;
  margin-bottom: -5px;
}

.main-visual__sp{
	position: relative;
}
.top-info{
	padding-top: clamp(70px, 15vw, 210px); 
	background-color: #FFF1E2;
	background-image: url(img/deco/footprints_straight_l_pink.png);
	position: relative;
	background-repeat: no-repeat;
  background-position: bottom 1vw left 0;
	background-size: 100%;
  overflow: hidden;
  padding-bottom: 10vw;
}

/** フロントページSP 診療時間 **/
.schedule__inner,.news__inner{
  margin-top: 30px;
}

.info__schedule-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 3vw;
	background: white;
	border-radius: 20px;
	border: 2px solid #88c6e5;
}
.info__schedule-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
}
.info__schedule-table th,
.top-info__schedule- td {
	text-align: center;
	padding: 10px;
	border-bottom: 1px solid #ffd700;
}
.info__schedule-header {
	text-align: left;
}
.dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #88c6e5;
	border-radius: 50%;
}
.note {
	font-size: 0.9em;
	color: #666;
	margin: 10px 0 0 0;
}
th {
	font-weight: normal;
}

/** フロントページSP お知らせ **/
.info__news,.info__access,.info__schedule{
  padding-bottom: 50px;
}

.info__news>h2,.info__access>h2,.info__schedule>h2{
	text-align: left;
}
.access-icon{
    width: 25px;
	margin: 0 1vw;
}
.info__access-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.simple-news-list{
  padding-left: 20px;
}
.fix-news{
  display: flex;
  padding-bottom: 10px;
}
.fix-news__link:hover{
  color: var(--secondary-y-500);
}


.fix-news>img{
  width: 15px;
  height: 15px;
  margin: auto;
}
.fix-news>p{
  padding-left: 10px;
  width: 95%;
  margin: 0;
}

/** フロントページSP お知らせ　ボトム画像 **/
.top-info__img-01{
	top: -13vw;
	width: 80%;
	right: 0;
	left: 0;
	margin: auto;
}

/** フロントページ・私達についてページ　SP ごあいさつ **/
.top-greeting{
	padding-top: 40vw;
}

.greeting {
    width: 100%;
    min-height: 400px; 
    overflow: hidden;
}

.greeting__bg {
    position: absolute;
    top: 405px;
    left: -80%;
    width: 216%;
    height: auto;
    z-index: -1;
}
.p-greeting__bg{
  top: 151px;
}

.greeting__inner {
    position: relative;
    padding: 10px;
    padding-top: 50px;
    padding-bottom: 80px;
	  max-width: 2000px;
    margin: 0 auto;
}
.p-greeting__inner{
  background: linear-gradient(to bottom, transparent 50%, var(--secondary-y-100)50%);

}
.greeting__img-dr{
  top: 7%;
  right: -7%;
  width: clamp(170px, 45%, 200px);
}
.greeting__img-dr_b{
  width: clamp(180px, 20vw, 270px);
  right: clamp(-20px, -10%, 280px);
  bottom: 10px;
}
.greeting__img-star03{
  top: 20%;
  left: -7%;
  width: clamp(100px, 28%, 130px);
}
.p-greeting__img-star03{
  top: 9%;
  left: -2%;
}


.greeting__img-star04{
    bottom: 120px;
    right: -18px;
    width: clamp(100px, 37%, 130px);
}
.greeting__txt{
	padding-top: 215px;
}
.greeting__name{
	padding-top: 50px;
	padding-bottom: 30px;
}
.greeting__btn{
  position: relative;
  z-index: 98;
}

/** フロントページSP 特徴 **/

.top-feature{
	position: relative;
	padding-top: clamp(50px, 10vw, 200px);
	padding-bottom: clamp(150px, 40vw, 230px);
	margin: 0;
  background: url(img/deco/checkPattern_green.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  /*background-attachment: fixed;*/
	z-index: 1;
}
.top-feature__main{
  padding-top: 60px;
}

.top-feature__point{
display: flex;
  flex-wrap: wrap; /* 複数行に対応 */
  gap: 16px; /* カード間の隙間 */
  justify-content: center; /* 中央揃え（オプション） */
}
.card-f {
  flex: 0 0 100%; /* スマホでは横幅100% */
  padding-bottom: 20vw;
  margin-bottom: 20px;
}
.card-f__inner{
	background: #fff;
    margin-left: clamp(30px, 10%, 75px);
	border-radius: 20px;
}
.card-f__p-no{
   position: absolute;
    top: 3px;
    width: clamp(75px, 21%, 135px);
    left: -2px;
}

.card-f__main{
    padding: clamp(40px, 13%, 87px);
    padding-top: 80px;
    padding-bottom: 70px;
}
.card-f__main h3::after {
	content: "";
        position: absolute;
        background: url(img/deco/star_right_4.png) no-repeat center / cover;

}
.card-f__footprints-img{
	width: clamp(180px, 80%, 350px);
	margin-bottom: 2vw;
  width: 50%;
  max-width: 250px;
}
.card-f__r-img{
	position: absolute;
    width: clamp(172px, 50%, 260px);
    bottom: 0;
    right: -10px;
}
.card-f__l-img{
	position: absolute;
  width: clamp(172px, 50%, 260px);
    bottom: -15px;
    left: -6px;
}

/** 吹き出しアクセント **/
  /** 01 **/
  .feature-deco01__box{
    position: absolute;
    top: 0;
    right: 2vw;
  }
  .feature-deco01__accent{
    width: 40px;
    position: absolute;
    right: 0;
    top: -11px;
  }
  .feature-deco01__p{
    position: absolute;
    transform: rotate(16deg);
    right: 14px;
  }
  /** 02 **/
  .feature-deco02__box{
    position: absolute;
    top:3vw;
    right: 5vw;
  }
  .feature-deco02__accent{
    width: 40px;
    transform: rotate(22deg);
    position: absolute;
    top: -48px;
    left: -21px;
  }
  .feature-deco02__p{
    position: absolute;
    transform: rotate(15deg);
    top: 4px;
    right: 7px;
  }

  /** 03 **/
  .feature-deco03__box{
    position: absolute;
    top: 3vw;
    right: 2vw;
  }
  .feature-deco03__accent{
    position: absolute;
    width: 40px;
    top: -11px;
    right: -11px;
  }
  .feature-deco03__p{
    position: absolute;
    top: 5px;
    right: 19px;
    transform: rotate(4deg);
  }
  .feature-deco03__line{
    transform: rotate(-11deg);
  }

/** フロントページSP 診療案内**/
.top-medical{
	position: relative;
    z-index: 2;
    top: -15vw;
}
.top-medical__h2{
	margin-top: -10vw;
   position: relative;
   z-index: 2;
}
.top-medical__svg{
	display: flex;
   justify-content: center;
}
.top-medical__svg{
    width: 100%;
    height: auto;
    max-width: none;
}

.top-medical__main {
  padding-top: 10%;
  padding-bottom: 10%;
}
.top-medical__main p{
	margin-bottom: clamp(20px, 1vw, 25px);
}

.top-medical__grid {
    display: grid;
    gap: 20px;
	max-width: 600px;
    margin: 0 auto;
	grid-template-columns: 1fr;

}
.top-medical__card {
	display: grid;
	grid-template-columns: clamp(80px, 20%, 100px) 1fr;
	text-align: left;
  border-radius: 10px;
	padding: 15px;
}
.top-medical__card .image-wrapper {
	grid-row: span 3;
}
.image-wrapper {
	 width: 100%;
}
 .top-medical__card img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	object-fit: cover;
	aspect-ratio: 1;
	padding: 4%;
}
.top-medical__text{
	padding-left: 15px;
}
.general img{
	border: 2px dashed var(--primary-700);
}
.vaccination img{
  border: 2px dashed var(--secondary-g-500);
}
.growth img{
	border: 2px dashed var(--secondary-y-700);
}
.baby img{
  border: 2px dashed var(--secondary-b-500);
}


/* 各サービスカードの色設定 
.service-card:nth-child(1) .detail-button {
    background-color: #FF7F6B;
}
.service-card:nth-child(2) .detail-button {
    background-color: #FFB946;
}
.service-card:nth-child(3) .detail-button {
    background-color: #5BAFDB;
}
.service-card:nth-child(4) .detail-button {
    background-color: #7BC5A3;
}
*/


/************************************
**下層ページ
************************************/

/********* 下層ページ　共通上部 *******/
.p-top__main-img{
	width: 100%;
}
.p-top{
  padding-top: 7vw;
	padding-bottom: 20vw;
	margin-bottom: 20vw;
}
.p-top__deco_bg{
	margin-top: -10vw;
}
.p-top__h2{
     display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-top: -45vw;
    left: -20px;
    background: #fff;
    position: relative;
}
.p-top__h2-orange{
	border: 10px solid var(--primary-300);
}
.p-top__h2-blue{
	border: 10px solid var(--secondary-b-300);
}
.l-p-top__h2{
	position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
}

/****　目次　localNav　*****/
.p-top__localNav {
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  justify-content: center; 
  padding: 16px; 
  position: absolute;
  bottom: -50px;
  z-index: 1;
  width: 100%;
}

.p-top__localNav button {
  border: 1px solid var(--secondary-b-400);
  background-color: #f0f8ff;
  color: #007acc; 
  border-radius: 8px; 
  padding: 3px 16px; 
  font-size: 10px; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  min-width: 140px; 
  max-width: 170px; 
  transition: all 0.3s ease; 
}

.p-top__localNav button:hover {
  background-color: #d1eaff; 
  border: 1px solid var(--secondary-b-400);
}

.p-top__localNav button::after {
  content: "→"; 
  font-size: 10px;
  margin-left: 8px; 
  background-color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 10px;
  min-height: max-content;

}

/************************************
**掲示事項
************************************/
.notice{
  margin-top: 15vw;
}
.notice>p{
  margin: 0;
}




/************************************
**初めての方へ
************************************/
/****　予約について　*****/
.reservation-main{
	padding-top: 8vw;
}
.reservation-box{
  padding-bottom: 40px;
}

/****　院内の感染対策}*****/
.infection-control{    
  position: relative;
  background-color: #fff5f6;
}
  .corner-decoration {
    position: absolute;
    width: 50px;
  }
  
  .corner-decoration.c-top-left {
    top: -30px;
    left: -10px;
  }
  .c-top-left .c-bottom-right{
    width: 65px;
  }

  .corner-decoration.c-bottom-right {
    bottom: 73px;
    right: 5px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 5.5rem;
  }
  
  .title-decoration__pencil {
    margin-top: 0.5rem;
    text-align: center;
    width: clamp(200px, 40%, 330px);
    margin: 0 auto;
    margin-top: -30px;

  }
  .section-description {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .main-features {
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .main-features ,.feature-list {
    margin-bottom: 0.5rem;
  }
  
  .main-features .starList_subItem:last-child {
    margin-bottom: 0;
  }
  
  .star-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
  }
  
  .starList_subItem h3 {
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  
  .starList_subItem p {
    line-height: 1.6;
  }
  
  
  .corner-decoration svg{
    width: 65px;
  }

  /****　フォトギャラリー　*****/

  .photo-gallery {
    overflow: hidden;
    margin-top: 10vw;
    margin-bottom: 3vw;
  }
  .photo-gallery__inner{
    height: clamp(225px, 40vw, 715px);
    position: relative;
    max-width: clamp(350px, 80vw, 1200px);
    margin: 0 auto;
  }
  .photo_l>img{
    position: absolute;
    left: 0;
  }
  .photo_c>img{
    position: absolute;
    right: 32%;
    bottom: 6vw;
  }
  .photo_r>img{
    position: absolute;
    right: 0;
  }
  .photo img {
  width: clamp(125px, 25vw, 380px);
  }

  .photo-gallery__deco {
    position: absolute;
  }

  
  /****　デコレーション　*****/

   /* 01  */
  .gallery-deco-01{
    top: 3vw;
    left: -5vw;
  }
  .gallery-deco-01>img{
    width: clamp(40px, 7vw, 120px);
    transform: rotate(50deg);
  }
   /* 02  */
  .gallery-deco-02{
    top: 0;
    left: 33%;
  }
  .gallery-deco-02>img{
    width: clamp(30px, 4vw, 90px);
    transform: rotate(90deg);
  }
    /* 03  */
  .gallery-deco-03{
    bottom: 9vw;
    left: 25%;
  }
  .gallery-deco-03>img{
    width: clamp(35px, 5vw, 100px);
    transform: rotate(-77deg);
  }
  /* 04  */
  .gallery-deco-04{
    bottom: 11vw;
    right: 25%;
  }
  .gallery-deco-04>img{
    width: clamp(40px, 5vw, 80px);
  }
  /* 05  */
  .gallery-deco-05{
    top: 2vw;
    right: -5vw;
  }
  .gallery-deco-05>img{
    width: clamp(50px, 6vw, 110px);
    transform: rotate(-70deg);
  }


  
 /****　持ち物　*****/
 .items{
    position: relative;
    /*padding: 10rem 1rem;*/
    background-color: #e7f1f9;
    margin-bottom: 0;
  }
  .items-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .starList{
    margin-bottom: 2rem;
  }
  
  .starList:last-child {
    margin-bottom: 0;
  }
  
  .starList-title{
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .star-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
  }
  
  .starList-title h3 {
    margin: 0;
  }
  
  .starList__ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0;
  }
  
  .starList__li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  
  .starList__li::before {
    content: "・";
    position: absolute;
    left: -0.5rem;
  }
  
  /* 雪の結晶の配置 */
  .snowflake {
    position: absolute;
    z-index: 0;
  }
  
  .snowflake1 {
    top: 15%;
    right: 3%;
    width: 100px;
  }
  
  .snowflake2 {
    bottom: 5%;
    left: -13%;
    width: 235px;
  }
  

/****　flow*****/
.flow {
    position: relative;
    position: relative;
    margin: 0;
    background: url(img/deco/bg_square_yello.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
  }
  
  .flow__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .flow__items {
    position: relative;
    padding-top: 10rem;
  }
  
  .flow__item {
    position: relative;
    margin-bottom: 5rem;
  }
  
  .flow__content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    border: 2px solid #FFEDA9;
  }
  .flow__content h3{
    color: var(--primary-700);
  }

  .flow__image {
    margin-top: 1rem;
  }
  
  .flow__image img {
    height: auto;
    display: block;
    height: auto;
    display: block;
    position: absolute;
    top: -60px;
    height: 130px;
    right: -15px;
  }
  
  .flow__pillar {
    position: absolute;
    left: 85px;
    top: 120px;
    height: 100%;
    transform: translateX(-50%);
  }
  
  .flow__connector {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%);
  }
  
/************************************
**私達について
************************************/
.about-info{
  margin-bottom: 100px;
}

.info__data{
  width: 20%;
  border-radius: 5px;
  background-color:  var(--primary-300);
  border: 1px solid var(--primary-700);
}
.info__access-text{
  width: 80%;
  padding-left: 15px;
}
.about-info__map{
  width: 100%;
  margin: 0 auto;
}

/*医院紹介の画像*/
.about-info__img_l{
  width: 70%;
  display: block;
  margin-left: -13px;
  margin-top: 43px;
}
.about-info__img_r{
  width: 45%;
  margin-left: auto;
  display: block;
  padding-top: 1vw;
  position: relative;
  z-index: -2;
  margin-top: -200px;
  margin-right: -22px;
}
.about-info__img_b{
  width: 179%;
  position: absolute;
  bottom: -97px;
  z-index: -1;
  max-width: 2000px;
  left: -262px;
  margin: 0 auto;
  transform: rotate(-24deg);
}

/*私たちについて　お知らせ*/
.about-news{
  padding-top: 15vw;
  padding-bottom: 15vw;
  margin-bottom: -30px;
}

.about-news__bg{
  background: url(img/deco/checkPattern_green.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
.about-news__h2-bg {
  background: url(img/deco/h2_w_bg.png);
  background-size: cover;
  width: clamp(220px, 42%, 500px);
  margin: 0 auto;
  padding: right;
  padding-top: 3%;
}

.about-news__list{
  background-color: #fff;
  width: clamp(330px, 70%, 1000px);
  border-radius: 15px;
  margin: 0 auto;
  padding: clamp(30px, 10vw, 90px) 5vw;
}

/************************************
**選ばれる理由
************************************/
.reason__inner{
  padding-top: 20vw;
}
.reason-point__box{
  top: -50px;
}
.reason__point{
  width: 80px;
}
.reason__deco-l{
  position: absolute;
  left: -20px;
  width: 80px;
  bottom: -40px;
}
.reason__deco-r{
  position: absolute;
  width: 100px;
  bottom: 30px;
  right: -10px;
  z-index: 1;

}
.reason-card {
  border-radius: 15px;
}
.reason-card__inner{
  padding: 70px 20px;
  margin-top: -30px;
  margin-bottom: 150px;
}
.reason__pic-b{
  position: absolute;
  width: 50%;
  max-width: 220px;
  right: -10px;
  bottom: -70px;
}
/************************************
**医院紹介
************************************/
.tour-box{
  padding-bottom: 55vw;
}
.tour-textBox-bg{
  padding: clamp(37px, 10vw, 50px);
  border-radius: 15px;
  height: clamp(170px, 26vw, 200px);
  max-width: 550px;
}
.tour-textBox__header{
  display: inline-block;
  background-color: #fff;
  padding: 1vw 4vw;
  border-radius: 25px;
  position: absolute;
  top: -20px;
}
.tour-textBox__h3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5px;
}
.tour-textBox__icon{
  width: 35px;
}
.tour__img-main{
  position: absolute;
  width: clamp(265px, 75%, 450px);
  right: -5px;
  top: 130px;
}
.imgBox__01 {
  height: 150px;
}
.imgBox__01-1{
  width: clamp(250px, 70%, 400px);
  position: absolute;
  left: -10%;
  bottom: -30vw;
}
.imgBox__01-2{
  width: clamp(100px, 30%, 150px);
  position: absolute;
  right: 0;
  top: 40vw;
}

/*レイアウト3*/
.l-tour_3,.l-tour_4,.l-tour_5{
  padding-bottom: 20vw;
}
.imgBox__02,.imgBox__03{
  height: 40vw;
}
.imgBox__02{
  margin-top: 42vw;
}
.imgBox__03{
  margin-top: 5vw;
}
.imgBox__02-1{
  position: absolute;
  width: 60%;
}
.imgBox__02-2{
  position: absolute;
  width: 25%;
  right: 20px;
  bottom: 30px;
}
.imgBox__03-1{
  position: absolute;
  width: 25%;
  top: 25px;
  left: 20px;
}
.imgBox__03-2{
  position: absolute;
  width: 60%;
  right: 0;
}
.l-tour_4>p{   
  width: 90%;
  margin: 0 auto;
}
.tour-noBg__p{
  width: 90%;
  margin: 0 auto;
}
/*レイアウト5*/
.tour-noBg__img-1,.tour-noBg__img-2{
  padding-bottom: 5vw;
}
.tour-noBg__img-2{
  text-align: end;
}
.tour-noBg__img{
  width: 80%;
}
/************************************
**お知らせ
************************************/
.news-title{
  padding-left: 3vw;
}
.news-date,.news-title{
  display: inline-block;
  padding-bottom: 10px;
}
.news-item{
  border-bottom: 2px dashed var(--secondary-b-300);
  margin-bottom:  clamp(10px, 3vw, 40px);
  padding-bottom: clamp(10px, 3vw, 40px);
}

.news-title>a{
  color: var(--primary-700) ;
  transition: all 0.3s ease; 
}
.news-title>a:hover{
  color: var(--secondary-y-500) ;
}
.news-archive__title{
  display: flex;
  width: 100%;
  align-items: center;
}
.news-archive__h3{
  margin: 0;
}
.news-archive__title{
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--secondary-b-300);
  margin-bottom: 10px;
}
.news-archive__title>img{
  width: 25px;
}
.p-news__archive{
  padding: 0 5vw;
}
.news-ul{
  padding: 0;
}
.news-archive__h3{
  padding-left: 1vw;
}
.news-a:hover{
  color: var(--secondary-y-500) ;
}
.news-ul>li>a{
  transition: all 0.3s ease; 
}
.news-ul>li>a:hover{
  color: var(--secondary-y-500) ;
}
.under-entry-content{
  display: none;
}
/* 記事詳細 */
.single-content{
  padding-top: clamp(140px, 15vw, 200px);
}
.entry-title, .article h2{
  padding-left: 0;
}
/* 月別アーカイブ */
.monthly-archive{
padding-top: 15vw;
}


/************************************
**ネクストページバナー
************************************/
.nextPage{
  position: relative;
  z-index: 1;
  background: url(img/features/next_first_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 400px;
  display: table;
  width: 100%;
  margin: 0;
}
.nextPage__overlay{
  background-color: #fff;
  width: clamp(230px, 80%, 1200px);
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 70%;
  border-radius: 15px;
  padding: 10%;
}
.nextPage__deco-01{
  position: absolute;
  width: 65px;
  top: 10px;
  left: 15px;
}
.nextPage__deco-02{
  position: absolute;
  width: 65px;
  bottom: 20px;
  right: 15px;
  transform: rotate(-90deg);
}
.nextPage__overlay>p{
 padding-top: 3vw;
}
.nextPage__overlay>.c-btn{
  padding-top: 3vw;
 } 
  
/************************************
**footer
************************************/
.footer__bg{
    position: relative;
    background: url(img/deco/stripe_orange.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 1;
	padding: 15vw 5% 15vw 5%;
}
.footer__inner{
	position: relative;
    background: #fff;
   	border-radius: 25px;
}
.footer__main{
    padding: 5% 3% 5% 3%;
}
.footer-logo__img{
    position: absolute;
	width: clamp(115px, 30vw, 200px);
    top: clamp(-100px, -10vw, -45px);
    left: 0px;
}
.footer-logo__text{
	padding-left: 35%;
}
.footer__footprints-img{
	width: 40vw;	
	padding-left: 15px;
}
.info__access-item{
    margin-bottom: 10px;
    margin-top: 10px;
}


.footer__h2{
    text-align: left;
	color: #3D170B;
    font-weight: normal;
}
.footer__h2-e{
    color: var(--primary-700) ;
}
.info__main-l{
	padding-top: 1vw;
}

.g-map{
    width: 100%;
    height: 250px;
    border-radius: 15px;
}



/************************************
**FAQ
************************************/
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 10vw;
}
.faq-box{
  padding-top: 5vw;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item__q {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 0;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--secondary-b-300);
}
.faq-item__a {
  display: flex;
  padding-top: 0;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--secondary-b-300);
  align-items: center;
}
.faq-icon {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-icon img {
  width: 100%;
  height: 100%;
}

.faq-text {
  flex-grow: 1;
}
.faq-item__a {
  display: flex;
  align-items: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-out, height 0.3s ease-out;
}
.faq-item__a.open {
  opacity: 1;
  height: auto;
  overflow: visible;
}
.faq-item__q.open {
  border-bottom: none;
}
.faq-text {
  flex-grow: 1; /* 追加 */
}



.pagination-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 15px;
}

.pagination-container a,
.pagination-container span {
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.pagination-container .current {
  text-decoration: underline;
}

.pagination-container .dots {
  letter-spacing: 2px;
}
/************************************
**採用ページ
************************************/

.recruit_container{
	width: 90%;
  max-width: 1000px;
	margin: 0 auto;
	padding: 3vw;
	background: white;
	border-radius: 20px;
	border: 2px solid #88c6e5;
  margin-bottom: 80px;
}
.recruit_schedule-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
}

.recruit_schedule-table th{
	text-align: center;
	padding: 15px;
}
.b_b_y{
  border-bottom: 1px solid #ffd700;
}
.recruit_mb{
  margin-bottom: 50px;
}
/************************************
**採用ページ
************************************/
.post-password-form{
      margin-top: 150px;
}

/************************************
**部品群
************************************/


/********* タイトルの装飾　鉛筆 *******/
.title__deco-pan{
  text-align: center;
	margin-bottom: 1rem;
  }
.deco-pen{
    margin-top: -3.5rem;
    width: 230px;
  }
/********* タイトルの装飾　リボン *******/
.ribbon-bg{
  background: url(img/deco/ribbon_g.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-size: clamp(300px, 47vw, 600px);
  padding-bottom: clamp(50px, 10vw, 150px);
  padding-top: clamp(1px, 1vw, 15px);
}
/********* タイトルの装飾　旗 *******/
/* オレンジ */
.flag-bg__orange{
  background: url(img/deco/flag_orange.png);
}
/* 緑 */
.flag-bg__green{
  background: url(img/deco/flag_green.png);
}
/* 青 */
.flag-bg__blue{
  background: url(img/deco/flag_blue.png);
}
/* 黄 */
.flag-bg__yellow{
  background: url(img/deco/flag_yellow.png);
}

.flag-bg{
  position: relative;
  width: 120px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: cover;
}
.flag-bg__inner{
   position: absolute;
   top: 25px;
   left: 25px;
}
.flag_box{
  width: 40%;
}

/********* タイトルの装飾　白抜きの枠 *******/
.text-frame{
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--secondary-y-500);
  border-radius: 10px;
}





/********* リンクボタン *******/
.button {
    color: white;
    padding: 8px 27px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

/* 小さいベタ塗りリンクボタン */
.button-s{
	padding: 6px 25px;
}
.button-s-text{
	font-size: small;
}

/* ボタンのバックグラウンドの色を変える */
.button-orange {
    background-color: var(--primary-700);
}
.button-yello {
    background-color: var(--secondary-y-700);
}
.button-green {
    background-color: var(--secondary-g-500);
}
.button-blue {
    background-color: var(--secondary-b-500);
}
.button-white{
	background-color: #fff;
}

.button-white span{
	color:  var(--primary-700);
}

/********* 白抜きボタン *******/
.button-chunk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 5vw;
}

.button-frame {
  display: flex;
  align-items: center;
  padding: 1vw 2vw;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: white;
  line-height: 15px;
  text-decoration: none;
  position: relative;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/*********白抜きボタン　電話ボタン *******/
.button-phone {
  border: 1px solid var(--primary-700); 
  width: clamp(175px, 55%, 250px);
}
.button-phone__wide {
	border: 1px solid var(--primary-700);
  	width:  clamp(260px, 45%, 330px);
}
.button-phone:hover,.button-phone__wide:hover {
  background-color: #fff5f1;
}
.button-frame__phone-icon {
    width: 30px;
    height: 30px;
}
.button-frame__circle{
    background-color: #EFBD00;
    border-radius: 60%;
    width: 30px;
    height: 30px;
    font-size: 9px;
    padding: 5px;
    color: #fff;
    line-height: 10px;
    font-weight: 500;
	text-align: center;
}
.button-web__text{
    font-size: clamp(10px, 3vw, 18px);
	margin-bottom: 0;
}

.button-frame__text {
  text-align: left;
  display: inline-block;
}
.button-frame__text p{
	font-size: clamp(10px, 3vw, 18px);
	margin-bottom: 0;
}
.button-web {
  border: 1px solid #ffd43b; 
  width: clamp(110px, 40%, 250px);
}
.button-web__wide {
  border: 1px solid #ffd43b; 
  width:  clamp(260px, 45%, 330px);
}
.button-web:hover, .button-web__wide:hover{
  background-color: #FAF3D6;
  color: var(--primary-text-700);
}
.button-web:hover .badge {
  border-color: white;
}


/* 白抜きボタンの丸アイコン*/
.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: color 0.3s ease;
  position: absolute;
  right: 7px;
}
.arrow-icon__orange{
	color: var(--primary-700);
}
.arrow-icon__yello{
  color: var(--secondary-y-700);
}

/* 初めての方へページ 予約についてのボタン*/
.reservation-button{
	text-align: right;
    padding-right: 10%;
}


/* ホバーした時の色を変える */
.button-orange:hover {
   background-color: var(--primary-400);
}
.button-yello:hover {
   background-color: var(--secondary-y-500);
}
.button-green:hover {
   background-color: var(--secondary-g-300);
}
.button-blue:hover {
   background-color: var(--secondary-b-400);
}
.button-white:hover {
   background-color: var(--primary-100);
}

.button-text {
    margin-right: 10px;
}

.circle-arrow {
    width: 22px;
    height: 22px;
    position: relative;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-white>.circle-arrow{
    border: 1px solid var(--primary-400);
}
.circle-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #FF5733;
    margin-left: 2px;
}
.button-yello>.circle-arrow::after{
    border-color: transparent transparent transparent var(--secondary-y-700);
}
.button-green>.circle-arrow::after{
    border-color: transparent transparent transparent var(--secondary-g-500);
}
.button-blue>.circle-arrow::after{
    border-color: transparent transparent transparent var(--secondary-b-500);
}


/*********メモ風バナー*******/
.notice-box {
  border-radius: 15px;
  padding: 24px;
	max-width: 90%;
  position: relative;
  text-align: center;
	margin: 0 auto;
}
.notice-box__wide::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
     45deg, /* 傾斜を逆方向に設定 */
     #efefef,
     #efefef 10px,
     #ffffff 10px,
     #ffffff 20px
    );
    border-radius: 0 0 16px 16px;
}
.notice-box img{
	position: absolute;
    top: -15px;
    width: 30px;
    right: 49%;
}
.notice-title {
    color: #3D170B;
}
.notice-title::after {
    content: "";
    display: block;
    width: 250px;
    height: 2px;
    background-color: #ffcc99;
    margin: 8px auto 0;
	  background: repeating-linear-gradient(
      to right,
      #ffcc99,
      #ffcc99 8px, 
      transparent 8px,
      transparent 16px);
}
.notice-text {
    margin: 16px 0;
}
.notice-button {
    display: inline-block;
    padding: 10px 24px;
    font-size: 1rem;
    color: white;
    background-color: #ff9900;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.notice-button:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}
.notice-box__btn{
    display: table;
    width: 100%;
}
.notice-box__btn-inner{
	display: table-cell;
    vertical-align: middle;
}

/********* 丸画像 *******/
.circle-img__container {
    position: relative;
    display: inline-block;
    padding: 10px;
	background: #fff;
    border-radius: 50%;
}
/* 画像を丸く切り取る */
.circle-image {
    width: 100px; /* 画像サイズ - 適宜調整 */
    height: 100px;
    border-radius: 50%;
    object-fit: cover; /* 画像のアスペクト比を保持 */
    display: block;
}

/* 外枠の円 */
.circle-img__container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
}
/* 外枠の円の色 */
.circle-img__container-orange::after {
    border: 2px solid var(--primary-700); 
}
.circle-img__container-blue::after {
  border: 2px solid var(--secondary-b-500); 
}
.p-top__deco-img{
	position: absolute;
        bottom: 25px;
    right: -18px;
}
.career tr{
  border-bottom: 2px dashed var(--secondary-y-300);
}


/************************************
**PC表示 (768px以上)
************************************/
@media screen and (min-width: 768px) {
/************************************
**共通部分
************************************/
  .glid_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  /* PCで横2列・スマホ1列*/
  .glid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .glid_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
/********* オーバーレイ　overlay *******/
  .overlay-content {
    max-width: 1000px;
    margin: 0 auto;
  }

/************************************
**部品群
************************************/

/********* 見出しの装飾　左寄せ *******/
.l_50_h2{
  width: 50%;
}

/********* 星の装飾*******/
.star-h2:before {
  content: "";
  position: absolute;
  background: url(img/deco/star_left_4.png) no-repeat center / cover;
  width: clamp(21px, 12vw, 200px);
  height: clamp(9px, 6vw, 100px);
  left: 10px;
  bottom: -5px;
}
.star-h2:after  {
  content: "";
      position: absolute;
      background: url(img/deco/star_right_4.png) no-repeat center / cover;
      left: auto;
      right: 30px;
      bottom: auto;
      bottom: -5px;
      width: clamp(21px, 11vw, 200px);
      height: clamp(9px, 7vw, 120px);
}
/* 星の装飾 中央配置*/
.star-h2_c{
  width: clamp(400px, 50%, 750px);
  margin: 0 auto;
}

/********* タイトルの装飾　鉛筆 *******/
  .deco-pen{
    margin-top: -3.5rem;
    width: 380px;
  }
  .title__deco-pan{
    margin-bottom: 5rem;
  }
/********* タイトルの装飾　リボン *******/
.ribbon-bg{
	background-size: clamp(280px, 47vw, 600px);
}
/********* タイトルの装飾　旗 *******/

.flag-bg{
  width: 200px;
  height: 150px;
}
.flag-bg__inner{
  top: 50px;
  left: 50px;
}
/********* タイトルの装飾　白抜きの枠 *******/

  /********* header *******/
	.header{
    height: 85px;
    padding-bottom: 29px;
    padding-right: 90px;
    padding-top: 20px;
	}
  .header__nav {
    display: flex;
    margin-right: 20px;
  }
  .header__nav ul {
    display: flex;
    list-style: none;
  }
  .header__nav li {
    margin-left: 1.3vw;
  }
  .header__nav a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header__nav a:hover{
    color:var(--secondary-b-500)
  }
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.7); /* 半透明 */
    backdrop-filter: blur(1px); /* 背景ぼかし（オプション） */
  }
	.header__nav-item{
	font-size:clamp(11px,1vw,16px);
	}
  .info-box {
    display: block;
  }
	.header__hamburger {
    width: 50px;
    height: 50px;
    top: 22px;
    right: 25px;
	}
	
	.header__logo{
		position: fixed;
        top: unset;
        left: -30px;
        width: 24%;
        min-width: 90px;
        max-width: 250px;
        height: auto;
	}
	.header__logo img{
		width: 100%;	
	}
	.header__nav-icon{
		background-repeat: no-repeat;
		background-position: top 15px center;
		background-size: 26px auto;
		display: block;
	    padding: 40px 10px 10px;
	}
	.header__nav-icon--first{
		background-image: url(img/common/icon_syoshinsya.png);
	}
	.header__nav-icon--about {
		background-image: url(img/common/icon_home.png);
	}
	.header__nav-icon--features{
		background-image: url(img/common/icon_kirari.png);
	}
	.header__nav-icon--facility{
		background-image: url(img/common/icon_connpass.png);
	}
	.header__nav-icon--medical {
		background-image: url(img/common/icon_injection.png);
	}
	.header__nav-icon--news{
		background-image: url(img/common/icon_megahon.png);
	}
	.header__nav-icon--recruit {
		background-image: url(img/common/icon_search.png);
	}
	.header__nav-icon--faq{
		background-image: url(img/common/icon_faq.png);
	}
	
	.header__text--small{
		width: 450px;
    top: 3px;
    left: clamp(125px, 20%, 215px);
	}
	.header__hamburger img{
	    margin-top: 0;
	}

/********* フロントページ *******/

	.top-info__deco-01{
		width: clamp(50px, 10%, 180px);
	  position: absolute;
	  top: 527px;
	  left: -56px;	
	}
	.top-info__deco-02{
		position: absolute;
    width: 15%;
    right: 0;
    bottom: 0;	
	}
	/** フロントページ メインビジュアル **/
	.main-visual__catchcopy-pc{
    margin-top: 25vh;
    z-index: 3;
    display: block;
    margin: 0 auto;
    padding-top: 200px;
    height: clamp(600px, 80vh, 750px);
	}
	.main-visual__movie-pc{
		width: 100%;
	  height: 100%;
	  object-fit: cover; /* 画像が縦横比を保ちながら領域を埋める */
	  object-position: center;
		position: absolute;
	  right: 0;
	}
	.main-visual__pc{
		 width: 100%;
	  height: 100vh; /* ビューポートの高さいっぱいに */
	  overflow: hidden; /* はみ出た部分を隠す */
	  position: relative;
	}
	.top-info{
		padding-top: 10vw; 
		position: relative;
    padding-bottom: 10vw;
	}
	.top_r_w{
	  width: 10%;
	  position: absolute;
	  top: -16px;
	}
	.main-catch{
	  position: absolute;
	  z-index: 1;
	  height: clamp(660px, 90vh, 820px);
	  background-color: #fff;
		border-bottom-right-radius: 125px;
        width: clamp(125px, 10%, 160px);
	}
	
	/** フロントページ 診療時間 **/
  .schedule__inner,.news__inner{
    margin-top: 50px;
  }
  
	.info__schedule-container {
	  padding: 20px;
	}
	.info__schedule-table {
	  width: 100%;
	  border-collapse: collapse;
	  margin-bottom: 15px;
	}
  .info__schedule-table>td {
	  text-align: center;
	}
	.info__schedule-table th,
	.top-info__schedule-td {
	  text-align: center;
	  padding: 10px;
	  border-bottom: 1px solid #ffd700;
	}
	.info__schedule-header {
	  text-align: left;
	}
	.dot {
	  display: inline-block;
	  width: 12px;
	  height: 12px;
	  background-color: #88c6e5;
	  border-radius: 50%;
	}
	.note {
	  font-size: 0.9em;
	  color: #666;
	  margin: 10px 0 0 0;
	}
	th {
	  font-weight: normal;
	}
	.info__news>h2,.info__access>h2,.info__schedule>h2{
	text-align: left;
	}
	.clock_img{
	   transform: rotate(20.274deg);
        position: absolute;
        left: -30px;
        top: -62px;
        width: clamp(110px, 20%, 140px);
	}
	
	
	
	
	/** フロントページ ボトム画像 **/
	.top-info__img-01{
    top: clamp(-500px, -24vw, 0px);
    right: 0;
    width: clamp(470px, 50%, 1000px);
    margin: 0;
    left: auto;
	}
	/** フロントページ ごあいさつ **/
  .top-greeting{
		padding-top: 5vw;
  }
	.greeting__bg{
    top: 256px;
    left: -19%;
     width: 125%
}
	.greeting__txt{
		padding-top: 220px;
    padding-left: 2vw;
    padding-right: 2vw;
		width: 70%;
		max-width: 800px;
		display: inline-block;
	}

	.greeting__img-dr{
    width: clamp(180px, 20vw, 270px);
    right: 10%;
    top: 18%;
	}
  .greeting__img-dr_b{
    top: 600px;
    bottom: unset;
  }

	.greeting__btn{
		width: 70%;
	}
	.greeting__img-star01{
		bottom: 40px;
		left: 40px;
	}
	.greeting__img-star01>img{
		width: 150px;
	}
	.greeting__img-star02{
    position: absolute;
   	bottom: 205px;
    right: 20px;
	}
	.greeting__img-star02>img{
		width: 190px;
	}
	/** フロントページ 特徴*/
	.top-feature{
    padding-bottom: clamp(50px, 30vw, 450px);
	}
	.card-f {
    flex: 0 0 calc(50% - 16px); /* 横幅を50%に（間隔を考慮） */
  	}
  .card-f.wide {
    flex: 0 0 calc(100% - 16px); /* 横幅100%で横長に */
  	}
  .card-f__main>h3{
    margin-bottom: 3%;
  }
  .card-f__main-w>h3{
    margin-bottom: 2%;
  }
	.card-f{
	padding-bottom: clamp(160px, 8vw, 220px);
	}
	.card-f__r-img{
    width: clamp(230px, 45%, 320px);
    bottom: -1%;
	}
	.card-f__l-img{
    width: clamp(230px, 45%, 320px);
    bottom: 2%;
    left: auto;
	  right: -35px;
	}

	.card-f__p-no-half{
    width: clamp(75px, 12%, 135px);
	}

  .feature-deco02__box{
    top:80px;
  }

	/** フロントページ 診療案内*/
	.top-medical{
	position: relative;
    z-index: 2;
    top: clamp(-300px,-15vw, -60px);
	}
	.top-medical__h2{
	margin-top: -13vw;
    position: relative;
    z-index: 2;
	}
	.top-medical__svg{
	display: flex;
    justify-content: center;
	}
  .top-medical__card {
     text-align: center;
    }

  .top-medical__card .image-wrapper {
    margin-bottom: 10px;
     }
	.top-medical__main {
  max-width: 1200px;
	margin: 0 auto;
	padding: 5%;
	padding-bottom: clamp(30px, 10%, 150px);
  padding-top: clamp(30px, 10%, 150px);
  }
  	.top-medical__grid {
    max-width: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .top-medical__card {
  	position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .top-medical__down{
    padding-top: 35px;
  }
  .top-medical__card .image-wrapper {
    grid-row: auto;
    margin-bottom: 20px;
  }

  .top-medical__text {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	height: 230px;
  }

  .top-medical__card img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
    .c-btn.text-r {
    text-align: center;
    margin-top: auto;
  }
	.top-medical h3{
	margin-bottom: 2vw;
	}
	.notice-box__wide{
	max-width: clamp(670px, 80%, 1000px);
	}
  .footer-logo__img{
      width: clamp(115px, 40vw, 240px);
  }
  .footer__inner{
      max-width: 1340px;
      margin: 0 auto;
  }
  .footer__footprints-img{
      width: clamp(220px, 25vw, 330px);
  }
  .footer-logo__text{
      padding-left: 220px;
  }
  .footer__main{
      padding: 5% 7% 5% 7%;
  }
  .button-chunk{
      width: 100%;
      margin: 0 auto;
	padding-bottom: 2vw;
  }
  .button-phone {
      width: clamp(175px, 55%, 280px);
  }
   .button-frame {
     padding: 10px 1vw;
      display: inline-block;
 }
 .button-frame__phone-icon{
	width: 45px;
      height: 45px;
 }
 .button-frame__circle {
      width: 45px;
      height: 45px;
	font-size: 14px;
 		padding: 8px;
	line-height: 13px;
 }
 .g-map{
 height: 500px;
 }
 
  /********* 下層ページ共通部分*******/
  
	.p-top{
	padding-bottom: 0vw;
    padding-top: clamp(8px, 6vw, 45px);
	}
	
	.p-top__main-img{
		 height: auto;
		 object-position: center;
	}
	.p-top__localNav button{
	 	min-width: 120px;
		 padding: 6px 19px;
    	font-size: clamp(10px, 1.3vw, 13px);
	}
	.p-top__localNav{
		gap: 15px;
    bottom: -6vw;
	}
	.p-top__deco-img{
	 	left: clamp(60px, 7vw, 300px);
		bottom: -10px;
		right: unset;
	}
	.p-top__h2{
		margin-top: clamp(-750px, -36vw, -290px);
		z-index: 2;
		left: clamp(30px, 15vw, 300px);
        width: clamp(185px, 25vw, 250px);
        height: clamp(185px, 25vw, 250px);
	}
	.breadcrumb{
	   left: 20px;
		bottom:-150px;
	}
	.p-top__deco_bg{
	margin-top: -10vw;
	left:clamp(100px, 7%, 220px);

	}
	.circle-image{
	    width: clamp(100px, 14vw, 150px);
        height: clamp(100px, 14vw, 150px);
	}
/****　ネクストページ ****/
.nextPage{
  height: 500px;
}
.nextPage__overlay{
  padding: clamp(20px, 3%, 30px) clamp(170px, 15%, 220px);
  height: 50%;
}
.nextPage__overlay>h2{
  text-align: left;
}
.nextPage__overlay>p{
  padding-top: 1vw;
}
.nextPage__overlay>.c-btn{
  padding-top: 1vw;
} 
.nextPage__deco-01{
  width: 100px;
  top: 20px;
  left: 20px;
}
.nextPage__deco-02 {
  width: 100px;
  bottom: 25px;
  right: 20px;
}

/****　feature *****/


/*
.photo-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 600px;
	  max-width: 1300px;
    text-align: center;
    margin: 0 auto;
  }
  .photo {
    width: 100%;
  }
  .decoration {
    width: 60px;
    height: 60px;
  }
  */


.corner-decoration.c-top-left {
    top: -20px;
    left: -20px;;
  }
  
.corner-decoration.c-bottom-right {
    bottom: 80px;
    right: 25px;
  } 

 .corner-decoration svg {
    width: 100px;
  }


/****　フォトギャラリー　*****/

  /* 写真ごとの微調整 */


  /* デコレーション要素の配置   */

  
/****　感染対策　*****/
    .starList_sub {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
  
    .section-description {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .infection-control{
        margin:clamp(20px,5vw,30px);
      }
	

/****持ち物*****/
    .snowflake1 {
      top: 14%;
      right: -10%;
      width: 200px;
    }

/****　診察・検査の流れ ****/
  
    .flow__pillar {
      display: block;
      position: absolute;
      left: 55%;
      top: 330px;
      height: 100%;
      margin-top: -45px;
    }
  
    .flow__items {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 20rem;
    }
  
    .flow__item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin-top: -120px;
    }
  
    .flow__item:nth-child(even) {
      flex-direction: row-reverse;
    }
  
    .flow__content {
      width: calc(50% - 2rem);
    }
  
    .flow__connector {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
  
    .connector-img{
        width: 60px;
    }
    .flow__image img {
      top: -110px;
      right: 0;
      height: auto;
      width: clamp(220px, 50%, 250px);
    }
/****　私達について　*****/
.about-info{
  margin-bottom: unset;
}

.about-info__img_l{
  width: 75%;
  margin: 0 auto;
  display: block;
}
.about-info__img_r{
  width: 60%;
  margin-top:unset;
  margin-right: unset;
}
.about-info__img_b{
  width: 100%;
  bottom: 260px;
  right: unset;
  right: 0;
  left: 0;
  transform: unset;
}
/****　選ばれる理由　*****/
.reason {
  padding-bottom: 20vw;
}
.reason__inner{
  padding-top: 10vw;
}
.reason-card{
  width: 90%;
  max-width: 1200px;
}
.reason__point{
  width: 130px;
}
.reason__pic-b{
  width: clamp(220px, 22vw, 400px);
  max-width: unset;
}
.reason__deco-l{
  width: clamp(130px, 11vw, 190px);
}
.reason__deco-{
  width: 200px;
}
.about-info__map{
  width: 90%;
}
/*選ばれる理由 PCレイアウト1*/
.reason-card__l-1{
  margin: 0 auto;
}
.reason-card__l-1 > .reason-card__inner{
  padding: 70px clamp(70px, 7vw, 100px);
}
.l-reason_1 > .l-reason__point{
  position: absolute;
  top: 50px;
  left: 95px;
}
.reason-point__l-1{
  top: 90px;
  left: -70px;
}

.reason-point__l-1 > .reason__deco-l{
  bottom: -100px;
  left: -50px;
}
.reason-card__inner>p{
  width: 85%;
}

.reason-bottomPic__l-1> .reason__deco-r{
  width: clamp(150px, 15vw, 210px);
  position: absolute;
  bottom: 160px;
  right: 90px;
}
.reason-bottomPic__l-1>.reason__pic-b{
  bottom: -70px
}

/*選ばれる理由 PCレイアウト2*/
.reason-card__l-2{
  margin: 0 0 0 auto;
}
.reason-card__l-2 > .reason-card__inner{
  padding: 70px 20px 70px clamp(140px, 17vw, 330px);
}

.reason-point__l-2>.reason__point{
  position: absolute;
  left: 60px;
  top: -18px;
}
.reason-point__l-2>.reason__deco-l {
  top: 50px;
  left: -140px;
}

.reason-bottomPic__l-2>.reason__pic-b{
  bottom: 110px;
  left: -90px;
}
.reason-bottomPic__l-2{
  position: relative;
  width: 100%;
}
.reason-bottomPic__l-2> .reason__deco-r{
  width: 220px;
  bottom: 120px;
  right: 30px;
}
/*選ばれる理由 PCレイアウト3*/
.l-reason_3{
  top: -75px;
  left: 45px;
}
.reason-card__l-3 > .reason-card__inner{
  padding-left: clamp(80px, 14%, 172px);
}
.reason-point__l-3>.reason__point {
  position: absolute;
  top: -25px;
  left: 50px;
}
.reason-point__l-3>.reason__deco-l {
  top: 100px;
  left: -60px;
}
.reason-bottomPic__l-3>.reason__pic-b{
  top: -90px;
  right: 0;
}
.reason-bottomPic__l-3>.reason__deco-r{
  width: clamp(120px, 13vw, 200px);
  right: 44px;
  bottom: 140px;
}

 /************************************
**医院紹介
************************************/

/*レイアウト1*/
.l-tour_1{
  padding-left: 8%;
}
.tour-textBox-bg {
  padding: clamp(50px, 15vw, 60px);
  max-width: 900px;
  padding-left: 7%;
}
.tour-textBox__header{
  top: -30px;
}
.tour-textBox__p{
  width: clamp(200px, 40vw, 660px);
}
.imgBox__01-1{
  width: clamp(280px, 32vw, 600px);
  left: -8vw;
  top: -4vw;
}
.imgBox__01-2{
  width: clamp(140px, 13vw, 210px);
  top: 7vw;
  left: 25vw;
}
.tour__img-main{
  width: 45%;
  top: 70px;
}
.tour-box{    
  padding-bottom: 20vw;
}
/*レイアウト2*/
.l-tour_2,.l-tour_3{
  padding-right: 8%;
}
.l-tour_3,.l-tour_4,.l-tour_5 {
  padding-bottom: 5vw;
}
.imgBox__02-1,.imgBox__03-2{
  width: clamp(240px, 30vw, 510px);
}
.imgBox__03-2{
  right: -8vw;
}
.imgBox__02{
  margin-top: 10vw;
}
.imgBox__02-2,.imgBox__03-1 {
  width: clamp(110px,13vw, 200px);
}
.imgBox__02-2{
  right: -3vw;
  top: 4vw;
}
.imgBox__03-1 {
  left: 5vw;
}
.imgBox__03{
  margin-top: 23vw;
}
.imgBox__02,.imgBox__03{
  height: 23vw;
}
.tour-noBg__img{
  width: unset;
  padding: 1vw;
}
/************************************
**FAQ
************************************/
.faq-icon {
  width: 50px;
  height: 50px;
}

/************************************
**お知らせ
************************************/
.p-news{
  display: grid;
  grid-template-columns: 80% 20%;
  padding: 0 4%;
  margin: 0 auto;
	max-width: calc(1480px + 10%);
  padding-top: 5vw;
}
.news-archive__h3{
  color: var(--primary-700) ;
}
.p-news__archive{
  padding: 0;
}
.fix-news{
  padding-left: 20px;
}
.fix-news>img{
  width: 25px;
  height: 25px;
}

}




 /************************************
**フロントページ
************************************/





/************************************
** 表示・非表示
************************************/
/* タブレット・デスクトップ用サイズ（768px以上） */
@media screen and (min-width: 768px){
/* PCで非表示*/
.viewSp{display: none;}}
/* スマホで非表示*/
@media screen and (max-width: 767px) {
.viewPc{display: none;}}






