*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #FFFFFF;
}

a {
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  vertical-align: middle;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 40px;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .l-header {
    padding: 16px 24px;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding: 12px 16px;
  }
}
.l-header__logo {
  display: flex;
  gap: 12px;
  align-items: center;
}
.l-header__logo-icon {
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  .l-header__logo-icon {
    width: 30px;
    height: 30px;
  }
}
.l-header__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header__logo-text {
  display: flex;
  flex-direction: column;
}
.l-header__logo-name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 30px;
  color: #d66909;
}
@media (max-width: 768px) {
  .l-header__logo-name {
    font-size: 1.125rem;
    line-height: 24px;
  }
}
.l-header__logo-sub {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #616161;
}
.l-header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-header__nav {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  white-space: nowrap;
}
.l-header__nav-link.is-active {
  color: #d66909;
  border-bottom: 2px solid #e88330;
  padding-bottom: 4px;
}
.l-header__recruit-btn {
  display: flex;
  align-items: center;
  margin-left: 4px;
  margin-right: -28px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 20px;
  color: #d66909;
  white-space: nowrap;
  border: 1.5px solid #e88330;
  border-radius: 24px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .l-header__recruit-btn:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1024px) {
  .l-header__recruit-btn {
    margin-right: -16px;
  }
}
.l-header__contact-btn {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 20px;
  color: #FFFFFF;
  white-space: nowrap;
  background-color: #e88330;
  border-radius: 24px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .l-header__contact-btn:hover {
    opacity: 0.7;
  }
}

.l-header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    position: relative;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.l-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
}
.l-header__mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-header__mobile-nav.is-active {
  display: flex;
  opacity: 1;
}
.l-header__mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}
.l-header__mobile-nav-link.is-active {
  color: #d66909;
  font-weight: 700;
}

.l-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 140px;
  background-color: #333333;
}
@media (max-width: 1280px) {
  .l-footer {
    padding: 64px 80px;
  }
}
@media (max-width: 1024px) {
  .l-footer {
    padding: 48px 40px;
  }
}
@media (max-width: 768px) {
  .l-footer {
    padding: 40px 24px;
  }
}
.l-footer__top {
  display: flex;
  align-items: flex-start;
}
.l-footer__logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-footer__logo-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.l-footer__logo-icon {
  width: 28px;
  height: 28px;
}
.l-footer__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-footer__logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 26px;
  color: #FFFFFF;
  white-space: nowrap;
}
.l-footer__address {
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 22px;
  color: #FFFFFF;
}
.l-footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column;
    gap: 24px;
  }
}
.l-footer__links {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-footer__links {
    gap: 24px;
    flex-wrap: wrap;
  }
}
.l-footer__link {
  font-size: 0.875rem;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: underline;
  white-space: nowrap;
}
.l-footer__copyright {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    white-space: normal;
  }
}

.l-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
}
.l-section--hero-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  padding: 0;
  background-color: #F7EDE3;
}
@media (max-width: 768px) {
  .l-section--hero-sub {
    height: 180px;
  }
}
.l-section__hero-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.6px;
  color: #d66909;
}
@media (max-width: 768px) {
  .l-section__hero-title {
    font-size: 1.5rem;
  }
}
.l-section--bg-warm {
  background-color: #F7F5F0;
}
.l-section--bg-gray {
  background-color: #FAFAFA;
}
.l-section--bg-primary {
  background-color: #e88330;
}
.l-section--news {
  padding: 160px 0;
  background-color: #FAFAFA;
}
@media (max-width: 768px) {
  .l-section--news {
    padding: 80px 0;
  }
}
.l-section--contact {
  padding: 96px 0 128px;
  background-color: #da8f5a;
}
@media (max-width: 768px) {
  .l-section--contact {
    padding: 64px 0 80px;
  }
}

.l-header-spacer {
  height: 86px;
}
@media (max-width: 768px) {
  .l-header-spacer {
    height: 62px;
  }
}

.l-inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}
.l-inner--narrow {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}
.l-inner--wide {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .c-section-heading {
    margin-bottom: 40px;
  }
}
.c-section-heading__en {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2.1px;
  color: #e88330;
}
.c-section-heading__label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 46px;
  color: #333333;
}
@media (max-width: 768px) {
  .c-section-heading__label {
    font-size: 1.5rem;
    line-height: 36px;
  }
}
.c-section-heading--white .c-section-heading__en {
  color: rgba(255, 255, 255, 0.6);
}
.c-section-heading--white .c-section-heading__label {
  color: #FFFFFF;
}
.c-section-heading--left {
  align-items: flex-start;
}
.c-section-heading--sm .c-section-heading__label {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .c-section-heading--sm .c-section-heading__label {
    font-size: 1.375rem;
  }
}

.c-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: #e88330;
  border-radius: 28px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .c-btn {
    padding: 12px 28px;
  }
}
.c-btn__arrow {
  font-family: "Manrope", sans-serif;
}
.c-btn__text {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
.c-btn--lg {
  padding: 16px 40px;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .c-btn--lg {
    width: 100%;
    padding: 14px 32px;
  }
}
.c-btn--outline {
  padding: 16px 40px;
  color: #e88330;
  background-color: #FFFFFF;
  border: 1px solid #e88330;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .c-btn--outline {
    padding: 14px 32px;
  }
}

.c-news-mini-card {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  min-width: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-news-mini-card:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .c-news-mini-card {
    flex: none;
    width: 100%;
  }
}
.c-news-mini-card__image {
  width: 100%;
  height: 160px;
  background-color: #F5F5F5;
}
@media (max-width: 768px) {
  .c-news-mini-card__image {
    height: 180px;
  }
}
.c-news-mini-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-news-mini-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
}
.c-news-mini-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-news-mini-card__date {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #424242;
  white-space: nowrap;
}
.c-news-mini-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
}

.c-news-card {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-news-card:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .c-news-card {
    flex-direction: column;
    flex: none;
    width: 100%;
  }
}
.c-news-card__image {
  flex-shrink: 0;
  width: 220px;
  background-color: #F0E6DA;
}
@media (max-width: 768px) {
  .c-news-card__image {
    width: 100%;
    height: 180px;
  }
}
.c-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-news-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.c-news-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.c-news-card__date {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #424242;
  white-space: nowrap;
}
.c-news-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
.c-news-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #424242;
}

.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 3px;
}
.c-tag--news {
  color: #e88330;
  background-color: rgba(209, 138, 78, 0.12);
}
.c-tag--daily {
  color: #C4A265;
  background-color: rgba(196, 163, 102, 0.12);
}
.c-tag--event {
  color: #8C7AB2;
  background-color: rgba(140, 122, 178, 0.12);
}
.c-tag--lg {
  padding: 3px 10px;
  border-radius: 4px;
}

.c-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.c-contact__text {
  font-size: 0.9375rem;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.c-contact__buttons {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .c-contact__buttons {
    flex-direction: column;
    width: 100%;
  }
}
.c-contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 400px;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-contact__phone:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .c-contact__phone {
    width: 100%;
  }
}
.c-contact__phone-label {
  font-size: 0.9375rem;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.c-contact__phone-number {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 36px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .c-contact__phone-number {
    font-size: 1.5rem;
  }
}
.c-contact__phone-time {
  font-size: 0.9375rem;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.c-contact__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 20px 40px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-contact__mail:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .c-contact__mail {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
  }
}

.c-def-table {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.c-def-table__row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 18px 32px;
  font-size: 0.9375rem;
  border-bottom: 1px solid #E0E0E0;
}
.c-def-table__row:last-child {
  border-bottom: none;
}
.c-def-table__row:nth-child(odd) {
  background-color: #FAFAF7;
}
@media (max-width: 768px) {
  .c-def-table__row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px;
  }
}
.c-def-table__label {
  flex-shrink: 0;
  width: 140px;
  font-weight: 700;
  color: #d66909;
}
@media (max-width: 768px) {
  .c-def-table__label {
    width: 100%;
  }
}
.c-def-table__value {
  line-height: 1.8;
  color: #333333;
}

.c-fee-table {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.c-fee-table__row {
  display: flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 1rem;
}
.c-fee-table__row:nth-child(odd) {
  background-color: #FAFAF7;
}
@media (max-width: 768px) {
  .c-fee-table__row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 12px 20px;
  }
}
.c-fee-table__label {
  flex-shrink: 0;
  width: 200px;
  font-weight: 700;
  color: #d66909;
}
@media (max-width: 768px) {
  .c-fee-table__label {
    width: 100%;
  }
}
.c-fee-table__value {
  color: #333333;
}

.c-partner-table {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.c-partner-table__row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 32px;
}
.c-partner-table__row:nth-child(odd) {
  background-color: #F7F5F0;
}
@media (max-width: 768px) {
  .c-partner-table__row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }
}
.c-partner-table__type {
  flex-shrink: 0;
  width: 180px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  color: #d66909;
}
@media (max-width: 768px) {
  .c-partner-table__type {
    width: 100%;
  }
}
.c-partner-table__name {
  flex-shrink: 0;
  width: 200px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 768px) {
  .c-partner-table__name {
    width: 100%;
  }
}
.c-partner-table__desc {
  width: 400px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #424242;
}
@media (max-width: 768px) {
  .c-partner-table__desc {
    width: 100%;
  }
}

.p-top-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 680px;
  overflow: hidden;
  background-color: #F7EDE3;
}
@media (max-width: 1024px) {
  .p-top-hero {
    height: 560px;
  }
}
@media (max-width: 768px) {
  .p-top-hero {
    height: auto;
    padding: 60px 24px 48px;
  }
}
.p-top-hero__circle {
  position: absolute;
  overflow: hidden;
  background-color: #F0E6DA;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-top-hero__circle {
    display: none;
  }
}
.p-top-hero__circle--left {
  bottom: -80px;
  left: 13px;
  width: 436px;
  height: 436px;
}
@media (max-width: 1024px) {
  .p-top-hero__circle--left {
    width: 320px;
    height: 320px;
    left: -60px;
  }
}
.p-top-hero__circle--right {
  top: 80px;
  right: -60px;
  width: 515px;
  height: 515px;
}
@media (max-width: 1024px) {
  .p-top-hero__circle--right {
    width: 380px;
    height: 380px;
    right: -80px;
  }
}
.p-top-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-top-hero__title {
  margin-bottom: 40px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 2.2px;
  color: #d66909;
}
@media (max-width: 1024px) {
  .p-top-hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .p-top-hero__title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}
.p-top-hero__text {
  margin-bottom: 80px;
  font-size: 1rem;
  line-height: 32px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-top-hero__text {
    margin-bottom: 32px;
    font-size: 0.9375rem;
    line-height: 28px;
  }
}
.p-top-hero__cta .c-btn {
  width: 400px;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .p-top-hero__cta .c-btn {
    width: 100%;
    max-width: 320px;
  }
}

.p-top-about {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-top-about {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .p-top-about {
    flex-direction: column;
    gap: 40px;
  }
}
.p-top-about__body {
  flex: 1;
}
.p-top-about__title {
  margin-bottom: 32px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2px;
  color: #d66909;
}
@media (max-width: 1024px) {
  .p-top-about__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-top-about__title {
    margin-bottom: 24px;
    font-size: 1.625rem;
  }
}
.p-top-about__text {
  font-size: 1rem;
  line-height: 2;
  color: #333333;
}
@media (max-width: 768px) {
  .p-top-about__text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
.p-top-about__image {
  flex-shrink: 0;
  width: 554px;
  height: 554px;
  background-color: #F0E6DA;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .p-top-about__image {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .p-top-about__image {
    width: 280px;
    height: 280px;
  }
}

.l-section--facility {
  padding: 96px 0 120px;
  background-color: #F7F5F0;
}
@media (max-width: 768px) {
  .l-section--facility {
    padding: 64px 0 80px;
  }
}

.p-top-facility {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 56px;
}
@media (max-width: 1024px) {
  .p-top-facility {
    gap: 40px 32px;
  }
}
@media (max-width: 768px) {
  .p-top-facility {
    flex-direction: column;
    gap: 48px;
  }
}
.p-top-facility__card:nth-child(-n+2) {
  flex: 1 1 calc(50% - 28px);
}
.p-top-facility__card:nth-child(3) {
  flex: 0 1 calc(50% - 28px);
}
.p-top-facility__card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-top-facility__card-image {
  width: 100%;
  height: 320px;
  margin-bottom: 24px;
  background-color: #F0E6DA;
  border: 1px solid #BDBDBD;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-top-facility__card-image {
    height: 220px;
    margin-bottom: 20px;
  }
}
.p-top-facility__card-title {
  margin-bottom: 16px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-top-facility__card-title {
    font-size: 1.25rem;
  }
}
.p-top-facility__card-title-sub {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #424242;
}
.p-top-facility__card-text {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 768px) {
  .p-top-facility__card-text {
    margin-bottom: 20px;
  }
}
.p-top-facility__card-action {
  margin-top: auto;
}

.p-top-values {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-top-values {
    gap: 48px;
  }
}
.p-top-values__item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-top-values__item {
    flex-direction: column;
    gap: 24px;
  }
}
.p-top-values__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-top-values__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-top-values__item-body {
  flex-shrink: 0;
  width: 560px;
  padding: 32px 48px;
}
@media (max-width: 1024px) {
  .p-top-values__item-body {
    width: 440px;
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .p-top-values__item-body {
    width: 100%;
    padding: 0;
  }
}
.p-top-values__item-number {
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(209, 138, 78, 0.3);
}
@media (max-width: 768px) {
  .p-top-values__item-number {
    font-size: 1.875rem;
  }
}
.p-top-values__item-title {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 1024px) {
  .p-top-values__item-title {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .p-top-values__item-title {
    margin-bottom: 12px;
    font-size: 1.375rem;
  }
}
.p-top-values__item-text {
  width: 400px;
  font-size: 1rem;
  line-height: 1.7;
  color: #424242;
}
@media (max-width: 1024px) {
  .p-top-values__item-text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-top-values__item-text {
    font-size: 0.9375rem;
  }
}
.p-top-values__item-image {
  flex: 1;
  height: 320px;
  min-width: 0;
  background-color: #F5F5F5;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-top-values__item-image {
    width: 100%;
    height: 220px;
    flex: none;
  }
}
.p-top-values__action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .p-top-values__action {
    margin-top: 48px;
  }
}

.p-top-news__list {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .p-top-news__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-top-news__list {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .p-top-news__list .c-news-mini-card {
    flex: 1 1 calc(50% - 10px);
  }
}
.p-top-news__action {
  display: flex;
  justify-content: center;
}

.p-top-recruit {
  padding: 120px 40px;
}
@media (max-width: 768px) {
  .p-top-recruit {
    padding: 80px 24px;
  }
}
.p-top-recruit__inner {
  display: flex;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background-color: #F7F5F0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-top-recruit__inner {
    flex-direction: column;
    border-radius: 8px;
  }
}
.p-top-recruit__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 362px;
  background-color: #F0E6DA;
}
@media (max-width: 1024px) {
  .p-top-recruit__image {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__image {
    width: 100%;
    height: 200px;
  }
}
.p-top-recruit__watermark {
  font-family: "Manrope", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(209, 138, 78, 0.3);
}
@media (max-width: 768px) {
  .p-top-recruit__watermark {
    font-size: 2.25rem;
  }
}
.p-top-recruit__body {
  display: flex;
  flex-direction: column;
  padding: 80px;
}
@media (max-width: 1024px) {
  .p-top-recruit__body {
    padding: 48px;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__body {
    padding: 32px 24px;
  }
}
.p-top-recruit__text {
  margin-bottom: 32px;
  font-size: 0.9375rem;
  line-height: 30px;
  color: #424242;
}
@media (max-width: 768px) {
  .p-top-recruit__text {
    margin-bottom: 24px;
    line-height: 26px;
  }
}
.p-top-recruit__action {
  margin-top: auto;
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-news__list {
    grid-template-columns: 1fr;
  }
}

.p-news-article {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.p-news-article__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.p-news-article__date {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  color: #666666;
}
.p-news-article__title {
  margin-bottom: 24px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .p-news-article__title {
    margin-bottom: 16px;
    font-size: 1.375rem;
  }
}
.p-news-article__hero-image {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-news-article__hero-image {
    margin-bottom: 28px;
  }
}
.p-news-article__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-news-article__body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}
.p-news-article__body p {
  margin-bottom: 24px;
}
.p-news-article__body p:last-child {
  margin-bottom: 0;
}
.p-news-article__sample {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: #cc0000;
}
.p-news-article__back {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-news-article__back {
    margin-top: 40px;
  }
}

.p-facility-service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .p-facility-service__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-facility-service__cards {
    grid-template-columns: 1fr;
  }
}
.p-facility-service__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px;
  background-color: #F7F5F0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-facility-service__card {
    padding: 32px 24px;
  }
}
.p-facility-service__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 161px;
  height: 161px;
  margin-bottom: 24px;
  overflow: hidden;
  background-color: #F0E6DA;
  border-radius: 50%;
}
.p-facility-service__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility-service__card-en {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 1.95px;
  color: #e88330;
}
.p-facility-service__card-title {
  margin-bottom: 16px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #333333;
}
@media (max-width: 768px) {
  .p-facility-service__card-title {
    font-size: 1.25rem;
  }
}
.p-facility-service__card-desc {
  max-width: 280px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
  text-align: center;
}
.p-facility-service__block {
  margin-top: 64px;
  padding: 40px 48px;
  background-color: #F7F5F0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-facility-service__block {
    margin-top: 48px;
    padding: 28px 24px;
  }
}
.p-facility-service__block-title {
  margin-bottom: 8px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-facility-service__block-title {
    font-size: 1.25rem;
  }
}
.p-facility-service__block-lead {
  margin-bottom: 32px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}
@media (max-width: 768px) {
  .p-facility-service__block-lead {
    margin-bottom: 24px;
  }
}
.p-facility-service__categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 768px) {
  .p-facility-service__categories {
    gap: 24px;
  }
}
.p-facility-service__category {
  padding-left: 20px;
  border-left: 3px solid #e88330;
}
@media (max-width: 768px) {
  .p-facility-service__category {
    padding-left: 16px;
  }
}
.p-facility-service__category-title {
  margin-bottom: 12px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
@media (max-width: 768px) {
  .p-facility-service__category-title {
    font-size: 1rem;
  }
}
.p-facility-service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-facility-service__list-item {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}
.p-facility-service__list-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #e88330;
  border-radius: 50%;
}

.p-facility-intro__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-facility-intro__card {
  display: flex;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .p-facility-intro__card {
    flex-direction: column;
  }
}
.p-facility-intro__card-image {
  flex-shrink: 0;
  width: 480px;
  min-height: 320px;
  background-color: #F0E6DA;
}
@media (max-width: 1024px) {
  .p-facility-intro__card-image {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .p-facility-intro__card-image {
    width: 100%;
    min-height: 220px;
  }
}
.p-facility-intro__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility-intro__card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 40px;
}
@media (max-width: 768px) {
  .p-facility-intro__card-content {
    padding: 28px 24px;
  }
}
.p-facility-intro__card-action {
  margin-top: auto;
  padding-top: 24px;
}
.p-facility-intro__card-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #99804D;
  background-color: rgba(196, 163, 102, 0.12);
  border-radius: 4px;
}
.p-facility-intro__card-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-facility-intro__card-title {
    font-size: 1.25rem;
  }
}
.p-facility-intro__card-desc {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}
.p-facility-intro__card-facts {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #F7F5F0;
  border-radius: 8px;
}
.p-facility-intro__card-facts-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 20px;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.p-facility-intro__card-facts-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-facility-intro__card-facts-row {
    gap: 12px;
    padding: 10px 16px;
  }
}
.p-facility-intro__card-facts-label {
  flex-shrink: 0;
  width: 60px;
  font-weight: 700;
  color: #d66909;
}
.p-facility-intro__card-facts-value {
  color: #333333;
}

.p-facility-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .p-facility-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-facility-gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-facility-gallery__item {
  overflow: hidden;
  border-radius: 16px;
}
.p-facility-gallery__image {
  width: 100%;
  height: 240px;
  background-color: #EEEEEE;
}
@media (max-width: 768px) {
  .p-facility-gallery__image {
    height: 200px;
  }
}
.p-facility-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility-gallery__caption {
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  background-color: #FFFFFF;
}
.p-facility-gallery__coming-soon {
  padding: 64px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  text-align: center;
}

.p-facility-daily__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-facility-daily__arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #e88330;
}
.p-facility-daily__item {
  display: flex;
  align-items: center;
  padding: 32px 48px;
  background-color: #FBF5EF;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .p-facility-daily__item {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 24px;
  }
}
.p-facility-daily__item-time {
  flex-shrink: 0;
  width: 120px;
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(209, 138, 78, 0.3);
}
@media (max-width: 768px) {
  .p-facility-daily__item-time {
    width: auto;
    font-size: 1.75rem;
  }
}
.p-facility-daily__item-name {
  flex-shrink: 0;
  width: 240px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}
@media (max-width: 768px) {
  .p-facility-daily__item-name {
    width: auto;
    font-size: 1rem;
  }
}
.p-facility-daily__item-desc {
  max-width: 280px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}
@media (max-width: 768px) {
  .p-facility-daily__item-desc {
    max-width: none;
  }
}

.p-facility-access__list {
  display: flex;
  gap: 56px;
}
@media (max-width: 768px) {
  .p-facility-access__list {
    flex-direction: column;
    gap: 40px;
  }
}
.p-facility-access__item {
  flex: 1;
}
.p-facility-access__item-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  margin-bottom: 20px;
  background-color: #EEEEEE;
  border-radius: 8px;
}
.p-facility-access__item-map-text {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #999999;
}
.p-facility-access__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-facility-access__item-name {
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d66909;
}
.p-facility-access__item-address {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}
.p-facility-access__item-tel {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}

.p-admission-condition__intro {
  margin-bottom: 40px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #424242;
  text-align: center;
}
@media (max-width: 768px) {
  .p-admission-condition__intro {
    margin-bottom: 32px;
  }
}
.p-admission-condition__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-admission-condition__list {
    flex-direction: column;
  }
}
.p-admission-condition__card {
  flex: 1;
  padding: 24px;
  background-color: #F7F5F0;
  border-radius: 8px;
}
.p-admission-condition__card-number {
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(209, 138, 78, 0.3);
}
.p-admission-condition__card-title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
.p-admission-condition__card-desc {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #424242;
}

.p-admission-flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.p-admission-flow__arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #e88330;
}
.p-admission-flow__card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 36px;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-admission-flow__card {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
}
.p-admission-flow__card-step {
  flex-shrink: 0;
  width: 80px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.3px;
  color: #e88330;
}
@media (max-width: 768px) {
  .p-admission-flow__card-step {
    width: auto;
  }
}
.p-admission-flow__card-title {
  flex-shrink: 0;
  width: 160px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
@media (max-width: 768px) {
  .p-admission-flow__card-title {
    width: auto;
    font-size: 1rem;
  }
}
.p-admission-flow__card-desc {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #424242;
}

.p-admission-fee {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.p-admission-fee__note {
  margin-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
  text-align: center;
}

.p-admission-faq__list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.p-admission-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
.p-admission-faq__item:last-child {
  border-bottom: none;
}
.p-admission-faq__question {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.p-admission-faq__question-label {
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #e88330;
}
.p-admission-faq__question-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
}
.p-admission-faq__answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.p-admission-faq__answer-label {
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  color: #C4A265;
}
.p-admission-faq__answer-text {
  font-size: 1rem;
  line-height: 2;
  color: #424242;
}

.p-admission-medical__intro {
  margin-bottom: 40px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #424242;
  text-align: center;
}
@media (max-width: 768px) {
  .p-admission-medical__intro {
    margin-bottom: 32px;
  }
}
.p-admission-medical__table {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.p-company-greeting {
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  .p-company-greeting {
    flex-direction: column;
    gap: 40px;
  }
}
.p-company-greeting__photo-wrap {
  flex-shrink: 0;
  width: 340px;
}
@media (max-width: 768px) {
  .p-company-greeting__photo-wrap {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
.p-company-greeting__photo {
  width: 100%;
  height: 440px;
  background-color: #F0E6DA;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-company-greeting__photo {
    height: 360px;
  }
}
.p-company-greeting__caption {
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  color: #424242;
}
.p-company-greeting__body {
  flex: 1;
}
.p-company-greeting__title {
  margin-bottom: 32px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.8;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-company-greeting__title {
    margin-bottom: 24px;
    font-size: 1.375rem;
  }
}
.p-company-greeting__text {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #424242;
}
.p-company-greeting__text p + p {
  margin-top: 24px;
}

.l-section--company {
  background-color: #F7F5F0;
}

.p-company-history__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-company-history__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
}
.p-company-history__item:first-child {
  padding-top: 0;
}
.p-company-history__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-company-history__item {
    gap: 16px;
    padding: 16px 0;
  }
}
.p-company-history__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background-color: #e88330;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-company-history__dot {
    margin-top: 5px;
  }
}
.p-company-history__year {
  flex-shrink: 0;
  width: 140px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-company-history__year {
    width: auto;
    min-width: 100px;
  }
}
.p-company-history__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}

.p-legal {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.p-legal__lead {
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 768px) {
  .p-legal__lead {
    margin-bottom: 32px;
  }
}
.p-legal__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-legal__item {
  padding: 40px;
  background-color: #F7F5F0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-legal__item {
    padding: 28px 24px;
  }
}
.p-legal__item-title {
  margin-bottom: 12px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-legal__item-title {
    font-size: 1.25rem;
  }
}
.p-legal__item-desc {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}
@media (max-width: 768px) {
  .p-legal__item-desc {
    margin-bottom: 20px;
  }
}

.p-recruit-message {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.p-recruit-message__text {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}
.p-recruit-message__text:last-child {
  margin-bottom: 0;
}

.p-recruit-job__table {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.p-recruit-job__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 32px;
  font-size: 0.9375rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.p-recruit-job__row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-recruit-job__row {
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
  }
}
.p-recruit-job__label {
  flex-shrink: 0;
  width: 140px;
  font-weight: 700;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-recruit-job__label {
    width: auto;
  }
}
.p-recruit-job__value {
  color: #333333;
}

.p-recruit-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-recruit-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-recruit-benefits__card {
  padding: 36px 32px;
  background-color: #F7F5F0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-recruit-benefits__card {
    padding: 28px 24px;
  }
}
.p-recruit-benefits__card-number {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(209, 138, 78, 0.3);
}
.p-recruit-benefits__card-title {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
.p-recruit-benefits__card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #424242;
}

.p-recruit-apply {
  text-align: center;
}
.p-recruit-apply__text {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 768px) {
  .p-recruit-apply__text {
    margin-bottom: 24px;
  }
}
.p-recruit-apply__buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}
.p-recruit-apply__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 24px 40px;
  background-color: #FFFFFF;
  border: 2px solid #e88330;
  border-radius: 16px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .p-recruit-apply__phone:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .p-recruit-apply__phone {
    padding: 20px 24px;
  }
}
.p-recruit-apply__phone-label {
  font-size: 0.875rem;
  color: #666666;
}
.p-recruit-apply__phone-number {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #d66909;
}
@media (max-width: 768px) {
  .p-recruit-apply__phone-number {
    font-size: 1.5rem;
  }
}
.p-recruit-apply__phone-time {
  font-size: 0.8125rem;
  color: #999999;
}

.u-hidden {
  display: none;
}

.u-pc-only {
  display: block;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

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