@charset "UTF-8";
/* =======================================
   Foundation
   ======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul[role=list],
ol[role=list],
li {
  list-style: none;
}

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

html {
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #FFF7EC 0%, #FFEAD8 100%);
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #444444;
  padding-top: 80px;
}
@media (max-width: 768px) {
  body {
    padding-top: 69px;
  }
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: #f8fafc;
}

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

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

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}
/* Utility classes */
.u-hide-sp {
  display: inherit;
}
@media (max-width: 768px) {
  .u-hide-sp {
    display: none !important;
  }
}

.u-allura {
  font-family: "Allura", cursive;
  font-size: 5.75rem;
  font-weight: 400;
  color: rgba(246, 165, 90, 0.8);
}

/* ================================================
   Site typography overrides (responsive headings, base size)
================================================ */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
}

h1, .h1 {
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
}

h2, .h2 {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h3, .h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

/* text transform utilities */
.t-uppercase {
  text-transform: uppercase;
}

.t-capitalize {
  text-transform: capitalize;
}

.t-lowercase {
  text-transform: lowercase;
}

.t-brandcase {
  text-transform: capitalize;
}

/* =======================================
   Layout
   ======================================= */
.l-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .l-container {
    padding: 0 20px;
  }
}
.l-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.l-col-3 {
  grid-column: span 3;
}

.l-col-4 {
  grid-column: span 4;
}

.l-col-6 {
  grid-column: span 6;
}

.l-col-8 {
  grid-column: span 8;
}

.l-col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .l-row {
    gap: 16px;
  }
  .l-col-3, .l-col-4, .l-col-6, .l-col-8 {
    grid-column: span 12;
  }
}
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  background: #FFF7ED;
  box-shadow: 0 1px 0 #FFEDD5;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 32px);
  max-width: 1280px;
  margin-inline: auto;
  padding: 14px 20px;
}
.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #444444;
  position: relative;
  z-index: 3;
}
.header__brand-mark img {
  display: block;
  height: 52px;
  width: auto;
}
.header__brand-text {
  display: inline-flex;
  flex-direction: column;
}
.header__brand-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.header__brand-name {
  font-size: 1.05rem;
  color: #FB923C;
  letter-spacing: 0.28em;
}
.header__nav {
  margin-left: auto;
  position: relative;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444444;
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.header__nav-item a:hover {
  color: #F97316;
}
.header__nav-item--highlight a {
  color: #F97316;
}
.header__nav-item--highlight a:hover {
  color: #F6A55A;
}
.header__extras {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.header__divider {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: #FFEDD5;
}
.header__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.header__social-link:hover {
  transform: translateY(-1px);
}
.header__social-link img {
  display: block;
  height: 30px;
  width: auto;
}

/* ===== SP（〜767px）では header__nav をドロワー化 ===== */
@media (max-width: 767px) {
  .header__inner {
    padding: 10px 16px;
  }
  .header__brand-mark img {
    height: 46px;
  }
  .header__brand-text {
    gap: 2px;
  }
  .header__brand-tagline {
    font-size: 0.78rem;
  }
  .header__brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.24em;
  }
  .header__nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 340px);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    background: #FFF7ED;
    text-align: center;
    padding: 80px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .header__nav.open {
    transform: translateX(0);
  }
  .header__nav-list {
    display: grid;
    gap: 20px;
    justify-items: center;
  }
  .header__nav-item a {
    font-size: 1rem;
  }
  .header__extras {
    justify-content: center;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .hamburger__nav-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 90;
  }
  .hamburger__nav-bg[hidden] {
    display: none;
  }
}
/* ===== PC（1024px〜） ===== */
@media (min-width: 1024px) {
  .header__nav-list {
    gap: 20px;
  }
  .header__nav-item a {
    margin: 0 4px;
  }
}
/* スクロールロック */
body.no-scroll {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 103;
  z-index: 9999;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #FFF7ED;
  border-radius: 10px;
  border: 1px solid #FFEDD5;
}
@media (max-width: 767px) {
  .hamburger {
    display: inline-flex;
  }
}
.hamburger__bar, .hamburger__bar::before, .hamburger__bar::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #444444;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger__bar::before {
  position: absolute;
  top: -7px;
  left: 0;
}
.hamburger__bar::after {
  position: absolute;
  top: 7px;
  left: 0;
}
.hamburger.open .hamburger__bar {
  background: transparent;
}
.hamburger.open .hamburger__bar::before {
  transform: translateY(7px) rotate(45deg);
  opacity: 1;
}
.hamburger.open .hamburger__bar::after {
  transform: translateY(-7px) rotate(-45deg);
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  background: #fff;
  color: #444444;
  padding: 80px 0 10px;
}
.footer .l-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand {
  grid-column: span 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #444444;
}
.footer__brand-mark img {
  display: block;
  height: 52px;
  width: auto;
}
.footer__brand-text {
  display: inline-flex;
  flex-direction: column;
}
.footer__brand-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.footer__brand-name {
  font-size: 1.05rem;
  color: #FB923C;
  letter-spacing: 0.28em;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.footer__info-item {
  color: #4B5563;
  font-size: 0.95rem;
}
.footer__sns {
  display: inline-flex;
  gap: 20px;
  margin: 24px 0 0;
}
.footer__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__sns-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.footer__sns-link img {
  display: block;
  height: 32px;
  width: auto;
}
.footer__right {
  display: flex;
  gap: 60px;
}
.footer__nav--left, .footer__nav--right {
  text-align: left;
}
.footer__nav-title {
  margin: 0 0 16px;
  font-weight: 700;
  color: #444444;
  font-size: 0.9rem;
}
.footer__nav-left ul, .footer__nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
}
.footer__nav-left a, .footer__nav-right a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__nav-left a:hover, .footer__nav-right a:hover {
  color: #F97316;
}
.footer__bottom {
  margin-top: 80px;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 10px;
  }
  .footer .l-container {
    flex-direction: column;
    gap: 48px;
  }
}

/* =======================================
   Component
   ======================================= */
.button {
  display: block;
  align-items: center;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 242px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
}
.button:disabled, .button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button--primary {
  background: linear-gradient(135deg, #F97316, #F6A55A);
  color: #fff;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}
.button--secondary {
  background: #fff;
  color: #F97316;
  border: 2px solid #F97316;
}
.button--outline {
  background: transparent;
  color: #444444;
  border: 2px solid #FFEDD5;
}
.button--white {
  background: #fff;
  color: #F97316;
}
.button--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.button--small {
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 16px;
}
.button--block {
  display: inline-flex;
}
@media (max-width: 768px) {
  .button--block {
    width: 100%;
    justify-content: center;
  }
}

.button--error-page {
  margin-top: 20px;
}

.error-404 .button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}

.heading {
  font-weight: 700;
}

.heading--primary {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.heading--secondary {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
}

.heading--tertiary {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.breadcrumb {
  position: relative;
  width: 100%;
  top: 40px;
  left: 0;
  z-index: 1;
}
.breadcrumb .separator {
  margin: 0 6px;
  font-size: 1.3rem;
  font-weight: 300;
}
.breadcrumb a {
  text-decoration: none;
  color: #F97316;
  cursor: pointer;
}

.breadcrumb-blog {
  top: 0;
}

@media (max-width: 768px) {
  .breadcrumb {
    top: 20px;
    font-size: 0.75rem;
  }
  .breadcrumb .separator {
    font-size: 1rem;
  }
}
/* =======================================
   section
   ======================================= */
.hero {
  height: 90svh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    background-position: center top;
    padding: 24px 0;
  }
}
.hero__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: absolute;
}
@media (max-width: 768px) {
  .hero__bg {
    height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% center;
       object-position: 70% center;
    top: 0;
  }
}
.hero__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin: 380px auto 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  padding: 0 0 60px;
}
@media (max-width: 768px) {
  .hero__content {
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0;
    margin: 0 auto;
  }
}
.hero__title {
  color: #FF7F50;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.65);
  font-size: clamp(1.875rem, 4vw, 3rem);
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__title {
    text-align: center;
    line-height: 1.4;
  }
}
.hero__subtitle {
  color: #4B5563;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  text-align: left;
}
@media (max-width: 768px) {
  .hero__subtitle {
    text-align: center;
  }
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .hero__cta {
    justify-content: center;
    align-items: center;
  }
}

.page__hero {
  width: 100%;
  height: 300px;
  position: relative;
}
@media (max-width: 768px) {
  .page__hero {
    height: 200px;
  }
}
.page__hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.page__hero .hero__title {
  color: #F97316;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.65);
  font-size: clamp(1.875rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1em;
  z-index: 1;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page__hero .hero__title {
    line-height: 1.4;
  }
}

.features {
  background-color: linear-gradient(135deg, #F97316, #F6A55A);
  padding: 60px 0;
  text-align: center;
}
.features .section-title {
  font-size: 92px;
}
.features .l-col-4 {
  background-color: #fff;
  border-radius: 16px;
  padding: 60px 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.features__title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444444;
  margin: 0 0 16px;
}
.features__desc {
  font-size: 0.9rem;
  color: #4B5563;
  margin: 0 auto;
}

.service {
  padding: 80px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .service {
    padding: 0 0 80px;
  }
}

.section-titles {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-titles {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.section-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0;
  text-align: center;
}

.section-desc {
  text-align: left;
  margin-bottom: 24px;
  color: #4B5563;
  font-size: 1rem;
}

.service__contents {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  gap: 40px;
}
@media (max-width: 768px) {
  .service__contents {
    gap: 32px;
  }
}
.service__contents .l-col-4 {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  background-color: #FFF7ED;
  border-radius: 16px;
  padding: 32px 16px;
  min-height: 211px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .service__contents .l-col-4 {
    padding: 24px 16px;
  }
}

.service__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 0;
}

.service__icon {
  width: auto;
  height: 50px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.service__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
  color: #444444;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.service__desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6B7280;
  margin: 0;
  word-break: break-word;
}

.news {
  padding: 100px 0;
  background-color: #FFEDD5;
}
.news__contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.news__item:hover {
  transform: translateY(-1px);
}
.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  min-width: 88px;
  border-radius: 12px;
  background: #fff3e6;
  border: 1px solid #fbd6a0;
  color: #d97706;
  font-size: 0.82rem;
  font-weight: 700;
}
.news__date {
  color: #9ca3af;
  font-size: 0.92rem;
}
.news__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
}
.news .pagination {
  margin-top: 24px;
  text-align: center;
}
.news .pagination__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.news .pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  background: #FB923C;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news .pagination__link.current {
  background: #F97316;
  color: #fff;
}
.news .pagination__link:hover {
  background: #fff6ed;
  color: #F97316;
}
.news__more {
  margin-top: 18px;
  text-align: right;
}
.news__more a {
  position: relative;
  padding-right: 14px;
  color: #d97706;
  font-weight: 400;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.news__more a:hover {
  transform: translateY(-1px);
}
.news .archive .news {
  padding: 60px 0;
  background-color: #FFF7ED;
}
@media (max-width: 768px) {
  .news {
    padding: 0 0 60px;
  }
  .news__contents {
    margin-top: 20px;
  }
  .news__item {
    display: block;
    align-items: flex-start;
  }
  .news__category {
    margin: 0 16px 16px 0;
  }
  .news__date {
    font-size: 0.88rem;
  }
}

.contact {
  background: #FFF7ED;
  padding: 96px 0;
}
.contact__contents {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  padding: 64px 64px 112px 64px;
}
@media (max-width: 768px) {
  .contact__contents {
    padding: 60px 18px 42px 18px;
  }
}
.contact .section-titles {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact .section-titles {
    align-items: flex-start;
  }
}
.contact .section-title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 600;
  color: #444444;
  margin: 0 auto 24px;
}
@media (max-width: 768px) {
  .contact .section-title {
    font-size: 1.7rem;
  }
}
.contact .u-allura {
  position: absolute;
  top: -80px;
  left: -50px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .u-allura {
    left: -13px;
  }
}
.contact__copy {
  font-size: 1rem;
  color: #4B5563;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto 40px;
  text-align: center;
}

.contact__btn-wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .contact__btn-wrapper {
    flex-direction: column;
  }
}

.contact__btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 32px 16px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.contact__btn:hover {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .contact__btn {
    padding: 24px 8px;
  }
}

.contact__btn--tel {
  background: #FFF7ED;
  align-items: center;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  min-height: 156px;
}

.contact__btn--text {
  font-size: 0.95rem;
  color: #4B5563;
}

.contact__btn--number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.875rem;
  font-weight: 600;
  color: #F97316;
}

.contact__btn--number-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact__btn--note {
  font-size: 0.82rem;
  color: #4B5563;
}

.contact__btn--form {
  background: #F97316;
  color: #fff;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  min-height: 156px;
  align-items: center;
  justify-content: center;
}
.contact__btn--form .contact__btn--text {
  color: #fff;
}
.contact__btn--form .contact__btn--link {
  font-size: 1.25rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.contact__btn--arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.contact__btn--arrow-img {
  display: block;
  width: 30px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-form {
  background: #FFF7ED;
  padding: 96px 0;
}
.contact-form .l-container {
  position: relative;
}
.contact-form__card {
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 20px;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-form__card {
    padding: 40px 0px;
  }
}
.contact-form__table {
  width: 100%;
}
.contact-form__table tr {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 24px 36px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-form__table tr {
    padding: 24px 12px;
  }
}
.contact-form__table th {
  font-size: 0.95rem;
  color: #4B5563;
  font-weight: 500;
  margin-bottom: 16px;
}
.contact-form__table th span {
  padding: 4px 12px;
  margin-right: 32px;
}
.contact-form__table th .required {
  background: #F97316;
  color: #fff;
  border-radius: 9999px;
  border: 1px solid #F97316;
}
.contact-form__table th .option {
  background: #fff;
  color: #F97316;
  border-radius: 9999px;
  border: 1px solid #F97316;
}
.contact-form .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form .wpcf7-form-control-wrap input[type=tel], .contact-form .wpcf7-form-control-wrap input[type=email], .contact-form .wpcf7-form-control-wrap input[type=text], .contact-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  position: relative;
  display: block;
  background-color: #FFF7ED;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
}
.contact-form .wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form .wpcf7-form-control-wrap input[type=radio] {
  width: auto;
  margin-right: 8px;
}
.contact-form .wpcf7-form-control-wrap label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4B5563;
}
.contact-form__submit {
  margin: 24px auto;
}

.contact-check .contact-form__table td {
  padding: 8px 12px;
}
.contact-check .contact-form__actions {
  display: flex;
  gap: 24px;
  margin: 24px auto;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-check .contact-form__actions {
    flex-direction: column;
  }
}
.contact-check .button--primary {
  padding: 18px 32px;
}

@media (max-width: 768px) {
  .page-contact .page__hero .hero__title {
    letter-spacing: 0.5em;
  }
}

.contact-thanks .contact-form__card {
  text-align: center;
}
.contact-thanks .thanks__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #444444;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-thanks .thanks__heading {
    text-align: left;
    padding: 0 24px;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-thanks .thanks__message {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .contact-thanks .thanks__message {
    text-align: left;
  }
}
.contact-thanks .button--primary {
  margin: 24px auto 0;
}

.recruit {
  padding: 160px 0;
  background-color: #FFF7ED;
}
@media (max-width: 768px) {
  .recruit {
    padding: 160px 0 60px;
  }
}
.recruit__wrapper {
  display: flex;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0;
  border-radius: 24px;
  position: relative;
}
@media (max-width: 768px) {
  .recruit__wrapper {
    flex-direction: column-reverse;
  }
}
.recruit__contents {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 24px 0 0 24px;
  padding: 64px 24px 64px 64px;
}
@media (max-width: 768px) {
  .recruit__contents {
    width: 100%;
    border-radius: 0 0 24px 24px;
    padding: 40px 16px;
  }
}
@media (max-width: 768px) {
  .recruit .section-titles {
    align-items: flex-start;
  }
}
.recruit .section-title {
  color: #FB923C;
  margin-bottom: 16px;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .recruit .section-title {
    font-size: 1.8rem;
    text-align: left;
  }
}
.recruit .u-allura {
  position: absolute;
  top: -80px;
  left: -50px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit .u-allura {
    top: -150px;
    left: 0;
    right: 0;
  }
}
.recruit__copy {
  font-size: 1.5rem;
  color: #444444;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}
.recruit__text {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 32px;
}
.recruit__tag {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.recruit__tag-item {
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: #fff3e6;
  border: 1px solid #fbd6a0;
  color: #d97706;
  font-size: 0.82rem;
  font-weight: 400;
}
.recruit .button {
  max-width: 488px;
  width: 100%;
}
.recruit .button:hover {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .recruit .button {
    margin: 0 auto;
  }
}
.recruit__img {
  width: 50%;
}
.recruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 24px 24px 0;
}
@media (max-width: 768px) {
  .recruit__img {
    width: 100%;
  }
  .recruit__img img {
    border-radius: 24px 24px 0 0;
  }
}

.area {
  padding: 80px 0;
  background-color: #FFEDD5;
}
@media (max-width: 768px) {
  .area {
    padding: 0 0 80px;
  }
}
.area__wrapper {
  display: flex;
  padding: 0;
}
@media (max-width: 768px) {
  .area__wrapper {
    flex-direction: column;
  }
}
.area__contents {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0 70px 55px;
}
@media (max-width: 768px) {
  .area__contents {
    width: 100%;
    padding: 42px 0 0 0;
  }
}
.area .section-titles {
  display: block;
}
@media (max-width: 768px) {
  .area .section-titles {
    align-items: flex-start;
  }
}
.area .section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #444444;
  margin: 80px 0 42px;
  text-align: left;
}
@media (max-width: 768px) {
  .area .section-title {
    margin: 24px 0 16px;
  }
}
.area .u-allura {
  display: inline-block;
  position: relative;
  top: 0;
  left: -55px;
  text-align: left;
}
.area .u-allura .text-right {
  padding-left: 1rem;
  text-transform: capitalize;
  display: inline-block;
}
@media screen and (max-width: 987px) {
  .area .u-allura {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .area .u-allura {
    top: 0;
    left: 0;
    font-size: 72px;
    line-height: 0.65;
  }
  .area .u-allura .text-right {
    padding-left: 7rem;
  }
}
.area__copy {
  font-size: 1.5rem;
  color: #444444;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .area__copy {
    margin-bottom: 16px;
  }
}
.area__text {
  font-size: 1rem;
  color: #4B5563;
  line-height: 2;
  margin-bottom: 32px;
}
.area__note {
  font-size: 1rem;
  color: #4B5563;
  line-height: 2;
}
.area__map {
  width: 50%;
  padding-top: 120px;
}
.area__map img {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .area__map {
    width: 100%;
    padding-top: 34px;
  }
  .area__map img {
    width: 90%;
    height: auto;
  }
  .area .space {
    display: inline-block;
    padding-left: 1rem;
  }
}

.company .page__lead {
  padding: 60px 0 50px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .company .page__lead {
    padding: 24px 0 40px;
  }
}
.company .page__lead .section-title {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5;
  color: #F97316;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .company .page__lead .section-title {
    font-size: 1.5rem;
    text-align: left;
  }
}
.company .page__lead .section-desc {
  font-size: 1.125rem;
  line-height: 2;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company .page__lead .section-desc {
    font-size: 1rem;
    text-align: left;
    margin: 0;
  }
}

.approach {
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .approach {
    padding: 0 0 80px;
  }
}
.approach .section-titles {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .approach .section-titles {
    align-items: flex-start;
  }
}
.approach .section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #444444;
  margin: 80px 0 42px;
  text-align: left;
}
.approach .section-title .space {
  display: none;
}
@media screen and (max-width: 852px) {
  .approach .section-title {
    margin: 24px 0 16px;
  }
  .approach .section-title .sp-only {
    display: block;
  }
  .approach .section-title .space {
    display: inline-block;
    width: 5em;
  }
}
.approach .u-allura {
  display: inline-block;
  position: relative;
  top: 0;
  left: 15px;
  text-align: left;
}
.approach .u-allura .text-right {
  padding-left: 1rem;
  text-transform: capitalize;
  display: inline-block;
}
@media screen and (max-width: 1068px) {
  .approach .u-allura {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .approach .u-allura {
    top: 0;
    left: 0;
    font-size: 72px;
    line-height: 0.65;
  }
  .approach .u-allura .text-right {
    padding-left: 0;
  }
}
.approach__contents {
  margin-top: 24px;
}
.approach__diagram {
  position: relative;
  margin: 0 auto;
  width: 800px;
  height: 567px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .approach__diagram {
    width: 340px;
    height: 320px;
  }
}
.approach__bg {
  display: block;
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 20px solid #F6A55A;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media (max-width: 768px) {
  .approach__bg {
    width: 220px;
    height: 220px;
    border-width: 15px;
  }
}
.approach__node {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #F6A55A;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
}
.approach__node--top {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.approach__node--left {
  bottom: 0;
  left: 10%;
}
.approach__node--right {
  bottom: 0;
  right: 10%;
}
@media (max-width: 768px) {
  .approach__node {
    width: 160px;
    height: 160px;
    padding: 8px;
  }
  .approach__node--left {
    left: 0%;
  }
  .approach__node--right {
    right: 0%;
  }
}
.approach__node-title {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .approach__node-title {
    font-size: 1rem;
    word-break: keep-all;
  }
}
.approach__node-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  padding: 0.5em 0 0 1em;
}
@media (max-width: 768px) {
  .approach__node-text {
    display: none;
  }
}

.profile {
  background: #FFF7EC;
  padding: 48px 0 60px;
  position: relative;
}
.profile .section-titles {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .profile .section-titles {
    align-items: flex-start;
  }
}
.profile .section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #444444;
  margin: 80px 0 42px;
  text-align: left;
}
@media (max-width: 768px) {
  .profile .section-title {
    margin: 24px 0 16px;
    z-index: 1;
  }
}
.profile .u-allura {
  transform: none;
  font-size: clamp(3.2rem, 8vw, 4.5rem);
  line-height: 0.75;
  text-align: right;
  z-index: 0;
}
.profile .u-allura .text-right {
  padding: 6px 0 0 20px;
  display: inline-block;
}
@media (max-width: 768px) {
  .profile .u-allura {
    position: absolute;
    top: 16px;
    right: 0;
    font-size: 92px;
    line-height: 0.72;
  }
  .profile .u-allura .text-right {
    padding: 4px 0 0 12px;
  }
}
.profile__contents {
  padding: 0 24px;
}
.profile__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.profile__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #FB923C;
}
.profile dt {
  margin: 0;
  font-weight: 700;
  color: #FB923C;
  font-size: 1rem;
  line-height: 1.5;
}
.profile dd {
  margin: 0;
  color: #444444;
  font-size: 1rem;
  line-height: 1.5;
}
.profile__link {
  margin-left: 1.5em;
  color: #FB923C;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.profile__link:hover {
  color: #F97316;
}
@media (max-width: 768px) {
  .profile {
    padding: 86px 0 48px;
  }
  .profile__contents {
    padding: 24px 16px;
  }
  .profile__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }
  .profile dt {
    font-size: 0.95rem;
  }
  .profile dd {
    font-size: 0.95rem;
  }
}

.single-news {
  padding: 80px 0;
  background: #FFF7ED;
}
.single-news__article {
  background: #fff;
  border: 1px solid #FFEDD5;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  margin: 0 auto;
}
.single-news__header {
  margin-bottom: 20px;
}
.single-news__category {
  align-self: flex-start;
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: #fff3e6;
  border: 1px solid #fbd6a0;
  color: #d97706;
  font-size: 0.82rem;
  font-weight: 700;
}
.single-news__date {
  color: #9ca3af;
  font-size: 0.95rem;
}
.single-news__title {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #444444;
  line-height: 1.4;
}
.single-news__thumb {
  width: 96%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}
.single-news__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .single-news {
    padding: 40px 0;
  }
  .single-news__article {
    padding: 24px 12px;
  }
  .single-news__title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }
}
.single-news__content {
  color: #444444;
  font-size: 1rem;
  line-height: 1.8;
}
.single-news__content p {
  margin: 0 0 1.2em;
}
.single-news__content h2, .single-news__content h3, .single-news__content h4 {
  margin: 1.4em 0 0.6em;
}
.single-news__content ul, .single-news__content ol {
  margin: 0 0 1.2em 1.2em;
}
.single-news__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.2em auto;
}
.single-news__pager {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
.single-news__pager a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  background: #FB923C;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.single-news__pager a:hover {
  transform: translateY(-1px);
  background-color: #F6A55A;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.message {
  padding: 160px 0;
  background-color: #FFEDD5;
}
@media (max-width: 768px) {
  .message {
    padding: 160px 0 60px;
  }
}
.message__wrapper {
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0;
  border-radius: 24px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 799px) {
  .message__wrapper {
    flex-direction: column-reverse;
  }
}
.message__contents {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 24px 0 0 24px;
  padding: 64px 24px 48px;
}
@media (max-width: 799px) {
  .message__contents {
    width: 100%;
    border-radius: 0 0 24px 24px;
    padding: 40px 16px;
  }
}
@media (max-width: 799px) {
  .message .section-titles {
    align-items: flex-start;
  }
}
.message .section-title {
  color: #FB923C;
  margin-bottom: 16px;
  font-size: 2.5rem;
}
@media (max-width: 799px) {
  .message .section-title {
    font-size: 1.8rem;
    text-align: left;
  }
}
.message .u-allura {
  position: absolute;
  top: -80px;
  left: -50px;
  text-align: center;
}
@media (max-width: 799px) {
  .message .u-allura {
    top: -150px;
    left: 0;
    right: 0;
  }
}
.message__text {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 32px;
}
.message__img {
  width: 50%;
  background-color: #fff;
}
.message__img .img-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 799px) {
  .message__img {
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 24px 0;
  }
  .message__img .img-circle {
    width: 250px;
    height: 250px;
  }
}/*# sourceMappingURL=main.css.map */