:root {
  --font-color-main: #333;
  --font-color-black: #000;
  --font-color-white: #fff;
  --font-color-blue: #2d87f4;
  --font-color-orange: #fa9541;
  --font-color-yellow: #f5ff00;
  --base-color: #fdfbf5;
  --base-white: #fff;
  --base-gray: #f6f6f6;
  --base-orange: #fa9541;
  --base-footer: #f1ede6;
  --accent-color-pink: #dc5d5c;
  --accent-color-yellow: #e9c243;
  --ff-noto: "Noto Sans JP", sans-serif;
  --ff-rounded: "M PLUS Rounded 1c", sans-serif;
  --ff-mplus: "M PLUS 1", sans-serif;
}

.c-section-title__text {
  font-family: var(--ff-rounded);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 1.8;
  padding-left: 76px;
  position: relative;
}
.c-section-title__text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 67px;
  height: auto;
  aspect-ratio: 67/45;
  background: url("../img/title_mark.webp") no-repeat center center/contain;
}

@media (max-width: 767px) {
  .c-section-title__text {
    padding-left: 67px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.12px;
  }
  .c-section-title__text::before {
    width: 58px;
    aspect-ratio: 58/39;
  }
}
.c-button {
  padding: 14px 14px 14px 32px;
  border: 1px solid var(--base-orange);
  border-radius: 100px;
  background: #fff;
  width: 100%;
  max-width: 349px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: background 0.25s ease, max-width 0.15s ease;
  transition: background 0.25s ease, max-width 0.15s ease;
}

@media (max-width: 767px) {
  .c-button {
    padding: 12px 12px 12px 32px;
    gap: 17px;
    max-width: 315px;
  }
}
.c-button__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.8px;
  display: grid;
  place-items: center;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

@media (max-width: 767px) {
  .c-button__text {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.c-button__arrow {
  display: block;
  width: 42px;
  height: auto;
  aspect-ratio: 42/42;
  background: var(--base-orange);
  border-radius: 100vmax;
  position: relative;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease 0.08s;
  transition: background 0.25s ease, -webkit-transform 0.25s ease 0.08s;
  transition: transform 0.25s ease 0.08s, background 0.25s ease;
  transition: transform 0.25s ease 0.08s, background 0.25s ease, -webkit-transform 0.25s ease 0.08s;
}
.c-button__arrow svg {
  position: absolute;
  width: 17px;
  height: auto;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-button__arrow svg path {
  fill: var(--base-white);
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}

@media (max-width: 767px) {
  .c-button__arrow {
    width: 40px;
    height: 40px;
  }
}
.c-button.--reverse {
  border: 1px solid var(--base-orange);
  border-radius: 100vmax;
  background: var(--base-orange);
}

.--reverse .c-button__text {
  color: var(--font-color-white);
}

.--reverse .c-button__arrow {
  background: var(--base-white);
}
.--reverse .c-button__arrow svg path {
  fill: var(--base-orange);
}

.c-button:not(.--reverse):hover,
.c-button:not(.--reverse):focus-visible {
  background: var(--base-orange);
  max-width: 360px;
}
.c-button:not(.--reverse):hover .c-button__text,
.c-button:not(.--reverse):focus-visible .c-button__text {
  color: var(--font-color-white);
}
.c-button:not(.--reverse):hover .c-button__arrow,
.c-button:not(.--reverse):focus-visible .c-button__arrow {
  background: var(--base-white);
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.c-button:not(.--reverse):hover .c-button__arrow svg path,
.c-button:not(.--reverse):focus-visible .c-button__arrow svg path {
  fill: var(--base-orange);
}

.c-button.--reverse:hover,
.c-button.--reverse:focus-visible {
  background: #fff;
  max-width: 360px;
}
.c-button.--reverse:hover .c-button__text,
.c-button.--reverse:focus-visible .c-button__text {
  color: var(--font-color-main);
}
.c-button.--reverse:hover .c-button__arrow,
.c-button.--reverse:focus-visible .c-button__arrow {
  background: var(--base-orange);
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.c-button.--reverse:hover .c-button__arrow svg path,
.c-button.--reverse:focus-visible .c-button__arrow svg path {
  fill: var(--base-white);
}

.p-banner__btn:hover .c-button__arrow,
.p-banner__btn:focus-visible .c-button__arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.p-banner__btn:hover .c-button__text,
.p-banner__btn:focus-visible .c-button__text {
  color: var(--font-color-orange);
}

.c-top-btn {
  position: fixed;
  bottom: 191.5px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.c-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-top-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 767px) {
  .c-top-btn {
    bottom: 70px;
    right: 20px;
  }
}
.c-top-btn__icon-wrap {
  display: block;
  position: relative;
  width: 120px;
  height: auto;
  aspect-ratio: 120/120;
}
.c-top-btn__icon-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: auto;
  aspect-ratio: 120/120;
  background: url("../img/footer-top-btn.webp") no-repeat center center/contain;
}

@media (max-width: 767px) {
  .c-top-btn__icon-wrap {
    width: 85px;
    height: auto;
    aspect-ratio: 80/80;
  }
  .c-top-btn__icon-wrap::before {
    width: 85px;
    height: auto;
    aspect-ratio: 80/80;
  }
}
.c-top-btn__text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .c-top-btn__text-wrap {
    gap: 4px;
  }
}
.c-top-btn__arrow {
  width: 15px;
  height: 23px;
}
.c-top-btn__arrow svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .c-top-btn__arrow {
    width: 12px;
    height: 18px;
  }
}
.c-top-btn__text {
  color: var(--font-color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.28px;
}

@media (max-width: 767px) {
  .c-top-btn__text {
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}
.c-breadcrumb {
  padding-block: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb__item a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: normal;
  padding-right: 24px;
  padding-block: 6px;
  border-right: 1px solid rgba(51, 51, 51, 0.3);
  color: var(--font-color-main);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.c-breadcrumb__item a:hover, .c-breadcrumb__item a:focus-visible {
  opacity: 0.6;
}

.breadcrumb_last {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: normal;
  color: #fa9541;
}

@media (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 16px;
  }
  .c-breadcrumb__list {
    gap: 16px;
  }
  .c-breadcrumb__item a {
    padding-right: 16px;
  }
}
.c-skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--font-color-main);
  color: var(--font-color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-skip-link:focus, .c-skip-link:focus-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  outline: 2px solid var(--base-orange);
  outline-offset: 2px;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
button,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

summary {
  display: block;
  list-style: none;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--ff-mplus);
  background-color: var(--base-color);
  color: var(--font-color-main);
  font-weight: 500;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 390px;
  overflow-x: hidden;
}

.l-inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 720px;
  }
}
.p-hero {
  margin-top: 122px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero {
    margin-top: 87px;
  }
}

.p-hero__img-left {
  position: absolute;
  top: -274px;
  left: clamp(-14.375rem, -20.161rem + 12.05vw, -9.313rem);
  right: auto;
  width: 605px;
  height: auto;
  aspect-ratio: 590/398;
}
.p-hero__img-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1440px) {
  .p-hero__img-left {
    position: absolute;
    top: -274px;
    right: calc(50% + 276px);
    left: auto;
    width: 605px;
    height: auto;
    aspect-ratio: 590/398;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__img-left {
    width: 420px;
    aspect-ratio: 420/284;
    top: -105px;
    left: -117px;
  }
}
.p-hero__img-right {
  position: absolute;
  top: clamp(1.125rem, -14.089rem + 31.7vw, 14.438rem);
  right: -127px;
  width: 484px;
  height: auto;
  aspect-ratio: 484/327;
}
.p-hero__img-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1440px) {
  .p-hero__img-right {
    position: absolute;
    top: 231px;
    right: -127px;
    right: auto;
    left: calc(50% + 363px);
    width: 484px;
    height: auto;
    aspect-ratio: 484/327;
  }
}
@media screen and (max-width: 1200px) {
  .p-hero__img-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__img-right {
    display: block;
    top: 323px;
    right: -103px;
    width: 324px;
    height: auto;
    aspect-ratio: 324/219;
  }
}
.p-hero__inner {
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-hero__content {
  width: 100%;
  position: relative;
}

.p-hero__title-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: var(--base-white);
  padding-inline: 7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  opacity: 0.85;
}
.p-hero__title-item.--num1 img {
  width: clamp(3.75rem, -0.472rem + 8.8vw, 6.125rem);
  height: auto;
  aspect-ratio: 98/68;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-hero__title-item.--num1 {
    padding-inline: 7px 4px;
  }
  .p-hero__title-item.--num1 img {
    width: 64px;
    height: auto;
    aspect-ratio: 70/48;
  }
}
.p-hero__title-item.--num2 img {
  width: clamp(11.25rem, -1.75rem + 27.08vw, 18.563rem);
  height: auto;
  aspect-ratio: 297/68;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-hero__title-item.--num2 img {
    width: 187px;
  }
}
.p-hero__title-item.--num3 {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-hero__title-item.--num1 .p-hero__title-item-text-sub {
    display: none;
  }
  .p-hero__title-item.--num3 {
    display: block;
    padding-inline: 7px 4px;
  }
}
.p-hero__title-item-text {
  font-size: clamp(1.75rem, -0.139rem + 3.94vw, 2.813rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 4.5px;
  font-family: var(--ff-rounded);
  margin-bottom: -4px;
}

@media screen and (max-width: 767px) {
  .p-hero__title-item-text {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .--num2 .p-hero__title-item-text {
    letter-spacing: 2.7px;
  }
}
.p-hero__title-item-text-sub {
  font-size: clamp(1.75rem, -0.139rem + 3.94vw, 2.813rem);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 4.5px;
  font-family: var(--ff-rounded);
}
@media screen and (max-width: 767px) {
  .p-hero__title-item-text-sub {
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 3.1px;
  }
}

.p-hero__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.688rem, -0.201rem + 1.85vw, 1.188rem);
  position: absolute;
  bottom: clamp(1.75rem, -0.361rem + 4.4vw, 2.938rem);
  left: clamp(0.813rem, -3.521rem + 9.03vw, 3.25rem);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-hero__title {
    gap: 8px;
  }
}
.p-hero__image {
  width: 100%;
}

.p-hero__slider {
  width: 100%;
  background: var(--base-color);
}
.p-hero__slider .splide__slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1300/600;
}
.p-hero__slider .splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-hero {
    margin-top: 0;
    height: 617px;
    overflow: hidden;
  }
  .p-hero__inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 100px;
  }
  .p-hero__content {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 0;
  }
  .p-hero__image {
    width: 100%;
    height: 100%;
  }
  .p-hero__slider {
    width: 100%;
    height: 100%;
  }
  .p-hero__slider .splide,
  .p-hero__slider .splide__track,
  .p-hero__slider .splide__list,
  .p-hero__slider .splide__slide {
    height: 100%;
  }
  .p-hero__slider .splide__slide {
    aspect-ratio: unset;
  }
  .p-hero__slider .splide__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
  }
  .p-hero__title {
    bottom: 28px;
    left: 13px;
    width: clamp(20.25rem, 10.164rem + 41.38vw, 30rem);
    height: auto;
    aspect-ratio: unset;
  }
  .p-hero__title img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
.p-header {
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  --header-bg-opacity: 0;
  --header-shadow-opacity: 0;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, var(--header-shadow-opacity));
          box-shadow: 0 8px 20px rgba(0, 0, 0, var(--header-shadow-opacity));
}
.p-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--base-color);
  opacity: var(--header-bg-opacity);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.p-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1352px;
  margin-inline: auto;
  padding-block: 18px;
  padding-inline: 60px;
}
@media screen and (max-width: 1000px) {
  .p-header__inner {
    grid-template-columns: 215px 1fr;
    padding-inline: 40px;
  }
}

.p-header__logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-header__logo-sub,
.p-header__logo-main {
  font-family: var(--ff-noto);
  font-weight: 500;
  line-height: 150%;
}

.p-header__logo-sub {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .p-header__logo-sub {
    font-size: 14px;
  }
}

.p-header__logo-main {
  font-size: 27px;
}
@media screen and (max-width: 1000px) {
  .p-header__logo-main {
    font-size: 24px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.p-header__list li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.28px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-header__list li a:hover {
  opacity: 0.6;
}

.p-header__btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    grid-template-columns: 1fr auto;
    padding-block: 14px;
    padding-inline: 20px;
  }
  .p-header__logo-sub {
    font-size: 14px;
  }
  .p-header__logo-main {
    font-size: 20px;
  }
  .p-header__nav {
    display: none;
  }
}
.c-drawer__icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-drawer__icon {
    position: fixed;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: transparent;
    cursor: pointer;
    z-index: 200;
  }
}

.c-drawer__icon--bar {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--font-color-main);
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-drawer__icon--menu {
  font-family: var(--ff-mplus);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.04px;
  color: var(--font-color-main);
  line-height: 1.5;
}

.c-drawer__icon.is-active .c-drawer__icon--bar:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(30deg);
          transform: translateY(9px) rotate(30deg);
  background: var(--base-orange);
}
.c-drawer__icon.is-active .c-drawer__icon--bar:nth-child(2) {
  opacity: 0;
}
.c-drawer__icon.is-active .c-drawer__icon--bar:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-30deg);
          transform: translateY(-9px) rotate(-30deg);
  background: var(--base-orange);
}

.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--base-color);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 40px 60px;
}
.p-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-drawer.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-drawer__nav {
  width: 100%;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.p-drawer__list li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
.p-drawer__list li a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 1.5;
  color: var(--font-color-main);
  padding: 20px 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-drawer__list li a:hover {
  opacity: 0.6;
}

.p-lead {
  padding-block: 100px 64px;
}

@media screen and (max-width: 767px) {
  .p-lead__inner {
    max-width: 580px;
    margin-inline: auto;
  }
}
.p-lead__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, -2.556rem + 7.41vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-lead__object {
  width: 46.935483871%;
  height: auto;
  aspect-ratio: 649/447;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-lead__object img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .p-lead__object {
    max-width: 470px;
  }
}
.p-lead__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  color: var(--font-color-main);
}

.p-lead__heading {
  font-family: var(--ff-rounded);
  font-size: clamp(1.625rem, 0.958rem + 1.39vw, 2rem);
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.8;
}

.p-lead__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-lead__body p {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.3;
}

@media screen and (max-width: 767px) {
  .p-lead {
    padding-block: 64px 40px;
  }
  .p-lead__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 19px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-lead__object {
    width: 100%;
    aspect-ratio: 350/222;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .p-lead__text {
    gap: 24px;
    width: 100%;
  }
  .p-lead__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
    font-weight: 500;
    line-height: 1.6;
  }
  .p-lead__body {
    gap: 12px;
  }
  .p-lead__body p {
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 500;
    line-height: 2;
  }
}
.p-about {
  position: relative;
  padding: 80px 0;
  scroll-margin-top: 140px;
}

.p-about__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.p-about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 237, 187, 0.2);
}
.p-about__bg img {
  position: absolute;
  top: 0;
  left: -6.09%;
  width: 169.07%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.75;
}

.p-about__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

@media screen and (max-width: 767px) {
  .p-about__inner {
    max-width: 580px;
    gap: 23px;
  }
}
.p-about__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.p-about__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

.p-about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-about__box.--num1 {
  padding: clamp(1.875rem, -3.681rem + 11.57vw, 5rem) clamp(1.875rem, -4.236rem + 12.73vw, 5.313rem);
  border-radius: 24px;
  background: #fff;
  gap: clamp(1.875rem, -3.681rem + 11.57vw, 5rem);
}
.p-about__box.--num2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-about__box-img {
  width: 480px;
  height: auto;
  aspect-ratio: 480/600;
  border-radius: 24px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.--num1 .p-about__box-img {
  width: 400px;
  height: auto;
  aspect-ratio: 400/386;
}
.p-about__box-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__box-card {
  background: #fff;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.--num2 .p-about__box-card {
  position: relative;
  padding: 80px 80px 80px 104px;
  margin-top: 40px;
  margin-right: -14px;
  z-index: 0;
}

.p-about__box-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  color: var(--font-color-main);
}

.p-about__box-title {
  font-family: var(--ff-rounded);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: normal;
}

.p-about__box-body p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
  color: var(--font-color-main);
}
.p-about__box-body p + p {
  margin-top: 0;
}

.p-about__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 16px;
}

.p-about__box-logo-sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .p-about__boxes {
    max-width: 680px;
    margin-inline: auto;
  }
  .p-about__box.--num1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 46px 48px;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 20px;
  }
  .--num1 .p-about__box-card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    width: 100%;
  }
  .--num2 .p-about__box-card {
    padding: 48px 48px 46px;
    margin-top: -20px;
    margin-right: 0;
    z-index: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
  }
  .--num1 .p-about__box-img {
    width: 250px;
    height: auto;
    aspect-ratio: 250/241;
  }
  .--num1 .p-about__box-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-about__box.--num2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about__box.--num2 .p-about__box-img {
    width: 100%;
    height: auto;
    aspect-ratio: 350/437;
    border-radius: 20px;
  }
  .p-about__box-text {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
    padding-inline: 7px;
  }
  .p-about__box-title {
    width: 100%;
    font-size: 24px;
    letter-spacing: 1.2px;
    white-space: normal;
    font-weight: 500;
  }
  .p-about__box-body {
    width: 100%;
  }
  .p-about__box-body p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 64px 0;
    scroll-margin-top: 87px;
  }
  .p-about__boxes {
    gap: 40px;
  }
  .p-about__box.--num1 {
    padding: 32px 18px;
    gap: 24px;
  }
  .--num2 .p-about__box-card {
    padding: 48px 18px 32px;
  }
}
.p-news {
  padding-block: 100px;
}

.p-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

.p-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.p-news__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.p-news__title-ring {
  display: inline-grid;
  line-height: 0;
}
.p-news__title-ring > * {
  grid-area: 1/1;
  align-self: start;
  justify-self: start;
}

.p-news__title-text {
  font-family: var(--ff-rounded);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 1.8;
  color: var(--font-color-main);
}

.p-news__all-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 14px 14px 32px;
  background: #fa9541;
  border: 1px solid #fa9541;
  border-radius: 100px;
}
.p-news__all-btn span {
  width: 235px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #fff;
}
.p-news__all-btn img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  width: 100%;
  color: var(--font-color-main);
}

.p-news__meta {
  display: grid;
  grid-template-columns: 1fr 149px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news__date {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  line-height: 2.1;
}

.p-news__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 149px;
  padding-block: 3px;
  background: rgba(250, 149, 65, 0.2);
  border-radius: 100px;
  font-family: var(--ff-mplus);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: normal;
  color: #ff7400;
  white-space: nowrap;
}
.p-news__tag.--training {
  background: rgba(25, 118, 210, 0.15);
  color: #1976d2;
}
.p-news__tag.--seminar {
  background: rgba(56, 142, 60, 0.15);
  color: #388e3c;
}
.p-news__tag.--other {
  background: rgba(117, 117, 117, 0.15);
  color: #757575;
}

.p-news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.p-news__arrow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 42px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 21px;
  height: 15px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-news__arrow path {
  fill: var(--base-orange);
}

.p-news__item:hover .p-news__body,
.p-news__item:focus-visible .p-news__body {
  color: var(--font-color-orange);
}

.p-news__sp-btn-wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 64px;
  }
  .p-news__inner {
    gap: 24px;
  }
  .p-news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .p-news__head .p-news__btn {
    display: none;
  }
  .p-news__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 24px 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 24px 0;
  }
  .p-news__meta {
    grid-column: 1/-1;
    grid-row: 1;
    grid-template-columns: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
  .p-news__date {
    font-size: 16px;
    letter-spacing: 0.32px;
    white-space: nowrap;
  }
  .p-news__tag {
    width: 133px;
    font-size: 12px;
    letter-spacing: 0.6px;
    padding-block: 6px;
  }
  .p-news__body {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.5;
  }
  .p-news__arrow {
    grid-column: 2;
    grid-row: 2;
    width: 20px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .p-news__arrow path {
    fill: var(--base-orange);
  }
  .p-news__sp-btn-wrap {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-banner {
  background: var(--base-color);
  padding-block: 40px 80px;
}

.p-banner__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 156px;
  gap: clamp(1.25rem, -26.25rem + 40vw, 4.75rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-banner__logp-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-banner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 1px solid #fa9541;
  border-radius: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-banner__btn-container {
  padding-block: 50px;
  padding-inline: clamp(1.25rem, 0.139rem + 2.31vw, 1.875rem);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.--num2 .p-banner__btn-container {
  padding-block: 50px;
  padding-inline: clamp(1.25rem, -12.5rem + 20vw, 3rem);
}

.p-banner__logo {
  position: relative;
  width: 56px;
  height: auto;
  aspect-ratio: 56/54;
}
.p-banner__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-banner__btn-text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.92px;
  line-height: normal;
  color: var(--font-color-main);
}
@media screen and (max-width: 1250px) {
  .p-banner__btn-text.--num1 {
    font-size: clamp(1.125rem, -0.214rem + 2.14vw, 1.5rem);
  }
}

.p-banner__arrow {
  width: 58px;
  height: auto;
  aspect-ratio: 58/58;
  justify-self: end;
}
.p-banner__arrow svg {
  width: 19px;
  height: 15px;
}

@media screen and (max-width: 1000px) {
  .p-banner__content {
    grid-template-columns: 500px;
    grid-template-rows: auto auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .p-banner__btn-text.--num1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-banner {
    padding-block: 16px 64px;
  }
  .p-banner__content {
    grid-template-columns: 350px;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .p-banner__btn {
    border-radius: 16px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .p-banner__btn-container {
    padding: 32px 24px;
  }
  .--num2 .p-banner__btn-container {
    padding: 32px;
  }
  .p-banner__btn-text {
    font-size: 16px;
    letter-spacing: 1.28px;
    line-height: 1.6;
  }
  .p-banner__btn-text.--num1 {
    font-size: 16px;
  }
  .p-banner__arrow {
    width: 50px;
    aspect-ratio: 50/50;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-footer {
  background: var(--base-footer);
  border-radius: 100px 100px 0 0;
  padding-block: 100px 16px;
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  padding-inline: 40px;
}

.p-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 109px;
  width: 100%;
}

.p-footer__left {
  max-width: 972px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--font-color-main);
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 223px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--ff-noto);
  line-height: 1.5;
  font-weight: 500;
}

.p-footer__name-link {
  color: inherit;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.p-footer__name-link:hover {
  opacity: 0.6;
}

.p-footer__name-sub {
  font-size: 16px;
  font-weight: 500;
}

.p-footer__name-main {
  font-size: 24px;
  font-weight: 500;
}

.p-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-footer__address p {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  white-space: nowrap;
  font-style: normal;
}

.p-footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-footer__tel span,
.p-footer__tel a {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.9px;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  font-size: 16px;
  letter-spacing: 0.8px;
}

.p-footer__nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-footer__nav-col a {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-footer__nav-col a:hover {
  opacity: 0.6;
}

.p-footer__copy {
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  padding-top: 37px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}
.p-footer__copy small {
  font-size: 10px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-footer {
    border-radius: 50px 50px 0 0;
    padding-block: 64px 0;
  }
  .p-footer__inner {
    gap: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 20px;
  }
  .p-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
  }
  .p-footer__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: auto;
    gap: 22px;
  }
  .p-footer__name-sub {
    text-align: center;
  }
  .p-footer__name-main {
    text-align: center;
  }
  .p-footer__address {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-footer__address p {
    white-space: normal;
    text-align: center;
  }
  .p-footer__tel {
    margin-top: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-footer__nav {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .p-footer__nav-col a {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .p-footer__copy {
    padding-top: 20px;
    width: 100%;
  }
  .p-footer__copy small {
    white-space: normal;
  }
}
.p-lower-mv {
  position: relative;
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .p-lower-mv {
    margin-top: 100px;
  }
}

.p-lower-mv__img-left {
  position: absolute;
  top: -274px;
  left: clamp(-14.375rem, -20.161rem + 12.05vw, -9.313rem);
  right: auto;
  width: 605px;
  height: auto;
  aspect-ratio: 590/398;
}
.p-lower-mv__img-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1440px) {
  .p-lower-mv__img-left {
    position: absolute;
    top: -274px;
    right: calc(50% + 276px);
    left: auto;
    width: 605px;
    height: auto;
    aspect-ratio: 590/398;
  }
}
@media screen and (max-width: 767px) {
  .p-lower-mv__img-left {
    width: 420px;
    aspect-ratio: 420/284;
    top: -199px;
    left: -117px;
  }
}
.p-lower-mv__inner {
  max-width: 1240px;
  padding-inline: 20px;
}

.p-lower-mv__box {
  position: relative;
  height: 300px;
  border-radius: 32px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .p-lower-mv__box {
    height: 160px;
    border-radius: 16px;
  }
}
.p-lower-mv__bg {
  position: absolute;
  inset: 0;
}
.p-lower-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-lower-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(213, 157, 110, 0.83);
}

.p-lower-mv__title {
  position: relative;
  z-index: 1;
  font-family: var(--ff-rounded);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 1.8;
  color: var(--font-color-white);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-lower-mv__title {
    font-size: 24px;
  }
}
.p-about-greeting {
  padding-block: 40px 100px;
}

@media (max-width: 767px) {
  .p-about-greeting {
    padding-block: 20px 40px;
  }
}
.p-about-greeting__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

@media (max-width: 767px) {
  .p-about-greeting__inner {
    gap: 40px;
  }
}
.p-about-greeting__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .p-about-greeting__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.p-about-greeting__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 53.3333333333%;
}

@media (max-width: 767px) {
  .p-about-greeting__text-wrap {
    width: 100%;
  }
}
.p-about-greeting__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-about-greeting__text p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
}

@media (max-width: 767px) {
  .p-about-greeting__text {
    gap: 12px;
  }
}
.p-about-greeting__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 767px) {
  .p-about-greeting__name {
    gap: 16px;
  }
}
.p-about-greeting__name-role {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
}

@media (max-width: 767px) {
  .p-about-greeting__name-role {
    font-size: 16px;
  }
}
.p-about-greeting__name-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.p-about-greeting__name-text span {
  font-size: 24px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 1.2px;
}

@media (max-width: 767px) {
  .p-about-greeting__name-text {
    gap: 8px;
  }
  .p-about-greeting__name-text span {
    font-size: 20px;
  }
}
.p-about-greeting__photo {
  width: 37.5%;
  height: auto;
  aspect-ratio: 450/450;
  border-radius: 24px;
  overflow: hidden;
}
.p-about-greeting__photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-about-greeting__photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 375/375;
    border-radius: 16px;
    margin-inline: auto;
  }
}
.p-about-members {
  padding-block: 40px 100px;
}

@media (max-width: 767px) {
  .p-about-members {
    padding-block: 20px 40px;
  }
}
.p-about-members__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media (max-width: 767px) {
  .p-about-members__inner {
    gap: 20px;
  }
}
.p-about-members__section-title {
  margin-inline: auto;
}

.p-about-members__table-wrap {
  width: 100%;
  max-width: 869px;
  background: var(--base-footer);
  border-radius: 6px;
  overflow: hidden;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-about-members__table-wrap {
    max-width: 100%;
  }
}
.p-about-members__table {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.p-about-members__table thead,
.p-about-members__table tbody {
  display: contents;
}
.p-about-members__table thead tr,
.p-about-members__table tbody tr {
  display: grid;
  grid-template-columns: 149px 165px 1fr;
  gap: 2px;
}
.p-about-members__table thead tr th {
  background: var(--base-orange);
  color: var(--font-color-white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  line-height: normal;
  white-space: nowrap;
  padding: 16px;
  text-align: center;
}
.p-about-members__table tbody tr td {
  background: var(--base-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
  padding: 16px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-about-members__table tbody tr td:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 32px;
}

@media (max-width: 767px) {
  .p-about-members__table thead tr,
  .p-about-members__table tbody tr {
    display: grid;
    grid-template-columns: clamp(4.375rem, -0.348rem + 20.15vw, 9.313rem) clamp(6.5rem, 2.853rem + 15.56vw, 10.313rem) 1fr;
    gap: 2px;
  }
  .p-about-members__table {
    gap: 1px;
  }
  .p-about-members__table thead tr th,
  .p-about-members__table tbody tr td {
    padding: 12px 8px;
  }
  .p-about-members__table thead tr th {
    font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
    white-space: normal;
  }
  .p-about-members__table tbody tr td {
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
    white-space: normal;
  }
  .p-about-members__table tbody tr td:last-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: clamp(0.5rem, -0.935rem + 6.12vw, 2rem);
    font-size: clamp(0.719rem, 0.45rem + 1.15vw, 1rem);
  }
}
.p-news-archive {
  padding-block: 40px 100px;
}

@media (max-width: 767px) {
  .p-news-archive {
    padding-block: 20px 40px;
  }
}
.p-news-archive__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media (max-width: 767px) {
  .p-news-archive__inner {
    gap: 20px;
  }
}
.p-news-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  padding: 23px;
  background: var(--base-white);
  border: 1px solid #ddd;
  border-radius: 16px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-news-archive__category {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 10px;
    padding: 16px;
    border-radius: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-news-archive__cat-item {
  font-family: var(--ff-mplus);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
  color: var(--font-color-main);
  white-space: nowrap;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-news-archive__cat-item.is-active {
  color: var(--base-orange);
  cursor: default;
  pointer-events: none;
}

@media (max-width: 767px) {
  .p-news-archive__cat-item {
    font-size: 14px;
    white-space: normal;
  }
}
.p-news-archive__cat-item:not(.is-active):hover,
.p-news-archive__cat-item:not(.is-active):focus-visible {
  opacity: 0.6;
}

.p-news-archive__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.p-news-archive__list {
  max-width: 1099px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-news-archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  padding-block: 26px 25px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  width: 100%;
  color: var(--font-color-main);
}

@media (max-width: 767px) {
  .p-news-archive__item {
    gap: 14px;
    padding-block: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-news-archive__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 767px) {
  .p-news-archive__meta {
    gap: 4px;
  }
}
.p-news-archive__date {
  width: 113px;
  font-family: var(--ff-mplus);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  line-height: 2.1;
}

@media (max-width: 767px) {
  .p-news-archive__date {
    width: 90px;
    font-size: 14px;
  }
}
.p-news-archive__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 149px;
  padding-block: 3px;
  background: rgba(250, 149, 65, 0.2);
  border-radius: 100px;
  font-family: var(--ff-mplus);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: normal;
  color: #ff7400;
  white-space: nowrap;
}
.p-news-archive__tag.--training {
  background: rgba(25, 118, 210, 0.15);
  color: #1976d2;
}
.p-news-archive__tag.--seminar {
  background: rgba(56, 142, 60, 0.15);
  color: #388e3c;
}
.p-news-archive__tag.--other {
  background: rgba(117, 117, 117, 0.15);
  color: #757575;
}

@media (max-width: 767px) {
  .p-news-archive__tag {
    width: 130px;
    font-size: 12px;
  }
}
.p-news-archive__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 2.1;
  padding-right: 46px;
  position: relative;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

@media (max-width: 767px) {
  .p-news-archive__body {
    font-size: 14px;
    padding-right: 36px;
    width: 100%;
  }
}
.p-news-archive__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 21px;
  height: 15px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-news-archive__arrow svg {
  width: 100%;
  height: 100%;
}

.p-news-archive__item:hover .p-news-archive__body,
.p-news-archive__item:focus-visible .p-news-archive__body {
  color: var(--font-color-orange);
}

.p-news-archive__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 180px;
}

.p-news-archive__pager-prev,
.p-news-archive__pager-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  cursor: pointer;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-news-archive__pager-prev span,
.p-news-archive__pager-next span {
  color: var(--font-color-black);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 2.1;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.p-news-archive__pager-arrow {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 100vmax;
}
.p-news-archive__pager-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--base-orange);
  border-radius: inherit;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-news-archive__pager-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 17px;
  height: 12px;
}
.p-news-archive__pager-arrow svg path {
  fill: var(--base-white);
}

.p-news-archive__pager-prev.is-disabled,
.p-news-archive__pager-next.is-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.p-news-archive__pager-prev:hover .p-news-archive__pager-arrow::before,
.p-news-archive__pager-prev:focus-visible .p-news-archive__pager-arrow::before,
.p-news-archive__pager-next:hover .p-news-archive__pager-arrow::before,
.p-news-archive__pager-next:focus-visible .p-news-archive__pager-arrow::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-news-archive__pager-prev:hover span,
.p-news-archive__pager-prev:focus-visible span,
.p-news-archive__pager-next:hover span,
.p-news-archive__pager-next:focus-visible span {
  color: var(--font-color-orange);
}

.p-news-archive__pager-nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-family: var(--ff-mplus);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  line-height: 2.1;
  white-space: nowrap;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.p-news-archive__pager-num {
  color: var(--font-color-black);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 2.1;
}
.p-news-archive__pager-num.is-active {
  color: var(--font-color-orange);
  cursor: default;
  pointer-events: none;
}

.p-news-archive__pager-num:not(.is-active):hover,
.p-news-archive__pager-num:not(.is-active):focus-visible {
  opacity: 0.6;
}

.p-news-single {
  padding-block: 60px 100px;
}

@media (max-width: 767px) {
  .p-news-single {
    padding-block: 20px 40px;
  }
}
.p-news-single__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-news-single__inner {
    gap: 20px;
  }
}
.p-news-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--base-orange);
}

@media (max-width: 767px) {
  .p-news-single__header {
    gap: 12px;
    padding-bottom: 8px;
  }
}
.p-news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .p-news-single__meta {
    gap: 4px;
  }
}
.p-news-single__date {
  font-family: var(--ff-mplus);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  color: var(--font-color-main);
}

@media (max-width: 767px) {
  .p-news-single__date {
    font-size: 14px;
  }
}
.p-news-single__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 16px;
  background: rgba(250, 149, 65, 0.2);
  border-radius: 100px;
  font-family: var(--ff-mplus);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.65px;
  color: #ff7400;
  white-space: nowrap;
}
.p-news-single__tag.--training {
  background: rgba(25, 118, 210, 0.15);
  color: #1976d2;
}
.p-news-single__tag.--seminar {
  background: rgba(56, 142, 60, 0.15);
  color: #388e3c;
}
.p-news-single__tag.--other {
  background: rgba(117, 117, 117, 0.15);
  color: #757575;
}

@media (max-width: 767px) {
  .p-news-single__tag {
    font-size: 12px;
  }
}
.p-news-single__title {
  font-family: var(--ff-mplus);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.8;
  color: var(--font-color-main);
}

@media (max-width: 767px) {
  .p-news-single__title {
    font-size: 20px;
  }
}
.p-news-single__thumbnail {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.p-news-single__thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
}

.p-news-single__body {
  font-family: var(--ff-noto);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--font-color-main);
}
@media (max-width: 767px) {
  .p-news-single__body {
    line-height: 1.8;
    font-size: 14px;
  }
}
.p-news-single__body h1,
.p-news-single__body h2,
.p-news-single__body h3,
.p-news-single__body h4,
.p-news-single__body h5 {
  font-family: var(--ff-mplus);
  font-weight: 700;
  line-height: 1.6;
  margin-block: 32px 16px;
  color: var(--font-color-main);
}
@media (max-width: 767px) {
  .p-news-single__body h1,
  .p-news-single__body h2,
  .p-news-single__body h3,
  .p-news-single__body h4,
  .p-news-single__body h5 {
    margin-block: 20px 12px;
  }
}
.p-news-single__body h1:first-child,
.p-news-single__body h2:first-child,
.p-news-single__body h3:first-child,
.p-news-single__body h4:first-child,
.p-news-single__body h5:first-child {
  margin-top: 0;
}
.p-news-single__body h1 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .p-news-single__body h1 {
    font-size: 20px;
  }
}
.p-news-single__body h2 {
  font-size: 22px;
  padding: 8px 12px;
  position: relative;
}
@media (max-width: 767px) {
  .p-news-single__body h2 {
    font-size: 20px;
    padding: 6px 10px;
  }
}
.p-news-single__body h2::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 100vmax;
  background: var(--base-orange);
}
@media (max-width: 767px) {
  .p-news-single__body h2::before {
    width: 4px;
    height: 100%;
  }
}
.p-news-single__body h3 {
  font-size: 20px;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 767px) {
  .p-news-single__body h3 {
    font-size: 18px;
    padding-left: 18px;
  }
}
.p-news-single__body h3::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 6px;
  height: 50%;
  border-radius: 100vmax;
  background: var(--base-orange);
}
@media (max-width: 767px) {
  .p-news-single__body h3::before {
    width: 4px;
    height: 50%;
  }
}
.p-news-single__body h4 {
  font-size: 18px;
  padding-bottom: 4px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .p-news-single__body h4 {
    font-size: 16px;
    padding-bottom: 2px;
  }
}
.p-news-single__body h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 100vmax;
  background: var(--base-orange);
}
.p-news-single__body h5 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .p-news-single__body h5 {
    font-size: 14px;
  }
}
.p-news-single__body p {
  margin-block: 0 16px;
}
@media (max-width: 767px) {
  .p-news-single__body p {
    margin-block: 0 12px;
  }
}
.p-news-single__body p:last-child {
  margin-bottom: 0;
}
.p-news-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-block: 8px;
}
.p-news-single__body ul,
.p-news-single__body ol {
  padding-left: 24px;
  margin-block: 0 16px;
}
@media (max-width: 767px) {
  .p-news-single__body ul,
  .p-news-single__body ol {
    padding-left: 18px;
    margin-block: 0 12px;
  }
}
.p-news-single__body ul li,
.p-news-single__body ol li {
  margin-block: 8px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-news-single__body ul li,
  .p-news-single__body ol li {
    margin-block: 4px;
  }
}
.p-news-single__body a {
  color: var(--font-color-blue);
  text-decoration: underline;
}

.p-news-single__file {
  padding: 24px;
  background: var(--base-gray);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-news-single__file {
    padding: 16px;
    gap: 8px;
  }
}

.p-news-single__file-label {
  font-family: var(--ff-mplus);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--font-color-main);
}
@media (max-width: 767px) {
  .p-news-single__file-label {
    font-size: 12px;
  }
}

.p-news-single__file-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: var(--font-color-main);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .p-news-single__file-link {
    gap: 8px;
  }
}
.p-news-single__file-link:hover {
  color: var(--base-orange);
}

.p-news-single__file-name {
  font-family: var(--ff-mplus);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.6;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-news-single__file-name {
    font-size: 14px;
  }
}

.p-news-single__post-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 24px;
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.p-news-single__post-nav span {
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-news-single__post-nav {
    padding-block: 16px;
  }
}
.p-news-single__post-nav-prev,
.p-news-single__post-nav-next {
  min-width: 120px;
}

@media (max-width: 767px) {
  .p-news-single__post-nav-prev,
  .p-news-single__post-nav-next {
    min-width: 100px;
  }
}
.p-news-single__post-nav-next {
  text-align: right;
}

@media (max-width: 767px) {
  .p-news-single__post-nav-next {
    text-align: center;
  }
}
.p-news-single__post-nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--ff-mplus);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: var(--font-color-main);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .p-news-single__post-nav-link {
    font-size: 12px;
    gap: 8px;
  }
}
.p-news-single__post-nav-link:hover {
  color: var(--base-orange);
}

.p-news-single__post-nav-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-news-single__post-nav-arrow {
    width: 14px;
    height: 10px;
  }
}
.p-news-single__post-nav-arrow svg {
  width: 17px;
  height: 12px;
}

.p-news-single__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .p-news-single__back {
    padding-block: 16px;
  }
}

.p-guide {
  padding-block: 40px 100px;
}

@media (max-width: 767px) {
  .p-guide {
    padding-block: 20px 40px;
  }
}
.p-guide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

@media (max-width: 767px) {
  .p-guide__inner {
    gap: 40px;
  }
}
.p-guide__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  scroll-margin-top: 160px;
}
@media (max-width: 767px) {
  .p-guide__section {
    scroll-margin-top: 80px;
    gap: 20px;
  }
}

.p-guide__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 42px;
}

@media (max-width: 767px) {
  .p-guide__table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-guide__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (max-width: 767px) {
  .p-guide__col {
    gap: 16px;
    margin-inline: auto;
    width: 100%;
  }
}
.p-guide__col-head {
  padding-inline: 16px;
  padding-block: 10px 8px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.p-guide__col-title {
  font-family: var(--ff-mplus);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: var(--font-color-main);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-guide__col-title {
    font-size: 16px;
  }
}
.p-guide__link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .p-guide__link-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.p-guide__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (max-width: 767px) {
  .p-guide__link-list {
    gap: 12px;
  }
}
.p-guide__link-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-inline: clamp(1.25rem, -0.083rem + 2.78vw, 2rem);
  padding-block: 12px;
  background: var(--base-white);
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  min-height: 95px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-guide__link-card:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .p-guide__link-card {
    padding-inline: 16px;
    min-height: 66px;
  }
}
.p-guide__link-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 1.8;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

@media (max-width: 767px) {
  .p-guide__link-text {
    font-size: 14px;
  }
}
.p-guide__link-card:hover .p-guide__link-text,
.p-guide__link-card:focus-visible .p-guide__link-text {
  color: var(--font-color-orange);
}

.p-guide__link-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--base-orange);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.p-guide__link-icon--pdf {
  width: 23px;
  height: 30px;
  -webkit-mask-image: url("../img/guide-pdf-icon.webp");
          mask-image: url("../img/guide-pdf-icon.webp");
}
.p-guide__link-icon--external {
  width: 25px;
  height: 25px;
  -webkit-mask-image: url("../img/guide-link-icon.webp");
          mask-image: url("../img/guide-link-icon.webp");
}

@media (max-width: 767px) {
  .p-guide__link-icon {
    width: 20px;
    height: 20px;
  }
}
.p-guide-join {
  padding: 40px 0 80px;
}

@media (max-width: 767px) {
  .p-guide-join {
    padding: 20px 0 40px;
  }
}
.p-guide-join__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media (max-width: 767px) {
  .p-guide-join__inner {
    gap: 20px;
  }
}
.p-guide-join__section-title {
  margin-inline: auto;
}

.p-guide-join__box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.p-guide-join__bg {
  position: absolute;
  inset: 0;
}
.p-guide-join__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-guide-join__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 181, 106, 0.35);
}

.p-guide-join__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  padding: 64px 70px;
}

@media (max-width: 1100px) {
  .p-guide-join__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .p-guide-join__content {
    padding: 28px 16px;
  }
}
.p-guide-join__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 537px;
  color: #fff;
  font-family: var(--ff-rounded);
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-guide-join__text {
    width: 100%;
    gap: 16px;
  }
}
.p-guide-join__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  gap: 8px;
}
.p-guide-join__title span {
  color: var(--font-color-white);
  font-family: var(--ff-rounded);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-guide-join__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
  }
  .p-guide-join__title span {
    font-size: 20px;
  }
}
.p-guide-join__desc {
  max-width: 514px;
  color: var(--font-color-white);
  font-family: var(--ff-rounded);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
}

@media (max-width: 767px) {
  .p-guide-join__desc {
    max-width: 100%;
    font-size: 14px;
  }
}
.p-guide-join__btn.c-button:hover,
.p-guide-join__btn.c-button:focus-visible {
  background: #fff;
  max-width: 349px;
}
.p-guide-join__btn.c-button:hover .c-button__text,
.p-guide-join__btn.c-button:focus-visible .c-button__text {
  color: inherit;
}
.p-guide-join__btn.c-button:hover .c-button__arrow,
.p-guide-join__btn.c-button:focus-visible .c-button__arrow {
  background: var(--base-orange);
}
.p-guide-join__btn.c-button:hover .c-button__arrow svg path,
.p-guide-join__btn.c-button:focus-visible .c-button__arrow svg path {
  fill: var(--base-white);
}

.p-404 {
  padding-top: 124px;
  padding-bottom: 120px;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .p-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-404__inner {
  width: 100%;
}

.p-404__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.p-404__number {
  font-family: var(--ff-rounded);
  font-size: clamp(5rem, 18vw, 11.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--base-orange);
  letter-spacing: -0.02em;
  opacity: 0.18;
  margin-bottom: -0.15em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-404__heading {
  font-family: var(--ff-rounded);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--font-color-main);
  line-height: 1.6;
  margin-bottom: 24px;
}

.p-404__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--font-color-main);
  opacity: 0.75;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .p-404__body {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.p-404__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-sp-pc {
    display: none;
  }
}

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