html {
  margin: 0 !important;
  padding: 0 !important;
  scroll-behavior: smooth;
}

.body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-ja);
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}


/* ============================================
   PC / SP 表示切り替え
   ============================================ */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
      .heading {
        max-width: 480px;
        padding: 80px min(5.333%, 20px);
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 80px 0;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section__head {
  margin-bottom: 50px;
}

.section__en {
  display: block;
  font-family: var(--font-wdxl);
  font-size: 80px;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  letter-spacing: 0.02em;
}

.section__ja {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gray);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ============================================
   HEADER
   ============================================ */
.header01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  transition: background var(--transition), box-shadow var(--transition);
}

.header01--transparent {
  background: transparent;
}

.header01--white {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  box-sizing: border-box;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  height: 70px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 36px;
  width: auto;
}

.header-logo-mark {
  height: 30px;
  width: auto;
}

.header01--transparent .header-logo-img--color,
.header01--transparent .header-logo-mark--color {
  display: none;
}
.header01--transparent .header-logo-img--white,
.header01--transparent .header-logo-mark--white {
  display: block;
}

.header01--white .header-logo-img--white,
.header01--white .header-logo-mark--white {
  display: none;
}
.header01--white .header-logo-img--color,
.header01--white .header-logo-mark--color {
  display: block;
}

.header-ul {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.header-li {
  margin: 0 min(1.667vw, 20px) 0 0;
}

.header-text1 {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color var(--transition), opacity var(--transition);
}

.header01--transparent .header-text1 {
  color: var(--color-white);
}

.header01--white .header-text1 {
  color: var(--color-dark);
}

.header-text1:hover {
  opacity: 0.7;
}

.header-btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background var(--transition) !important;
  opacity: 1 !important;
}

.header-btn1:hover {
  background: #a00f28 !important;
  opacity: 1 !important;
}

/* ============================================
   HAMBURGER BUTTON (SP)
   ============================================ */
.ham-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1200;
  flex-shrink: 0;
}

.ham-btn span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.2s ease, top 0.35s ease, background 0.3s ease;
}

.ham-btn span:nth-child(1) { top: 12px; }
.ham-btn span:nth-child(2) { top: 21px; }
.ham-btn span:nth-child(3) { top: 30px; }

.header01--transparent .ham-btn span {
  background: var(--color-white);
}

.header01--white .ham-btn span {
  background: var(--color-dark);
}

.ham-btn.is-open span {
  background: var(--color-white);
}
.header01--white .ham-btn.is-open span {
  background: var(--color-dark);
}
.ham-btn.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.ham-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.ham-btn.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ============================================
   DRAWER MENU (SP)
   ============================================ */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.drawer-li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.drawer-li:first-child {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.drawer-li a {
  display: block;
  text-align: center;
  padding: 22px 20px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color var(--transition);
}

.drawer-li a:hover {
  color: var(--color-red);
  opacity: 1;
}

.drawer-cta {
  margin-top: 36px;
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 16px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  transition: background var(--transition) !important;
  opacity: 1 !important;
}

.drawer-cta:hover {
  background: #a00f28 !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/fv_pc.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  color: var(--color-white);
}

.hero__fv-text {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ============================================
   NEWS
   ============================================ */
.news {
  background: var(--color-white);
}

.news__list {
  border-top: 1px solid var(--color-border);
}

.news__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news__date {
  font-size: 13px;
  color: var(--color-gray);
  white-space: nowrap;
  min-width: 90px;
}

.news__text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   COMPANY (About section)
   ============================================ */
.about {
  background: #e8e8e8;
  position: relative;
  overflow: hidden;
}

/* 背景にkamon_wを大きく */
.about::before {
  content: '';
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  aspect-ratio: 1;
  background: url('../img/kamon_w.svg') center center / contain no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.about .section__head {
  position: relative;
  z-index: 1;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__kamon-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.about__kamon {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about__text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-dark);
}

.about__company-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.about__company {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* ============================================
   SERVICE
   ============================================ */
.service {
  position: relative;
}

.service__bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg.jpg') center center / cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}

.service__inner {
  position: relative;
  z-index: 1;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service__card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.service__card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.service__card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service__card:hover .service__card-img img {
  transform: scale(1.05);
}

.service__card-body {
  background: var(--color-white);
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service__card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-red);
  line-height: 1.5;
}

.service__card-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-dark);
  margin: 0;
}

/* ============================================
   SLIDER
   ============================================ */
.slider-section {
  overflow: hidden;
  padding: 0;
}

.slider-section .slick-track {
  display: flex;
}

.slider-section .slick-slide {
  padding: 0 8px;
}

.slider-section .slick-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================
   COMPANY OVERVIEW
   ============================================ */
.overview {
  background: var(--color-white);
}

.overview__table {
  width: 100%;
  border-collapse: collapse;
}

.overview__table tr {
  border-bottom: 1px solid var(--color-border);
}

.overview__table tr:first-child {
  border-top: none;
}

.overview__table th {
  display: block;
  padding: 20px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-red);
  text-align: left;
  width: 100%;
}

.overview__table td {
  display: block;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.8;
}

/* ============================================
   RECRUIT
   ============================================ */
.recruit {
  position: relative;
  background: url('../img/recruit_bg.jpg') center center / cover no-repeat;
}

.recruit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.recruit .section__inner {
  position: relative;
  z-index: 1;
}

.recruit .section__head {
  text-align: center;
}

.recruit .section__en {
  color: var(--color-white);
}

.recruit .section__ja {
  color: rgba(255, 255, 255, 0.75);
}

/* キャッチコピー */
.recruit__catch {
  margin-bottom: 40px;
}

.recruit__catch-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-white);
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.recruit__card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 48px;
  margin-bottom: 40px;
}

.recruit__table-head {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 16px;
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.recruit__table tr {
  border-bottom: 1px solid var(--color-border);
}

.recruit__table tr:first-child {
  border-top: 1px solid var(--color-border);
}

.recruit__table th {
  padding: 18px 24px 18px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  vertical-align: top;
  width: 140px;
  text-align: left;
}

.recruit__table td {
  padding: 18px 0;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.9;
  vertical-align: top;
}

.recruit__table td a {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recruit__entry {
  display: flex;
  justify-content: center;
}

.recruit__entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-white);
  padding: 18px 56px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background var(--transition);
  text-decoration: none;
}

.recruit__entry-btn:hover {
  background: #a00f28;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .recruit__card {
    padding: 24px 20px;
    border-radius: 8px;
  }

  .recruit__table th {
    display: block;
    width: 100%;
    padding: 16px 0 4px;
  }

  .recruit__table td {
    display: block;
    padding: 0 0 16px;
  }

  .recruit__table tr:first-child {
    border-top: none;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--color-light-gray);
}

.contact .section__head {
  text-align: left;
}

.contact__tel {
  font-family: var(--font-wdxl);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
  text-align: left;
}

.contact__tel a {
  color: var(--color-red);
}

.contact__hours {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 40px;
  text-align: left;
}

.contact__form {
  max-width: 100%;
  margin: 0;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form__required {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
  white-space: nowrap;
}

.form__optional {
  background: #999;
  color: var(--color-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
  white-space: nowrap;
}

.form__select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-ja);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form__select:focus {
  border-color: var(--color-red);
}

.form__select option[value=""][disabled] {
  color: #bbb;
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-ja);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
  box-sizing: border-box;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #bbb;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-red);
}

.form__textarea {
  height: 200px;
  resize: vertical;
}

.form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--color-dark);
}

.form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-red);
  cursor: pointer;
  flex-shrink: 0;
}

.form__privacy-link {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__privacy-link:hover {
  color: var(--color-red);
  opacity: 1;
}

.form__submit-wrap {
  display: flex;
  justify-content: center;
}

.form__submit {
  display: block;
  min-width: 200px;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  border-radius: 30px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition);
  letter-spacing: 0.1em;
}

.form__submit:hover {
  background: #a00f28;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 50px 0 36px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo-text {
  height: 38px;
  width: auto;
}

.footer__logo-mark {
  height: 32px;
  width: auto;
}

.footer__address {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.footer__btns {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.footer__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), opacity var(--transition);
  min-width: 220px;
  padding: 20px 32px;
}

.footer__btn--contact {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.1em;
  min-height: 64px;
}

.footer__btn--contact:hover {
  background: #a00f28;
  opacity: 1;
}

.footer__btn--tel {
  background: var(--color-red);
  color: var(--color-white);
  min-height: 64px;
  gap: 2px;
}

.footer__btn--tel:hover {
  background: #a00f28;
  opacity: 1;
}

.footer__btn-tel-num {
  font-family: var(--font-wdxl);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.footer__btn-tel-hours {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.footer__copy {
  font-size: 12px;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

/* ============================================
   PAGE TOP BUTTON
   ============================================ */
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background var(--transition);
  border: none;
  font-size: 20px;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  background: #a00f28;
}

.pagetop svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   SP 固定 CTA（お問い合わせ）
   ============================================ */
   @media screen and (max-width: 960px) {
.sp-fixed-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-red);
  color: var(--color-white) !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 990;
  transition: background var(--transition);
}

.sp-fixed-cta:hover {
  background: #a00f28;
  opacity: 1;
}

.sp-fixed-cta__icon {
  margin-right: 8px;
  font-size: 18px;
}
}

/* ============================================
   RESPONSIVE (960px)
   ============================================ */
@media screen and (max-width: 960px) {
  .section {
    padding: 60px 0;
  }

  .body {
        padding-bottom: 60px;
  }


  .section__inner {
    padding: 0 20px;
  }

  .section__en {
    font-size: 52px;
  }

  /* ヒーロー */
  .hero {
    height: 500px;
  }

  .hero__bg {
    background: url('../img/fv_sp.jpg') center center / cover no-repeat;
  }

  /* ヘッダー */
  .nav01 {
    height: 50px;
    padding: 0 20px;
  }

  .header-left,
  .header-right {
    height: 50px;
  }

  .header-logo-img {
    height: 28px;
  }

  .header-logo-mark {
    height: 24px;
  }

  .drawer {
    display: flex;
  }

  /* about */
  .about::before {
    width: 80%;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    opacity: 0.1;
  }

  .about__text {
    text-align: left;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about__kamon-box {
    max-width: 320px;
    margin: 0 auto;
  }

  .about__company-wrap {
    justify-content: center;
  }

  /* service */
  .service__grid {
    grid-template-columns: 1fr;
  }

  /* contact */
  .contact__tel {
    font-size: 32px;
  }

  /* footer */
  .footer__inner {
    padding: 0 20px;
  }

  .footer__btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .footer__btn {
    width: 100%;
  }

  /* pagetop */
  .pagetop {
    bottom: 76px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

}


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

:root {
  --color-red: #C41230;
  --color-dark: #1a1a1a;
  --color-gray: #555;
  --color-light-gray: #f5f5f5;
  --color-border: #ddd;
  --color-white: #fff;
  --font-en: 'WDXL Lubrifont SC', serif;
  --font-serif: 'Noto Serif', serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-wdxl: 'WDXL Lubrifont SC', serif;
  --transition: 0.3s ease;
}


/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #D30001;
        font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #D30001;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: #d30001;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* bootstrap */
button.btn-success {
    cursor: pointer;
}

.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {
}

/* page02 common */
.page02 {
    background: #ffffff 0% 0% no-repeat padding-box;
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
background: #FAFAFA 0% 0% no-repeat padding-box;
    height: 288px;
}



@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.crumbs-separator {
    margin: 0 8px;
    color: #B2B2B2;
}

.crumbs-current {
    font-size: 16px;
    color: #B2B2B2;
}

@media screen and (max-width: 960px) {
    .heading._crumbs {
        padding: 20px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #FAFAFA 0% 0% no-repeat padding-box;
    border: 1px solid #000;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
background: #000000 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}


/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0 0 0;
}

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #000000;
    border-radius: 30px;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 13px 0;
    color: #000;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

@media screen and (max-width: 960px) {
}



/* ============================================
   detail（プライバシーポリシーなど詳細ページ）
   ============================================ */
.detail {
    background: var(--color-white) 0% 0% no-repeat padding-box;
}

.detail-common-area._minheight {
    min-height: 300px;
}

.detail-common-area h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-dark);
    border-left: 6px solid var(--color-red);
    padding: 0 0 0 14px;
    margin: 40px 0 20px 0;
}

.detail-common-area h2:first-of-type {
    margin-top: 0;
}

.detail-common-area p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-gray);
    margin: 0 0 20px 0;
}

.detail-common-area .privacy-date {
    margin: 50px 0 0 0;
    text-align: right;
    color: var(--color-dark);
}

@media screen and (max-width: 960px) {
    .detail-common-area h2 {
        font-size: 17px;
        margin: 30px 0 16px 0;
    }

    .detail-common-area .privacy-date {
        text-align: left;
    }
}
