@charset "UTF-8";

.preparation {
  font-size: max(20px, 3.2rem);
  font-weight: 500;
  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: 6rem;
  position: relative;
}

.recruit .hero {
  background: url("../img/mv_top.jpg") no-repeat center / cover;
}

.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-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ttl span {
  display: block;
  font-family: var(--font-ttl);
  font-size: max(28px, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  margin-bottom: -0.5rem;
}

.hero__ttl--store span {
  width: max(190px, 27.6rem);
  margin-bottom: -2rem;
}

/*-------------------------
  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%;
  }
}

/*-------------------------
  concept
---------------------------*/
.concept__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.concept__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.concept__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--pink);
  position: absolute;
  bottom: -3px;
}

.concept__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .concept__wrapper {
    flex-direction: column;
  }
}

.concept__img {
  width: 35%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  menu
---------------------------*/
.menu__btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .menu__btn-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__btn {
  width: 100%;
  height: max(50px, 7rem);
  border: solid 1px var(--pink);
  font-size: max(12px, 2rem);
  letter-spacing: 0.3em;
  display: grid;
  place-content: center;
}

@media (max-width: 767px) {
  .menu__btn {
    height: max(40px, 7rem);
  }
}

.current .menu__btn {
  background-color: var(--pink);
  color: var(--white);
}

/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 40rem;
  }
}

.CMS-NEWS-LINK {
  font-size: max(14px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-bottom: 2rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.08em;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--pink);
  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: 500;
  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(--pink);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  gallery
---------------------------*/
.gallery__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.gallery__list li {
  margin: 0 1rem 2rem;
}

.gallery__list a {
  display: block;
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__list a {
    width: 19vw;
    height: 19vw;
  }
}

#swipebox-close {
  right: auto;
  left: 0;
}

@media (min-width: 800px) {
  #swipebox-close {
    right: auto;
    left: 10px;
  }
}

/*-------------------------
  sister
---------------------------*/
.sister__list {
  border-top: solid 2px var(--black);
  border-bottom: solid 2px var(--black);
  display: flex;
  flex-wrap: wrap;
  margin-top: 8rem;
}

.sister__list dt,
.sister__list dd {
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
}

.sister__list dt:not(:last-of-type),
.sister__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

.sister__list dt {
  background-color: var(--light-pink);
  width: 25%;
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.sister__list dd {
  width: 75%;
}

.sister__underline {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .sister__list dt,
  .sister__list dd {
    width: 100%;
    padding: 2rem;
  }

  .sister__list dt {
    display: block;
    border-bottom: none;
  }
}

.sister__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 8rem auto 0;
}

.sister__btn {
  width: max-content;
}

.sister__btn a {
  background-color: var(--pink);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2.5rem;
}

@media (max-width: 767px) {
  .sister__btn a {
    padding: 2rem 3rem;
  }
}

.sister__sns {
  width: max-content;
}

.sister__sns li {
  width: 4rem;
}

/*-------------------------
  recruit
---------------------------*/
.recruit__inner {
  width: 100%;
  margin: 0 auto;
}

.recruit__list {
  display: flex;
  flex-wrap: wrap;
}

.recruit__list:not(:last-of-type) {
  margin-bottom: 6rem;
}

.recruit__list dt {
  width: 25%;
  border-bottom: solid 1px var(--black);
  font-weight: 500;
  text-align: center;
  padding: max(10px, 2rem) 0 max(10px, 2rem);
}

.recruit__list dt:first-of-type {
  border-top: solid 1px var(--black);
}

.recruit__list dd {
  width: 75%;
  border-bottom: solid 1px #d9d9d9;
  padding: max(10px, 2rem) 1rem max(10px, 2rem);
}

@media (min-width: 768px) {
  .recruit__list dd:first-of-type {
    border-top: solid 1px #d9d9d9;
  }
}

@media (max-width: 767px) {
  .recruit__list dt,
  .recruit__list dd {
    width: 100%;
    border-bottom: solid 1px var(--black);
    text-align: left;
    padding: max(10px, 2rem) 1rem;
  }

  .recruit__list dt {
    background-color: var(--light-pink);
    color: var(--white);
  }
}

/*-------------------------
  contact
---------------------------*/
.contact__ttl {
  width: 100%;
  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: 0 auto 3rem;
  position: relative;
}

.contact__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--pink);
  position: absolute;
  bottom: -3px;
}

.contact-tel {
  width: 100%;
  padding: 3rem;
  margin: 0 auto 8rem;
  text-align: center;
  background-color: #f2f2f2;
  position: relative;
}

.contact-tel::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  border-top: 1px solid var(--pink);
  border-left: 1px solid var(--pink);
  position: absolute;
  left: 0;
  top: 0;
}

.contact-tel::after {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  border-bottom: 1px solid var(--pink);
  border-right: 1px solid var(--pink);
  position: absolute;
  right: 0;
  bottom: 0;
}

.contact-tel p:first-of-type {
  margin-bottom: 1.5rem;
}

.contact-tel__nums {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin: 4rem auto 4rem;
}

.contact-tel__num-item {
  text-align: center;
}

.contact-tel-time {
  margin: 0;
}

@media (max-width: 767px) {
  .contact-tel__nums {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  /* SP時：電話番号と受付時間の間隔を詰める */
  .contact-tel__num-item .contact-tel-num {
    margin-bottom: 0.4rem;
  }
}

.contact-tel-num {
  font-size: max(24px, 4.8rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.contact-tel-num i {
  font-size: max(20px, 3.6rem);
  vertical-align: 0.1rem;
  margin-right: 0.5rem;
}

.contact-tel a {
  color: var(--pink);
}

.contact-tel-num span {
  font-size: max(12px, 1.4rem);
  display: block;
  margin-top: 1.2rem;
}

.contact-form__fields {
  background-color: #f2f2f2;
  padding: 3rem;
  border-radius: 0.8rem;
}

@media (max-width: 767px) {
  .contact-form__fields {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio {
    background-color: #f2f2f2;
    padding: 2rem 1.5rem;
    margin-bottom: 0;
  }
}

@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: 4px;
    font-size: 18px;
  }

  /* contact form: 項目名（label）と入力欄を横並び */
  .CMS-FORM .CMS-FORM-GROUP--row {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  /* 「ご用件」もラベル左・ラジオ右の横並びにする */
  .CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio {
    align-items: center;
    gap: 2rem;
  }

  .CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio > label {
    width: 22rem;
    flex-shrink: 0;
  }

  /* 「ご用件」エリアまで背景をグレーにする（下の contact-form__fields と揃える） */
  .CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio {
    background-color: #f2f2f2;
    padding: 3rem;
    margin-bottom: 0; /* 次の .contact-form__fields と背景を繋げる */
  }

  .CMS-FORM .CMS-FORM-GROUP--row > label {
    width: 22rem;
    flex-shrink: 0;
    margin-bottom: 0; /* block時の下余白をリセット */
    text-align: left;
  }

  .CMS-FORM .CMS-FORM-GROUP--row > input,
  .CMS-FORM .CMS-FORM-GROUP--row > textarea,
  .CMS-FORM .CMS-FORM-GROUP--row > select,
  .CMS-FORM .CMS-FORM-GROUP--row > .CMS-FORM-RADIO {
    flex: 1;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* textareaは上揃え */
  .CMS-FORM .CMS-FORM-GROUP--textarea {
    align-items: flex-start;
  }

  /* ラジオ行のラベル幅指定を解除して横並び崩れを防ぐ */
  .CMS-FORM .CMS-FORM-RADIO label {
    width: auto;
  }

  .CMS-FORM .CMS-FORM-RADIO {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    margin-top: 20px;
  }

  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: 30px;
  }

  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 .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio .required {
  color: #d62f37;
  margin-left: 10px;
  font-size: 0.9em;
}

/* 「ご用件」：ラベル右側で縦並び（参考ページの見た目） */
.CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio .CMS-FORM-RADIO {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio .CMS-FORM-RADIO > div {
  display: flex;
  align-items: center;
  margin-bottom: 0; /* form div のデフォルト余白を打ち消す */
}

.CMS-FORM .CMS-FORM-GROUP--row.CMS-FORM-GROUP--radio .CMS-FORM-RADIO > div label {
  width: auto;
}

.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(--pink);
  width: max-content;
  font-weight: 300;
  color: var(--white);
  padding: 1rem 2rem;
  margin: 4rem auto 0;
}
