@charset "utf-8";
/* CSS Document */

@media (max-width: 751px){
  html {
    scroll-padding-top: 150px;
  }
}

/* top画像　*/
.img-top-sp {
  display: none;
}
.top-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* 画像が画面全体を覆うように設定（必要に応じて調整） */
}
.img-top-pc {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像がコンテナに収まるように調整 */
}
.copy-wrapper {
  position: absolute;
   top: 15%;
  left: 5%;
  padding: 60px 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.3); /* 白半透明 */
  border-radius: 50%; /* 丸 */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px; /* 影 */
}
.copy-wrapper-2 {
  position: absolute;
  top: 40%;
  left: 15%;
  padding: 60px 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.3); /* 白半透明 */
  border-radius: 50%; /* 丸 */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px; /* 影 */
}
.copy-wrapper-3 {
  position: absolute;
  top: 70%;
  left: 5%;
  padding: 55px 30px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.3); /* 白半透明 */
  border-radius: 50%; /* 丸 */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px; /* 影 */
}
.catch-copy {
  color: #765110;
  margin:0;/*余計な隙間を除く*/
  padding: 0px;/*余計な隙間を除く*/
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}


/* スマホ版　TOP　*/

@media (min-width: 1000px) {
  .copy-wrapper {
  top: 15%;
  left: 15%;
  padding: 6% 2.5%;
}
.copy-wrapper-2 {
  top: 20%;
  left: 70%;
  padding: 6% 2.5%;
}
.copy-wrapper-3 {
   top: 55%;
  left: 15%;
  padding: 7% 4%;
}
.catch-copy {
  font-size: 40px;
}
}


@media (min-width: 1500px) {
  .copy-wrapper {
  top: 15%;
  left: 15%;
  padding: 6% 2.5%;
}
.copy-wrapper-2 {
  top: 20%;
  left: 70%;
  padding: 6% 2.5%;
}
.copy-wrapper-3 {
  top: 55%;
  left: 5%;
  padding: 8% 6%;
}
.catch-copy {
  font-size: 50px;
}
}

@media (max-width: 751px) {
  .img-top-pc {
  display: none;
}
  .img-top-sp {
  display: block;
  width: 100%;
  height: 100%; /* 親要素の高さに合わせる */
  object-fit: cover; /* 画像がコンテナにフィット */
}
  .top-wrapper {
  height: 70vh; /* スマホでも画面全体の高さを維持 */
  min-height: 500px; /* 必要に応じて最小の高さを設定 */
}
.copy-wrapper {
  position: absolute;
  top: 15%;
  left: 10%;
  padding: 6% 0.5%;
}
.copy-wrapper-2 {
  position: absolute;
  top: 25%;
  left: 70%;
  padding: 6% 0.5%;
}
.copy-wrapper-3 {
  position: absolute;
   top: 65%;
  left: 2%;
  padding: 8% 4%;
}
.catch-copy {
  font-size: 4.0vw;
}
}

@media (max-width: 450px) {
.copy-wrapper {
  position: absolute;
   top: 15%;
  left: 15%;
  padding: 8% 1.5%;
}
.copy-wrapper-2 {
  position: absolute;
  top: 25%;
  left: 70%;
  padding: 8% 1.5%;
}
.copy-wrapper-3 {
  position: absolute;
   top: 75%;
  left: 2%;
  padding: 10% 5%;
}
.catch-copy {
  font-size: 4.5vw;
}
}


/* 営業時間　*/
.time-table {
  margin: 100px auto;
  display: block;
  width: 100%;
  max-width: 750px; /* テーブルの最大幅を制限 */
  text-align: center;
 /* padding: 0 !important; 余白を強制的に0に */
  box-sizing: border-box;
}

.biz-day {
  display: table; /* tableに変更して安定化 */
  border-collapse: collapse;
  width: 100%; /* 親に合わせる */
  margin: 0 auto; /* 中央寄せを強制 */
}

.biz-day th, .biz-day td {
  font-size: 16px;
  padding: 20px 20px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #765110;
}

.biz-day th {
  font-weight: normal;
  border-top: 1px solid #765110;
}

.biz-day th.sat {
  color: #3db2da;
}

.biz-day th.sun, .biz-day th.holiday {
  color: #e66a6a;
}

/* スマホ対応 */
@media screen and (max-width: 751px) {
  .biz-day th, .biz-day td {
    padding: 10px 5px;
    font-size: 14px;
  }
  .time-table {
    margin: 100px 20px 100px;
    width: auto;
  }
}



/* お知らせ　*/
.section-news {
  margin: 200px auto;
  max-width: 750px;
}
.section-news h2 {
  font-size: 25px;
  color: #765110;
  padding: 0 0 20px 20px;
}
.news-list {
  list-style: none outside;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.news-list .news-item {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #765110;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .news-item:first-child {
  border-top: 1px solid #CCC;
}
.news-list .news-item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #999;
  padding: 0 100px 0 0px;
}
.news-list .news-item .title {
  margin: 0;
  width: 100%;
}
.section-news-a:hover {
  color: #F7AE1F;
  text-decoration: none;
}
.section-news-more:hover {
  color: #F7AE1F;
  text-decoration: none;
}
.news-list .news-item:hover .date,
.news-list .news-item:hover .title {
  color: #F7AE1F;
}
.section-news-a {
  text-decoration: none;
  display: flex;
  font-size: 20px;
  color: #383838
}
.section-news-more-link {
  padding-top: 20px;
  text-align: right;
}

.section-news-more {
  color:#765110;
}

@media screen and (max-width: 751px){
.section-news {
  margin: 150px 20px;
}
.news-list .news-item a{
  flex-wrap: wrap;
}
.news-list .news-item .date{
  min-width: 100px;
}
.news-list .news-item .title{
  margin-top: 10px;
}
}







/* 当院について　*/
.about h2 {
  font-size: 30px;
  padding: 0px 0 30px 0;
  color: #765110;
}
.about {
  line-height: 1.5;
}
.about p {
  padding-bottom: 100px;
  font-size: 18px;
}
.button {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 20px 30px;
  text-decoration: none;
  color: #765110;
  background: #F2CF8B;
  transition: .4s;
  border-radius: 1.5rem;
  margin: 0 auto 80px;
  font-size: 1.5rem;
}
.button-div {
  display: flex;
  justify-content: center;
}
.button:hover {
  background: #F7AE1F;
  color: #765110;
}

@media screen and (max-width: 751px){
.about {
  margin: 20px;
}
.about h2 {
  font-size: 25px;
}
}

/* 代表挨拶　*/
.greeting {
  background-color: #C8E7AE;
  box-sizing: border-box;
}
.greeting h2 {
  font-size: 30px;
  padding: 60px 70px 30px;
  color: #765110;
}
.greeting img {
  width: 400px;
  padding: 0px 0px 40px 70px; 
  box-sizing: border-box;
}
.greeting p {
  padding: 0px 70px 60px;
  line-height: 1.5;
  font-size: 18px;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-owner {
  display: flex;
  flex-direction: column; /* テキストを縦に並べる */
  justify-content: center; /* 縦方向の中央揃え */
  padding: 0 70px 0 0;
  margin: 0;
}
.about-owner h4,
.about-owner h3,
.about-owner h5 {
  margin: 5px 0; /* テキスト間の間隔を調整 */
  padding: 0;
  color: #765110;
  line-height: 1.5;
}
.about-owner h3 {
  font-size: 30px;
  padding-bottom: 0px;
  margin-bottom: 0;
  border-bottom: solid 2px #765110;
}
.about-owner h5 {
  font-size: 20px;
}

.career-wrapper-h3 {
  padding-bottom: 10px;
}
.career-list {
  display: flex;
  width: 100%;
}
.career-wrapper {
  padding: 0 70px 30px;
}
.greeting dt {
  width: 20%;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.greeting dd {
  width: 80%;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}


/* スマホ　版　代表挨拶　*/
@media (max-width: 751px) {
  .greeting {
    margin: 100px 20px 0; /* リンクがずれるので調整中　*/
  }
  .greeting h2 {
  font-size: 25px;
  padding: 60px 20px 10px;
  color: #765110;
  }
  .greeting p {
    padding: 40px 20px;
  }
  .about-flex {
    flex-direction: column; /* 縦に並べる */
    gap: 0px; /* 間隔を縮小 */
    padding: 0 20px;
  }
  .greeting img {
    width: 100%; /* フル幅 */
    padding: 0 0 0 0px; /* 左余白を縮小 */
  }
  .about-owner {
    margin: 0;
    padding: 0;
  }
  .career-wrapper {
  padding: 0 20px 30px;
  }
  .career-list {
  flex-direction: column; /* 縦に並べる */
  gap: 0px; /* 間隔を縮小 */
  }
  .greeting dt {
  width: 100%;
  margin-bottom: 0px;
}
  .greeting dd {
  width: 100%;
  }
  .career-list-br {
    display: none;
  }
}

/* 訪問マッサージとは　*/
.visit-massage {
  background-color: #F2CF8B;
  margin: 200px 0 200px;
}
.visit-massage h2 {
  font-size: 30px;
  padding: 40px 0px 30px;
  color: #765110;
  text-align: center;
}
.visit-massage h3 {
  font-size: 25px;
  padding: 40px 0px 20px;
  color: #765110;
  text-align: center;
}
.visit-massage-p {
  font-size: 18px;
  line-height: 1.5;
  padding: 0 1em 0;
  margin: 0 auto;
  max-width: 1000px;
}
.visit-massage h4 {
  font-size: 18px;
  color: #765110;
  padding: 10px 0;
  line-height: 1.5;
}
.detail-wrapper, .detail-wrapper-bed {
  background-color: #FDE8C0;
  padding: 30px;
  margin: 10px;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  text-align: center;
} 
.detail-wrapper-bed h4 {
  padding-top: 30px;
}
.detail {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.detail-img-bed {
  width: 110px;
  padding-top: 30px;
}
.detail-img-walk {
  width: 80px;
}
.detail-img-wheelchair {
  width: 100px;
}  
.detail-img-rehabilitation {
  width: 110px;
  padding: 20px 0 0 20px;
}

/* スマホ　版　訪問マッサージとは　*/
@media (max-width: 751px) {
  .visit-massage {
  margin: 200px 0 80px;
}
  .detail {
  flex-direction: column; /* 縦に並べる */
  gap: 0px; /* 間隔を縮小 */
  align-items: center; /* 中央寄せ */
  }
  .detail-wrapper, .detail-wrapper-bed {
    margin: 10px auto; 
  }
  .visit-massage h2 {
  font-size: 25px;
  padding: 40px 20px 30px;
  color: #765110;
}
.visit-massage h3 {
  font-size: 25px;
  padding: 40px 20px 20px;
  color: #765110;
}
.visit-massage-p {
  font-size: 18px;
  line-height: 1.5;
  padding: 0px 20px 0px;
}
}


/* 治療内容と効果 */
.effect {
  margin: 180px auto 200px;
}
.effect h2 {
  font-size: 30px;
  color: #765110;
  padding-bottom: 30px;
}
.effect h5 {
  font-size: 20px;
}
.effect p {
  padding: 20px 20px 20px 0;
  line-height: 1.5;
  font-size: 18px;
}
.effect-flex {
  display: flex;
  align-items: flex-start; /* 上辺揃えに変更 */
  margin-bottom: 50px; /* 各セクション間の余白 */
}
.effect-text {
  flex: 1; /* テキスト部分が残りのスペースを埋める */
}
.effect-img {
  width: 300px; /* 固定の幅 */
  height: 200px; /* 固定の高さ */
  margin-left: 20px; /* テキストと画像の間隔 */
}
.effect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* width, heightといっしょに使います */
  display: block; /* 余分な余白を防ぐ */
}

/* タブレット版　治療内容と効果 */
@media (max-width: 1024px) {
  .effect-flex {
    padding: 0 40px;
  }
  .effect h2 {
  padding-left: 40px;
}
}
/* スマホ版　治療内容と効果 */
@media (max-width: 751px) {
  .effect-img {
    width: 300px; /* 小さな画面では幅を小さく */
    height: 250px; /* 高さも調整 */
  }

  .effect {
    margin: 100px 20px; /* 画面が小さい場合のマージン */
  }

  .effect-flex {
    flex-direction: column; /* モバイルでは縦並びに */
    align-items: center; /* 中央揃え */
  }
  .effect h5 {
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}
  .effect p {
  padding: 0;
}
  .effect-img {
    margin-left: 0; /* テキストとの間隔をリセット */
    margin-top: 20px; /* テキストの下に余白 */
  }
  .effect h2 {
    font-size: 25px;
  }
}



/* 患者様の主な症状例 */
.example {
  margin: 180px auto 200px;
}
.example h2 {
  font-size: 30px;
  color: #765110;
  padding-bottom: 20px;
}
.example-p {
  padding: 20px 0 60px;
  font-size: 25px;
  text-align: center;
}
.example-wrapper {
  background-color: #C8E7AE;
  border-radius: 20px;
}
.example-flex {
  display: flex;
  font-size: 20px;
  line-height: 1.8;
  padding: 60px 80px;
  gap: 30px;
}

/* タブレット版　治療内容と効果 */
@media (max-width: 850px) {
  .example {
  margin: 180px 40px 200px;
}
  .effect-flex {
    padding: 0 40px;
  }
.example h2 {
  padding-left: 40px;
}
.example-flex {
  padding: 60px 30px;
  gap: 30px;
}
}

/* スマホ版　患者様の主な症状例 */
@media (max-width: 751px) {
  .example {
  margin: 180px 30px 200px;
}
  .example-flex {
  flex-direction: column;
  gap: 0px;
  padding: 40px 20px;
}
  .example-p {
  padding: 20px 0 40px;
  font-size: 18px;
  text-align: center;
}
  .example h2 {
  font-size: 25px;
  }
}

/* 料金について */
.price {
  background-color: #F2CF8B;
}
.price h2 {
  font-size: 30px;
  color: #765110;
  padding: 50px 70px 30px;
}
.price h3 {
  font-size: 20px;
  color: #765110;
  padding: 5px 70px 10px;
}
.table-expense,.table-insurance {
  margin: 0px 70px 30px;
}
.table-insurance-th, .table-insurance-td {
  border: dashed 1px #F2CF8B;/*破線 1px*/
}
.table-insurance-th {
  background-color: #FDE8C0;
  padding: 10px 10px 10px 10px;
  text-align: left;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
.table-insurance-td {
  background-color: white;
  padding: 10px;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
}
.table-expense-th, .table-expense-td {
  border: dashed 1px #98c573;/*破線 1px*/
}
.table-expense-th {
  background-color: #C8E7AE;
  padding: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
.table-expense-td {
  background-color: white;
  padding: 10px;
  text-align: left;
  line-height: 1.5;
  font-size: 18px;
  width: 53%;
}
.price p {
  padding: 0 70px 30px;
  line-height: 1.2;
  font-size: 18px;
}

/* スマホ版　料金について */
@media (max-width: 751px) {
  .price {
  margin: 0 20px 200px;
}
.price h2 {
  padding: 30px 0;
  text-align: center;
  font-size: 25px;
}
.price h3 {
  padding: 5px 10px 10px;
}
.table-expense,.table-insurance {
  margin: 0px 10px 30px;
}
.table-expense-td {
  padding: 10px;
}
.price p {
  padding: 0 10px 30px;
  line-height: 1.2;
  text-align: left;
}
}




/* 訪問エリア */
.area img {
  width: 400px;
  margin: 0px 0px 0 0;
}
.area h2 {
  font-size: 30px;
  color: #765110;
  padding: 50px 0px 60px;
  text-align: center;
  width: 100%;
}
.area-flex {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 30px 0 100px;
  align-items: center;
}
.area-visit {
  background-color: #C8E7AE;
  border-radius: 20px;
  margin-bottom: 50px;
}
.area-name {
  padding: 30px;
  margin: 10px 0 30px;
  font-size: 20px;
  line-height: 2.0;
}
.area-name-2 {
  padding: 30px;
  margin: 10px 0;
  font-size: 18px;
  line-height: 2.0;
}
.area a {
  margin: 60px auto 0;
}
.button-div {
  display: flex;
  justify-content: center;
}
.button:hover {
  background: #F7AE1F;
  color: #765110;
}

/* スマホ版　訪問エリア */
@media (max-width: 751px) {
  .area {
  margin: 80px 20px 100px;
}
  .area h2 {
   padding: 0px 0 20px;
   font-size: 25px;
  }
.area-flex {
    flex-direction: column; /* モバイルでは縦並びに */
    align-items: center; /* 中央揃え */
    gap: 20px;
    margin: 30px 0 0;
  }
  .area img {
    width: 250px;
    margin: 0 auto;
    padding-left: 20px;
  }
}

/* ご依頼のながれ */
.request {
  display: block;
  margin: 0 auto 100px;
}

.request h2 {
  font-size: 30px;
  color: #765110;
  padding: 50px 0px 30px;
  text-align: center;
}
/*フローチャート*/
.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; /* 中央寄せを強化 */
}
.flow {
  padding-left: 0;
  width: 100%; /* リスト全体の幅を親要素に合わせる */
  max-width: 800px; /* 任意：リストの最大幅を指定 */
}
.flow dd {
  font-size: 1.2rem;
  line-height: 1.3;
}
.flow > li {
  list-style-type: none;
  border: 2px solid #765110;
  padding: 20px;
  border-radius: 20px;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}
.flow > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #F7AE1F;
}
.flow > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #F7AE1F;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.flow > li .icon {
  color: #765110;
  margin-right: 0.5em;
}
.flow > li dl dd {
  margin: 0;
}

/* タブレット版　治療内容と効果 */
@media (max-width: 850px) {
  .flow_design {
  margin: 0px 40px 80px;
}
}

/* スマホ対応：幅が狭い場合の調整 */
@media screen and (max-width: 559px) {
  .flow_design {
    max-width: 100%; /* スマホでは幅をフルに */
    padding: 0 10px; /* 左右に余白を追加 */
  }

  .flow {
    max-width: 100%; /* リストの幅を親要素に合わせる */
  }

  .request h2 {
    padding: 50px 20px 20px; /* スマホではパディングを縮小 */
    font-size: 24px; /* フォントサイズを調整 */
  }
}

/* ↑フローチャート */


  /* 感染対策 */
.infection-control h2 {
  font-size: 30px;
  color: #765110;
  padding: 150px 0px 30px;
  text-align: center;
}
.infection-control p {
  font-size: 18px;
  padding: 20px;
  text-align: left;
	display: inline-block;
  line-height: 1.5;
}
.infection-control-p {
  margin: 0px auto;
	text-align: center;
	display: block;
}
.contents-div {
  text-align: center;
	display: block;
}
.contents {
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
}
.infection-control ul {
  list-style-type: none;
  text-align: center;
  width: 50%;
  max-width: 500px;
  min-width: 200px;
}
.infection-control li {
  font-size: 18px;
  text-align: left;
  padding: 5px 0;
  line-height: 1.5;
}
.infection-control h3 {
  text-align: center;
  font-size: 20px;
  margin: 30px 0 20px;
}
.contents-request {
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto 60px;
  font-size: 20px;
}
/* 感染対策フレーム　*/
.contents{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px #C8E7AE;
    border-bottom: solid 2px #C8E7AE;
}
.contents:before, .contents:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #C8E7AE;
}
.contents:before {left: 10px;}
.contents:after {right: 10px;}
.contents p {
    margin: 0; 
    padding: 0;
}
/* ↑感染対策フレーム　*/

/* タブレット版　感染症対策 */
@media (max-width: 850px) {
  .infection-control h2 {
  font-size: 30px;
  color: #765110;
  padding: 150px 0px 30px;
  text-align: center;
}
}
/* タブレット版　感染症対策 */
@media (max-width: 750px) {
  .infection-control {
  margin: 100px 0 0;
}
  .infection-control h2 {
  font-size: 25px;
  padding: 0px 0px 30px;
}
}

