@charset "UTF-8";

.preparation {
  font-size: max(20px, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  color: var(--white);
  display: grid;
  place-content: center;
  padding-top: max(80px, 12rem);
  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);
    padding-top: max(60px, 8rem);
  }
}

.hero__ttl {
  font-size: max(14px, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ttl span {
  display: block;
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  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: 2rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.about__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--blue);
  position: absolute;
  bottom: -3px;
}

.about__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

.about__contents:nth-of-type(odd) .about__wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .about__wrapper,
  .about__contents:nth-of-type(odd) .about__wrapper {
    flex-direction: column;
  }
}

.about__img {
  width: 35%;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  price
---------------------------*/
.price__inner h3 {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 2rem;
  position: relative;
}

.price__inner h3::after {
  content: "";
  display: block;
  width: 20%;
  border-bottom: solid 3px var(--blue);
  position: absolute;
  bottom: -3px;
}

.price__list {
  display: flex;
  flex-wrap: wrap;
}

.price__list:not(:last-of-type) {
  margin-bottom: 6rem;
}

.price__list dt,
.price__list dd {
  border-bottom: solid 1px var(--black);
}

.price__list dt {
  width: calc(100% - 100px);
  padding: max(10px, 2rem) 0 max(10px, 2rem) 1rem;
}

.price__list dd {
  width: 100px;
  text-align: right;
  padding: max(10px, 2rem) 1rem max(10px, 2rem) 0;
}

@media (max-width: 767px) {
  .price__list dt,
  .price__list dd {
    width: 100%;
  }

  .price__list dt {
    border-bottom: none;
    padding: max(10px, 2rem) 1rem 0;
  }

  .price__list dd {
    padding: 0 1rem max(10px, 2rem);
  }
}
/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX,
.CMS-NEWS-CATEGORY-INDEX {
  width: max(500px, 80rem);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX,
  .CMS-NEWS-CATEGORY-INDEX {
    width: 100%;
  }
}

.CMS-NEWS-ITEM {
  border-bottom: solid 1px #a0a0a0;
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2.5rem 14rem 2.5rem 2.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
    padding: 2.5rem 10rem 2.5rem 2.5rem;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(18px, 2.4rem);
  height: max(18px, 2.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 2rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 1rem;
  }
}

.CMS-NEWS-TIME,
.CMS-NEWS-LINK {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.CMS-NEWS-TIME {
  width: max(90px, 11rem);
  font-size: max(12px, 1.4rem);
  flex-shrink: 0;
}

.CMS-NEWS-LINK {
  width: 32rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK {
    width: 100%;
    margin-top: 1rem;
  }
}

.CMS-NEWS-CATEGORY-NAME {
  background-color: var(--light-blue);
  width: 120px;
  height: 20px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 2px;
  margin-right: 8rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-CATEGORY-NAME {
    margin-bottom: 1rem;
  }
}

.CMS-NEWS-MORE-READ {
  background-color: var(--blue);
  width: 38rem;
  height: 7rem;
  border-radius: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  display: grid;
  place-content: center;
  margin: 6rem auto 0;
  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;
  }
}

.news__category {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin: 0 auto 4rem;
}

@media (max-width: 767px) {
  .news__category {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.news__btn {
  background-color: transparent;
  width: 100%;
  height: max(40px, 4.8rem);
  border: solid 2px var(--light-blue);
  border-radius: 1rem;
  font-weight: 500;
  color: var(--light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .news__btn:hover {
    background-color: var(--light-blue);
    color: var(--white);
  }
}

.news__btn::before {
  content: "";
  display: block;
  background-color: #191919;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left center;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news__btn[aria-selected="true"] {
  background-color: var(--light-blue);
  color: var(--white);
}

[role="tabpanel"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(20px);
  top: 0;
  left: 0;
  right: 0;
}

[role="tabpanel"].active {
  opacity: 1;
  visibility: visible;
  position: static;
  transform: none;
  transition: 0.3s ease-in-out;
}

/*-------------------------
  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(--blue);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  shop
---------------------------*/
.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;
}

/*-------------------------
  contact
---------------------------*/
@media screen and (min-width: 768px) {
  form {
    padding: 70px 0 0 0;
    width: 100%;
    margin: 0 auto;
  }

  form div {
    margin-bottom: 20px;
  }

  form div label {
    display: block;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 18px;
  }

  form div label span {
    font-size: 16px;
    color: #d62f37;
    margin-left: 10px;
  }

  form select {
    padding: 20px;
    background: var(--white);
    border: #bbb solid 1px;
    border-radius: 3px;
  }

  form input,
  form textarea {
    width: calc(100% - 40px);
    padding: 10px 20px;
    background: var(--white);
    color: var(--black);
    border: #bbbbbb solid 1px;
    border-radius: 4px;
    font-size: 1.5em;
  }

  form input[type="submit"] {
    border: 0px;
    width: 50%;
    background: var(--white);
    border: 2px solid #444;
    color: var(--black);
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    padding: 20px 0;
    margin: 0 25%;
  }
}

@media screen and (max-width: 767px) {
  form {
    font-size: max(14px, 1.6rem);
    padding: 30px 0 0;
  }

  form div {
    margin-bottom: 50px;
  }

  form div label {
    display: block;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 14px;
  }

  form div label span {
    font-size: 12px;
    color: #d62f37;
    margin-left: 10px;
  }

  form select {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: #bbb solid 1px;
    border-radius: 3px;
  }

  form input,
  form textarea {
    width: 100%;
    padding: 10px 10px;
    background: var(--white);
    color: var(--black);
    border: #bbbbbb solid 1px;
    border-radius: 4px;
    font-size: 1.4em;
  }

  form input[type="submit"] {
    border: 0px;
    width: 90%;
    background: var(--white);
    border: 2px solid #333;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    padding: 16px 0;
    margin: 0 5%;
  }
}

form input[type="radio"] {
  width: 2rem;
  vertical-align: -0.18rem;
  margin-right: 1rem;
}

.CMS-FORM-RADIO label {
  display: inline-block;
  width: calc(100% - 3rem);
}

/*-------------------------
  privacy
---------------------------*/
.privacy_notes {
  width: 100%;
  font-size: max(14px, 1.6rem);
  padding: 30px 0;
  margin: 0 auto;
}

.privacy {
  font-size: max(14px, 1.6rem);
  font-weight: 300;
  background-color: #f0f0f0;
  width: 100%;
  color: var(--black);
  margin: 0 auto 5rem;
  padding: 20px;
  height: 500px;
  overflow: auto;
}

.privacy span {
  font-weight: bold;
}

.privacy p {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.second-nrw p.privacy_notes {
  padding: 30px 0;
}

.thanx__txt {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}

.thanx_btn a {
  display: block;
  background-color: var(--blue);
  width: max-content;
  font-weight: 300;
  color: var(--white);
  padding: 1rem 2rem;
  margin: 4rem auto 0;
}
