@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&family=Dancing+Script:wght@700&display=swap");
body,
html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: "Montserrat", "Roboto", "游ゴシック", "Yu Gothic", YuGothic,
    sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}
.inline-block {
  display: inline-block;
}
.main-visual {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url("../images/FV-container.jpg") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px 0 16px;
  box-sizing: border-box;
}
.header-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.header-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
.header-recruit {
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.header-contact {
  text-decoration: none;
  text-align: center;
}
.header-contact:hover {
  opacity: 0.8;
  transition: opacity 0.2s;
}
.header-contact-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
.header-contact-sub {
  font-size: 0.65rem;
  color: #fff;
  margin-top: 2px;
}
.fv-content {
  position: absolute;
  top: 40%;
  left: 16px;
  transform: translateY(-40%);
  color: #fff;
  z-index: 2;
}
.fv-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  font-family: "Montserrat", "Roboto", sans-serif;
}
.fv-sub {
  font-size: 2rem;
  color: #b2a15a;
  font-family: "Dancing Script", cursive, "Roboto", sans-serif;
  font-style: italic;
  margin-left: 4px;
  margin-bottom: 0;
  transform: rotate(-15deg);
  position: absolute;
  right: 0;
  bottom: -20px;
}
.entry-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Roboto", sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.entry-btn:hover {
  background: #444;
}
.entry-btn-main {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.entry-btn-sub {
  font-size: 0.7rem;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

@media (min-width: 900px) {
  .header {
    padding: 40px 60px 0 60px;
  }
  .header-left {
    gap: 12px;
  }
  .header-logo {
    font-size: 2.7rem;
  }
  .header-recruit {
    font-size: 1rem;
  }
  .header-contact {
    width: 100%;
    max-width: 200px;
  }
  .header-contact-title {
    font-size: 1.5rem;
  }
  .header-contact-sub {
    font-size: 0.95rem;
    margin-top: -3px;
  }
  .fv-content {
    left: 60px;
    top: 50%;
    transform: translateY(-40%);
  }
  .fv-title {
    font-size: 6rem;
    margin-bottom: 16px;
    line-height: 1;
  }
  .fv-sub {
    font-size: 5rem;
    margin-left: 8px;
    z-index: -1;
  }
  .entry-btn {
    right: 60px;
    bottom: 60px;
    width: 150px;
    height: 150px;
  }
  .entry-btn-main {
    font-size: 1.8rem;
  }
  .entry-btn-sub {
    font-size: 14px;
    margin-top: -2px;
  }
}

.entry-section {
  background: #232323;
  color: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.entry-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 16px 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry-title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 200%;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-align: left;
  width: 100%;
}
.entry-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
  width: 100%;
}
.entry-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
  width: 100%;
}
.entry-btn-lg {
  margin: 32px auto 0 auto;
  width: 120px;
  height: 120px;
  background: #111;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.entry-btn-lg:hover {
  background: #333;
}
.entry-btn-lg .entry-btn-main {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.entry-btn-lg .entry-btn-sub {
  font-size: 0.95rem;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

@media (min-width: 900px) {
  .entry-section {
    padding: 0;
    background: #fff;
  }
  .entry-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    gap: 40px;
  }
  .entry-content {
    padding: 0150px 100px 150px 60px;
    width: 100%;
    max-width: 920px;
    align-items: flex-start;
    grid-column: 1 / 9;
    grid-row: 1;
    background: #232323;
  }
  .entry-image-wrap {
    width: auto;
    grid-column: 7 / 13;
    grid-row: 1;
  }
  .entry-image {
    height: auto;
    max-width: 100%;
  }
  .entry-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: left;
    max-width: 500px;
  }
  .entry-lead,
  .entry-text {
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: left;
    max-width: 500px;
  }
  .entry-btn-lg {
    display: none;
  }
}

.recruit-section {
  background: #fff;
  color: #111;
  padding: 32px 0 56px 0;
  width: 100%;
  box-sizing: border-box;
}
.recruit-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px;
  margin-bottom: 40px;
  position: relative;
  max-width: max-content;
}
.recruit-title-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.recruit-title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
}
.recruit-sub {
  font-size: 1rem;
  margin-left: 6px;
  color: #222;
  letter-spacing: 0.05em;
}
.recruit-info-script {
  font-family: "Dancing Script", cursive;
  font-size: 2.1rem;
  color: #b2a15a;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  transform: rotate(-10deg);
  opacity: 0.25;
}
.recruit-catch {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 200%;
  margin: 0 0 18px 0;
  padding: 0 16px;
}
.show-pc {
  display: inline-block;
}
.recruit-desc {
  font-size: 0.95rem;
  line-height: 200%;
  margin-bottom: 22px;
  color: #444;
  padding: 0 16px;
}
.recruit-list {
  background: #fff;
  border-radius: 10px;
  margin: 28px 12px;
  padding: 0 0 8px 0;
}
.recruit-list-block {
  border-bottom: 1px solid #e0e0e0;
}
.recruit-list-title {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 16px 16px 10px 16px;
}
.recruit-list-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 16px;
  border-bottom: 1px dashed #e0e0e0;
}
.recruit-list-row:last-child {
  border-bottom: none;
}
.recruit-list-label {
  font-size: 0.98rem;
  color: #222;
  min-width: 80px;
}
.recruit-list-value {
  font-size: 0.98rem;
  text-align: right;
  color: #111;
  font-weight: 400;
}
.recruit-entry-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.recruit-entry-btn {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: bold;
  padding: 12px 0 12px;
  width: 100%;
  max-width: 280px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.08em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.recruit-entry-btn:hover {
  background: #111;
  color: #fff;
}
.recruit-entry-arrow {
  display: inline-block;
  position: absolute;
  left: -16px;
  top: 50%;
  width: 32px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}
.recruit-entry-btn:hover .recruit-entry-arrow {
  background: #fff;
}

@media (min-width: 900px) {
  .recruit-section {
    padding: 64px 60px 96px 60px;
  }
  .recruit-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .recruit-left {
    width: 50%;
  }
  .recruit-right {
    margin-top: 185px;
    width: 50%;
  }
  .recruit-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 70px;
    position: relative;
  }

  .recruit-title {
    font-size: 6rem;
  }
  .recruit-sub {
    font-size: 1.2rem;
    margin-left: 12px;
  }
  .recruit-info-script {
    font-size: 5rem;
    right: -50px;
    bottom: -20px;
  }
  .recruit-catch {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
  }
  .show-pc {
    display: none;
  }
  .recruit-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
    padding: 0;
    text-align: left;
  }
  .recruit-list {
    margin: 0;
    max-width: 100%;
  }
  .recruit-list-title {
    font-size: 1.5rem;
    padding: 20px;
  }
  .recruit-list-row {
    font-size: 1.1rem;
    padding: 16px 20px;
  }
  .recruit-entry-btn-wrap {
    margin-top: 36px;
    justify-content: flex-start;
    padding-left: 0;
  }
  .recruit-entry-btn {
    font-size: 1.4rem;
    max-width: 340px;
    padding: 16px 0 16px;
  }
  .recruit-entry-arrow {
    width: 40px;
    left: -20px;
  }
}

.process-section {
  background: #fcf9f5;
  color: #222;
  padding: 32px 0 48px 0;
  width: 100%;
  box-sizing: border-box;
}
.process-header {
  padding: 0 16px;
  margin-bottom: 18px;
}
.process-title-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}
.process-title {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
}
.process-sub {
  font-size: 1rem;
  margin-left: 6px;
  color: #222;
  letter-spacing: 0.05em;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 0 0 0;
  align-items: center;
}
.process-step {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ece8e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  width: 90%;
  max-width: 320px;
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step-num {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d1d1d1;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.process-step-num span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #bdbdbd;
  margin-left: 4px;
}
.process-step-icon {
  margin-bottom: 12px;
}
.process-step-icon img {
  width: 60px;
  height: 70px;
  object-fit: contain;
  display: block;
}
.process-step-title {
  font-size: 1.05rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.4;
}
.process-step-desc {
  font-size: 0.92rem;
  color: #888;
  text-align: center;
  line-height: 1.7;
}
.process-entry-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.process-entry-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: bold;
  padding: 16px 0;
  width: 90%;
  max-width: 320px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.08em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.process-entry-btn:hover {
  background: #444;
}

@media (min-width: 900px) {
  .process-section {
    padding: 64px 0 96px 0;
  }
  .process-header {
    padding: 0 0 0 60px;
    margin-bottom: 32px;
  }
  .process-title-block {
    flex-direction: column;
  }
  .process-title {
    font-size: 6rem;
  }
  .process-sub {
    font-size: 1.2rem;
    margin-left: 12px;
  }
  .process-steps {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
  .process-step {
    max-width: 260px;
    width: 100%;
    padding: 28px 16px 22px 16px;
  }
  .process-step-icon img {
    width: 64px;
    height: 64px;
  }
  .process-entry-btn-wrap {
    margin-top: 40px;
  }
  .process-entry-btn {
    font-size: 1.2rem;
    max-width: 340px;
    padding: 18px 0;
  }
}

.footer {
  background: #fff;
  color: #111;
  padding: 32px 0 0 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.footer-container {
  display: flex;
  flex-direction: column;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 0 20px 32px;
}
.footer-logo {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-family: "Montserrat", "Roboto", sans-serif;
}
.footer-info {
  margin-bottom: 24px;
}
.footer-address {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-contact {
  font-size: 0.95rem;
  color: #222;
  line-height: 160%;
}
.footer-contact a {
  color: #222;
  text-decoration: underline;
  word-break: break-all;
}
.footer-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
  width: 100%;
}
.footer-btn {
  background: #111;
  color: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Roboto", sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-btn:hover {
  background: #444;
}
.footer-btn-main {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer-btn-sub {
  font-size: 0.95rem;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.footer-map {
  width: 100%;
  margin-top: 32px;
  text-align: center;
  display: flex;
  order: 2;
}
.footer-map iframe {
  width: 100%;
  height: 450px;
}

@media (min-width: 900px) {
  .footer {
    padding: 0;
  }
  .footer-container {
    flex-direction: row;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 0 60px;
    width: 50%;
    box-sizing: border-box;
  }
  .footer-logo {
    font-size: 3.8rem;
    margin-bottom: 24px;
    margin-right: 0;
  }
  .footer-info {
    text-align: left;
    margin-bottom: 32px;
    margin-right: 0;
  }
  .footer-btns {
    flex-direction: row;
    gap: 32px;
    margin-top: 0;
    width: auto;
    justify-content: flex-start;
  }
  .footer-btn {
    width: 150px;
    height: 150px;
    padding: 1rem;
  }
  .footer-btn-main {
    font-size: 1.6rem;
  }
  .footer-btn-sub {
    font-size: 1.1rem;
    margin-top: -3px;
  }
  .footer-map {
    margin-top: 0;
    width: 50%;
    order: 1;
  }
  .footer-map iframe {
    height: 100%;
    min-height: 550px;
  }
}

.copyright-section {
  background: #222;
  color: #fff;
  width: 100%;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-size: 0.95rem;
}
.copyright-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.copyright-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.copyright-logo {
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.copyright-address {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.copyright-right {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

@media (min-width: 900px) {
  .copyright-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
  }
  .copyright-left {
    margin-bottom: 0;
  }
}

/* Recruitment Form Styles */
.form-container {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding: 24px;
  background-color: #fcf9f5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 24px;
}

.recruit-form .form-group {
  margin-bottom: 20px;
}

.recruit-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.recruit-form .required {
  color: #b2a15a;
  font-size: 0.8rem;
  margin-left: 4px;
}

.recruit-form input[type="text"],
.recruit-form input[type="tel"],
.recruit-form input[type="email"],
.recruit-form input[type="date"],
.recruit-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.recruit-form input[type="text"]:focus,
.recruit-form input[type="tel"]:focus,
.recruit-form input[type="email"]:focus,
.recruit-form input[type="date"]:focus,
.recruit-form textarea:focus {
  outline: none;
  border-color: #b2a15a;
}

.recruit-form .radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.recruit-form .radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.recruit-form .submit-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 20px auto 0;
  padding: 14px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Montserrat", "Roboto", sans-serif;
}

.recruit-form .submit-btn:hover {
  background-color: #444;
}

/* Form & Completion Page Common Body Style */
body.form-page,
body.completion-page {
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* form-container bg color override */
.form-container {
  background-color: #fff;
}

/* Completion Page Styles */
.completion-container {
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: 48px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  text-align: center;
}

.completion-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 24px;
}

.completion-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.completion-container .back-link {
  display: inline-block;
  padding: 14px 28px;
  background-color: #222;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s;
  font-family: "Montserrat", "Roboto", sans-serif;
}

.completion-container .back-link:hover {
  background-color: #444;
}

/* エラーメッセージのスタイル */
.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 4px;
  display: block;
}

/* 送信ボタンの無効化スタイル */
.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-btn:disabled:hover {
  background-color: #ccc;
}
