@charset "UTF-8";
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  background-color: #fefefe;
  color: #555;
  font-family: "BIZ UDMincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/*
 * <section><div>を必ずセットで使うこと。
 */
section > div {
  width: 100%;
  padding: 10px;
}

main {
  flex: 1;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(254, 254, 254, 0.5);
  position: relative;
  font-weight: 400;
}
main section {
  width: 100%;
  padding: 0 0 8rem 0;
}
main section > div {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
main section > div h2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 2em;
  color: #333;
}
main section > div h2 span.kazarikei {
  background-image: url("/img/kazarikei-2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  display: inline-block;
  width: 300px;
  aspect-ratio: 5/1;
}

section.header {
  background-color: black;
}
section.header > div {
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}
section.header > div img {
  width: 100%;
}

section.recruit {
  background-color: #ffffff;
}
section.recruit div dl {
  padding: 10px 0;
  max-width: 800px;
  margin: 0 auto;
}
section.recruit div dl dt {
  margin-top: 1em;
  font-weight: 600;
}
section.recruit div dl dd {
  margin-top: 1em;
  letter-spacing: 0.07em;
  line-height: 1.45em;
}
@media (max-width: calc(768px - 0.02px)) {
  section.recruit div dl dd {
    margin-left: 1em;
  }
}

section.questions {
  background-color: #f0f0f0;
}
section.questions > div dl {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
section.questions > div dl dt {
  border-radius: 5px 5px 0 0;
  padding: 1em;
  display: block;
  width: 100%;
  background-color: #333333;
  color: white;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
section.questions > div dl dt:hover {
  cursor: pointer;
}
section.questions > div dl dt + dd {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: white;
  color: #333333;
  letter-spacing: 0.07em;
  line-height: 1.6em;
  transition: max-height 0.1s linear;
  /* アニメーション設定 */
}
section.questions > div dl dt + dd div {
  opacity: 0;
  padding: 1em;
  transform: translateY(10px);
  transition: transform 0.4s linear, opacity 0.4s linear;
}
section.questions > div dl dt.clicked + dd {
  max-height: 100vh;
}
section.questions > div dl dt.clicked + dd div {
  opacity: 1;
  transform: translateY(0px);
}

section.request-form > div .form-control-group {
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
}
section.request-form > div .form-control-group label {
  font-weight: bold;
  margin: 0.5em 0;
}
section.request-form > div .form-control-group label.require::after {
  content: "*";
  color: red;
  padding-left: 0.5em;
}
section.request-form > div .form-control-group input[type=text] {
  padding: 1em;
  border-radius: 5px;
  border: solid 1px #888888;
}
section.request-form > div .form-control-group input[type=date] {
  padding: 1em;
  border-radius: 5px;
  border: solid 1px #888888;
}
section.request-form > div .form-control-group input[type=button] {
  margin: 2em 0;
  padding: 0.5em;
  color: rgb(92, 45, 6);
  font-size: 18px;
  background-color: #f6c155;
  border-radius: 5px;
  border: solid 1px #f6c155;
}
section.request-form > div .form-control-group input[type=button]:hover {
  cursor: pointer;
}

section.shop-info {
  background-color: #f0f0f0;
}
section.shop-info > div {
  max-width: 500px;
}
section.shop-info > div dt {
  font-weight: 600;
  color: #555555;
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 1em;
  border-bottom: solid 1px #dddddd;
}
section.shop-info > div dd {
  display: block;
  margin: 0;
  padding: 0.5em;
  text-align: right;
}

section.footer {
  background-color: #000;
  color: white;
  text-align: center;
}

dialog {
  border: none;
  border-radius: 12px;
  padding: 0;
  width: min(680px, 92vw);
}
dialog .dlg-head {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}
dialog .dlg-body {
  padding: 18px;
  max-height: 60vh;
  overflow: auto;
}
dialog .dlg-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 14px 18px;
  border-top: 1px solid #eee;
}
dialog .btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  cursor: pointer;
}
dialog .btn.primary {
  background: #0a7cff;
  color: white;
  border-color: #0a7cff;
}
dialog .btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}
dialog .kv {
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 8px 12px;
}
dialog .kv dt {
  color: #555;
}
dialog .kv dd {
  margin: 0;
}
dialog .note {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/*# sourceMappingURL=style.css.map */
