@charset "utf-8";

/* 共通 */
*{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  color: #333333;
}

section{
  width: 100%;
  background-color: #FFF;
}

section>div{
  max-width: 960px;
  width: 94%;
  margin: auto;
}

/* ヘッダー */
header{
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #D8F3FF;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
}

.header_inner{
  max-width: 1200px;
  width: 94%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: auto;
}

.header_clinic-name{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.75vw, 24px);
}

.header_number{
  font-family: "Roboto", sans-serif;;
  font-weight: 500;
  font-size: clamp(20px, 2.75vw, 24px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header_number::before{
  content: "";
  display: inline-block;
  background-image: url(icon-phone.svg);
  height: clamp(20px, 2.55vw, 24px);
  width: clamp(20px, 2.55vw, 24px);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 959px){
  header{
    height: 65px;
  }
}

@media screen and (max-width: 767px){
  header{
    height: 100%;
  }
  
  .header_inner{
    flex-wrap: wrap;
    row-gap: 12px;
    padding: 16px 0;
  }
}

/* トップ */
.top{
  padding: 48px 0;
}

h1{
  background-color: #6DB5E7;
  font-size: clamp(20px, 2.75vw, 24px);
  color: #FFF;
  font-weight: 600;
  padding: 10px 16px;
  margin-bottom: clamp(14px, 2vw, 18px);
}

@media screen and (max-width: 959px) {
  .top{
    padding: 36px 0;
  }
}

@media screen and (max-width: 767px){
  h1 br{
    display: none;
  }
}

/* リスト */
.list{
  box-sizing: border-box;
  padding-left: clamp(20px, 2.75vw, 24px);
}

.list ul{
  list-style: disc;
  list-style-position: outside;
  font-size: clamp(14px, 2vw, 18px);
  text-align: justify;
}

.list ul li::marker{
  color: #4A92C9;
}

/* 連携機関 */
.renkeikikan{
  padding: 48px 0;
  margin-bottom: 48px;
}

.renkeikikan h2{
  font-size: clamp(16px, 2.25vw, 20px);
  padding-bottom: 12px;
}

.renkeikikan table{
  font-size: clamp(16px, 2.25vw, 20px);
}

.renkeikikan tbody{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.renkeikikan tr{
  display: flex;
  align-items: center;
}

.renkeikikan th{
  display: block;
  background-color: #4A92C9;
  color: #FFF;
  padding: 4px 10px;
  width: 6em;
  min-width: 6em;
  flex-shrink: 0;
  white-space: normal;
}

.renkeikikan td{
  font-weight: 500;
  padding-left: 20px;
}

@media screen and (max-width: 959px) {
  .renkeikikan{
    padding: 36px 0;
  }
}

@media screen and (max-width: 767px){
  .renkeikikan{
    padding: 24px 0;
  }
}

/* 施設基準 */
.fs-item,.sr h2{
  font-size: clamp(16px, 2.25vw, 20px);
  color: #4A92C9;
  font-weight: 600;
}

.fs-detail,.sr-detail{
  font-size: clamp(14px, 2vw, 18px);
  padding-bottom: clamp(14px, 2vw, 18px);
  text-align: justify;
}

@media screen and (max-width: 959px) {

}

@media screen and (max-width: 767px){
  
}

/* SR */
.sr-title{
  font-size: clamp(15px, 2.125vw, 19px);
  font-weight: 500;
}

.sr-table{
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: clamp(14px, 2vw, 18px);
}

.sr-table th{
  background-color: #4A92C9;
  color: #FFF;
  font-weight: 400;
  padding: 4px 16px;
  text-align: left;
  border: #FFF 2px solid;
}

.sr-table td{
  padding: 4px 16px;
}

/* フッター */
p.footer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
  padding: 36px 0 60px 0;
}
