@charset "UTF-8";
main {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #666;
  font-size: 16px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

main *,
main *::before,
main *::after {
  box-sizing: border-box;
}

.breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
}
.breadcrumb a {
  color: #666;
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 8px 15px;
    font-size: 13px;
  }
}
#recruit-links {
  padding: 40px 20px 80px;
  text-align: center;
}

.recruit-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.recruit-nav-item {
  width: 270px;
  flex-shrink: 0;
  text-align: center;
}
.recruit-nav-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.recruit-nav-item a:hover {
  opacity: 0.75;
}

.recruit-nav-header {
  position: relative;
  padding: 20px 15px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recruit-nav-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: transparent;
}

.recruit-nav-label {
  margin: 0 0 2px;
}
.recruit-nav-label img {
  height: 16px;
  width: auto;
}

.recruit-nav-title {
  color: #666;
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.recruit-nav-deadline {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  color: #666;
}

.recruit-nav-photo {
  margin: 0;
}
.recruit-nav-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-nav-item--crosstalk .recruit-nav-header {
  background-color: #e8f0e4;
}

.recruit-nav-item--crosstalk .recruit-nav-header::before {
  border-color: #a5c7a3 transparent transparent transparent;
}

.recruit-nav-item--oneday .recruit-nav-header {
  background-color: #f5efd8;
}

.recruit-nav-item--oneday .recruit-nav-header::before {
  border-color: #ead99d transparent transparent transparent;
}

.recruit-nav-item--guideline .recruit-nav-header {
  background-color: #f5e4eb;
}

.recruit-nav-item--guideline .recruit-nav-header::before {
  border-color: #ecc7d4 transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .recruit-nav {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .recruit-nav-item {
    width: 80%;
    max-width: 300px;
  }
  #recruit-links {
    padding: 20px 15px 50px;
  }
}
#hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  margin-top: -25px;
  z-index: 2;
}
.hero-content h1 {
  display: inline-block;
  position: relative;
  background: #fff;
  color: #666;
  font-size: 26px;
  font-weight: normal;
  padding: 8px 40px;
  margin: 0;
  letter-spacing: 0.1em;
}
.hero-content h1::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 15px solid #cce7ed;
}
.hero-content h1::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid #cce7ed;
}

#message {
  padding: 50px 20px 60px;
}

.message-container {
  max-width: 800px;
  margin: 0 auto;
}
.message-container h2 {
  color: #80aebb;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

.message-body {
  max-width: 750px;
  margin: 0 auto;
}
.message-body p {
  color: #666;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px;
}
.message-body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .hero-image {
    max-height: 250px;
  }
  .hero-content h1 {
    font-size: 22px;
    padding: 6px 30px;
  }
  .message-container h2 {
    font-size: 24px;
    line-height: 1.5;
  }
  #message {
    padding: 30px 15px 40px;
  }
}
#oneday-hero {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.oneday-hero-image {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.oneday-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.oneday-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
.oneday-hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.oneday-hero-title {
  position: relative;
  text-align: center;
  margin-top: -30px;
  z-index: 2;
}
.oneday-hero-title img {
  max-width: 400px;
  width: 80%;
  height: auto;
}

.oneday-lead {
  text-align: center;
  color: #666;
  font-size: 17px;
  line-height: 2;
  margin: 30px auto 40px;
  max-width: 800px;
  padding: 0 20px;
}

.oneday-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 800px;
  flex-wrap: wrap;
}
.oneday-nav li a {
  display: inline-block;
  padding: 8px 20px;
  background: #ead99d;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}
.oneday-nav li a:hover {
  opacity: 0.75;
}

.oneday-section {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.oneday-profile {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
}

.oneday-profile-img img {
  width: 160px;
  height: auto;
  border-radius: 50%;
}

.oneday-profile-name {
  color: #ead99d;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 10px;
}

.oneday-profile-role {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 5px;
}

.oneday-profile-prev {
  color: #999;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.oneday-timeline {
  flex: 1;
}

.oneday-entry {
  margin-bottom: 0;
}

.oneday-entry-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 10px;
  font-weight: normal;
}

.oneday-time img {
  height: 40px;
  width: auto;
}

.oneday-entry-title {
  color: #ead99d;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.oneday-entry p {
  color: #666;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 10px;
}

.oneday-arrow {
  text-align: center;
  margin: 10px 0;
}
.oneday-arrow img {
  width: 20px;
  height: auto;
}

.oneday-entry-with-photo {
  overflow: hidden;
}

.oneday-entry-photo {
  float: right;
  margin: 0 0 15px 20px;
  width: 200px;
}
.oneday-entry-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.oneday-sub-photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 10px 0;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .oneday-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .oneday-profile {
    width: 100%;
  }
  .oneday-profile-img img {
    width: 120px;
  }
  .oneday-hero-image {
    max-height: 250px;
  }
  .oneday-lead {
    font-size: 15px;
    margin: 20px auto 30px;
  }
  .oneday-nav {
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .oneday-nav li a {
    padding: 6px 14px;
    font-size: 14px;
  }
  .oneday-entry-heading {
    gap: 10px;
  }
  .oneday-time img {
    height: 30px;
  }
  .oneday-entry-title {
    font-size: 16px;
  }
  .oneday-entry-photo {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }
}
#guideline-hero {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.guideline-hero-image {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.guideline-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.guideline-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
.guideline-hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.guideline-hero-title {
  position: relative;
  text-align: center;
  margin-top: -30px;
  z-index: 2;
}
.guideline-hero-title img {
  max-width: 400px;
  width: 80%;
  height: auto;
}

.guideline-section {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.guideline-heading {
  color: #deacc2;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #deacc2;
}

.guideline-body {
  color: #666;
  font-size: 16px;
  line-height: 2;
}
.guideline-body p {
  margin: 0 0 20px;
}
.guideline-body a {
  color: #80aebb;
  text-decoration: underline;
}
.guideline-body a:hover {
  text-decoration: none;
}

.guideline-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}
.guideline-links li {
  margin-bottom: 5px;
}
.guideline-links li::before {
  content: "▶ ";
  color: #deacc2;
  font-size: 12px;
}

.guideline-appeal {
  font-weight: bold;
  color: #deacc2;
  font-size: 17px;
  text-align: center;
  margin: 30px 0 0;
}

.guideline-subheading {
  color: #deacc2;
  font-size: 17px;
  font-weight: bold;
  margin: 25px 0 10px;
}

.guideline-condition-list {
  padding-left: 20px;
  margin: 10px 0 15px;
}
.guideline-condition-list li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.guideline-note {
  font-size: 14px;
  color: #999;
}

.guideline-tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.guideline-tbl th,
.guideline-tbl td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.guideline-tbl th {
  width: 120px;
  background: #f9f2f5;
  color: #666;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
}
.guideline-tbl td {
  font-size: 15px;
  color: #666;
}
.guideline-tbl td strong {
  color: #555;
}

.guideline-form-link {
  display: inline-block;
  padding: 8px 20px;
  background: #deacc2;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}
.guideline-form-link:hover {
  opacity: 0.75;
}

.guideline-apply-num {
  color: #666;
  font-size: 17px;
  font-weight: bold;
  margin: 25px 0 10px;
  padding-left: 5px;
  border-left: 3px solid #deacc2;
}

.guideline-apply-deadline {
  color: #deacc2;
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 10px;
  text-align: center;
}

.guideline-deadline-date {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #666;
}

.guideline-notes-list {
  padding-left: 25px;
  margin: 15px 0;
}
.guideline-notes-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.guideline-schedule {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin: 10px 0 0 10px;
  font-size: 15px;
}
.guideline-schedule dt {
  font-weight: bold;
  white-space: nowrap;
}
.guideline-schedule dd {
  margin: 0;
}

.guideline-schedule-note {
  font-size: 14px;
  color: #999;
  margin: 8px 0 0;
}

.guideline-privacy-num {
  color: #666;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 8px;
}

@media screen and (max-width: 768px) {
  .guideline-hero-image {
    max-height: 250px;
  }
  .guideline-heading {
    font-size: 24px;
  }
  .guideline-section {
    padding: 0 15px;
    margin-bottom: 35px;
  }
  .guideline-apply-deadline {
    font-size: 18px;
  }
  .guideline-deadline-date {
    font-size: 20px;
  }
  .guideline-tbl th {
    width: 90px;
    font-size: 14px;
  }
  .guideline-tbl td {
    font-size: 14px;
  }
}
