@charset "UTF-8";
/* ============================
*  Common
* ========================== */
:root {
  --color-primary: #3ea0bf;
  --color-primary-light: #c5e2ec;
  --color-accent-yellow: #eaec0d;
  --color-accent-orange: #f4af6f;
  --color-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f7f0;
  overflow-x: hidden;

  font-family: 'Noto Sans JP', sans-serif;
  color: #455462;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:lang(en) {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

/* ============================
*  Layout
* ========================== */
.l-inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 7.5rem;
  padding-inline: clamp(4rem, 8.33vw, 7.5rem);

  @media screen and (max-width: 768px) {
    & {
      max-width: 100%;
      padding-inline: 1rem;
    }
  }
}

.l-main {
  overflow-x: hidden;
  margin-block-start: 100px;

  @media screen and (max-width: 768px) {
    & {
      margin-block-start: 0;
    }
  }
}

/* ============================
*  Component
* ========================== */
/*-------------------------
  Button
-------------------------*/
/* Header */
.c-buttons {
  display: flex;
  gap: 2.5rem;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
      gap: 0.5rem;

      width: 100%;
    }
  }
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: flex-end;

  width: 208px;
  height: 80px;
  padding-block-end: 1.125rem;

  border-radius: 0 0 12px 12px;

  transition: 0.2s ease;

  @media screen and (max-width: 768px) {
    & {
      display: flex;
      align-items: center;
      justify-content: center;

      width: 100%;
      height: 40px;
      padding-block-end: 0;

      border-radius: 100px;
    }
  }
}

.c-button__label {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
      letter-spacing: 0.05em;
    }
  }
}

.c-button--reserve {
  background-color: var(--color-primary);

  & .c-button__label {
    color: var(--color-white);
  }

  /* Hover State */
  &:hover {
    background-color: #74d3f1;
  }
}

.c-button--counseling {
  background-color: var(--color-accent-yellow);

  & .c-button__label {
    color: #455462;
  }

  /* Hover State */
  &:hover {
    background-color: #feff61;
  }
}

/*-------------------------
  List
-------------------------*/
.c-list__title {
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;

  .c-item:not(:has(.c-list__desc)) & {
    margin-block-end: 1.25rem;
  }

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.5rem;
    }
  }
}

.c-list__desc {
  margin-block-end: 4.5rem;

  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 2.5rem;

      font-size: clamp(1rem, 4.8vw, 1.125rem);
      line-height: 1.5;
    }
  }
}

.c-list {
  display: flex;
  flex-direction: column;
}

.c-list--rectangle {
  gap: 3rem;

  @media screen and (max-width: 768px) {
    & {
      gap: 1rem;
    }
  }
}

.c-list--circle {
  gap: 3.5rem;

  @media screen and (max-width: 768px) {
    & {
      gap: 2rem;
    }
  }
}

/* c-list--rectangle */
.c-list--rectangle .c-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  border-radius: 16px;

  @media screen and (max-width: 768px) {
    & {
      display: flex;
      flex-direction: column;
    }
  }
}

/* c-list--circle */
.c-list--circle .c-item {
  display: flex;
  align-items: center;
  gap: 2rem;

  & .c-item__image {
    flex-shrink: 0;

    width: 234px;
    height: 234px;
    border-radius: 50%;
  }

  & .c-item__img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }

  @media screen and (max-width: 768px) {
    & {
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
    }

    & .c-item__image {
      width: 50vw;
      height: auto;
    }

    & .c-item__title {
      text-align: center;
    }
  }
}

.c-item:nth-child(even) > *:first-child {
  order: 2;

  @media screen and (max-width: 768px) {
    & {
      order: 1;
    }
  }
}

.c-item:nth-child(even) > *:last-child {
  order: 1;
}

.c-item__image {
  width: 100%;
  height: auto;
}

.c-list--rectangle .c-item:nth-of-type(odd) {
  & .c-item__img {
    border-radius: 16px 0 0 16px;
  }
}

.c-list--rectangle .c-item:nth-of-type(even) {
  & .c-item__img {
    border-radius: 0 16px 16px 0;
  }
}

.c-list--rectangle .c-item__img {
  aspect-ratio: 480 / 282;
}

.c-list--rectangle .c-item__text {
  padding-inline: 2rem;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 1rem;
      padding-inline: 1rem;
    }
  }
}

.c-item__title {
  font-size: 2rem;
  font-size: clamp(0.875rem, 2.22vw, 2rem);
  line-height: 1.75;
  font-weight: 700;

  @media screen and (max-width: 768px) {
    & {
      display: block;

      font-size: clamp(1rem, 5.33vw, 1.25rem);
    }
  }
}

.c-item__desc {
  margin-block-end: 0.5rem;

  font-size: 1rem;
  line-height: 1.75;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.875em;
    }
  }
}

.c-item__tags {
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;

  background-color: var(--color-accent-yellow);
  border-radius: 6px;

  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
    }
  }
}

/* 就労継続支援A型 */
.a-type .c-list__title {
  margin-block-end: 1.25rem;
}

.a-type .c-list--rectangle .c-item {
  background-color: #fff7d4;
  border: 1px solid #ea9542;
}

.a-type .c-item__title {
  color: #ea9542;
}

/* 就労移行支援 */
.transition .c-list__title {
  margin-block-end: 1.25rem;
}

.transition .c-list--rectangle .c-item {
  background-color: #e7f8f5;
  border: 1px solid var(--color-primary);
}

.transition .c-item__title {
  color: var(--color-primary);
}

/*-------------------------
  職種・コース
-------------------------*/
.c-group {
  border-radius: 24px;

  @media screen and (max-width: 768px) {
    & {
      border-radius: 16px;
    }
  }
}

.c-group__heading {
  padding-block: 0.875rem;
}

.c-group__body {
  padding-block: 3.5rem 6.5rem;
  padding-inline: 3.75rem;

  background-color: var(--color-white);
  border-radius: 0 0 24px 24px;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 2rem;
      padding-inline: clamp(0.75rem, 1.2vw, 1rem);

      border-radius: 0 0 14px 14px;
    }
  }
}

.c-group__item {
  max-width: 740px;
  width: 100%;
  margin-inline: auto;
}

.transition .c-group__desc {
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(0.75rem, 4.27vw, 0.9rem);
    }
  }
}

/* 就労継続支援A型 */
.a-type .c-group {
  background-color: var(--color-accent-orange);
  border: 3px solid var(--color-accent-orange);
}

.a-type .c-group__body {
  position: relative;
  z-index: 5;

  &::before,
  &::after {
    position: absolute;
    content: '';
    background-size: cover;
  }

  &::before {
    left: -50px;

    width: 119px;
    height: 134px;

    aspect-ratio: 119 / 134;

    background-image: url(../images/illust-type-a-job-01.png);
  }

  &::after {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);

    width: 115px;
    height: 204px;

    aspect-ratio: 115 / 204;

    background-image: url(../images/illust-type-a-job-02.png);
  }

  @media screen and (max-width: 768px) {
    &::before {
      /* top: 110px;
      left: -20px;

      width: 80px;
      height: auto; */
      display: none;
    }

    &::after {
      display: none;
    }
  }
}

.a-type .c-group__item--creative {
  position: relative;
  margin-block-end: 7rem;

  &::after {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);

    width: min(58.33vw, 842px);
    height: 3px;

    background-color: var(--color-accent-orange);

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 5rem;
    }

    &::after {
      bottom: -2.5rem;
    }
  }
}

/* 就労移行支援 */
.transition .c-group {
  background-color: var(--color-primary);
  border: 3px solid var(--color-primary);
}

.transition .c-group__body {
  position: relative;
  z-index: 5;

  &::before,
  &::after {
    position: absolute;
    content: '';
    background-size: cover;
  }

  &::before {
    top: -80px;
    left: -60px;

    width: 119px;
    height: 205px;

    aspect-ratio: 119 / 205;

    background-image: url(../images/illust-transition-course-01.png);
  }

  &::after {
    right: -20px;
    bottom: 311px;

    width: 105px;
    height: 195px;

    aspect-ratio: 105 / 195;

    background-image: url(../images/illust-transition-course-02.png);
  }

  @media screen and (max-width: 768px) {
    &::before {
      display: none;
    }

    &::after {
      right: -10px;
      bottom: 350px;

      width: 60px;
      height: auto;
    }
  }
}

.c-group__title {
  font-size: 2.5rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(0.875rem, 6.4vw, 1.5rem);
    }
  }
}

.transition .c-item__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;

  & .c-item__tag::before {
    content: '・';
  }

  @media screen and (max-width: 768px) {
    & {
      column-gap: 0.5rem;

      font-size: 0.75rem;
    }
  }
}
/*--------------------------------------
  Slides Component
--------------------------------------*/
.c-slides {
  display: block;
  overflow: hidden;
  width: min(100vw, 1440px);
  height: 300px;
  margin-left: calc(-1 * clamp(4rem, 8.33vw, 7.5rem));
  margin-block-end: 6.5rem;
  
  @media screen and (max-width: 768px) {
    & {
      height: 200px;
      margin-left: -1rem;
      margin-block-end: 5rem;
    }
  }
}

.c-slides__track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;

  @media screen and (max-width: 768px) {
    & {
      animation-duration: 75s;
    }
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.c-slides__img {
  width: auto;
  height: 300px;
  flex-shrink: 0;
  object-fit: contain;

  @media screen and (max-width: 768px) {
    & {
      height: 200px;
    }
  }
}
/*-------------------------
  CTA Component
-------------------------*/
.c-cta {
  max-width: 656px;
  width: 100%;
  margin-inline: auto;
}

.c-cta__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;

  height: 233px;

  & > * {
    flex-shrink: 0;
  }

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;
      padding-block: 1.5rem;
    }
  }
}

/* 無料相談 */
.c-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  margin-block-end: 2.5rem;
  padding-inline: 9.25rem;

  background-color: var(--color-white);

  @media screen and (max-width: 768px) {
    & {
      padding-inline: 1rem;
    }
  }
}

.c-cta__contact-catchcopy {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;

  font-size: 2rem;

  &::before,
  &::after {
    width: 17px;
    height: 34px;

    background-size: cover;

    content: '';
  }

  &::before {
    background-image: url(../images/deco-cta-left.png);
  }

  &::after {
    background-image: url(../images/deco-cta-right.png);
  }

  @media screen and (max-width: 768px) {
    & {
      align-items: flex-end;

      font-size: clamp(0.75rem, 6.4vw, 1.5rem);
      width: fit-content;
    }
  }
}

.c-cta__contact-catchcopy--accent {
  font-size: 2.5rem;
  color: var(--color-accent-orange);

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(2rem, 9.67vw, 2.5rem);
      line-height: 40px;
    }
  }
}

.c-cta__contact-button {
  position: relative;

  width: 100%;
  padding-block: 1rem;

  border-radius: 5px;

  &::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);

    width: 5px;
    height: 10px;
    background-image: url(../images/arrow-white.svg);
    background-size: cover;

    content: '';
  }
}

.c-cta__contact-button-text {
  display: flex;
  justify-content: center;

  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--color-white);
}

.c-cta__contact-button {
  background-color: var(--color-primary);
}

.c-cta.session-counseling-cta {
  max-width: 100%;
  width: 100%;
}

.c-cta__counseling-button {
  position: relative;
  width: 100%;
  padding-block: 1rem;
  border-radius: 5px;
  background-color: var(--color-accent-yellow);

  &::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background-image: url(../images/arrow-black.svg);
    background-size: cover;
    content: '';
  }
}

.c-cta__counseling-button-text {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  color: #455462;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(1.125rem, 5.33vw, 1.25rem);
    }
  }
}

.session-counseling-cta__content {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  &::before,
  &::after {
    position: absolute;
    background-size: cover;
    content: '';
  }

  &::before {
    top: -40px;
    left: -24px;

    width: 263px;
    height: 179px;

    aspect-ratio: 263 / 179;

    background-image: url(../images/illust-cta-01.png);

    @media screen and (max-width: 768px) {
      & {
        gap: 1rem;
      }
    }
  }

  &::after {
    top: 97px;
    right: -64px;

    width: 229px;
    height: 214px;

    aspect-ratio: 229 / 214;

    background-image: url(../images/illust-cta-02.png);
  }

  @media screen and (max-width: 768px) {
    &::before {
      top: -50px;

      width: 150px;
      height: auto;
    }

    &::after {
      top: auto;
      bottom: -110px;
      right: 0px;

      width: 130px;
      height: auto;
    }
  }
}

.session-counseling-cta__content .c-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 360px));
  justify-content: center;
  gap: 3rem;

  @media screen and (max-width: 768px) {
    & {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      width: 100%;
    }
  }
}

.c-cta.session-counseling-cta .l-inner {
  padding-block: 5rem;

  background-color: var(--color-accent-orange);

  @media screen and (max-width: 768px) {
    & {
      padding-block: 3.5rem;
    }
  }
}

.session-counseling-cta__content {
  padding-block: 3rem;

  background-color: var(--color-white);

  @media screen and (max-width: 768px) {
    & {
      width: 100%;
      padding-block: 0 2rem;
      padding-inline: 1rem;
    }
  }
}

/* 体験内容 */
.c-cta__content {
  padding-inline: 3rem;

  border: 2px solid var(--color-white);
  border-radius: 10px;

  @media screen and (max-width: 768px) {
    & {
      padding-inline: 1rem;
    }
  }
}

.c-cta__content-label {
  display: block;

  max-width: 200px;
  width: 100%;

  background-color: var(--color-white);
  border-radius: 100px;

  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #455462;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 1rem;

      font-size: 1rem;
    }
  }
}

.c-cta__content-list {
  display: grid;
  align-items: baseline;
}

.c-cta__content-list--a-type {
  grid-template-columns: repeat(2, 1fr);
}

.c-cta__content-list--transition {
  display: flex;
  align-items: baseline;
  gap: 1rem;

  @media screen and (max-width: 768px) {
    & {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: start;

      width: 100%;
    }
  }
}

.c-cta__content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.c-cta__content-item > * {
  flex-shrink: 0;
}

.c-cta__content-item-icon {
  width: 50%;
}

.transition .c-cta__content-item-icon {
  width: 45%;
}

.c-cta__content-item-img {
  /* width: 50%; */
  height: auto;
}

.c-cta__content-item-label {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(0.75rem, 4.27vw, 1rem);
    }
  }
}

/* LINE */
.c-cta-line {
  position: fixed;
  /* top: 600px; */
  bottom: 80px;
  right: -4px;
  z-index: 11;

  width: fit-content;
  height: fit-content;
  padding-block: 1rem 0.5rem;
  padding-inline: 1rem;

  background-color: #06c755;
  border: 2px solid var(--color-white);
  border-radius: 14px 0 0 14px;

  @media screen and (max-width: 768px) {
    & {
      top: auto;
      /* bottom: 45dvh; */
      bottom: 160px;

      padding-block: 0.5rem;
      padding-inline: 0.5rem;
    }
  }
}

.c-cta-line__link {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.c-cta-line__icon {
  margin-block-end: 0.625rem;

  width: 63px;
  height: auto;

  @media screen and (max-width: 768px) {
    & {
      width: 40px;
    }
  }
}

.c-cta-line__label {
  font-size: 1.174rem;
  line-height: 1.421;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.875rem;
    }
  }
}

.c-cta-line__label--big {
  font-size: 1.438rem;
  line-height: 1.174;
  font-weight: 700;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1rem;
    }
  }
}

/* ============================
*  Utility
* ========================== */
.u-pc-only {
  display: block;

  @media screen and (max-width: 768px) {
    & {
      display: none;
    }
  }
}

.u-sp-only {
  display: none;

  @media screen and (max-width: 768px) {
    & {
      display: block;
    }
  }
}

.u-num {
  font-family: 'Inter', sans-serif;
}

.u-yellow {
  color: var(--color-accent-yellow);
}

.u-slash {
  font-size: 113px;
  line-height: 124px;
  font-weight: 100;

  @media screen and (max-width: 768px) {
    & {
      margin-inline-start: -0.5rem;

      font-size: 3rem;
      line-height: 1;
    }
  }
}

.u-line {
  width: fit-content;
  background: linear-gradient(transparent 60%, #eaec0d 60%);
}

.u-vertical-text {
  writing-mode: vertical-rl;
  width: fit-content;
}

.u-dotted {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}

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

/* ============================
*  Haeder
* ========================== */
.l-header {
  position: fixed;
  top: 0;
  z-index: 100;

  width: 100%;
  height: 100px;
  background-color: var(--color-white);
  border-bottom: 1px solid #c9c9c4;

  @media screen and (max-width: 768px) {
    & {
      top: auto;
      bottom: 0;
      height: 120px;

      border-bottom: none;
    }
  }
}

.l-header .l-inner {
  height: 100%;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 1rem;
    }
  }
}

.l-header__content {
  position: relative;

  display: flex;
  justify-content: space-between;

  height: 100%;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  }
}

.l-header__logo {
  position: static;
  display: flex;
  align-items: center;

  width: 125px;

  @media screen and (max-width: 768px) {
    & {
      position: fixed;
      top: 12px;
      left: 8px;
      width: 100px;
    }
  }
}

.l-header__logo-link {
  display: block;
}

.l-header__logo-img {
  aspect-ratio: 125 / 58;
}

/* ============================
*  FV
* ========================== */
.l-fv {
  position: relative;

  width: 100%;
  min-height: calc(100dvh - 100px);
  overflow: hidden;

  @media screen and (max-width: 768px) {
    & {
      /* height: 100dvh; */
      height: auto;
      min-height: auto;
      background-image: url(../images/bg-fv.jpg);
      background-size: 150%;
      background-position: top center;
      background-repeat: no-repeat;
    }
  }
}

/* Image */
.l-fv__images {
  position: absolute;
  top: 0;
  right: -70px;
  width: 100%;
  width: calc(100% - 30.9vw);
  height: calc(100% + 100px);

  @media screen and (max-width: 768px) {
    & {
      display: none;
    }
  }
}

.l-fv__bg {
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
  mask-image: linear-gradient(to right, transparent, black 30%);
}

.l-fv__bg,
.l-fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1116 / 744;
}

.l-fv__img {
  z-index: 10;

  @media screen and (max-width: 768px) {
    & {
      display: none;
    }
  }
}

.l-fv__content {
  position: relative;
  z-index: 5;

  @media screen and (max-width: 768px) {
    & {
      position: static;
      padding-top: 50vw;
    }
  }
}

/* Top */
.l-fv__content--top {
  margin-block-start: clamp(1rem, 4.95dvh, 1.5rem);
  padding-block: 6.17dvh;

  background-color: rgba(139, 152, 158, 0.8);

  @media screen and (max-width: 768px) {
    & {
      /* position: absolute; */
      position: static;
      /* left: 0;
      bottom: 46dvh; */
      content: '';

      width: 100%;
      margin-block-start: auto;
      padding-block: 1rem;
    }

    & .l-inner {
      position: relative;
    }
  }

  @media screen and (max-width: 500px) {
    & {
      /* height: 28dvh; */
    }
  }
}

.l-fv__title-wrap {
  display: flex;
  align-items: center;

  @media screen and (max-width: 768px) {
    & {
      align-items: flex-end;
      display: contents;
    }
  }
}

.l-fv__title--en {
  white-space: nowrap;
}

.l-fv__catchcopy,
.l-fv__title,
.l-fv__access--station,
.l-fv__access--walk {
  color: var(--color-white);
}

.l-fv__catchcopy {
  font-size: 2rem;
  font-weight: 700;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.125rem;
      line-height: 1.75;
    }
  }
}

.l-fv__title--date {
  display: flex;
  align-items: baseline;

  font-size: 7.813rem;
  line-height: 1;
  font-weight: 500;

  @media screen and (max-width: 768px) {
    & {
      font-size: 3rem;
      gap: 0.5rem;
    }
  }
}

.l-fv__title--day {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: var(--color-white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;

  font-size: 1.875rem;
  color: #8b989e;

  @media screen and (max-width: 768px) {
    & {
      width: 1.5rem;
      height: 1.5rem;
      font-size: 0.75rem;
    }
  }
}

.l-fv__title--name {
  display: block;

  margin-block-start: -2.5rem;

  font-size: 5.5rem;
  font-weight: 700;

  @media screen and (max-width: 768px) {
    & {
      margin-block-start: -1rem;
      font-size: 2.5rem;
    }
  }
}

.l-fv__access {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 10.875rem;
  height: 10.875rem;
  border: 2px solid var(--color-white);
  border-radius: 50%;

  @media screen and (max-width: 768px) {
    & {
      position: absolute;
      top: 0;
      right: 0;

      width: 5rem;
      height: 5rem;

      content: '';
    }
  }
}

.l-fv__access > * {
  flex-shrink: 0;
}

.l-fv__access--station {
  font-size: 1.625rem;
  font-weight: 300;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
    }
  }
}

.l-fv__access--walk {
  font-size: 1.875rem;
  font-weight: 400;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
    }
  }
}

.l-fv__access--num {
  font-size: 5rem;
  font-weight: 400;

  @media screen and (max-width: 768px) {
    & {
      font-size: 2rem;
    }
  }
}

/* Bottom */
.l-fv__content--bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media screen and (max-width: 768px) {
    & {
      
      height: auto;
      padding-block-start: 0;
      position: static;
      /* position: absolute; */
      width: 100%;
      bottom: 0;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;

      /* height: 46dvh; */
      padding-block-start: 2rem;

      background-color: #e7f8f5;
      content: '';
    }
  }

  @media screen and (max-width: 500px) {
    & {
      /* height: 50dvh; */
      height: auto;
      padding-block-start: 0;
    }
  }
}

.l-fv__lead {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  margin-block: 1rem;

  font-size: 1.625rem;
  line-height: 1.538;
  font-weight: 700;
  color: #455462;

  @media screen and (max-width: 768px) {
    & {
      gap: 0.5rem;

      max-width: 600px;
      width: 100%;
      margin-block: 0.5rem 1.5rem;
      margin-inline: auto;

      font-size: 1rem;
    }

    & .l-inner {
      width: 100%;
      background-color: #e7f8f5;
    }
  }
}

.l-fv__lead--text {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;

  & .highlight-wrapper {
    width: fit-content;
  }

  @media screen and (max-width: 768px) {
    & {
      /* flex-direction: column; */
      white-space: nowrap;
    }
  }
}

.l-fv__lead--sub {
  @media screen and (max-width: 768px) {
    & {
      /* text-align: center; */
    }
  }
}

.l-fv__lead--highlight {
  font-size: 3.125rem;
  color: var(--color-primary);

  @media screen and (max-width: 768px) {
    & {
      /* font-size: 2rem; */
      font-size: clamp(1.25rem, 8vw, 2rem);
      white-space: nowrap;
    }
  }
}

.l-fv__lead--tag {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 22px;
  background-color: var(--color-primary);
  border-radius: 100px;

  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-white);

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
      height: 1rem;
      padding-top: 0.1em;
    }
  }
}

.l-fv__features {
  display: flex;
  align-items: center;

  margin-block-start: -2.5rem;

  @media screen and (max-width: 768px) {
    & {
      position: relative;
      margin-block-start: 0;

      /* display: contents;
      max-width: 500px;
      width: 100%;
      margin-block-start: 0;
      margin-inline-start: -0.5rem; */
    }
  }
}

.l-fv__features-list {
  width: 38.75rem;
  padding-block: 0.75rem;
  padding-inline-start: 1.375rem;

  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 10px;

  @media screen and (max-width: 768px) {
    & {
      position: static;
      max-width: 500px;
      width: 100%;

      margin-inline: auto;
      padding-inline-start: 0.5rem;

      font-size: 1rem;
    }
  }
}

.l-fv__features-item {
  font-size: 1.5rem;
  line-height: 1.542;
  font-weight: 500;
  color: #455462;

  @media screen and (max-width: 768px) {
    & {
      /* font-size: 1rem; */
      font-size: clamp(0.75rem, 4.27vw, 1rem);
    }
  }
}

.l-fv__capacity {
  flex-shrink: 0;
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 11.125rem;
  height: 11.125rem;
  margin-inline-start: -6.25rem;

  background-color: var(--color-white);
  border-radius: 50%;

  &::after {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 10.375rem;
    height: 10.375rem;

    border: 3px solid #455462;
    border-radius: 50%;

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      position: absolute;
      
      top: -70%;
      left: min(80%, 70vw);
      /* top: 8rem;
      right: 9.5rem; */

      width: 5.2rem;
      height: 5.2rem;

      margin-inline-start: 0rem;
      /* margin-inline-end: -2rem; */

      content: '';
    }

    &::after {
      width: 5rem;
      height: 5rem;

      border: 2px solid #455462;
    }
  }

  @media screen and (max-width: 500px) {
    & {
      /* top: 5rem;
      right: 2rem; */
    }
  }
}

.l-fv__capacity--label,
.l-fv__capacity--num {
  font-size: 1.438rem;
  line-height: 1;
  font-weight: 700;
  color: #455462;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.875rem;
      display: flex;
      align-items: baseline;
    }
  }
}

.l-fv__capacity--count {
  font-size: 4.875rem;
  font-weight: 500;
  color: var(--color-primary);

  @media screen and (max-width: 768px) {
    & {
      font-size: 2rem;
    }
  }
}

/* ============================
*  Introduction
* ========================== */
.intro .l-inner {
  height: 720px;
  padding-block: 3.75rem;

  background-color: #e7f8f5;

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;
      padding-block: 4rem 2rem;
    }
  }
}

.intro__title {
  margin-block-end: 3rem;
  margin-inline: auto;

  font-size: 3rem;
  line-height: 1.479;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(0.875rem, 6.4vw, 1.5rem);
      text-align: center;
    }
  }
}

.intro__content {
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
    }
  }
}

.intro__image {
  max-width: 407px;
  width: 100%;

  @media screen and (max-width: 768px) {
    & {
      max-width: 50vw;
    }
  }
}

.intro__img {
  aspect-ratio: 407 / 408;
}

.intro__text {
  @media screen and (max-width: 768px) {
    & {
      width: 100%;
    }
  }
}

.intro__list {
  padding-block: 1.25rem 2.25rem;
  padding-inline: 2.25rem;

  background-color: var(--color-white);
  border-radius: 14px;

  @media screen and (max-width: 768px) {
    & {
      padding-inline: clamp(1rem, 1.2vw, 1rem) clamp(0.75rem, 1.2vw, 1rem);
      padding-block: clamp(0.5rem, 1.2vw, 1rem);
    }
  }
}

.intro__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
  color: #455462;

  &::before {
    flex-shrink: 0;

    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--color-accent-yellow);
    border-radius: 50%;

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      gap: 0.5rem;

      width: 100%;

      font-size: clamp(0.75rem, 4.8vw, 1.125rem);
    }

    &::before {
      width: 0.5rem;
      height: 0.5rem;
    }
  }
}

/* ============================
*  Suggestion
* ========================== */
.suggestion .l-inner {
  padding-block: 4.5rem 9.063rem;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 5rem;
    }
  }
}

.suggestion__title {
  margin-block-end: 1.75rem;

  font-size: 2rem;
  line-height: 1.438;
  font-weight: 700;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.5rem;
    }
  }
}

.suggestion__title-first-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 2.5rem;
  line-height: 1.75;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.5rem;
    }
  }
}

.suggestion__title-img {
  max-width: 413px;

  @media screen and (max-width: 768px) {
    & {
      max-width: 50vw;
    }
  }
}

.suggestion__catchcopy-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 9rem;
  margin-block-end: 3.5rem;

  background-color: var(--color-accent-yellow);
  border-radius: 16px;

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;
      margin-block-end: 1.5rem;
      padding-block: 0.5rem;
      border-radius: 4px;
    }
  }
}

.suggestion__catchcopy {
  display: inline;

  font-size: 3rem;
  line-height: 1.458;
  font-weight: 700;

  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-bottom: 3px solid #455462;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.125rem;
      text-align: center;

      border-bottom: 2px solid #455462;
    }
  }
}

.suggestion__catchcopy--first-line {
  @media screen and (max-width: 768px) {
    & {
      display: block;
      position: relative;
    }

    &::after {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;

      width: 5.5rem;
      height: 2px;
      background-color: #455462;
      content: '';
    }
  }
}

/* List */
.suggestion__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);

  width: 100%;
  padding-inline: clamp(0rem, 8vw, 1.875rem);

  @media screen and (max-width: 768px) {
    & {
      display: flex;
      flex-direction: column;

      width: 100%;
      padding-inline: 0;
    }
  }
}

/* Item */
.suggestion__item-inner,
.suggestion__item-content {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.suggestion__item-content {
  width: 100%;
  margin-block-start: -9.438rem;
  padding-block-start: 11.875rem;

  border-radius: 40px;

  @media screen and (max-width: 768px) {
    margin-block-start: -7rem;
    padding-block-start: 8rem;

    border-radius: 24px;
  }
}

.suggestion__a-type .suggestion__item-content {
  background-color: var(--color-accent-orange);
}

.suggestion__item--transition .suggestion__item-content {
  background-color: var(--color-primary);
}

.suggestion__item-image {
  position: relative;
  z-index: 5;

  max-width: 303px;
  width: 100%;
  height: auto;

  @media screen and (max-width: 768px) {
    & {
      max-width: 50vw;
    }
  }
}

.suggestion__item-catchcopy {
  margin-block-end: 2.25rem;

  font-size: clamp(1.5rem, 12.8vw, 3rem);
  line-height: 1.333;
  font-weight: 700;
  color: var(--color-accent-yellow);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 1.5rem;

      font-size: clamp(1.8rem, 2.22vw, 2rem);
    }
  }
}

.suggestion__item-title {
  width: fit-content;
  height: 4.375rem;
  margin-block-end: 1rem;
  padding-inline: 1rem;

  border: 3px solid var(--color-white);
  border-radius: 10px;

  font-size: 2.563rem;
  line-height: 1.463;
  color: var(--color-white);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;

      border-radius: 6px;

      font-size: 1.75rem;
    }
  }
}

.suggestion__item-desc {
  margin-block-end: 1rem;

  font-size: clamp(0.75rem, 6vw, 1.5rem);
  line-height: 1.75;
  color: var(--color-white);
  white-space: nowrap;

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(1.25rem, 6vw, 1.5rem);
      line-height: 1.5;
      text-align: center;
    }
  }
}

.suggestion__item-link {
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;

  width: 100%;
  padding-block: 1.5rem 2rem;

  background-color: var(--color-accent-yellow);
  border-radius: 0 0 40px 40px;

  font-size: 2.813rem;
  line-height: 1.733;
  font-weight: 700;

  &::before {
    width: 42px;
    height: 37px;
    background-image: url(../images/arrow-gray.svg);
    background-size: contain;
    background-repeat: no-repeat;

    aspect-ratio: 42 / 37;
    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      padding-block: 1rem;

      border-radius: 0 0 24px 24px;
      font-size: 2rem;
    }

    &::before {
      width: 30px;
      height: auto;

      background-size: contain;
    }
  }
}

/* ==================================
*  就労継続支援A型 / 就労移行支援 共通
* ================================ */
.service-item .l-inner {
  padding-block: 7.5rem;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 4rem;
    }
  }
}

.service-item__content {
  margin-block-end: 7.5rem;
  padding-inline: clamp(2rem, 8.33vw, 7.5rem);
  padding-block: 4.5rem 6.5rem;

  background-color: var(--color-white);
  border-radius: 20px;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 5rem;
      padding-block: 3rem;
      padding-inline: clamp(0.5rem, 4.27vw, 1rem);
    }
  }
}

.service-item__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item__title {
  flex-shrink: 0;

  max-width: 42.5rem;
  width: 100%;
  height: 5rem;
  margin-block-end: 0.875rem;
  margin-inline: auto;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-white);
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;
      padding-block: 0.5rem;

      font-size: 2rem;
      line-height: 1.5;
    }
  }
}

.service-item__catchcopy {
  margin-block-end: 2.5rem;

  font-size: 1.5rem;
  line-height: 1.75;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 1.5rem;

      font-size: 1rem;
      line-height: 1.5;
      text-align: center;
    }
  }
}

.service-item__merit {
  max-width: 508px;
  width: 100%;
  height: 56px;
  margin-block-end: 1.688rem;

  background-color: var(--color-accent-yellow);
  border-radius: 9px;

  font-size: 2rem;
  line-height: 55px;
  font-weight: 700;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      height: fit-content;
      padding: 0.25rem;
      margin-block-end: 2rem;

      font-size: 1.25rem;
      font-size: clamp(0.875rem, 4.8vw, 1.25rem);
      line-height: 1.5;
    }
  }
}

/* 勤務条件 */
.service-item__condition {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  max-width: 960px;
  width: 100%;
  padding-block: 1.75rem 2.5rem;
  padding-inline: 6rem;

  background-color: #fff7d4;
  border: 3px solid var(--color-accent-orange);
  border-radius: 16px;

  font-size: clamp(0.75rem, 1.67vw, 1.5rem);
  line-height: 1;
  font-weight: 700;

  &::before,
  &::after {
    position: absolute;
    content: '';
  }

  &::before {
    left: -40px;
    top: -110px;

    width: 150px;
    height: 221px;

    aspect-ratio: 150 / 221;

    background-image: url(../images/illust-type-a-conditions-01.png);
    background-size: cover;
  }

  &::after {
    right: -40px;
    bottom: -85px;

    width: 129px;
    height: 172px;

    aspect-ratio: 129 / 172;

    background-image: url(../images/illust-type-a-conditions-02.png);
    background-size: cover;
  }

  @media screen and (max-width: 768px) {
    & {
      padding-block: 1rem;
      padding-inline: 0.75rem;

      border-radius: 8px;
    }

    &::before {
      display: none;
    }

    &::after {
      right: -1rem;
      bottom: -45px;

      width: 60px;
      height: auto;
    }
  }
}

.service-item__condition-salary {
  display: flex;
  justify-content: space-around;
  align-items: baseline;

  width: 100%;

  white-space: nowrap;

  @media screen and (max-width: 768px) {
    & {
      justify-content: flex-start;
      gap: 0.5rem;
    }
  }
}

.service-item__condition-salary-num {
  font-size: clamp(3rem, 7.22vw, 6.5rem);
  font-weight: 600;
  color: var(--color-accent-orange);

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(1.75rem, 2.22vw, 2rem);
      letter-spacing: 0.05em;
    }
  }
}

.service-item__condition-salary-tilde {
  font-size: 3.813rem;
  line-height: 1.754;
  font-weight: 400;

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.5rem;
    }
  }
}

.service-item__condition-salary-yen {
  font-size: clamp(1rem, 3.33vw, 3rem);
  line-height: 3.792;
  font-weight: 700;
  color: var(--color-accent-orange);
}

.service-item__condition-details {
  display: flex;
  justify-content: space-between;

  width: 100%;
  margin-block-start: -2rem;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
      gap: 0.5rem;

      margin-block-start: 0;
    }
  }
}

.service-item__condition-hours {
  display: flex;
  gap: 0.625rem;

  margin-block-start: -0.875rem;

  @media screen and (max-width: 768px) {
    & {
      align-items: baseline;
      margin-block-start: 0;
    }
  }
}

.service-item__condition-hours-value {
  color: var(--color-accent-orange);

  @media screen and (max-width: 768px) {
    & {
      font-size: 1.125rem;
    }
  }
}

.service-item__condition-insurance {
  margin-block-start: -2rem;

  @media screen and (max-width: 768px) {
    & {
      margin-block-start: 0;
    }
  }
}

.service-item__condition-insurance-text {
  display: flex;
  align-items: baseline;
}

.service-item__condition-insurance-sub {
  display: block;
  margin-block-start: -0.5rem;

  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 300;

  @media screen and (max-width: 768px) {
    & {
      margin-block-start: 0;

      font-size: 0.75rem;
      line-height: 1.5;
    }
  }
}

.service-item__condition-insurance-note {
  font-size: clamp(1rem, 2.29vw, 2.063rem);
  line-height: 1.75;
  color: var(--color-accent-orange);

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(0.875rem, 3.27vw, 1rem);
      line-height: 1.125;
    }
  }
}

/* ============================
*  就労継続支援A型
* ========================== */
.a-type .l-inner {
  background-color: var(--color-accent-orange);
}

.a-type__title {
  background-color: var(--color-accent-orange);
}

.a-type .service-item__detail {
  margin-block-end: 9.75rem;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 5rem;
    }
  }
}

.a-type .service-item__condition {
  margin-block-end: 6.5rem;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 3rem;
    }
  }
}

.a-type .c-list--rectangle .c-item {
  position: relative;

  &:nth-of-type(2)::before {
    position: absolute;
    top: -50px;
    left: -80px;

    width: 185px;
    height: 117px;

    aspect-ratio: 185 / 117;

    background-image: url(../images/illust-type-a-service-01.png);
    background-size: cover;

    content: '';
  }

  &:nth-of-type(3)::before {
    position: absolute;
    bottom: -30px;
    right: 20px;

    width: 101px;
    height: 154px;

    aspect-ratio: 101 / 154;

    background-image: url(../images/illust-type-a-service-02.png);
    background-size: cover;

    content: '';
  }

  &:nth-of-type(4)::before {
    z-index: 3;
    position: absolute;
    bottom: -117px;
    left: -20px;

    width: 104px;
    height: 191px;

    aspect-ratio: 104 / 191;

    background-image: url(../images/illust-type-a-service-03.png);
    background-size: cover;

    content: '';
  }

  @media screen and (max-width: 768px) {
    &:nth-of-type(2)::before {
      left: -30px;

      width: 120px;
      height: auto;
    }

    &:nth-of-type(3)::before {
      display: none;
    }

    &:nth-of-type(4)::before {
      bottom: -100px;

      width: 70px;
      height: auto;
    }
  }
}

/* ============================
*  就労移行支援
* ========================== */
.transition .l-inner {
  background-color: var(--color-primary);
}

.transition__title {
  background-color: var(--color-primary);
}

.transition .c-list--rectangle .c-item {
  position: relative;

  &:nth-of-type(2)::before {
    position: absolute;
    top: -110px;
    left: 28px;

    width: 77px;
    height: 145px;

    aspect-ratio: 77 / 145;

    background-image: url(../images/illust-transition-support-01.png);
    background-size: cover;

    content: '';
  }

  &:nth-of-type(4)::before {
    z-index: 3;
    position: absolute;
    bottom: -130px;
    right: -20px;

    width: 98px;
    height: 206px;

    aspect-ratio: 98 / 206;

    background-image: url(../images/illust-transition-support-02.png);
    background-size: cover;

    content: '';
  }

  &:nth-of-type(7)::before {
    z-index: 3;
    position: absolute;
    bottom: -117px;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 156px;

    aspect-ratio: 80 / 156;

    background-image: url(../images/illust-transition-support-03.png);
    background-size: cover;

    content: '';
  }

  @media screen and (max-width: 768px) {
    &:nth-of-type(2)::before {
      top: -50px;
      left: -20px;

      width: 60px;
      height: auto;
    }

    &:nth-of-type(4)::before {
      bottom: -80px;
      right: -17px;

      width: 60px;
      height: auto;
    }

    &:nth-of-type(7)::before {
      display: none;
    }
  }
}

/*-------------------------
  サポートの特徴
-------------------------*/
.transition__features {
  margin-block-end: 8.25rem;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 5rem;
    }
  }
}

.transition__features-title {
  font-size: clamp(2rem, 3.89vw, 3.5rem);
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;

  & .u-num {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--color-primary);
  }

  @media screen and (max-width: 1280px) {
    & {
      font-size: 1.5rem;
      white-space: wrap;
    }

    & br.u-sp-only {
      display: block;
    }
  }
}

.transition__features-desc {
  margin-block-start: -2rem;
  margin-block-end: 2rem;

  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      margin-block-start: 0;

      font-size: 1.125rem;
    }
  }
}

.transition__features-list {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  padding-inline-start: 2.5rem;
  padding-block: 2rem;

  background-color: #e7f8f5;
  border: 3px solid var(--color-primary);
  border-radius: 12px;

  &::after {
    position: absolute;
    right: -20px;
    bottom: -114px;

    width: 191px;
    height: 229px;

    aspect-ratio: 191 / 229;

    background-image: url(../images/illust-transition-features-list.png);
    background-size: cover;

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      gap: 0.5rem;

      margin-block-start: 0;
      margin-block-end: 4rem;
      padding-inline: 0.75rem 0.5rem;
    }

    &::after {
      bottom: -96px;

      width: 100px;
      height: auto;
    }
  }
}

.transition .service-item__detail {
  margin-block-end: 7.5rem;
}

.transition__features-item {
  position: relative;

  padding-inline-start: 1.375rem;

  font-size: 1.75rem;
  line-height: 1.75;
  font-weight: 700;

  &::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 14px;
    height: 14px;

    background-color: var(--color-primary);
    border-radius: 50%;

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      padding-inline-start: 1rem;

      font-size: clamp(0.75rem, 3.27vw, 1rem);
    }

    &::before {
      top: 1rem;
      transform: translateY(0);

      width: 0.5rem;
      height: 0.5rem;
    }
  }
}

.transition__features-item--multiline {
  &::before {
    top: 2rem;
  }

  @media screen and (max-width: 768px) {
    &::before {
      top: 1rem;
    }
  }
}

.transition__features-text--strong {
  font-size: 2.5rem;
  line-height: 1.225;
  color: var(--color-primary);

  @media screen and (max-width: 768px) {
    & {
      font-size: clamp(1rem, 6vw, 1.5rem);
    }
  }
}

.transition__features-text--blue {
  color: var(--color-primary);
}

/* ============================
*  無料説明会・体験会
* ========================== */
.free-session .l-inner {
  background-color: #e7f8f5;
}

.free-session__title {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 740px;
  width: 100%;
  height: 120px;
  margin-block-end: 5rem;
  margin-inline: auto;

  background-color: var(--color-primary);
  border-radius: 15px;

  font-size: 3.5rem;
  line-height: 1.143;
  font-weight: 700;
  color: var(--color-white);

  @media screen and (max-width: 768px) {
    & {
      max-width: 100%;
      height: fit-content;
      padding-block: 1rem;
      margin-block-end: 1.5rem;

      font-size: 2rem;
    }
  }
}

.free-session__body {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.free-session__item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.free-session__item-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;

  width: fit-content;
  margin-block-end: 4rem;

  font-size: 2.5rem;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;

  &::after {
    width: 100%;
    height: 5px;

    background-color: var(--color-primary);

    content: '';
  }

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 1rem;

      font-size: 1.875rem;
    }
  }
}

/* 奇数：画像を右に */
.free-session__list .c-item:nth-of-type(odd) > *:first-child {
  order: 2;
}
.free-session__list .c-item:nth-of-type(odd) > *:last-child {
  order: 1;
}

/* 偶数：画像を左に */
.free-session__list .c-item:nth-of-type(even) > *:first-child {
  order: 1;
}
.free-session__list .c-item:nth-of-type(even) > *:last-child {
  order: 2;
}

.free-session__list .c-item:nth-of-type(odd) {
  & .c-item__img {
    border-radius: 0 16px 16px 0;
  }
}

.c-list--rectangle .c-item > * {
  @media screen and (max-width: 768px) {
    & {
      order: unset !important;
    }

    & .c-item__img {
      border-radius: 16px 16px 0 0 !important;
    }
  }
}

.free-session__list .c-item:nth-of-type(even) {
  & .c-item__img {
    border-radius: 16px 0 0 16px;
  }
}

/* 無料説明会 */
.free-info-session .free-session__list {
  position: relative;

  &::before,
  &::after {
    position: absolute;
    background-size: cover;
    content: '';
  }

  &::before {
    top: 284px;
    right: -48px;

    width: 224px;
    height: 192px;
    aspect-ratio: 224 / 192;

    background-image: url(../images/illust-free-info-session-01.png);
  }

  &::after {
    bottom: 223px;
    left: -40px;

    width: 198px;
    height: 253px;
    aspect-ratio: 198 / 253;
    background-image: url(../images/illust-free-info-session-02.png);
  }

  @media screen and (max-width: 768px) {
    &::before {
      display: none;
    }

    &::after {
      bottom: 260px;
      left: auto;
      right: 0;

      width: 100px;
      height: auto;
    }
  }
}

.free-info-session .c-item {
  background-color: #f8cfa9;
}

/* 無料説明会 */
.free-trial-session .c-item {
  background-color: #c5e2ec;
}

.free-trial-session .c-item__title {
  display: flex;
  align-items: center;
  gap: 2rem;

  @media screen and (max-width: 768px) {
    & {
      flex-wrap: wrap;
      row-gap: 0.25rem;
      column-gap: 1rem;

      margin-block-end: 0.5rem;
    }
  }
}

.free-trial-session .free-session__list {
  position: relative;

  &::before,
  &::after {
    position: absolute;
    background-size: cover;
    content: '';
  }

  &::before {
    top: 256px;
    left: 50%;
    transform: translateX(-50%);

    width: 189px;
    height: 217px;
    aspect-ratio: 189 / 217;
    background-image: url(../images/illust-free-trial-session-01.png);
  }

  &::after {
    bottom: 570px;
    right: -40px;

    width: 129px;
    height: 204px;
    aspect-ratio: 129 / 204;
    background-image: url(../images/illust-free-trial-session-02.png);
  }

  @media screen and (max-width: 768px) {
    &::before {
      display: none;
    }

    &::after {
      bottom: 670px;
      right: -10px;

      width: 80px;
      height: auto;
    }
  }
}

.c-item__badge {
  display: flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  height: 24px;
  padding-inline: 0.5rem;

  background-color: var(--color-white);
  border: 1px solid var(--color-primary);

  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-primary);

  @media screen and (max-width: 768px) {
    height: fit-content;
    padding-block: 0.25rem;

    font-size: 0.75rem;
  }
}

/* ============================
*  アクセス
* ========================== */
.access__inner {
  padding-block: 7.5rem 4rem;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 2rem;
    }
  }
}

.access__title {
  margin-block-end: 4rem;

  font-size: 3rem;
  line-height: 1.333;
  font-weight: 700;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      margin-block-end: 1.5rem;

      font-size: 2rem;
    }
  }
}

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

.access__map {
  max-width: 720px;
  width: 100%;
  flex-shrink: 0;

  @media screen and (max-width: 768px) {
    & {
      max-width: 90vw;
      height: 320px;
    }
  }
}

.access__map iframe {
  width: 100%;
  border-radius: 16px;

  @media screen and (max-width: 768px) {
    & {
      object-fit: cover;
      height: 320px;

      border-radius: 8px;
    }
  }
}

/* ============================
*  SNS
* ========================== */
.social__inner {
  padding-block: 4rem;

  @media screen and (max-width: 768px) {
    & {
      padding-block: 1.5rem;
    }
  }
}

.social__list {
  display: flex;
  justify-content: center;
  gap: 6rem;

  @media screen and (max-width: 768px) {
    & {
      gap: 2rem;
    }
  }
}

.social__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social__item-icon {
  width: 64px;
  height: auto;

  @media screen and (max-width: 768px) {
    & {
      width: 56px;
    }
  }
}

.social__item-label {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.75rem;
    }
  }
}

/* ============================
*  CTA
* ========================== */

/* ============================
*  Footer
* ========================== */
.l-footer {
  width: 100%;

  background-color: #8b989e;

  color: var(--color-white);
}

.l-footer__inner {
  display: flex;
  align-items: flex-end;
  gap: 3.5rem;

  width: 100%;
  padding-block: 4rem;
  padding-inline: 22.5rem;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;

      padding-block: 1rem 11rem;
      padding-inline: 1.5rem;
    }
  }
}

.l-footer__logo {
  width: 128px;
  height: auto;

  @media screen and (max-width: 768px) {
    & {
      width: 100px;
    }
  }
}

.l-footer__name {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-block-end: 0.5rem;

  @media screen and (max-width: 768px) {
    & {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;

      margin-block-end: 1rem;
    }
  }
}

.l-footer__name-company {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
}

.l-footer__name-service {
  font-size: 0.75rem;
  line-height: 1.333;
  font-weight: 300;
}

.l-footer__address {
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;

  @media screen and (max-width: 768px) {
    & {
      font-size: 0.875rem;
      line-height: 1.5;
    }
  }
}
