/**************************************************************
  カラーバリエーションなどの変数
**************************************************************/
:root {
  --main-color: #007fa8;
  --accent-color: #f3969a;
  --bg-light: #f6fbff;
  --bg-cream: #fefcf7;
  --text-color: #333;
  --heading-color: #222;
  --border-color: #ddd;
}
/* Flexコンテナ */
.flex {
  display: flex;
  gap: 1em;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gridコンテナ（例） */
.grid {
  display: grid;
  gap: 1em;
  /* grid-template-columnsなど、必要に応じて設定 */
}

/* テキストアライン */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* 隠し要素 */
.hidden {
  display: none !important;
}

/* マージンユーティリティ例 */
.mt-1 { margin-top: 1em; }
.mb-1 { margin-bottom: 1em; }
.mt-2 { margin-top: 2em; }
.mb-2 { margin-bottom: 2em; }

/* ...etc. 必要に応じて追加 */

/**************************************************************
  医師紹介ページ（.child.doctor）
  - 先ほどのコード＋その他装飾用の骨組み
**************************************************************/
.child.doctor {
  color: #555555;
  margin-top: 25px;
}
.child .white_wave01 {
  margin-top: -3px;
}
.child .white_wave02 {
  margin-top: -1px;
}
.child .white_wave svg {
  vertical-align: bottom;
  height: auto;
}
/* ========== Section01: トップエリア ========== */
.section01.child_top {
  background-color: #fff;
  padding: 45px 0;
  margin-top: -1px;
}
.section01.child_top .ttl_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}
.section01.child_top .ttl_area .icon_box img {
  width: 50px;
  height: auto;
  display: block;
}
.section01.child_top .ttl_area .ttl {
  color: var(--blue);
  text-shadow: 1px 1px 2px #e5e5e5;
  }
.section01.child_top .ex {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 3em;
  color: var(--blue);
  font-weight: 600;
  font-size: clamp(0.938rem, 0.76rem + 0.68vw, 1.438rem);
}

/* 2名の医師概要ボックス */
.doctor .child_top .area {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-evenly;
}
.doctor .child_top .box {
  padding: 2em;
  width: 27%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #555555;
}
.doctor .child_top .box .name_area {
  margin-bottom: 1em;
}
.doctor .child_top .box .name_area .name {
  font-weight: bold;
  margin-top: 0.5em;
}
.doctor .child_top .box .name_area .posttype {
  font-weight: bold;
  text-align: center;
}
.doctor .child_top .box .img_box img {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ========== Section02: 各医師の詳細エリア ========== */
.section02.doctor_01 {
  margin-top: 100px;
}
.section02.doctor_01 .area02 {
  position: relative;
}
.section02.doctor_01 .area .img_box {
  position: relative;
  z-index: 4;
  width: 30%;
}
.section02.doctor_01 .area .ttl_area,
.section02.doctor_02 .area .ttl_area {
  width: 80%;
}
.section02.doctor_01 .area .ttl_area .name {
  font-weight: 600;
}
.section02.doctor_01 .area01 {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-direction: column;
  position: relative;
  height: 680px;
}
.section02.doctor_01 .area01 .box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.section02.doctor_01 .area01 .box .lead_area {
  position: absolute;
  z-index: 2;
  left: 21%;
  border-radius: 14% 23% 17% 17% / 32% 39% 29% 25%;
  background-color: var(--beige);
  padding: 3rem 11rem;
  box-sizing: border-box;
}
/* リード文 */
.section02.doctor_01 .area .lead_area .ttl {
  font-weight: bold;
  margin-bottom: 1em;
}
.section02.doctor_01 .area .lead_area .ex {
  line-height: 45px;
}
/* 詳細経歴や資格など */
.section02.doctor_01 .area .ex_area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2em;
  background-color: #fff;
  border-radius: 10% 15% 12% 17% / 11% 11% 10% 10%;
  padding: 3rem 5rem;
}
.section02.doctor_01 .area .ex_area .txt_box {
  padding: 1rem 0;
  text-align: left;
}
.section02.doctor_01 .area .ex_area .txt_box .ttl {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.section02.doctor_01 .area .ex_area .txt_box .lead {
  list-style: none;
  margin: 0;
}
.section02.doctor_01 .area .ex_area .txt_box .lead li {
  margin-bottom: .7rem;
  line-height: 1.6;
  text-decoration: none !important;
}
.section02.doctor_01 .area .icon_box {
  position: absolute;
  bottom: 12%;
  right: 9%;
  height: auto;
}
.section02.doctor_01 .area .icon_box img {
  width: 100%;
  height: auto;
}

/* doctor02 */
.section02.doctor_02 {
  padding-top: 50px;
  background-color: #fff;
}
.section02.doctor_02 .area02 {
  position: relative;
  width: 100%;
}
.section02.doctor_02 .area .img_box {
  position: relative;
  z-index: 4;
  width: 30%;
}
.section02.doctor_02 .area .ttl_area .name {
  font-weight: 600;
}
.section02.doctor_02 .area01 {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-direction: column;
  position: relative;
  height: 680px;
}
.section02.doctor_02 .area01 .box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.section02.doctor_02 .area01 .box .lead_area {
  position: absolute;
  z-index: 2;
  left: 21%;
  border-radius: 14% 23% 17% 17% / 32% 39% 29% 25%;
  background-color: var(--beige);
  padding: 3rem 11rem;
  box-sizing: border-box;
}
/* リード文 */
.section02.doctor_02 .area .lead_area .ttl {
  font-weight: bold;
  margin-bottom: 1em;
}
.section02.doctor_02 .area .lead_area .ex {
  line-height: 45px;
}
/* 詳細経歴や資格など */
.section02.doctor_02 .area .ex_area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -5rem;
  background-color: var(--bg2);
  border-radius: 10% 15% 12% 17% / 11% 11% 10% 10%;
  padding: 4rem 5rem;
  width: 85%;
}
.section02.doctor_02 .area .ex_area .txt_box {
  padding: 1rem 0;
  text-align: left;
}
.section02.doctor_02 .area .ex_area .txt_box .ttl {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.section02.doctor_02 .area .ex_area .txt_box .lead {
  list-style: none;
  text-indent: -1.3rem;
  padding-left: 1rem;
}
.section02.doctor_02 .area .ex_area .txt_box .lead li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.section02.doctor_02 .modal_btn {
  cursor: pointer;
}
.section02.doctor_02 .area .icon_box {
  position: absolute;
  bottom: 25%;
  right: 21%;
  height: auto;
}
.section02.doctor_02 .area .icon_box img {
  width: 100%;
  height: auto;
}
.modal-open {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0%;
  right: 12%;
  font-weight: bold;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%,-50%);
  color: #555555;
  background-color: var(--beige);
  display: inline-block;
  padding: 2rem 4rem;
  border-radius: 53% 46% 40% 60% / 62% 76% 42% 58%;
  box-shadow: var(--shadow01);
  transition: .3s ease-in-out;
}
.modal-open:hover {
  box-shadow: none;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index: 10;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  background-color: var(--bg2);
  border-radius: 10% 15% 12% 17% / 11% 11% 10% 10%;
  padding: 5rem;
  position: relative;
  z-index: 998;
}
.modal-content .other_award,
.modal-content .ttl {
  font-weight: bold;
}
.modal-content ul {
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}
.modal-content ul li {
  margin-bottom: .7rem;
  line-height: 1.6;
  text-decoration: none !important;
}
/**************************************************************
  エリア＆ボックス：.area / .box
**************************************************************/
.infomation .section01.child_top .area {
  display: flex;
  flex-direction: column;
}
.infomation .section01.child_top .area .box {
  border: none;
}
.infomation .section01.child_top .area .box:first-child {
  width: 100%;
  align-items: flex-start;
}
.infomation .section01.child_top .area .box:first-child .lead {
  text-align: left;
  line-height: 65px;
  font-weight: 600;
}
.infomation .section01.child_top .area .box:last-child {
  margin-top: -1%;
  width: auto;
  height: auto;
  margin-left: auto;
  align-items: flex-end;
}
/* ======================================================
   child_environment セクション（院内環境）
======================================================== */
.child_environment {
  margin-top: 100px;
  margin-bottom: 100px;
}
.child_environment .contents {
  background-color: #fff;
  padding: 3rem;
  border-radius: 5% 7% 8% 6% / 14% 15% 19% 22%;
}
.child_environment .area .box:last-child {
  display: flex;
  justify-content: flex-end;
  margin-top: 0%;
}
.child_environment .area .box .lead {
  margin-top: 50px;
  font-weight: bold;
}
/* ======================================================
   child_daycare セクション（デイケア）
======================================================== */
.child_daycare {
  background-color: #fff;
}
.child_daycare .contents .sub {
  margin-top: 50px;
}
.child_daycare .ex {
  margin-top: 25px;
  font-weight: 600;
}
.child_daycare .area {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
}
.child_daycare .area .box {
  width: 48%;
}

.child_daycare .area .box .txt_box {
  margin-top: 25px;
}
.child_daycare .area .box .txt_box .ttl {
  font-weight: 600;
}
.child_daycare .box_ttl {
  margin-bottom: 30px;
  font-weight: 600;
}
.child_daycare .area .box .img_box {
  display: flex;
  justify-content: flex-start;
}
/* ======================================================
   child_visit セクション（訪問看護）
======================================================== */
.child_visit {
  margin-top: 100px;
}
.child_visit .contents {
  background-color: #fff;
  padding: 3rem;
  border-radius: 5% 7% 8% 6% / 14% 15% 19% 22%;
}
.child_visit .ex {
  margin-top: 50px;
}
.child_visit .link_btn {
  margin-left: auto;
  display: table;
}
.firsttime .child_top .area {
  position: relative;
}
.firsttime .child_top .area .box:first-child {
  width: 100%;
}
.firsttime .child_top .area .box:last-child {
  position: absolute;
  top: 9%;
  right: 0;
}
.firsttime .child_top .area .box:last-child .img_box img {
  display: block;
  margin: inherit;
  margin-left: auto;
}
.firsttime .child_top .area .box .img_box img {
  width: 70%;
  margin-left: auto;
}
.firsttime .child_top .area .box .ex_area .txt_box {
  margin-top: 50px;
}
.firsttime .child_top .area .box .ex_area .txt_box .ttl {
  font-weight: 600;
}
.firsttime .child_top .area .box .ex_area .txt_box .lead {
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}
/* ======================================================
   セクション: child_shinryou （診療費用）
======================================================== */
.firsttime .child_shinryou {
  margin-top: 100px;
  background: #fff;
  border-radius: 10% 15% 12% 17% / 11% 11% 10% 10%;
  width: 95%;
  margin: 100px auto;
  padding: 7rem 2rem;
  position: relative;
}
.firsttime .child_shinryou .img_box {
  position: absolute;
  right: 0;
  top: 5%;
}
.firsttime .child_shinryou .img_box img {
  width: 80%;
  align-items: center;
  display: block;
  margin: inherit;
  margin-left: auto;
}
.firsttime .child_shinryou .area .box .section_ttl {
  margin-top: 40px;
}
.firsttime .child_shinryou .area .box .ex_area .txt_box {
  margin-top: 50px;
}
.firsttime .child_shinryou .area .box .ex_area .txt_box .ttl {
  font-weight: 600;
}
.firsttime .child_shinryou .area .box .ex_area .txt_box .lead {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
}
.firsttime .child_shinryou .area .box .ex_area .txt_box:last-child .lead {
  text-indent: 0;
  padding-left: 0;
}
.firsttime .child_shinryou .area .box .link_btn {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.dx .child_top .ex_area .txt_box .ex {
  font-weight: 400;
  margin-top: 35px;
  text-indent: -1em;
  padding-left: 1em;
}
.dx .ex_area .ttl_box .ttl {
  font-weight: 600;
}
/* ======================================================
   セクション: child_customer （ご来院の皆様へ）
======================================================== */
.dx .child_customer {
  margin-top: 100px;
}
.dx .child_customer .area .box {
  margin-top: 50px;
}
.dx .child_customer .area .box .txt_box {
  margin-top: 45px;
}
.dx .child_customer .area .box .txt_box .caption {
  margin-top: 45px;
  font-weight: 600;
}
.dx .child_customer .area .box .txt_box .ex {
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}
/* ======================================================
   セクション: child_adress（アクセス）
========================================================= */
/* --------------------------------------------------
   セクション：診療時間再掲
-----------------------------------------------------*/
.access table {
  border-collapse: collapse;
  text-align: center;
  margin: 20px auto;
  border: 1px solid var(--blue);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}
table tr:not(:last-child) td {
  border-bottom: 1px solid var(--blue);
}
.access table th, table td {
  font-size: 30px;
  color: #555555;
}
.access table th, .access table td {
  padding: 10px 20px;
}
.access p.ex {
  text-align: center;
}
.access .name {
  text-align: center;
  font-weight: 600;
}
/* 上段（共通スケジュールテーブル） */
.access .area .up {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
/* 下段（医師別スケジュールテーブル） */
.access .area .down {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 30px;
}
.access .child_adress {
  margin-top: 100px;
}
.access .child_adress .contents {
  background-color: #fff;
  padding: 6rem 4rem;
  border-radius: 5% 7% 8% 6% / 14% 15% 19% 22%;
}
/* アクセスエリア */
.section01.child_adress .area {
  display: flex;
  justify-content: space-around;
}
.access .child_adress .area .box .ex_area .txt_box {
  margin-top: 50px;
}
.access .child_adress .area .box .ex_area .txt_box .ex {
  padding-left: 0rem;
  text-indent: 0rem;
}
.access .top_schedule .ex {
  color: #555555;
  font-weight: 500;
}
/* ======================================================
  NEws一覧まとめ子ペ―ジ用
========================================================= */
.dx .child_top .area .box {
  border-bottom: 1px solid #555555;
  padding-bottom: 5px;
  margin-bottom: 2rem;
}
.news_summary {
  background-color: var(--beige2);
  border-radius: 30px;
  width: 80%;
  margin: -2% auto 0;
  padding: 3rem 0;
  margin-top: 40px;
}
.pagenation_area {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.pagenation_area .page-numbers {
  display: flex;
  justify-content: center;
  margin-right: 1rem;
}
/* --------------------------------------------------
 記事詳細
-----------------------------------------------------*/
.article_detail {
  padding: 60px 0;
  background-color: #fff;
}
.article_detail .bg_area {
  border-radius: 5px;
  background-color: var(--beige2);
}
.article_detail .link_area {
  padding-bottom: 60px;
}
.article_detail .post_area {
  padding: 80px 0;
  width: 80%;
  max-width: 1200px;
  margin: 80px auto 0;
}
/* 投稿日・カテゴリ、タイトル部分 */
.article_detail .post_area .ttl_area {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.article_detail .post_area .box:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.article_detail .post_area .box:last-child {
  font-weight: 600;
}
/* 日付・カテゴリ */
.article_detail .main_area {
  line-height: 50px;
  margin-top: 50px;
}
.article_detail .cate p a {
  display: inline-block;
  padding: 5px 1rem;
  margin-right: 5px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  background-color: var(--blue);
}
.article_detail .cate p a.blog {
}
.article_detail .cate p a.information {
}
.article_detail .cate p a.topics {
}
/**************************************************************
  レスポンシブ
**************************************************************/
@media screen and (max-width:1600px) {
  .section02.doctor_01 .area01 .box .lead_area {
    padding: 3rem 9rem;
  }
  .child .white_wave01 {
    margin-top: -4px;
  }
  .section02.doctor_02 .area01 .box .lead_area {
    padding: 3rem 9rem;
  }
  .firsttime .child_shinryou .img_box img {
    width: 60%;
  }
  .section02.doctor_01 .area01 {
    height: 630px;
  }
}
@media screen and (max-width: 800px) {
  .section01.child_top {
    margin-top: -1px;
  }
  .doctor .child_top .box {
    width: 45%;
  }
  .section02.doctor_02 {
    margin-top: -1px;
  }
  .section02.doctor_01 .area01 .box .lead_area {
    padding: 2rem 3rem;
    width: 100%;
    left: 0;
  }
  .doctor .p30 {
    font-size: 20px;
    line-height: 50px;
  }
  .section02.doctor_01 .area .lead_area .ex, .section02.doctor_02 .area .lead_area .ex {
    line-height: 35px;
  }
  .modal-open {
    right: 0%;
    bottom: 0;
    transform: none;
  }
  .section02.doctor_02 .area .icon_box img {
    width: 65%;
  }
  .section02.doctor_01 .area01 {
    gap: 0;
    height: 460px;
  }
  .section02.doctor_01 .area .ex_area {
    gap: 0;
    padding: 2rem 2rem;
}
  .section02.doctor_01 .area .ex_area .txt_box {
    padding: 1rem 0 0;
  }
  .section02.doctor_02 .area01 .box .lead_area {
    left: 0%;
    top: 34%;
    padding: 2rem 3rem;
  }
  .section02.doctor_02 .area01 {
    gap: 0rem;
    height: 485px;
  }
  .section02.doctor_02 .area .ex_area {
    gap: 0em;
    padding: 2rem 2rem;
    width: 100%;
  }
  .modal-content {
    border-radius: 30px;
    padding: 2rem;
  }
  .doctor .child_top .area .box .img_box img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
  .section02.doctor_02 .area .icon_box {
    right: 0%;
  }
  /* shiryouannnai */
  .infomation .section01.child_top .area .box:first-child .lead {
    line-height: 35px;
  }
  .infomation .area .box .img_box img {
    width: 60%;
    display: flex;
    justify-content: flex-end;
  }
  .infomation .child_top .area .box .img_box img {
    width: 60%;
    display: block;
    margin-left: auto;
  }
  .child_environment .contents {
    border-radius: 22% 24% 25% 19% / 17% 15% 17% 22%;
  }
  .child_environment {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .child_environment .area .box .lead {
    margin-top: 30px;
  }
  .child_environment .area .box .txt_box .lead {
    line-height: 2.2;
  }
  .child_environment .area .box:last-child {
    margin-top: 4%;
  }
  .child_environment .area .box:last-child img {
    display: block;
    margin-left: auto;
  }
  .child_daycare .ex {
    margin-top: 25px;
  }
  .box_ttl {
    padding: 10px 2rem;
  }
  .child_daycare .area {
    flex-flow: column;
  }
  .child_daycare .area .box .txt_box {
    margin-top: 20px;
  }
  .child_daycare .area .box {
    width: 100%;
  }
  .child_daycare .area .box .img_box img {
    display: block;
    margin-left: auto;
  }
  .child_daycare .area02 .box:nth-child(1) {
    order: 2;
  }
  .child_daycare .area02 .box:nth-child(2) {
    order: 1;
  }
  .child_daycare .area02 .ex {
    line-height: 2.2;
  }
  .child_daycare .p30 {
    line-height: 45px;
  }
  .child_visit {
    margin-top: 55px;
  }
  /* firsttime */
  .section01.child_top .ttl_area {
    margin-bottom: 2em;
  }
  .firsttime .child_top .area .box {
    width: 100%;
  }
  .firsttime .child_top .area {
    flex-direction: column;
  }
  .firsttime .child_top .area .box .ex_area .txt_box {
    margin-top: 25px;
  }
  .firsttime  .p30 {
    line-height: 45px;
  }
  .firsttime .child_top .area .box:last-child {
    margin-top: 35px;
  }
  .firsttime .child_shinryou {
    margin-top: 45px;
    padding: 3rem 1rem;
  }
  .firsttime .child_shinryou .area .box .ex_area .txt_box {
    margin-top: 35px;
  }
  .firsttime .child_shinryou .img_box {
    right: 3%;
    top: 2%;
  }
  .firsttime .child_shinryou .box:last-child img {
    width: 40%;
    display: block;
    margin: inherit;
    margin-left: auto;
  }
  .firsttime .child_top .area .box .img_box img {
    width: 50%;
    margin-left: auto;
  }
  .firsttime .child_top .area .box .ex_area .txt_box .lead {
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
  /* access */
  .access .area .down {
    flex-direction: column;
  }
  .access .child_top .area .box .ex_area .up .schedule.top_schedule {
    margin-top: 25px;
  }
  .access table th, table td {
    font-size: 20px;
  }
  .access .child_adress {
    margin-top: 45px;
  }
  .access .child_adress .contents {
    padding: 3rem 2rem;
    border-radius: 10% 10% 10% 10% / 6% 8% 9% 8%;
  }
  .section01.child_adress .area {
    flex-direction: column;
  }
  .access .child_adress .area .box:last-child {
    display: none;
  }
  .access .map_area {
    margin-top: 25px;
  }
  .access .child_top .area .box .ex_area .down .box .schedule.top_schedule {
    margin-top: 10px;
  }
  /* news */
  .news_summary {
    padding: 1rem 0;
    width: 100%;
  }
  .news_summary .area {
    gap: 8px;
    width: 95%;
    padding: 2rem 8px;
  }
  .news_summary .date a, .news_summary .category a, .news_summary .ttl a {
    font-size: 16px;
  }
  /* dx */
  .dx .child_top .ex_area .txt_box .lead {
    line-height: 2.2;
  }
  .dx .child_top .ex_area .txt_box .ex {
    line-height: 35px;
  }
}
@media screen and (max-width:480px) {
  .section01.child_top {
    padding: 30px 0;
    margin-top: -1px;
  }
  .section01.child_top .ttl_area {
    margin-bottom: 2em;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .section01.child_top .ttl_area .icon_box img {
    width: 35px;
  }
  .child .white_wave02 {
    margin-top: -16px;
  }
  .box_ttl {
    font-size: 20px;
    padding: 18px 8px;
  }
  .box_ttl h4 {
    font-weight: 600;
  }
  .section01.child_top .ex {
    margin-bottom: 1rem;
  }
  /* doctor */
  .section02.doctor_01 .area01 .box {
    gap: 1rem;
  }
  .section02.doctor_01 .area01 .box .lead_area {
    padding: 1rem 1rem;
    border-radius: 15px;
    bottom: 0;
    position: relative;
  }
  .section02.doctor_02 .area01 .box .lead_area {
    padding: 1rem 1rem;
    border-radius: 15px;
    bottom: 0;
    position: relative;
    top: auto;
  }
  .section02.doctor_01 .area01 {
    height: auto;
  }
  .section02.doctor_02 .area01 {
    height: auto;
  }
  .doctor .p30 {
    line-height: 38px;
  }
  .section02.doctor_01 {
    margin-top: 40px;
  }
  .section02.doctor_01 .area .ex_area {
    padding: 1rem 1rem;
    border-radius: 15px;
  }
  .section02.doctor_01 .area .ex_area .txt_box {
    padding: 0rem 0 0;
  }
  .section02.doctor_01 .area .icon_box {
    bottom: 3%;
    right: 2%;
    opacity: .2;
  }
  .section02.doctor_02 .area01 .box {
    gap: 1rem;
  }
  .section02.doctor_02 .area01 .box .name_box, .section02.doctor_01 .area01 .box .name_box {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section02.doctor_02 .area .ex_area {
    padding: 1rem 1rem 75px;
    border-radius: .7rem;
    margin-top: 8px;
  }
  .section02.doctor_02 .area .icon_box {
    bottom: 19%;
    right: 0%;
    opacity: .2;
    transform: none;
  }
  .section02.doctor_02 .area .icon_box img {
    width: 54%;
    margin-left: auto;
  }
  .modal-open {
    right: 4%;
    bottom: 1%;
    transform: none;
    padding: 16px 22px;
  }
  .modal-container {
    padding: 20px 0px;
  }
  .top_greeding .modal-content {
    border-radius: 15px;
    padding: 1rem .7rem;
  }
  .modal-close {
    top: -20px;
    right: -17px;
    z-index: 999;
  }
  .section02.doctor_02 .area .ex_area .txt_box .lead {
    text-indent: -1rem;
    padding-left: 1rem;
  }
  .doctor .child_top .area {
    flex-direction: column;
    gap: 10px;
  }
  .doctor .child_top .box {
    width: 100%;
    border-bottom: none;
    padding: 1rem;
  }
  .modal-content ul {
    text-indent: -1rem;
    padding-left: 1rem;
  }
  .section02.doctor_01 .area02 {
    margin-top: 8px;
  }
  .doctor .child_top .box .name_area .name {
    margin-top: 0;
    line-height: normal;
  }
  .doctor .child_top .box .name_area .posttype {
    line-height: normal;
  }
  .section02.doctor_01 .area01 .sp4, .section02.doctor_02 .area01 .sp4 {
    flex-direction: column;
  }
  .section02.doctor_02 {
    padding-bottom: 2rem;
  }
  /* info */
  .infomation .section01.child_top .area .box:first-child .lead {
    line-height: 30px;
    font-size: 15px;
  }
  .information .child_top .area .box .img_box img {
    margin-top: 16px;
  }
  .child_environment .contents {
    border-radius: 18px;
    padding: 1rem 10px;
  }
  .child_environment .area .box .lead {
    margin-top: 25px;
  }
  .child_environment .area .box .txt_box .lead {
    line-height: 1.8;
    font-size: 14px;
  }
  .child_daycare .contents .sub {
    margin-top: 25px;
  }
  .child_daycare .ex {
    margin-top: 6px;
  }
  .child_daycare .area {
    margin-top: 25px;
  }
  .child_daycare .p30 {
    line-height: 40px;
    font-size: 22px;
  }
  .child.infomation .contents {
    padding: 1rem 10px;
    border-radius: 15px;
  }
  .child_visit {
    margin-top: 30px;
  }
  .child_visit .ex {
    margin-top: 25px;
  }
  .infomation .section01.child_top .area {
    gap: 1rem;
  }
  .child_daycare .area02 .ex {
    line-height: 2.2;
    margin-top: 1.4rem;
  }
  .child_daycare {
    margin-top: -1px;
  }
  /* accsses */
  .access .child_top .area .box .ex_area .up .schedule.top_schedule table thead tr th {
    font-size: 15px;
    padding: 6px 0;
  }
  .access .child_top .area .box .ex_area .up .schedule.top_schedule table tbody tr td {
    padding: 16px 0;
  }
  .access .child_top .area .box .ex_area .down .box .schedule.top_schedule {
    margin-top: 5px;
  }
  .access .child_top .area .box .ex_area .down {
    margin-top: 10px;
  }
  .access table th, table td {
    font-size: 15px;
    padding: 8px 0px;
  }
  table tr th:first-child, table tr td:first-child {
    width: 80px;
    padding: 10px 0;
  }
  .access .child_adress .contents {
    padding: 1rem 1rem;
    border-radius: 15px;
  }
  .access .child_adress .area .box .ex_area .txt_box .ex {
    text-indent: 0em;
    padding-left: 0em;
  }
  .access .child_adress .area .box .ex_area .txt_box {
    margin-top: 25px;
  }
  .access table {
    margin: 10px auto 0px;
  }
  /* news_summary */
  .news_summary {
    padding: 1rem 0;
    margin: 0 10px;
    width: 95%;
  }
  .news_summary .area .box {
    align-items: flex-start;
    flex-direction: column;
  }
  .news_summary .area {
    gap: 8px;
    width: 95%;
    padding: 1rem 0px;
  }
  .news .news_summary .area {
    gap: 8px;
    width: 85%;
    padding: 2rem 8px;
  }
  /* firsttime */
  .firsttime .child_shinryou {
    margin-top: 25px;
    padding: 0rem 0rem 2rem;
    border-radius: 15px;
    margin-bottom: 25px;
  }
  .firsttime .child_shinryou .img_box {
    top: 9%;
  }
  .firsttime .child_shinryou .area .box .ex_area {
    margin-top: 4rem;
  }
  .firsttime .child_top .area .box:last-child {
    position: absolute;
    top: 5%;
    right: 0;
  }
  .firsttime .child_top .area .box:last-child .img_box {
    display: flex;
    justify-content: flex-end;
  }
  .firsttime .child_top .area .box .ex_area {
    margin-top: 60px;
  }
  /* dx */
  .dx .child_customer .area .box .txt_box .ex {
    text-indent: -1rem;
    padding-left: 1rem;
    margin-top: 8px;
  }
  .dx .child_customer {
    margin-top: 45px;
  }
  .dx .child_customer .area .box {
    margin-top: 30px;
  }
  .dx .child_customer .area .box .txt_box {
    margin-top: 25px;
  }
  .dx .child_top .ex_area .txt_box .ex {
    margin-top: 20px;
  }
  /* news_single */
  .article_detail .post_area {
    padding: 35px 0;
    width: 90%;
    margin: 25px auto 0;
  }
  .article_detail .main_area {
    line-height: 35px;
    margin-top: 20px;
  }
}