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

body {
  color: #333;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

:root {
  --color-toyota-red: #eb0a1e;
  --color-pure-black: #000000;

  --color-text-main: #333333;
  --color-text-sub: #444444;
  --color-text-light: #999999;

  --color-white: #ffffff;
  --color-bg-soft: #f8f9fa;
  --color-border: #e5e7e9;

  --content-width: 1200px;
  --sp-padding: 20px;

  --section-padding-pc: 120px;
  --section-padding-sp: 60px;
}

.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-padding);
  padding-right: var(--sp-padding);
}

@media (min-width: 1240px) {
  .l-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* =========================================================
   button
========================================================= */
.c-btn-main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-toyota-red);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  width: 100%;
  padding: 12px 50px 12px 20px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  min-height: 60px;
  transition: background-color 0.3s ease;
}

.c-btn-main::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .c-btn-main:hover {
    background-color: #c00818;
    opacity: 1;
  }

  .c-btn-main:hover::after {
    transform: translateY(-10%) rotate(45deg);
  }
}

.p-fv .c-btn-main {
  width: 320px;
}
.p-benefits__btn .c-btn-main {
  margin: 0 auto;
  max-width: 440px;
  min-height: 70px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .p-fv .c-btn-main {
    max-width: 390px;
    margin: 0;
  }
  .p-benefits__btn .c-btn-main {
    max-width: 390px;
    min-height: 60px;
    font-size: 15px;
    margin: 0 auto;
  }
}
@media (max-width: 330px) {
  .c-btn-main {
    font-size: 14px;
    padding: 10px 40px 10px 10px;
  }
  .c-btn-main::after {
    right: 18px;
  }
}

/* =========================================================
   section
========================================================= */
.u-bg-white {
  background-color: var(--color-white);
}
.u-bg-soft {
  background-color: var(--color-bg-soft);
}

.l-section {
  padding-top: var(--section-padding-pc);
  padding-bottom: var(--section-padding-pc);
  width: 100%;
}

@media (max-width: 767px) {
  .l-section {
    padding-top: var(--section-padding-sp);
    padding-bottom: var(--section-padding-sp);
  }
}

.p-full-img {
  width: 100%;
  height: auto;
}

/* =========================================================
   header
========================================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--color-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.l-header__logo img {
  height: 30px;
  display: block;
}

@media (min-width: 768px) {
  .l-header {
    height: 80px;
  }

  .l-header__inner {
    justify-content: space-between;
  }

  .l-header__cta {
    display: block;
  }
}

.c-btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-toyota-red);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  padding: 0 40px 0 20px;
  height: 48px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.c-btn-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .c-btn-header:hover {
    background-color: #c00818;
    opacity: 1;
  }

  .c-btn-header:hover::after {
    transform: translateY(-10%) rotate(45deg);
  }
}

@media (max-width: 767px) {
  .u-desktop-only {
    display: none !important;
  }
}

/* =========================================================
   FV
========================================================= */
.p-fv {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
}

.p-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
  z-index: 1;
}

.p-fv__bg-img {
  position: absolute;
  top: 80px;
  height: calc(100% - 80px);
  width: calc(100% + 400px);
  max-width: none;
  right: -400px;
  object-fit: cover;
  object-position: center top;
}

/* pc */
.p-fv__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 40px;
}

.p-fv__content {
  max-width: 500px;
  text-align: left;
}

.p-fv__badge {
  display: inline-block;
  background-color: var(--color-toyota-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.p-fv__main-copy {
  color: var(--color-main-black);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}

.p-fv__sub-copy {
  color: var(--color-main-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}

.p-fv__cta {
  position: relative;
  display: inline-block;
  margin-top: 24px;
}

.p-fv__balloon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 12px;
  background-color: var(--color-pure-black);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.p-fv__balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--color-pure-black);
}

.p-fv .c-btn-main {
  width: 320px;
  margin: 0;
}

/* responsible */
@media (max-width: 767px) {
  .p-fv {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-top: 60px;
    background-color: var(--color-white);
  }

  .p-fv::after {
    display: none;
  }

  .p-fv__inner {
    order: 1;
    margin-top: 40px;
    padding: 0 20px;
    z-index: 10;
  }

  .p-fv__picture {
    order: 2;
    display: block;
    position: relative;
    width: 100%;
    margin-top: -20px;
    z-index: 0;
  }

  .p-fv__picture::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .p-fv__bg-img {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .p-fv__badge {
    font-size: 12px;
    padding: 4px 8px;
    margin-bottom: 12px;
  }

  .p-fv__main-copy {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .p-fv__sub-copy {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .p-fv__cta {
    display: block;
    margin-top: 72px;
    text-align: left;
  }

  .p-fv__balloon {
    top: -42px;
    left: 10px;
    transform: none;
    margin-left: 0;
    font-size: 12px;
  }

  .p-fv__balloon::after {
    top: 100%;
    left: 20px;
    transform: none;
    border: 6px solid transparent;
    border-top-color: var(--color-pure-black);
    border-right-color: transparent;
  }

  .p-fv .c-btn-main {
    width: 100%;
    max-width: 390px;
    margin: 0;
  }
}

/* =========================================================
   section
========================================================= */
.c-section-header {
  position: relative;
  padding-top: 40px;
  margin-bottom: 60px;
}

.c-section-header__num {
  position: absolute;
  top: 0;
  left: -5px;
  font-size: 120px;
  font-weight: 800;
  color: var(--color-border);
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
}

.c-section-header__label {
  position: relative;
  z-index: 2;
  color: var(--color-toyota-red);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
  padding-top: 40px;
  padding-bottom: 15px;
}

.c-section-header__title {
  position: relative;
  z-index: 2;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: -5px;
}

/* =========================================================
   benefits
========================================================= */
.p-benefits__list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.p-benefits__item {
  flex: 1;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.p-benefits__icon {
  width: 80px;
  height: 80px;
  background-color: rgba(235, 10, 30, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.p-benefits__icon img {
  width: 40px;
  height: 40px;
}

.p-benefits__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.p-benefits__item-number {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-toyota-red);
  line-height: 1;
  margin-bottom: 25px;
}

.p-benefits__item-number span {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}

.p-benefits__item-text {
  text-align: left;
}

.p-benefits__tags {
  margin-top: 48px;
}

.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.c-tag-list__item {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-toyota-red);
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px 8px 36px;
  border-radius: 4px;
}

.c-tag-list__item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--color-toyota-red);
  border-bottom: 2px solid var(--color-toyota-red);
}

.p-benefits__btn .c-btn-main {
  margin: 60px auto 0;
  max-width: 440px;
  height: 70px;
  font-size: 18px;
}

/* responsible */
@media (max-width: 767px) {
  .p-benefits__list {
    flex-direction: column;
    gap: 16px;
  }

  .c-section-header {
    padding-top: 30px;
    margin-bottom: 40px;
  }

  .c-section-header__num {
    font-size: 90px;
  }

  .c-section-header__label {
    font-size: 14px;
    padding-top: 15px;
  }

  .c-section-header__title {
    font-size: 26px;
  }

  .p-benefits__item {
    padding: 40px 20px;
  }

  .p-benefits__item-number {
    font-size: 48px;
  }

  .p-benefits__tags {
    margin-top: 24px;
  }

  .c-tag-list {
    gap: 8px;
    justify-content: flex-start;
  }

  .c-tag-list__item {
    font-size: 12px;
    padding: 6px 12px 6px 28px;
  }

  .c-tag-list__item::before {
    left: 10px;
    width: 4px;
    height: 9px;
  }

  .p-benefits__btn {
    margin-top: 40px;
  }

  .p-benefits__btn .c-btn-main {
    max-width: 390px;
    height: 60px;
    font-size: 16px;
    margin: 0 auto;
  }
}

/* =========================================================
   image - car
========================================================= */
.p-work-visual {
  width: 100%;
  height: 590px;
  overflow: hidden;
  background-color: var(--color-bg-soft);
}

.p-work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  display: block;
}

/* --- responsible --- */
@media (max-width: 767px) {
  .p-work-visual {
    height: auto;
  }

  .p-work-visual img {
    height: auto;
  }
}

/* =========================================================
   requirements
========================================================= */

.p-requirements__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
  width: 100%;
}

.p-requirements__tab {
  flex: 1;
  height: 70px;
  background-color: var(--color-bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.p-requirements__tab-name {
  font-weight: 700;
  line-height: 1;
}

.p-requirements__tab-loc {
  font-size: 11px;
  margin-top: 4px;
}

.p-requirements__tab.is-active {
  background-color: var(--color-pure-black);
  color: var(--color-white);
}

.p-requirements__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-toyota-red);
}

.p-requirements__content {
  display: none;
}

.p-requirements__content.is-active {
  display: block;
  animation: tabFadeIn 0.5s ease forwards;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .p-requirements__tab {
    height: 50px;
  }

  .p-requirements__tab-name {
    font-size: 14px;
    font-weight: 700;
  }

  .p-requirements__tab-loc {
    display: none;
  }
}

.p-requirements__message {
  position: relative;
  padding-left: 20px;
  margin: 30px 0;
}

.p-requirements__message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-toyota-red);
  border-radius: 2px;
}

.p-requirements__message-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.p-requirements__message-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-toyota-red);
}

@media (max-width: 767px) {
  .p-requirements__message-text {
    font-size: 16px;
  }
}

/* table */
.p-requirements__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
  table-layout: fixed;
}

.p-requirements__table th,
.p-requirements__table td {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.p-requirements__table th {
  width: 260px;
  background-color: var(--color-bg-soft);
  font-weight: 700;
}

.p-requirements__table td {
  background-color: #fff;
}

.p-requirements__table tr.is-highlight th {
  background-color: var(--color-toyota-red);
  color: var(--color-white);
}

.p-requirements__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-requirements__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
}

.p-requirements__list li:last-child {
  margin-bottom: 0;
}

.p-requirements__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.u-mt-10 {
  margin-top: 10px;
}
.u-mt-20 {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .p-requirements__table th,
  .p-requirements__table td {
    display: block;
    width: 100%;
    padding: 15px;
  }

  .p-requirements__table th {
    border-bottom: none;
  }

  .p-requirements__table tr.is-highlight th {
    border-bottom: none;
  }
}

/* location */
.p-requirements__location {
  margin: 48px 0;
}

.p-requirements__location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.p-requirements__location-info {
  flex: 1;
}

.p-requirements__location-logo img {
  width: 120px;
  height: auto;
}

.p-requirements__location-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-requirements__location-desc {
  margin-bottom: 20px;
}

.p-requirements__location-map {
  flex: 1;
}

.p-requirements__map-iframe {
  position: relative;
  width: 100%;
  padding-top: 66.6%;
  background-color: var(--color-bg-soft);
  border-radius: 6px;
  overflow: hidden;
}

.p-requirements__map-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .p-requirements__location-row {
    flex-direction: column;
    gap: 30px;
  }

  .p-requirements__location-title {
    font-size: 18px;
  }

  .p-requirements__location-map {
    max-width: 100%;
    width: 100%;
  }
}

/* dormitory */

.p-requirements__dormitory-inner {
  display: flex;
  gap: 40px;
  background-color: var(--color-bg-soft);
  padding: 40px;
  border-radius: 8px;
}

.p-requirements__dormitory-media {
  flex: 1;
}

.p-requirements__dormitory-figure img {
  width: 100%;
  border-radius: 6px;
  vertical-align: bottom;
}

.p-requirements__dormitory-figure figcaption {
  font-size: 12px;
  color: var(--color-text-sub);
  text-align: right;
  margin-top: 8px;
}

.p-requirements__dormitory-content {
  flex: 1;
}

.p-requirements__dormitory-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.p-requirements__dormitory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.c-tag {
  background-color: var(--color-toyota-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.p-requirements__dormitory-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.p-requirements__dormitory-lead {
  font-weight: 700;
}

@media (max-width: 960px) {
  .p-requirements__dormitory-inner {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 24px;
  }

  .p-requirements__dormitory-title {
    font-size: 18px;
  }
}

/* =========================================================
   cta
========================================================= */
.p-requirements__cta {
  margin-top: 80px;
}

.p-requirements__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.p-requirements__cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
}

.p-requirements__cta-note {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.u-text-red {
  color: var(--color-toyota-red);
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.c-btn:hover {
  opacity: 0.8;
}

.c-btn--red:hover {
  background-color: #c00818;
  opacity: 1;
}

.c-btn::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
}

.c-btn--red {
  background-color: var(--color-toyota-red);
  color: var(--color-white);
}

.c-btn--black {
  background-color: var(--color-pure-black);
  color: var(--color-white);
}

.p-requirements__cta-back {
  text-align: center;
  margin-top: 50px;
}

.c-link-back {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-sub);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.c-link-back:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .p-requirements__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .c-btn {
    font-size: 16px;
    padding: 20px 16px;
  }

  .p-requirements__cta-note {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =========================================================
   voice
========================================================= */

.p-voice__cards {
  display: flex;
  gap: 30px;
}

.p-voice__card {
  flex: 1;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 50px 40px 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.p-voice__card::before {
  content: "”";
  position: absolute;
  top: 40px;
  left: 30px;
  font-size: 80px;
  line-height: 0.8;
  color: var(--color-border);
  font-weight: 700;
}

.p-voice__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 34px 0 24px;
  min-height: 60px;
}

.p-voice__profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.p-voice__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.p-voice__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-voice__info {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

.p-voice__info p {
  margin: 0;
}

.p-voice__text p {
  margin-bottom: 1em;
}

.p-voice__text p:last-child {
  margin-bottom: 0;
}

.u-font-bold {
  font-weight: 700;
}

@media (max-width: 960px) {
  .p-voice__cards {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .p-voice__cards {
    flex-direction: column;
    gap: 20px;
  }

  .p-voice__card {
    padding: 40px 24px 30px;
  }

  .p-voice__card::before {
    top: 25px;
    left: 20px;
    font-size: 60px;
  }

  .p-voice__title {
    font-size: 18px;
    min-height: auto;
    margin: 20px 0;
  }
}

/* =========================================================
   support
========================================================= */
.p-support__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.p-support__feature-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.p-support__feature-icon {
  margin-bottom: 20px;
}

.p-support__feature-icon img {
  height: 40px;
  width: auto;
}

.p-support__feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}

.p-support__feature-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.p-support__feature-highlight {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.p-support__detail {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.p-support__detail-image {
  width: 450px;
  height: 550px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.p-support__detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.p-support__detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-support__detail-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.p-support__detail-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--color-text-sub);
}

.p-support__grid {
  background-color: var(--color-bg-soft);
  border-radius: 8px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.p-support__grid-item {
  display: flex;
  flex-direction: column;
}

.p-support__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-support__item-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.p-support__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

@media (max-width: 960px) {
  .p-support__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .p-support__detail {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
  }

  .p-support__detail-content {
    width: 100%;
  }

  .p-support__detail-image {
    width: 450px;
    height: 550px;
    aspect-ratio: auto;
  }
}

@media (max-width: 767px) {
  .p-support__features {
    grid-template-columns: 1fr;
  }

  .p-support__feature-card {
    padding: 30px 20px;
  }

  .p-support__feature-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .p-support__detail-title {
    font-size: 20px;
  }

  .p-support__grid {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .p-support__detail-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* =========================================================
   company
========================================================= */
.p-company__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.p-company__info-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-company__intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.p-company__logo {
  margin-bottom: 40px;
}

.p-company__logo img {
  height: 40px;
  width: auto;
}

.p-company__details {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.p-company__details p {
  margin-bottom: 2px;
}
.p-company__details p:last-child {
  margin-bottom: 0;
}

.p-company__message {
  font-size: 16px;
  line-height: 1.7;
}

.p-company__image-area {
  flex: 1;
}

.p-company__image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .p-company__content {
    flex-direction: column;
    gap: 40px;
  }

  .p-company__image-area {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .p-company__intro,
  .p-company__logo,
  .p-company__details {
    margin-bottom: 30px;
  }
}

/* =========================================================
  footer
========================================================= */
.l-footer {
  background-color: var(--color-white, #ffffff);
  padding: 60px 20px 140px;
  text-align: center;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.l-footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.l-footer__copyright {
  font-size: 13px;
  color: var(--color-text-sub, #666666);
  line-height: 1.5;
}

/* =========================================================
   floating btn
========================================================= */
.c-floating-entry {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.c-floating-entry__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.c-floating-entry__btn {
  flex: 1;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  border-right: 1px solid #444;
}

.c-floating-entry__btn:last-child {
  border-right: none;
}

.c-floating-entry__btn:hover,
.c-floating-entry__btn:active {
  background-color: #eb0a1e;
}

.c-floating-entry__btn:hover .c-floating-entry__icon img,
.c-floating-entry__btn:active .c-floating-entry__icon img {
  filter: brightness(0) invert(1);
}

.c-floating-entry__icon {
  margin-bottom: 6px;
  line-height: 1;
}

.c-floating-entry__icon img {
  height: 24px;
  width: auto;
  transition: filter 0.2s ease;
}

.c-floating-entry__text {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-floating-entry__btn {
    height: 70px;
  }
  .c-floating-entry__icon img {
    height: 20px;
  }
  .c-floating-entry__text {
    font-size: 11px;
  }
}

.c-floating-entry .u-pc-only {
  display: none !important;
}
