html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Sans JP", sans-serif;
  color: #354463;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

.l-container {
  background-image: url(https://github.com/non0522/medical-treat_yoyogi/blob/main/img/index_background_leaf_1.png?raw=true);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
}

.c-title p {
  font-size: 1.8rem;
}

@media screen and (min-width: 1025px) {
  .c-title p {
    font-size: 2.5rem;
  }
}

.c-vertical {
  font-size: clamp(14px, 2.3vw, 1rem);
  letter-spacing: 3px;
  line-height: 1.3rem;
}

@media screen and (min-width: 1025px) {
  .c-vertical {
    line-height: 1.5rem;
    writing-mode: vertical-rl;
  }
}

.c-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2rem;
  padding: 3rem 0 3rem 0;
}

@media screen and (min-width: 1025px) {
  .c-subtitle {
    font-size: 1.5rem;
  }
}

.c-heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 60px 0 50px;
  display: inline-block;
  border-bottom: solid 1px #83bc98;
  line-height: 2rem;
}

@media screen and (min-width: 1025px) {
  .c-heading {
    font-size: 2rem;
    border-bottom: solid 3px #83bc98;
    line-height: 3rem;
  }
}

.c-heading--info {
  font-size: 1rem;
  margin: 0 0 10px;
}

@media screen and (min-width: 1025px) {
  .c-heading--info {
    font-size: 1.2rem;
    border-bottom: solid 1px #83bc98;
    line-height: 2rem;
  }
}

.c-table--access {
  font-size: 0.8rem;
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
}

@media screen and (min-width: 1025px) {
  .c-table--access {
    text-align: left;
    font-size: 1rem;
  }
}

.c-table--access tr {
  border-bottom: #d9d9d9 1px solid;
}

.c-table--access tr td {
  padding: 10px 5px;
  line-height: 1.3rem;
}

.c-table--access tr td:nth-child(1) {
  vertical-align: middle;
}

.c-table--access tr td:nth-child(2) {
  font-size: 0.9rem;
}

.c-table--hours {
  text-align: center;
  font-size: 0.8rem;
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
}

@media screen and (min-width: 1025px) {
  .c-table--hours {
    font-size: 0.9rem;
  }
}

.c-table--hours tr {
  border-top: #d9d9d9 1px solid;
  border-bottom: #d9d9d9 1px solid;
}

.c-table--hours tr th {
  font-weight: inherit;
  text-align: center;
  padding: 16px 8px;
}

.c-table--hours tr th:not(:last-of-type) {
  border-right: #d9d9d9 1px solid;
}

.c-table--hours tr td {
  padding: 16px 8px;
}

.c-table--hours tr td:first-child {
  padding: 16px 0;
}

.c-table--hours tr td:not(:last-of-type) {
  border-right: #d9d9d9 1px solid;
}

.c-card {
  margin-top: 60px;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  padding-top: 45vw;
  padding-bottom: 10px;
  max-width: 600px;
  margin: 60px auto 0;
}

@media screen and (min-width: 1025px) {
  .c-card {
    padding-top: 23vw;
  }
}

.c-card h4 {
  margin: 0px auto 50px;
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: solid 2px #ebeded;
  line-height: 3rem;
  width: 70%;
}

@media screen and (min-width: 1025px) {
  .c-card h4 {
    font-size: 1.4rem;
  }
}

.c-card > p {
  display: inline-block;
  color: #109668;
  position: relative;
  margin-bottom: 10px;
}

.c-card > p::after {
  content: '';
  display: block;
  width: 100;
  height: 8px;
  background-color: #ebeded;
  border-radius: 8px;
  margin: -5px -10px 0px 8px;
}

.c-card__inner {
  display: flex;
  justify-content: space-evenly;
  margin: 3vw 7vw;
}

@media screen and (min-width: 1025px) {
  .c-card__inner {
    margin: 2vw 4vw;
  }
}

.c-circle {
  background-color: #E2FFED;
  width: 15vw;
  height: 15vw;
  max-width: 70px;
  max-height: 70px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-circle p {
  font-size: 0.8rem;
  font-weight: bold;
}

.c-button--minute {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background-color: #83bc98;
  border-radius: 5px;
  padding: 3px 15px;
}

@media screen and (min-width: 1025px) {
  .c-button--minute {
    padding: 10px 30px;
    font-weight: bold;
  }
}

.c-button--tel {
  display: inline-block;
  background-color: #fff;
  padding: 10px 40px;
  border-radius: 5px;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 1025px) {
  .c-button--tel {
    filter: drop-shadow(0 0 0);
  }
}

.c-button--tel p:first-of-type {
  font-size: 2rem;
  line-height: 3rem;
}

.c-button--tel p:nth-child(2) {
  font-size: 0.8rem;
}

@media screen and (min-width: 1025px) {
  .c-button--tel p:nth-child(2) {
    font-size: 1rem;
  }
}

.c-gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (min-width: 1025px) {
  .c-gmap {
    padding-bottom: 50%;
  }
}

.c-gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.c-temp {
  height: 60vh;
  object-fit: cover;
  position: absolute;
}

@media screen and (min-width: 1025px) {
  .c-temp {
    z-index: 0;
    opacity: 1;
    position: inherit;
    display: block;
    width: 90%;
    margin: 0 auto;
    height: calc(100vh - 80px);
    padding-bottom: 60px;
    object-fit: cover;
  }
}

@keyframes anime {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 1025px) {
  .c-grid--info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .c-grid--info__item1 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .c-grid--info__item2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .c-grid--info__item3 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

.c-grid--about {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1025px) {
  .c-grid--about {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .c-grid--about__item1 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .c-grid--about__item2 {
    grid-area: 1 / 1 / 3 / 2;
  }
  .c-grid--about__item3 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

.c-owner {
  line-height: 1.5;
  text-align: end;
}

.c-owner img {
  max-width: 200px;
  padding-top: 16px;
}

@media screen and (min-width: 1025px) {
  .c-owner img {
    padding-top: 40px;
    max-width: 300px;
  }
}

@media screen and (min-width: 1025px) {
  .c-list {
    display: flex;
    justify-content: space-between;
  }
}

.c-list h4 {
  font-size: 1rem;
  margin: 10px 0 14px;
}

@media screen and (min-width: 1025px) {
  .c-list h4 {
    font-size: 1.2rem;
  }
}

.c-list p {
  line-height: 1.3rem;
}

.p-header {
  padding: 20px 20px 10px;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .p-header {
    background-color: #fff;
    padding: 20px 60px 10px;
  }
}

.p-top {
  background-color: #fff;
  position: relative;
}

.p-top__hero {
  position: relative;
  white-space: nowrap;
}

.p-top__hero__text {
  z-index: 10;
  position: absolute;
}

.p-top__hero p:nth-child(2) {
  color: #fff;
  text-shadow: 1px 2px 3px #808080;
  top: 35vh;
  left: 10vw;
}

@media screen and (min-width: 1025px) {
  .p-top__hero p:nth-child(2) {
    top: 3rem;
    right: 75%;
  }
}

.p-top__hero p:nth-child(3) {
  color: #fff;
  text-shadow: 1px 2px 3px #808080;
  top: 45vh;
  left: 16vw;
}

@media screen and (min-width: 1025px) {
  .p-top__hero p:nth-child(3) {
    top: 7rem;
    right: 83%;
  }
}

.p-top__intro {
  padding: 60vh 0 0;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 1025px) {
  .p-top__intro {
    flex-direction: row;
    margin: 0 auto;
    width: 100%;
    padding: 0 120px 100px;
  }
}

.p-top__intro img {
  object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .p-top__intro img {
    display: none;
    max-width: 50%;
  }
}

.p-top__intro__inner {
  padding: 0 20px;
}

@media screen and (min-width: 1025px) {
  .p-top__intro__inner {
    max-width: 70%;
    flex-basis: 70vw;
  }
}

.p-top__intro__desc {
  margin: 0 auto;
  padding: 0 20px 60px 20px;
  text-align: left;
  line-height: 3rem;
  max-width: 400px;
}

.p-treatment {
  margin: 0 20px;
}

@media screen and (min-width: 1025px) {
  .p-treatment {
    margin: 0 80px;
    text-align: center;
  }
}

.p-service {
  text-align: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1025px) {
  .p-service {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

.p-service__wrapper {
  position: relative;
  margin-bottom: 60px;
}

@media screen and (min-width: 1025px) {
  .p-service__wrapper {
    width: 45%;
  }
}

.p-service img {
  position: absolute;
  width: 90%;
  max-width: 500px;
  z-index: 10;
  border-radius: 5px;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  left: 50%;
  top: 2vw;
  transform: translateX(-50%);
}

.p-cost {
  padding: 0 20px 100px;
  background-color: #fff;
}

@media screen and (min-width: 1025px) {
  .p-cost {
    padding: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-cost__wrapper {
    background-color: #fff;
    position: relative;
    width: 60%;
    margin: 0 auto;
    padding: 0 0 60px;
    text-align: center;
    border-radius: 5px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
  }
}

.p-cost__wrapper > p {
  font-size: 0.7rem;
  margin-left: auto;
  width: 60%;
}

@media screen and (min-width: 1025px) {
  .p-cost h3 {
    margin: 20px 0 60px;
  }
}

.p-cost ul {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding-bottom: 40px;
}

.p-cost ul li p:first-of-type {
  margin-bottom: 20px;
}

.p-cost ul li p:nth-child(2) {
  letter-spacing: 0;
}

@media screen and (min-width: 1025px) {
  .p-cost ul li p:nth-child(2) {
    font-size: 1.3rem;
    font-weight: bold;
  }
}

.p-cost ul li small {
  font-size: 0.5rem;
}

@media screen and (min-width: 1025px) {
  .p-cost ul li small {
    font-size: 0.7rem;
  }
}

.p-cost ul li:not(:last-of-type) {
  position: relative;
  display: inline-block;
}

.p-cost ul li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 90px;
  background-color: #83BC98;
  position: absolute;
  top: -10px;
  right: -5vw;
}

.p-info {
  padding: 0 20px 60px;
}

@media screen and (min-width: 1025px) {
  .p-info {
    margin: 0 auto;
    text-align: center;
    width: 80%;
  }
}

.p-info__access {
  padding-bottom: 30px;
}

.p-info__access h4 {
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .p-info__access h4 {
    margin-bottom: 16px;
  }
}

.p-info__hours h4 {
  margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {
  .p-info__hours h4 {
    margin-bottom: 30px;
  }
}

.p-inquiry {
  text-align: center;
  background-color: #fff;
  padding-bottom: 100px;
}

@media screen and (min-width: 1025px) {
  .p-inquiry {
    padding-top: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .p-inquiry__wrapper {
    background-color: #fff;
    position: relative;
    width: 55%;
    margin: 0 auto;
    padding: 0 0 60px;
    text-align: center;
    border-radius: 5px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
  }
}

@media screen and (min-width: 1025px) {
  .p-inquiry__wrapper h3 {
    margin: 30px 0 50px;
  }
}

.p-inquiry__inner {
  font-size: 0.9rem;
}

@media screen and (min-width: 1025px) {
  .p-inquiry__inner {
    font-size: 1.1rem;
  }
}

.p-inquiry__inner > p {
  line-height: 2rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 520px) {
  .p-inquiry__inner a {
    pointer-events: none;
  }
}

.p-about {
  font-size: 0.9rem;
  margin: 0 auto;
  padding: 0 20px 60px;
  padding-bottom: 60px;
  max-width: 600px;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .p-about {
    font-size: 1rem;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 100px;
  }
}

.p-about__wrapper {
  margin: 0 auto;
  max-width: 400px;
}

@media screen and (min-width: 1025px) {
  .p-about__wrapper {
    max-width: 600px;
    text-align: left;
  }
}

.p-about__desc {
  font-size: 0.9rem;
  line-height: 1.5rem;
  padding-bottom: 20px;
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .p-about__desc {
    font-size: 1rem;
    padding: 2rem 0px;
  }
}

.p-about ul {
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .p-about ul {
    padding: 30px 0 30px;
  }
}

.p-about ul li {
  padding-bottom: 24px;
  line-height: 1rem;
}

.p-about ul li h5 {
  font-size: 0.9rem;
  padding: 10px 0;
}

@media screen and (min-width: 1025px) {
  .p-about ul li h5 {
    font-size: 1rem;
    padding: 20px 0;
  }
}

.p-about ul li p {
  text-indent: 1rem;
}

@media screen and (min-width: 1025px) {
  .p-about ul li p {
    text-indent: 0;
  }
}

.p-footer {
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 1rem;
}

.p-footer__title p:first-of-type {
  font-size: 0.8rem;
}

@media screen and (min-width: 1025px) {
  .p-footer__title p:first-of-type {
    font-size: 1rem;
  }
}

.p-footer__title p:nth-child(2) {
  font-size: 0.8rem;
}

@media screen and (min-width: 1025px) {
  .p-footer__title p:nth-child(2) {
    font-size: 1rem;
  }
}

.p-footer__copyright {
  padding-top: 10px;
  font-size: 0.6rem;
}

@media screen and (min-width: 1025px) {
  .p-footer__copyright {
    font-size: 0.8rem;
  }
}
/*# sourceMappingURL=style.css.map */