@charset "UTF-8";

.preparation {
  font-size: max(20px, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.mb-30 {
  margin-bottom: 3rem;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv_1.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  color: var(--white);
  display: grid;
  place-content: center;
  padding-top: 6rem;
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--black);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.hero__ttl span {
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  padding: 12rem 0 15rem;
}

.lower_sec-inner {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  about
---------------------------*/
.about__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.about__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.about__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--green);
  position: absolute;
  bottom: -3px;
}

.about__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .about__wrapper {
    flex-direction: column;
  }
}

.about__img {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__img figcaption {
  display: block;
  text-align: center;
  padding: 1rem 0;
}

.about__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

.about__wrapper-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}

.about__wrapper-2 > * {
  width: 47%;
}

.about__wrapper-2 dl dt {
  background: var(--green);
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 0.2rem 1rem 0.3rem 1rem;
  margin-bottom: 1rem;
}

.about__wrapper-2 > dl ul li {
  display: flex;
}

.about__wrapper-2 > dl ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.about__wrapper-2 > dl ul li > span:nth-child(1) {
  width: 8rem;
}

.about__wrapper-2 > dl ul li > span:nth-child(2) {
  width: calc(100% - 8rem);
}

@media (max-width: 767px) {
  .about__wrapper-2 {
    display: block;
  }
  .about__wrapper-2 > * {
    width: 100%;
  }
  .about__wrapper-2 > dl {
    margin-bottom: 3rem;
  }
}

/*-------------------------
  treatment
---------------------------*/
.treatment__btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .treatment__btn-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment__btn {
  background-color: var(--white);
  width: 100%;
  height: max(50px, 7rem);
  border: solid 1px var(--green);
  font-size: max(12px, 2rem);
  color: var(--green);
  letter-spacing: 0.3em;
  display: grid;
  place-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .treatment__btn {
    height: max(40px, 7rem);
  }
}

.treatment__btn::before {
  content: "";
  background: url("../img/pagetop.png") no-repeat center / contain;
  width: max(6px, 1.9rem);
  height: max(11.4px, 1rem);
  position: absolute;
  transform: translateY(-50%) rotate(180deg);
  top: 50%;
  right: 2rem;
  pointer-events: none;
}

/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    row-gap: 2rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  gap: 0.5rem 2.5rem;
  padding: 1rem max(30px, 6rem) 1rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(18.5px, 2.6rem);
  height: max(5px, 0.7rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 0;
  }
}
.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
}

.CMS-NEWS-TIME {
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--green);
  width: 38rem;
  height: 7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  newsdetail
---------------------------*/
.CMS-NEWS-DETAIL {
  width: 100%;
  height: auto;
  color: var(--black);
  margin: 0 auto;
}

.CMS-NEWS-TITLE {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--green);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  shop
---------------------------*/
.access__table {
  margin-bottom: 8rem;
}

.map {
  margin: 0 auto 4rem;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.shop__list dt,
.shop__list dd {
  border-bottom: solid 1px var(--black);
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
}

.shop__list dt {
  width: 30%;
  font-weight: 700;
  white-space: nowrap;
}

.shop__list dd {
  width: 70%;
}

@media (max-width: 767px) {
  .shop__list dt,
  .shop__list dd {
    width: 100%;
  }

  .shop__list dt {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .shop__list dd {
    padding: 0 2rem 2rem;
  }
}

.shop__underline {
  text-decoration: underline;
}
