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

  section名

---------------------------------*/
#mainvisual {
  margin: auto;
  max-width: 192rem;
  width: 95%;
}
#mainvisual .wrap {}
#mainvisual .wrap div {
  height: 63rem;
  position: relative;
}
#mainvisual .wrap div picture img {
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainvisual .wrap div ._logo {
  background: #fff;
  padding: 1.2rem 2rem;
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 55rem;
  height: fit-content;
}
#mainvisual .wrap div ._logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#mainvisual .wrap div h2 {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
}
#mainvisual .wrap div h2 p {
  background: #fff;
  font-size: 2.7rem;
  font-weight: 800;
  padding: .1rem 2rem;
  width: fit-content;
}
#mainvisual .wrap div h2 strong {
  font-size: 1.4em;
  margin-left: .5em;
}
#mainvisual .wrap div h2 span {
  background: #fff;
  color: var(--co);
  display: block;
  font-size: 1.4rem;
  margin-top: .7rem;
  padding: .1rem 2rem;
  width: fit-content;
}
#mainvisual .wrap div._mito h2 p {
  color: var(--co-mito);
}
#mainvisual .wrap div._tsuchiura h2 p {
  color: var(--co-tsuchiura);
}
@media screen and (max-width: 1024px) {
  #mainvisual .wrap div {
    height: 45rem;
  }
  #mainvisual .wrap div h2 {
    bottom: 3rem;
    left: 0;
    width: 95%;
  }
  #mainvisual .wrap div h2 p {
    font-size: 1.8rem;
  }
  #mainvisual .wrap div h2 strong {}
  #mainvisual .wrap div h2 span {
    font-size: 1.2rem;
  }
  #mainvisual .wrap div ._logo {
    width: 45rem;
  }
}
@media screen and (max-width: 896px) {
  #mainvisual .wrap div ._logo {
    width: 35rem;
  }
  #mainvisual .wrap div h2 strong {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  #mainvisual .wrap div {
    height: 30rem;
    margin: 1rem 0;
  }
  #mainvisual .wrap div h2 p {
    font-size: 1.4rem;
    padding: .1rem 1rem;
  }
  #mainvisual .wrap div h2 strong {
    display: inline;
    font-size: 1.2em;
    margin-left: .5em;
  }
  #mainvisual .wrap div h2 span {
    font-size: 1rem;
    padding: .1rem 1rem;
  }
  #mainvisual .wrap div ._logo {
    width: 30rem;
    bottom: 1rem;
    left: 2rem;
  }
}
/*---------------------------------

  common

---------------------------------*/
section {
  padding: 7rem 0 10rem;
}
section .wrap {
  margin: auto;
  max-width: 120rem;
  width: 90%;
}
section h2 {
  color: var(--co-mito);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .16rem;
}
section h2._title {
  padding-left: 3.5rem;
  position: relative;
}
section h2._title::before {
  content: '';
  background: linear-gradient(90deg, #F4A54D 0%, #F4A54D 50%, #F9D5A8 50%, #F9D5A8 100%);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2rem;
}
.tsuchiura section h2._title {
  color: var(--co-tsuchiura);
}
.tsuchiura section h2._title::before {
  background: linear-gradient(90deg, #70c674 0%, #70c674 50%, #B1E0B3 50%, #B1E0B3 100%);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  section {
    padding: 4rem 0 5rem;
  }
  section h2 {
    font-size: 2.5rem;
  }
}
/*---------------------------------

  about

---------------------------------*/
.aboutBlock {}
.aboutBlock .wrap {
  display: flex;
  justify-content: space-between;
}
.aboutBlock .wrap .infoTxt {}
.aboutBlock .wrap .infoTxt h2._title {}
.aboutBlock .wrap .infoTxt h3 {
  font-size: 1.2em;
  margin: 1rem 0;
}
.aboutBlock .wrap .infoTxt dl {}
.aboutBlock .wrap .infoTxt dl div {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: .6rem 0;
}
.aboutBlock .wrap .infoTxt dl div dt {
  background: var(--co-mito);
  border-radius: .5rem;
  color: #fff;
  flex: 0 0 10rem;
  padding: .5rem;
  text-align: center;
}
.tsuchiura .aboutBlock .wrap .infoTxt dl div dt {
  background: var(--co-tsuchiura);
}
.aboutBlock .wrap .infoTxt dl div dd {
  font-size: 1.1em;
  font-weight: 500;
}
.aboutBlock .wrap .reserveBox {
  background: var(--bg-color);
  border-radius: 1rem;
  flex-basis: 50%;
  padding: 5rem 3rem;
}
.aboutBlock .wrap .reserveBox dl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.aboutBlock .wrap .reserveBox dl dt {
  margin-right: 1.5em;
}
.aboutBlock .wrap .reserveBox dl dd {
  font-feature-settings: "palt";
}
.aboutBlock .wrap .reserveBox dl dd p {
  margin: .2rem 0;
}
.aboutBlock .wrap .reserveBox dl dd p span {
  font-size: 1.7em;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  .aboutBlock .wrap {
    display: block;
  }
  .aboutBlock .wrap .infoTxt {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .aboutBlock .wrap .reserveBox {
    padding: 2rem 3rem;
    text-align: center;
  }
  .aboutBlock .wrap .reserveBox dl {
    display: block;
    font-size: 1.8rem;
  }
  .aboutBlock .wrap .reserveBox dl dt {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
/*---------------------------------
  --診療内容
---------------------------------*/
.aboutBlock .medicalTable {
  margin: 7rem auto 0;
  max-width: 90rem;
  width: 90%;
}
.aboutBlock .medicalTable table {
  border: 1px solid #ccc;
  width: 100%;
  vertical-align: bottom;
}
.aboutBlock .medicalTable table thead {
  border-bottom: 1px solid #ccc;
  font-size: 2.5rem;
}
.aboutBlock .medicalTable table thead th {
  padding: 1rem 2rem;
}
.aboutBlock .medicalTable table thead th:first-child {
  letter-spacing: .2em;
  padding: 1rem;
  text-align: left;
}
.aboutBlock .medicalTable table tbody tr {
  border-bottom: 1px solid #ccc;
}
.aboutBlock .medicalTable table tbody th {
  font-size: 1.1em;
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}
.aboutBlock .medicalTable table tbody td {
  color: var(--co-mito);
  font-size: 2.4rem;
  padding: 1rem 2rem;
  text-align: center;
}
.aboutBlock .medicalTable table tbody td span {
  color: #ccc;
}
.tsuchiura .aboutBlock .medicalTable table tbody td {
  color: var(--co-tsuchiura);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .aboutBlock .medicalTable {
    overflow-y: scroll;
  }
  .aboutBlock .medicalTable table {
    width: 150%;
  }
  .aboutBlock .medicalTable table thead {
    font-size: 2rem;
  }
}
/*---------------------------------

  設備・施設

---------------------------------*/
.facilityBlock {
  background: var(--bg-color);
  padding: 10rem 0;
}
.facilityBlock h2 {
  margin-bottom: 5rem;
}
.facilityBlock .facility-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.facilityBlock .facility-wrap ._coBox {
  flex-basis: calc(100% / 3 - 2rem);
}
.facilityBlock .facility-wrap ._coBox figure {}
.facilityBlock .facility-wrap ._coBox figure img {
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.facilityBlock .facility-wrap ._coBox figure figcaption {
  margin-top: .5rem;
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .facilityBlock {
    padding: 5rem 0;
  }
  .facilityBlock h2 {
    margin-bottom: 3rem;
  }
  .facilityBlock .facility-wrap {
    gap: 2rem;
  }
  .facilityBlock .facility-wrap ._coBox {
    flex-basis: calc(100% / 2 - 1rem);
  }
}
/*---------------------------------

  アクセス

---------------------------------*/
.accsessBlock {
  padding: 10rem 0;
}
.accsessBlock h2 {
  margin-bottom: 5rem;
}
.accsessBlock .txt {
  font-size: 1.2em;
  font-weight: 500;
  font-feature-settings: "palt";
}
.accsessBlock .txt dl {
  display: flex;
  margin: 1.5rem 0;
}
.accsessBlock .txt dl dt {
  flex: 0 0 7em;
  display: flex;
  justify-content: space-between;
  margin-right: 3em;
}
.accsessBlock .txt dl dd {}
.accsessBlock .txt dl dd p {
  text-indent: -1.4em;
  margin-left: 1.4em;
  margin-bottom: 1rem;
}
.accsessBlock .map {
  margin-top: 5rem;
}
.accsessBlock .map iframe {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .accsessBlock {
    padding: 5rem 0;
  }
  .accsessBlock h2 {
    margin-bottom: 3rem;
  }
  .accsessBlock .txt dl {
    display: block;
    margin: 1.5rem 0;
  }
  .accsessBlock .txt dl dt {
    display: block;
  }
}