@charset "utf-8";

/* index.html */

/* ====  concept  ==== */
.concept{
  margin-bottom: 160px;
}
h2 {
  vertical-align: middle;
  margin-bottom: 24px;
  font-size: 56px;
}
.concept .ja {
  font-size: 18px;
  position: relative;
  left: 32px;
}
.concept h2::before {
  content: "";
  width: 200px;
  height: 1px;
  margin-right: 46px;
  display: inline-block;
  background-color: #707070;
}
.concept .ja::after {
  content: "";
  position: absolute; /* コンテナ内で位置を指定 */
  top: 55%; /* コンテナの中央に配置 */
  left: -50px;
  width: 1px; /* 線の太さ */
  height: 26px; /* 線の長さ */
  background-color: #707070; /* 線の色 */
  transform: translate(-50%, -50%) rotate(45deg); /* スラッシュを傾ける */
  margin-left: 24px;
}
.concept-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.concept__img {
  width: 66.66%;
}
.concept__img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.concept__text-area {
  max-width: 710px;
  height: 415px;
  padding-left: 5.5%;
  padding-right: 5.5%;
  background: #FFFFFF;
  position: absolute;
  top: 17%;
  right: 0;
  z-index: 2;
}
.concept__title {
  padding-top: 55px;
  padding-bottom: 4px;
  margin-bottom: 34px;
  font-size: 26px;
  background-image: linear-gradient(270deg, #179591 0%, #B8F5F5 50%, #179591 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 5%;
}
.concept__text {
  font-size: 16px;
  padding-bottom: 24px; 
}
.concept__text p:first-child {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .concept {
    margin-bottom: 80px;
  }
  .concept .ja {
    font-size: 14px;
    left: -46px;
  }
  h2 {
    font-size: 36px;
  }
  .concept h2::before {
    width: 50px;
    margin-right: 13px;
  }
  .concept .ja::after {
    top: 45%; /* コンテナの中央に配置 */
    left: -25px;
    margin-left: 10px;
  }
  .concept-wrapper {
    margin-bottom: 120px;
    background-image: url(../img/top/concept-bg.png);
  }
  .concept__img {
    width: 100%;
    display: none;
  }
  .concept__img img {
    height: auto;
  }
  .concept__text-area {
    width: 100%;
    height: auto;
    margin: 5%;
    position: static;
  }
  .concept__title {
    font-size: 20px;
  }
}

/* ====  feature  ==== */
.feature {
  margin-bottom: 142px;
}
.feature h2 {
  text-align: right;
}
.feature .ja {
  vertical-align: middle;
  margin-left: 32px;
  font-size: 18px;
  position: relative;
}
.feature .ja::before {
  content: "";
  position: absolute; /* コンテナ内で位置を指定 */
  top: 58%; /* コンテナの中央に配置 */
  left: -50px;
  width: 1px; /* 線の太さ */
  height: 26px; /* 線の長さ */
  background-color: #707070; /* 線の色 */
  transform: translate(-50%, -50%) rotate(45deg); /* スラッシュを傾ける */
  margin-left: 24px;
}
.feature .ja::after {
  content: "";
  width: 200px;
  height: 1px;
  display: inline-block;
  background-color: #707070;
  margin-left: 22px;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 160px;
  position: relative;
}
.feature-txt-wrapper {
  width: 55.875%;
  height: 250px;
  padding: 0px 24px 24px;
  background-color: #FFFFFF;
  position: absolute;
  top: 180px;
  right: 0px;
}
.feature-txt{
  width: 100%;
  height: 100%;
}
.feature-item:nth-of-type(2) {
  flex-direction: row-reverse;
}
.feature-item:nth-of-type(2) .feature-txt-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between; /* 上下の余白を均等に確保 */
  position: absolute;
  left: 0px;
  width: 55.875%;
  box-sizing: border-box; /* パディング込みで高さ計算 */
}
.decoration {
  display: flex;
  justify-content: center;
  margin-top: -37px;
  position: relative;
}
.feature-txt .reason {
  font-size: 14px;
  margin-left: 14px;
}
.decoration .reason::after {
  content: "";
  position: absolute; /* コンテナ内で位置を指定 */
  top: 65%; /* コンテナの中央に配置 */
  left: 50%;
  width: 1px; /* 線の太さ */
  height: 58px; /* 線の長さ */
  background-color: #707070; /* 線の色 */
  transform: translate(-80%, -80%) rotate(40deg); /* スラッシュを傾ける */
}
.feature-txt .num {
  font-size: 48px;
  margin-left: 34px;
}
.feature-txt .feature-ttl {
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-txt .text {
  font-size: 16px;
  line-height: 1.8;
}
.feature__img {
  width: 60%;
}
.feature__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media screen and (max-width: 768px){
  .feature {
    margin-bottom: 80px;
  }
  .feature .ja {
    font-size: 14px;
  }
  .feature .ja::before {
    top: 58%; /* コンテナの中央に配置 */
    left: -32px;
    margin-left: 12px;
  }
  .feature .ja::after {
    width: 50px;
  }
  .feature-item {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    position: static;/* 追加 */
  }
  .feature-item:nth-of-type(2) {
    display: flex;
    flex-direction: column-reverse;
  }
  .feature-item:nth-of-type(2) .feature-txt-wrapper {
    position: static;
    width: 100%;
    height: auto;
  }
  .feature__img {
    width: 100%;
    margin-bottom: 24px;
  }
  .feature__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .feature-txt-wrapper {
    width: 100%;
    padding-bottom: 0px;
    position: static;/* 追加 */
  }
  .feature-txt{
    width: 100%;
    height: auto;
    margin: 0;
  }
  .decoration {
    margin-top: 0;
  }
  .feature-txt .text {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ====  info ==== */
.info {
  background-color: #F1F7F7;
}
.info .info-bg img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
h3 {
  font-size: 28px;
  color: #484848;
  text-align: center;
  margin-bottom: 56px;
}
/* ==== info tab切替 ==== */
.content_area {
  width: 100%;
  max-width: 800px;
  padding: 72px 40px;
  margin: 0 auto;
  background-color: #FFFFFF;
  position: relative;
  top: -90px;
  left: 0;
  z-index: 50;
}
.tab-container {
  display: flex;
  flex-wrap: wrap;
}
.tab-container {
  margin: 0 0 15px;
}
.tab {
  text-align:center;
  width: calc(100% / 2);
  padding: 10px;
  font-size: 16px;
  background-color: #F1F7F7;
  color: #707070;
  cursor: pointer;
}
.tab.active {
  background-color: #179591;
  color: #FFFFFF;
}
.content {
  display: none;
}
.content.show {
  display: block;
}
/* ==== info tab 終わり ==== */

.blog__item {
  padding: 8px;
  border-bottom: 1px solid #707070;
}
.blog__link {
  display: flex;
  align-items: flex-start;
}
.blog__sub {
  display: flex;
  align-items: flex-start;
  width: 133px;
  padding: 12px;
}
.blog__text {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 133px - 48px);
  padding: 12px;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
    margin-bottom: 32px;
  }
  /* ==== info tab切替 ==== */
  .content_area {
    width: 90%;
    max-width: 100%;
    padding: 47px 24px;
  }
  /* ==== info tab 終わり ==== */
  .blog__link {
    display: block;
  }
  .blog__sub {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 8px;
  }
  .blog__text {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 8px;
  }
}

/* ================================ about ページ start ======================================== */

/* ==== reservation  ==== */
.reservation {
  margin-bottom: 80px;
  position: relative;
}
.reservation h3 {
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
}
.reservation h3::before,
.reservation h3::after {
  content: '';
  width: 46%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  bottom: -9px;
  z-index: 11;
}
.reservation h3::before {
  left: 0;
}
.reservation h3::after {
  right: 0;
}
.arrow {
  width: 1px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 6px;
}
.arrow::before,
.arrow::after {
  content: "";
  width: 1px;
  height: 45px;
  border-radius: 9999px;
  background-color: #707070;
  transform-origin: 50% calc(100% - 0.5px);
  position: absolute;
  bottom: -46px;
  left: 51%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
.sample {
  background-color: #F3F7F9;
  display: grid;
  grid-template-columns: repeat(2,1fr); /*2列*/
  padding: 40px 108px;
}
.sample-item {
  display: flex;
  align-items: center; /* アイコンとテキストを縦方向中央揃え */
}
.sample__img {
  width: 20px;
  margin-right: 8px; /* 画像とテキストの間に余白を追加 */
}
.sample__p {
  font-size: 16px;
  line-height: 2.8;
}
.flow-content {
  background-color: #FFFFFF;
}
.flow-content .introduction {
  margin-bottom: 0;
}
.flow {
  display: flex;
}
.flow ul {
  width: 66%;
  padding-right: 63px;
}
.flow__list {
  margin-left: 24px;
  margin-bottom: 32px;
  position: relative;
  
}
.flow__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: '游ゴシック', 'Yu Gothic';
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #707070;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -25px;
  background-color: #fff;
  z-index: 2;
}

/* 縦のラインを追加 */
.flow__list::before {
  content: "";
  position: absolute;
  top: 36px; /* 数字の下からラインを開始 */
  left: -7px; /* 数字の中央に配置 */
  width: 1px;
  height: calc(100% + 16px); /* 調整可能な値。次の数字の中心まで伸ばす */
  background-color: #707070;
}

/* 最後の項目のラインを消す */
.flow__list:last-child::before {
  display: none;
}
.flow__p {
  margin-left: 37px;
  font-family: '游ゴシック', 'Yu Gothic';
  font-size: 17px;
  font-weight: bold;
  line-height: 1.588;
}
.flow__list p {
  margin-left: 37px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}
.flow__img  {
  width: 34%;
}
.flow__img img {
  margin-bottom: 105px;
}
@media screen and (max-width: 768px) {
  .reservation {
    margin-bottom: 40px;
  }
  .reservation h3 {
    font-size: 24px;
  }
  .reservation h3::before,
  .reservation h3::after {
    width: 45%;
  }
  .sample {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 60px 20px 20px;
    text-align: center;
    place-items: center;
  }
  .sample__img {
    margin-right: 8px; /* 画像とテキストの間に余白を追加 */
  }
  .flow {
    flex-direction: column-reverse;
  }
  .flow ul {
    width: 100%;
    padding-left: 20px;
  }
  .flow__img {
    width: 100%;
    height: auto;
  }
  .flow__img img {
    margin-bottom: 40px;
  }
  @media screen and (max-width: 500px) {
    .reservation h3::before,
    .reservation h3::after {
      width: 43%;
    }
  }
  @media screen and (max-width: 500px) {
    .reservation h3::before,
    .reservation h3::after {
      width: 43%;
    }
  }
  @media screen and (max-width: 500px) {
    .reservation h3::before,
    .reservation h3::after {
      width: 43%;
    }
  }
  @media screen and (max-width: 440px) {
    .reservation h3::before,
    .reservation h3::after {
      width: 42%;
    }
    .sample__p {
      font-size: 11px;
    }
  }
}

/* ==== guide ==== */

.guide-content {
  background-color: #F1F7F7;
  margin: 0 auto;
  padding-bottom: 80px;
}
.content-title {
  font-size: 28px;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 56px;
}
.guide-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px 5%;
}
.guide__list li {
  background-color: #FFFFFF;
  width: 330px;
  height: 250px;
  padding: 32px 24px 61px;
  position: relative;
}
.guide__list li:nth-child(5) {
  padding: 32px 24px 32px;
}
.guide__list .deco {
  font-size: 48px;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.guide__list .guide__span {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.guide__arrows {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 4.5px 0;
  border-radius: 9999px;
  background-color: #000000;
  position: absolute;
  right: 80px;
  bottom: 6px;
}
.guide__arrows::before,
.guide__arrows::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0.5px) 50%;
}
.guide__arrows::before {
  transform: rotate(40deg);
}
.guide__arrows::after {
  transform: rotate(-40deg);
}

.guide__list .guide__span span {
  font-size: 16px;
  line-height: 1; 
  display: inline-block;
}
.guide__list .list__txt {
  font-size: 28px;
  text-align: center;
  margin-bottom: 19px;
}
.guide__list .tel__img {
  margin-bottom: 32px;
}
.list__info {
  font-size: 13px;
}

@media screen and (max-width: 768px){
  .guide__list .tel__img {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 694px) {
  .guide__list li {
    background-color: #FFFFFF;
    width: 80%;
    height: auto;
  }
  .guide__list .guide__span span {
    font-size: 20px;
    line-height: 3;
  }
  .guide__arrows {
    width: 8%;
    right: 25%;
    bottom: 24px;
  }
  .guide__list__info {
    text-align: center;
  }
  .guide__list .tel__img {
    justify-content: center;
  }
}
@media screen and (max-width: 360px) {
  .guide-info {
    padding-left: 12px;
    padding-right: 12px;
  }
  .guide__list li {
    width: 300px;
    height: 228px;
    padding: 28px 15px;
  }
  /* .guide__arrows {
    right: 66px;
  }
  .guide__arrows::before,
  .guide__arrows::after  {
    right: -2px;
  } */
  .guide__list li:nth-child(5) {
    padding: 28px 21px 28px;
  }
  .tel__img a {
    font-size: 30px;
  }
}
/* ==== guide end ==== */
/* ============================== about ページ end ======================================== */

/* ================================= guide ページ　start ================================== */
.guide-top {
  margin-bottom: 90px;
}
.top-visual img img {
  max-width: 800px;
  height: 300px;
  object-fit: cover;
}
.top__p {
  width: 360px;
  height: 121px;
  display: flex;
  align-items: center; /* 垂直中央 */
  justify-content: center; /* 水平中央（必要なら） */
  margin-bottom: -24px;
  font-size: 28px;
  line-height: 1.6;
  background-color: #FFFFFF;
  position: relative;
  bottom: 60px;
  left: 30%;
}
.top-description {
  width: 63%;
  margin: 0 auto;
  padding-bottom: 60px;
  line-height: 2;
}
.icon-teeth {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}
.icon-teeth li {
  display: flex;
  align-items: center; /* 縦位置を揃える */
}

.icon-teeth img {
  min-width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 10px;
}
.icon-teeth a {
  display: inline-block;
  white-space: nowrap;
}
.arrow__a {
  position: relative;
  display: inline-block;
  width: 19.4px;
  height: 10.2px;
  top: 30px;
  right: 45%;
}
.arrow__a::before,
.arrow__a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 14px;
  border-radius: 9999px;
  background-color: #707070;
  transform-origin: 50% calc(100% - 0.5px);
}
.arrow__a::before {
  transform: rotate(45deg);
}
.arrow__a::after {
  transform: rotate(-45deg);
}
.icon-s {
  margin-right: 20px;
  position: relative;
}
.icon-s::before {
  content: "";
    position: absolute;
    bottom: -30px;
    left: 10px;
    width: 1px;
    height: 70px;
    background: #707070;
    transform: rotate(30deg);
}
.icon-teeth li:last-of-type .icon-s::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 200px;
  width: 1px;
  height: 70px;
  background: #707070;
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  .guide-top {
    margin-bottom: 90px;
  }
  .top-visual img img{
    width: 100%;
    height: auto;
  }
  .top__p {
    width: 100%;
    height: auto;
    flex-direction: column;
    font-size: 20px;
    position: static;
    margin-bottom: 16px;
  }
  .top-description {
    width: 90%;
    padding-bottom: 0px;
  }
  .icon-teeth {
    flex-direction: column; /* 縦並び */
    align-items: flex-start;
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .icon-teeth li {
    display: flex;
    padding-bottom: 20px;
  }
  .icon-teeth img {
    margin-left: 10px;
    margin-right: 50px;
  }
  .icon-teeth li:nth-of-type(3) img {
    padding-left: 0px;
    margin-left: 3px;
    margin-right: 43px;
  }
  .icon-s,
  .arrow__a {
    display: none;
  }
}
/* ホワイトニング */
.introduction .description__img {
  max-width: 800px;
  height: 240px;
  object-fit: cover;
  margin-bottom: 48px;
}
.sub-title {
  color: #179591;
  font-size: 20px;
  margin-bottom: 37px;
  text-align: left;
  border-bottom: 4px solid #ebebef;
  position: relative;
  display: block;
}
.sub-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #179591;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.description-txt {
  margin-bottom: 24px;
}
.description-sub {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .introduction .description__img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .sub-title {
    font-size: 15px;
  }
}
/* implant */
.implant__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 28px;
}
.implant__list li {
  width: calc((100% - 28px * 2) / 3); /* 3列の幅を計算 */
  display: flex;
  flex-direction: column;
}
.implant__ttl {
  font-size: 17px;
}
.image-placeholder {
  width: 100%;
  height: 168px;
  background: #EEEEEE;
  margin-bottom: 16px;
}
.implant__p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .implant__list {
    flex-direction: column;
  }
  .implant__list li {
    width: 100%;
  }
}

/* ================================= guide ページ　end ==================================== */
/* ================================= price ページ　start ================================== */

.insurance__table {
  border-collapse: collapse;
  border: 1px solid #707070;
  width: 100%;
  margin-bottom: 47px;
}
.insurance__table td,
.insurance__table th {
  border: 1px solid #707070;
  padding: 8px;
}
.insurance__table td:nth-last-child(1), 
.insurance__table td:nth-last-child(3) {
  width: 26%;
}
.highlight {
  background-color: #F5F5F5;
}
/* 左から1番目と2番目のセルは左揃え・垂直方向センター */
.insurance__table td:nth-child(1),
.insurance__table td:nth-child(2) {
  text-align: left;
  vertical-align: middle;
}
/* 左から3番目のセルは上下左右センター */
.insurance__table td:last-child {
  text-align: center;
  vertical-align: middle;
}
/* 虫歯治療のテーブル */
.cavity__table {
  border-collapse: collapse;
  border: 1px solid #707070;
  width: 100%;
  margin-bottom: 47px;
}
.cavity__table td,
.cavity__table th {
  border: 1px solid #707070;
  padding: 8px;
}
/* 左から1番目のセルは左揃え・垂直方向センター */
.cavity__table td:nth-child(1) {
  text-align: left;
  vertical-align: middle;
}
/* 左から1番目以外のセルを上下左右センター */
.cavity__table td:not(.highlight) {
  text-align: center;
  vertical-align: middle;
}
/* implant table */
.implant__table  {
  border-collapse: collapse;
  border: 1px solid #707070;
  width: 100%;
  margin-bottom: 47px;
}
.implant__table td,
.implant__table th {
  border: 1px solid #707070;
  padding: 8px;
}
.implant__table td:not(.highlight) {
  text-align: center;
  vertical-align: middle;
}
/* ================================= price ページ　end ==================================== */

/* ================================= staff ページ　start ================================== */
.director-introduction {
  display: flex;
  gap: 32px;
}
.director__img {
  width: 37.5%;
  height: 380px;
  background: #F5F5F5;
}
.director__info {
  width: 58%;
}
.director__name {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
}
.director__span {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #179591;
}
.en-name {
  font-size: 14px;
}
h3.director__name::after{
  content: "";
  display: inline-block;
  width: 380px;
  height: 4px;
  background: #179591;
  position: absolute;
  bottom: -10px;
  left: -70px;
}
.director__info p:first-of-type {
  margin-bottom: 24px;
}
.director__info p {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .director-introduction {
    flex-direction: column;
  }
  .director__img {
    width: 100%;
    height: 200px;
  }
  .director__info {
    width: 100%;
  }
  .director__name {
    display: block;
    text-align: left;
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
  }
  .director__span {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #179591;
  }
  .en-name {
    display: block;
    font-size: 14px;
  }
  h3.director__name::after{
    width: 100%;
    left: 0px;
  }
}

.staff__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.staff__item {
  width: 46%;
  margin-bottom: 56px;
  border-top: 3px solid #179591;
  position: relative;
}
.staff__item::after {
  content: "";
  width: 118px;
  height: 118px;
  background: #F1F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -20;
  }

.staff__info {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.staff__name {
  display: flex;
  flex-direction: column; /* 縦並び */
  justify-content: center; /* 内部の要素を中央寄せ */
  font-size: 18px;
  height: 92px; /* 画像の高さと同じにする */
  padding-left: 16px;
}
.staff__span {
  display: block;
  text-align: left;
  font-size: 13px;
  color: #179591;
}
.staff__img {
  width: 140px;
  height: 92px;
  background: #F5F5F5;
}
.staff__description {
  padding: 0 12px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .staff__list {
    flex-direction: column;
  }
  .staff__item {
    width: 100%;
    margin-bottom: 0;
  }
  .staff__item:not(:last-child) {
    margin-bottom: 56px;
  }
  .staff__info {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .staff__name {
    padding-right: 24px;
    font-size: 16px;
  }
  .staff__img {
    margin-right: 16px;
  }
}
/* ================================= staff ページ　end ==================================== */

/* ================================= access ページ　start ================================== */
.access__info {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
.access__info-left {
  width: 45%;
  color: #707070;
  font-size: 18px;
}
.access__info-right {
  width: 45%;
  box-sizing: border-box;
}
.clinic__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  border: 0.5px solid #707070;
}
.clinic__list dt {
  width: 27%;
  padding: 5px;
  border: 0.5px solid #707070;
}
.clinic__list dd {
  width: 73%;
  padding: 5px;
  border: 0.5px solid #707070;
}
.access__map iframe {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .access__info {
    flex-direction: column;
  }
  .access__info-left {
    width: 100%;
    font-size: 16px;
  }
  .access__info-right {
    width: 100%;
  }
  .clinic__list {
    font-size: 12px;
  }
  .clinic__list dt {
    width: 27%;
  }
  .clinic__list dd {
    width: 73%;
  }
}
.clinic-info {
  background-color: #F1F7F7;
}
.clinic-info__area {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
  gap: 50px;
}
.clinic-info__address {
  text-align: center;
  font-size: 14px;
}
.clinic-info__location {
  margin-bottom: 8.5px;
}
.clinic-info__name {
  font-size: 24px;
  margin-top: 8px;
}
.clinic-info__access {
  display: flex;
  gap: 50px;
}
.clinic-info__access-item {
  text-align: center;
  position: relative;
}
.clinic-info__access-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50px / 2);
  width: 1px;
  height: 100%;
  background: #707070;
}
.clinic-info__access-item:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-50px / 2);
  width: 1px;
  min-height: 100%;
  background: #707070;
}
.clinic-info__icon {
  max-width: 24px;
  margin: 0 auto;
  font-size: 14px;
}
.train-map span {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .clinic-info__area {
    flex-direction: column;
  }
  .clinic-info__address {
    text-align: left;
  }
  /* .clinic-info__access {
    flex-direction: column;
  } */
  .clinic-info__access-item::before {
    display: none;
  }
  .clinic-info__access-item:last-child::after {
    display: none;
  }
}
.contact {
  background: #FFFFFF;
  padding: 80px 0;
}
.contact-inner {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  border: 1px solid #707070;
}
.contact-item {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 50%;
  padding: 42px 0;
}
.contact-item:first-child {
  border-right: 1px solid #707070;
}
.contact-item__p {
  width: 140px;
  flex-wrap: wrap;
  text-align: left;
  margin-right: 40px;
  font-size: 14px;
}
.contact-item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-item-icon {
  width: 40px;
  height: auto;
}
.contact-item-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-item-text {
  font-size: 34px;
}
.contact-item-text:hover {
  text-decoration: underline;
}
.contact-item-time {
  flex-direction: column;
  font-size: 12px;
}
@media screen and (max-width: 1000px) {
  .contact {
    padding: 40px;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .contact-item__p {
    width: 300px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 700px) {
  .contact-item-info {
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
  }
  .contact-item-text {
    text-align: left;
    font-size: 20px;
  }
  .contact-inner {
    flex-direction: column;
    margin: 20px;
  }
  .contact-item:first-child {
    border-right: none;
    border-bottom: 1px solid #707070;
  }
  .br-pc {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .br-pc {
    display: block;
  }
}

/* ================================= access ページ　end ================================== */














