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

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

:root {
  --color-main: #0D8C0D;
  --color-sub: #45C045;
  --color-accent: #094400;
  --color-text: #3C3C3C;
  --white: #ffffff;
  --ff: "Noto Sans JP", "DM Sans", sans-serif;
  --ff-en: "DM Sans", sans-serif;
  --ff-accent: "Zen Kaku Gothic New", sans-serif;
  --z-header: 100;
  --z-drawerIcon: 102;
  --z-drawer: 101;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 7.5rem;
  }
}
@media screen and (max-width: 1439px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 393 * 100vw);
  }
}
@media screen and (max-width: 392px) {
  html {
    font-size: calc(16 / 393 * 100vw);
  }
}

body {
  color: var(--color-text);
  font-family: var(--ff);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: px(768)) {
  a08[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-drawer__icon {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 2.625rem;
  height: 0.5625rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  top: 3.4375rem;
  right: 1.5rem;
  z-index: var(--z-drawerIcon);
}
@media screen and (max-width: 768px) {
  .l-drawer__icon {
    top: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-drawer__icon {
    display: none;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 0.125rem;
  background: #fff;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  translate: 0 0.21875rem;
  rotate: 30deg;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  translate: 0 -0.21875rem;
  rotate: -30deg;
}

.l-drawer {
  position: fixed;
  z-index: var(--z-drawer);
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(83, 98, 83, 0.75);
  backdrop-filter: blur(12px);
}

.l-drawer__icon--bar {
  transition: all 0.5s ease;
}

.l-drawer {
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  position: relative;
  width: 100%;
  height: fit-content;
  padding-block: 5.5rem 2.5rem;
  padding-left: 2.125rem;
}

.l-drawer__logo {
  position: absolute;
  top: 1.625rem;
  left: 1.5rem;
  width: 14.375rem;
  line-height: 0;
}
.l-drawer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin-bottom: 3rem;
}

.l-drawer__list li {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}

.l-drawer__list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("../images/component/arrow-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.375rem 0.5625rem;
  transition: transform 0.2s ease;
}

.l-drawer__list li:hover::before {
  transform: translateX(2px);
}

.l-drawer__list li a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.l-drawer__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-right: 2.125rem;
}

.l-drawer__btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  width: 100%;
  max-width: 18.75rem;
  text-align: center;
}

.l-header {
  background-color: var(--color-main);
  background-image: linear-gradient(rgba(13, 140, 13, 0.9), rgba(13, 140, 13, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.l-header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-inline: 2.5rem;
  padding-block: 2.55625rem 2.4375rem;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-inline: 1.5rem;
    padding-block: 1.5625rem 1.5625rem;
  }
}

.l-header__logo {
  width: 19.1875rem;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 14.375rem;
  }
}

.l-header__logo img {
  height: 100%;
  width: 100%;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: end;
  }
}

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

.l-header__list > li > a {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--white);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__list > li > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}

.l-header__btn-wrap {
  display: flex;
  gap: 0.5rem;
}

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

.l-header--sub {
  background-color: #0c830c;
  background-image: linear-gradient(rgba(12, 131, 12, 0.9), rgba(12, 131, 12, 0.9)), url(../images/top/noise.webp);
  overflow: hidden;
}

.l-header--sub .l-header__inner {
  padding-block: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-header--sub .l-header__inner {
    justify-content: space-between;
    gap: 0;
    padding-block: 2rem;
  }
}

.l-footer {
  background-color: var(--color-main);
  background-image: linear-gradient(rgba(13, 140, 13, 0.9), rgba(13, 140, 13, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
}

.l-footer__inner {
  padding-inline: 9.75rem;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-inline: 2.5rem;
  }
}

.l-footer__upper {
  padding-block: 3.25rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .l-footer__upper {
    padding-block: 2.625rem;
  }
}

.l-footer__upper-logo img {
  width: 19.1875rem;
  height: 3.31875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__upper-logo img {
    width: 14.375rem;
    height: 2.4375rem;
  }
}

.l-footer__upper-nav {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e7e7e6;
}
@media screen and (max-width: 768px) {
  .l-footer__upper-nav {
    padding-top: 1.125rem;
    padding-bottom: 0.9375rem;
  }
}

.l-footer__upper-list {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__upper-list {
    flex-direction: column;
    gap: 1.125rem;
  }
}

.l-footer__upper-list li {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer__upper-list li {
    font-size: 0.75rem;
  }
}

.l-footer__upper-list li > a {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__upper-list li > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}

.l-footer__upper-text {
  font-size: 0.75rem;
  line-height: 1.4;
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__upper-text {
    font-size: 0.75rem;
    padding-top: 1.125rem;
  }
}

.l-footer__bottom {
  background-color: #0a5f0a;
  background-image: linear-gradient(rgba(10, 95, 10, 0.9), rgba(10, 95, 10, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  color: var(--white);
  font-size: 0.75rem;
  padding-block: 2rem;
}
.l-footer__bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-wrapper {
    flex-direction: column;
  }
}

.l-footer__bottom-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-nav {
    gap: 0.75rem;
  }
}

.l-footer__bottom-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-list {
    gap: 0.75rem;
  }
}

.l-footer__bottom-list a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.015rem;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__bottom-list a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-list a {
    font-size: 0.75rem;
  }
}

.l-footer__copyright {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.015rem;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.l-inner__narrow {
  max-width: 67.5rem;
}
@media screen and (max-width: 768px) {
  .l-inner__narrow {
    padding: 0 1.5rem;
    max-width: 313px;
  }
}

.c-btn {
  border-radius: 624.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
}
@media (any-hover: hover) {
  .c-btn:hover {
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .c-btn {
    padding: 0.75rem 0.75rem;
  }
}

.c-btn--box-shadow {
  box-shadow: 0 99px 28px 0 rgba(0, 0, 0, 0), 0 64px 25px 0 rgba(0, 0, 0, 0.01), 0 36px 21px 0 rgba(0, 0, 0, 0.05), 0 16px 16px 0 rgba(0, 0, 0, 0.09), 0 4px 9px 0 rgba(0, 0, 0, 0.1);
}

.c-btn--border {
  border: 1px solid #c8c8c8;
}

.c-btn--border-black {
  border: 1px solid #094400;
}

.c-btn--dark {
  background: var(--color-accent);
  color: var(--white);
}

.c-btn--white {
  background: var(--white);
  color: var(--color-accent);
  color: #292929;
}

.c-btn--green {
  background: var(--color-main);
  color: #f6f6f5;
  text-align: center;
}

.c-btn--header {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.28px;
}

.c-btn--fv {
  color: #094400;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6; /* 40.96px */
  letter-spacing: -0.03125rem;
  padding-block: 1.1875rem;
  padding-left: 2.875rem;
  padding-right: 3.375rem;
}
@media screen and (max-width: 768px) {
  .c-btn--fv {
    padding-left: 0.3125rem;
    padding-right: 0;
  }
}

.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out, translate 1s ease-in-out;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.c-animated__fadeIn-delay {
  translate: 0 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out, translate 1s ease-in-out;
}
.c-animated__fadeIn-delay.js-show {
  translate: 0;
  opacity: 1;
}

.c-animated__clipView {
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.8s ease-out, clip-path 1.2s ease-out;
}
.c-animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.c-animated__clipView--fv {
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.8s ease-out, clip-path 1.2s ease-out;
}
.c-animated__clipView--fv.js-show {
  clip-path: polygon(0 0, 100% 0%, 73% 100%, 0% 100%);
}

.c-section-title {
  position: absolute;
  top: 0;
  left: 8.5rem;
  transform: rotate(90deg);
  transform-origin: left top;
  width: 100%;
  height: 100%;
  letter-spacing: 0.375rem;
  font-size: 7.125rem;
  font-family: var(--ff-en);
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 4.5rem;
    letter-spacing: 0.2525rem;
    left: 3.75rem;
    width: max-content;
    height: max-content;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
  }
}

.c-section-title--right {
  position: absolute;
  top: 4.625rem;
  left: auto;
  right: 4.6875rem;
  transform: none;
  width: max-content;
  height: max-content;
  max-width: none;
  overflow: visible;
  white-space: nowrap;
  font-size: 7.125rem;
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}
.c-section-subtitle {
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1.6; /* 65.6px */
  letter-spacing: 0.1025rem;
}
@media screen and (max-width: 768px) {
  .c-section-subtitle {
    font-size: 1.625rem;
    letter-spacing: 0.065rem;
  }
}

.c-heading {
  font-weight: 700;
  line-height: 1.4;
}

.c-heading--border-left {
  padding-left: 1rem;
  border-left: 0.25rem solid var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-heading--border-left {
    padding-left: 0.75rem;
    border-left: 0.1875rem solid var(--color-main);
  }
}

.c-news-list__link {
  padding-block: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px dashed #c6c6c6;
}
@media screen and (max-width: 768px) {
  .c-news-list__link {
    gap: 0.4375rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .c-news-list__link:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
  }
}

.c-news-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.c-news-list__date {
  font-family: Poppins;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-news-list__date {
    font-size: 0.75rem;
  }
}

.c-news-list__tag {
  display: inline-block;
  padding: 0.0625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 0.25rem;
  border: 0.125rem solid var(--color-main);
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-news-list__tag {
    font-size: 0.65625rem;
    padding: 0.1875rem 0.75rem;
    border: 0.09375rem solid var(--color-main);
  }
}

.c-news-list__title {
  font-size: 1.5rem;
  padding-block: 0.375rem;
  padding-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .c-news-list__title {
    font-size: 1.125rem;
    padding-block: 0.28125rem;
    padding-left: 0.4375rem;
  }
}

.c-news-list__text {
  font-size: 1.125rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .c-news-list__text {
    font-size: 0.84375rem;
  }
}

.c-news-list__more {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.0225rem;
  padding-block: 0.75rem;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-news-list__more {
    font-size: 0.84375rem;
    padding-block: 0.5625rem;
  }
}

.c-blog-list__link {
  padding-block: 1.5625rem;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px dashed #c6c6c6;
}
@media screen and (max-width: 768px) {
  .c-blog-list__link {
    gap: 1.125rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .c-blog-list__link:hover .c-blog-list__thumbnail img {
    transform: scale(1.1);
  }
  .c-blog-list__link:hover .c-blog-list__body {
    opacity: 0.7;
  }
}

.c-blog-list__thumbnail {
  width: 85%;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .c-blog-list__thumbnail {
    width: 30%;
    height: 5.9375rem;
    flex-shrink: 0;
  }
}

.c-blog-list__thumbnail img {
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.c-blog-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-blog-list__body {
    gap: 0.5625rem;
  }
}

.c-blog-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.c-blog-list__date {
  font-family: Poppins;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-blog-list__date {
    font-size: 0.75rem;
  }
}

.c-blog-list__tag {
  display: inline-block;
  padding: 0.0625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 0.25rem;
  border: 2px solid var(--color-main);
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-blog-list__tag {
    font-size: 0.65625rem;
    padding: 0.0625rem 0.75rem;
  }
}

.c-blog-list__title {
  font-size: 1.5rem;
  padding-block: 0.375rem;
  padding-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .c-blog-list__title {
    font-size: 1.125rem;
    padding-block: 0.28125rem;
    padding-left: 0.4375rem;
  }
}

.c-blog-list__text {
  font-size: 1.125rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .c-blog-list__text {
    font-size: 0.84375rem;
  }
}

.c-blog-list__more {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.0225rem;
  padding-block: 0.75rem;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-blog-list__more {
    font-size: 0.84375rem;
    padding-block: 0.5625rem;
  }
}

.c-page-hero {
  position: relative;
  height: 27.75rem;
  overflow: hidden;
  margin-top: 5.8125rem;
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .c-page-hero {
    height: 11.25rem;
    margin-top: 6.5rem;
  }
}

.c-page-hero__green-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 100%;
  pointer-events: none;
}
.c-page-hero__green-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/top/noise.webp);
  background-repeat: repeat;
  background-size: 16rem;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .c-page-hero__green-bg {
    width: 54.625rem;
  }
  .c-page-hero__green-bg::after {
    opacity: 0.2;
  }
}

.c-page-hero__green-bg > img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right top;
}

.c-page-hero__photo {
  position: absolute;
  top: 0;
  left: -3.37%;
  width: 71.9%;
  height: 100%;
  border-radius: 3rem 25rem 25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-page-hero__photo {
    left: -3.8125rem;
    top: -0.375rem;
    width: 21.375rem;
    height: 11.0625rem;
    border-radius: 3rem 25rem 25rem 0;
  }
}

.c-page-hero__photo > img {
  position: absolute;
  width: 100.81%;
  height: 251.82%;
  left: -0.04%;
  top: -49.32%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-page-hero__photo > img {
    width: 100.7%;
    height: 226.22%;
    left: -0.04%;
    top: -44.31%;
  }
}

.c-page-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.c-page-hero__title {
  position: absolute;
  left: 5rem;
  top: calc(50% - 0.7em);
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.18rem;
  color: var(--white);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-page-hero__title {
    left: 1.5rem;
    top: calc(50% - 0.78125rem);
    font-size: 2rem;
    letter-spacing: -0.12rem;
  }
}

.c-page-body {
  background-color: #f2f3f3;
  border-radius: 3.75rem 3.75rem 0 0;
  margin-top: -7em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-page-body {
    border-radius: 1.875rem 1.875rem 0 0;
    margin-top: -1.5625rem;
  }
}

.c-page-body__inner {
  background-color: var(--white);
  border-top: 1px solid #e7e7e6;
  border-radius: 3.75rem 3.75rem 0 0;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .c-page-body__inner {
    border-radius: 1.875rem 1.875rem 0 0;
    border-top: none;
    padding: 2.5rem 1.5rem 1rem;
    gap: 1rem;
  }
}

.c-page-body__wave {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
}

.c-page-body__wave img {
  position: absolute;
  top: -0.03125rem;
  left: 0;
  width: 100%;
  display: block;
}

.c-page-lower {
  background-color: #f8f8f8;
}

.c-page-lower__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 5rem;
}
@media screen and (max-width: 768px) {
  .c-page-lower__cta {
    padding-block: 2.5rem;
    padding-inline: 1.5rem;
  }
}

.c-page-lower__cta .c-cta__content {
  width: 100%;
  max-width: 80rem;
}

.c-page-lower__company {
  padding-block: 2.5rem;
  border-top: none;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-page-lower__company {
    padding-block: 2.5rem;
    border-top: 0.046875rem dashed #c6c6c6;
  }
}

.c-page-lower__company .c-company__inner {
  padding-inline: 9.75rem;
}
@media screen and (max-width: 768px) {
  .c-page-lower__company .c-company__inner {
    padding-inline: 2.5rem;
  }
}

.c-breadcrumb {
  width: 100%;
  border-top: 1px solid #e7e7e6;
  padding: 1rem 9.75rem;
  color: #51514d;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 1rem 1.25rem 1rem;
    font-size: 1rem;
  }
}

.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.c-breadcrumb li + li::before {
  content: ">";
  margin-right: 1rem;
}

.c-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb a:hover {
    opacity: 0.6;
  }
}

.c-company {
  padding-block: 5.375rem;
  border-top: 1px dashed #c6c6c6;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 768px) {
  .c-company {
    padding-block: 5.125rem;
    margin-bottom: 0;
  }
}

.c-company__inner {
  padding-inline: 7.5rem;
}
@media screen and (max-width: 768px) {
  .c-company__inner {
    padding-inline: 1.5rem;
  }
}

.c-company__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-company__content {
    flex-direction: column;
    gap: 0.875rem;
    align-items: flex-start;
  }
}

.c-company__title {
  color: #51514d;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-company__title {
    font-size: 1.875rem;
    letter-spacing: 0.065rem;
  }
}

.c-company__text {
  color: #51514d;
  font-size: 1.125rem;
  line-height: 1.6;
  padding-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-company__text {
    font-size: 0.84375rem;
    padding-top: 0.375rem;
  }
}

.c-company__link {
  width: 50%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.0225rem;
}
@media screen and (max-width: 768px) {
  .c-company__link {
    font-size: 0.84375rem;
    width: 100%;
    letter-spacing: -0.016875rem;
  }
}

.c-cta__content {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding-block: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .c-cta__content {
    padding-inline: 1.0625rem;
    border-radius: 1.5rem;
    padding-block: 2.9375rem;
  }
}
.c-cta__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url(../images/top/cta-bg-pc.webp) no-repeat center center/cover;
  filter: brightness(0.7);
  pointer-events: none;
}
.c-cta__content > * {
  position: relative;
  z-index: 1;
}

.c-cta__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.18rem;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .c-cta__heading {
    font-size: 2rem;
    letter-spacing: -0.12rem;
  }
}

.c-cta__text {
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__text {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.c-cta__button-wrap {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-wrap {
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.25rem;
  }
}

.c-cta__button {
  flex-shrink: 0;
  width: 25rem;
  height: 3.875rem;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button {
    width: 100%;
  }
}

.c-single-content {
  color: #51514d;
  width: 100%;
}

.c-single-content h2,
.c-single-content h3,
.c-single-content h4,
.c-single-content h5 {
  font-weight: 700;
  line-height: 1.4;
  color: #51514d;
}

.c-single-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.875rem;
}
.c-single-content h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

.c-single-content h3 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1.875rem;
}
.c-single-content h3:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
  }
}

.c-single-content h4 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.c-single-content h4:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content h4 {
    font-size: 1.125rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
  }
}

.c-single-content h5 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.c-single-content h5:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content h5 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.875rem;
  }
}

.c-single-content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.875rem;
}
.c-single-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
}

.c-single-content ul,
.c-single-content ol {
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.875rem;
}
.c-single-content ul:last-child,
.c-single-content ol:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content ul,
  .c-single-content ol {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.c-single-content li {
  margin-bottom: 0.5rem;
}
.c-single-content li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-single-content li {
    margin-bottom: 0.375rem;
  }
}

.c-single-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-block: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-single-content img {
    border-radius: 0.75rem;
    margin-block: 1.25rem;
  }
}

.c-single-content a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-single-content a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 1000px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}
.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 768px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 1000px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-capital {
  text-transform: capitalize;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-english {
  font-family: var(--ff-en);
}

.p-fv {
  position: relative;
  background: var(--color-main);
  margin-top: 8.375rem;
  padding-bottom: 16.75rem;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .p-fv {
    background: linear-gradient(to bottom, var(--color-main) 0%, var(--color-main) 41%, transparent 41%, transparent 100%);
    min-height: 40rem;
  }
  .p-fv::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 41%;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(13, 140, 13, 0.9), rgba(13, 140, 13, 0.9)), url(../images/top/noise.webp);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-fv {
    background-color: var(--white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/top/noise.webp);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 6.25rem;
    margin-top: 6.5rem;
    padding-bottom: 6.875rem;
  }
}

.p-fv__bg-wrapper {
  width: 80rem;
  border-radius: 48px 400px 400px 48px;
}

.p-fv__bg-wrapper img {
  width: 80rem;
}

.p-fv__bg {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 2.5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-fv__bg {
    left: 1.5rem;
  }
}

.p-fv__bg img {
  width: 91.5%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem 25rem 25rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-fv__bg img {
    width: 20.375rem;
    border-radius: 2rem 25rem 25rem 2rem;
  }
}

.p-fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  padding-inline: 5rem;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    padding-inline: 1.5rem;
  }
}

.p-fv__logo-fv-pc {
  display: block;
  opacity: 0;
  width: 38rem;
  height: 5.875rem;
  background-image: url(../images/top/logo-fv-pc.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -7.9375rem;
  right: 0rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-fv__logo-fv-pc {
    display: none;
  }
}

.p-fv__content {
  text-align: center;
  margin-top: 4.75rem;
}
@media screen and (max-width: 768px) {
  .p-fv__content {
    margin-top: 0;
  }
}

.p-fv__title {
  color: var(--white);
  font-family: var(--ff-accent);
  font-size: 4.125rem;
  font-weight: 700;
  line-height: 1.3;
  display: inline-flex;
  flex-direction: column;
  gap: 0.9375rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 2.25rem;
    line-height: 1.5;
    letter-spacing: 0.21875rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.p-fv__title__line-wrap {
  align-self: flex-start;
  max-width: 100%;
  overflow: hidden;
}

.p-fv__title--line {
  opacity: 0;
  background-color: var(--color-main);
  line-height: 1.3;
  padding-block: 0.125rem;
  padding-inline: 0.5rem;
  display: inline-block;
}

.p-fv__title--upper {
  letter-spacing: -0.1625rem;
}
@media screen and (max-width: 768px) {
  .p-fv__title--upper {
    letter-spacing: 0.14375rem;
  }
}

.p-fv__title--lower {
  letter-spacing: -0.04125rem;
}
@media screen and (max-width: 768px) {
  .p-fv__title--lower {
    letter-spacing: 0.09125rem;
  }
}

.p-fv__text-wrap {
  width: 29.9375rem;
  text-align-last: left;
}
@media screen and (max-width: 768px) {
  .p-fv__text-wrap {
    width: 100%;
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.p-fv__logo-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-fv__logo-sp {
    display: block;
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-fv__logo-sp img {
    width: 23.125rem;
    height: auto;
  }
}

.p-fv__text {
  opacity: 0;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-fv__text {
    font-size: 0.875rem;
    background-color: var(--color-main);
    padding-top: 1.0625rem;
    padding-bottom: 2.3125rem;
    padding-inline: 1.5rem;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    box-sizing: border-box;
  }
}

.p-fv__btn {
  opacity: 0;
  margin-top: 0.3125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-fv__btn {
    display: flex;
    max-width: 97%;
    margin-inline: auto;
    font-size: 1.25rem;
    margin-top: -1.875rem;
    padding-block: 0.9375rem;
    letter-spacing: -0.025rem;
    gap: 1.25rem;
  }
}
.p-fv__btn::after {
  content: "";
  flex-shrink: 0;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  background-image: url("../images/component/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.375rem 0.625rem;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-fv__btn::after {
    width: 1.125rem;
    height: 1.125rem;
    background-size: 0.3125rem 0.5625rem;
    gap: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-fv__btn:hover::after {
    transform: translateX(2px);
  }
}

.p-fv__blob::after {
  content: "";
  display: block;
  width: 34rem;
  height: 24.4375rem;
  background-color: var(--color-sub);
  background-image: linear-gradient(rgba(69, 192, 69, 0.9), rgba(69, 192, 69, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  border-radius: 480px 0px 0px 480px;
  position: absolute;
  top: 28.125rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__blob::after {
    background-color: #c9e9c9;
    background-image: linear-gradient(rgba(201, 233, 201, 0.9), rgba(201, 233, 201, 0.9)), url(../images/top/noise.webp);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 6.25rem;
    border-radius: 400px 0px 0px 400px;
    width: 6.25rem;
    height: 12rem;
    top: 21.875rem;
  }
}

.p-about {
  margin-bottom: 4.5rem;
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.p-about::after {
  content: "";
  display: block;
  width: 34.6875rem;
  height: 24.4375rem;
  background-color: rgb(208, 208, 208);
  background-image: linear-gradient(rgba(208, 208, 208, 0.9), rgba(208, 208, 208, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  border-radius: 0 400px 400px 0;
  position: absolute;
  bottom: -7.8125rem;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-about::after {
    width: 18.625rem;
    height: 11.8125rem;
    bottom: -7.5rem;
  }
}

.p-about__title {
  top: 1.875rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-about__title {
    top: 0;
  }
}

.p-about__inner {
  position: relative;
  z-index: 2;
}

.p-about__content {
  display: flex;
  flex-direction: column;
  gap: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .p-about__content {
    gap: 6.9375rem;
  }
}

.p-about__heading {
  display: flex;
  gap: 5.9375rem;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-about__heading {
    flex-direction: column-reverse;
    gap: 3.125rem;
  }
}

.p-about__heading-body {
  width: 40.625rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__heading-body {
    width: auto;
    padding-left: 2.25rem;
    margin-top: 0;
  }
}

.p-about__heading-title {
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-about__heading-title {
    font-size: 1.375rem;
  }
}

.p-about__heading-text {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.9;
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__heading-text {
    font-size: 0.875rem;
    padding-top: 1.125rem;
  }
}

.p-about__heading-image {
  width: 25rem;
  height: 25rem;
  clip-path: circle(50% at 50% 50%);
}
@media screen and (max-width: 768px) {
  .p-about__heading-image {
    align-self: flex-end;
    margin-right: -1.5rem;
    width: 19.625rem;
    height: 19.625rem;
  }
}

.p-about__heading-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.p-about__item {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 454px 127px 0 rgba(0, 0, 0, 0), 0 291px 116px 0 rgba(0, 0, 0, 0.01), 0 164px 98px 0 rgba(0, 0, 0, 0.05), 0 73px 73px 0 rgba(0, 0, 0, 0.09), 0 18px 40px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-about__item {
    padding: 1.6875rem;
    border-radius: 1rem;
    gap: 0.8625rem;
  }
}

.p-about__item-title {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.4;
  border-left: 0.25rem solid var(--color-main);
  padding-left: 1rem;
  padding-block: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-about__item-title {
    font-size: 1.5rem;
    padding-left: 0.6875rem;
  }
}

.p-about__item-img {
  width: 21rem;
  height: 12.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about__item-img {
    width: 100%;
    max-height: 10.8125rem;
  }
}

.p-about__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about__item-img img {
    border-radius: 1rem;
  }
}

.p-about__item-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-about__item-text {
    font-size: 0.875rem;
  }
}

.p-solution {
  background-color: var(--color-main);
  padding-top: 8.375rem;
  padding-bottom: 5.875rem;
  position: relative;
  isolation: isolate;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-solution {
    margin-top: 5.625rem;
    padding-top: 7.8125rem;
    padding-bottom: 6.0625rem;
  }
}
.p-solution::after {
  content: "";
  display: block;
  width: 32.8125rem;
  height: 24.4375rem;
  background-color: var(--color-sub);
  background-image: linear-gradient(rgba(69, 192, 69, 0.9), rgba(69, 192, 69, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  border-radius: 25rem 0 0 25rem;
  position: absolute;
  bottom: 21.875rem;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-solution::after {
    width: 12.875rem;
    height: 14.25rem;
    bottom: 55.9375rem;
  }
}

.p-solution__inner {
  position: relative;
  z-index: 1;
}

.p-solution__title {
  color: var(--white);
  top: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-solution__title {
    top: 4.5625rem;
  }
}

.p-solution__block--proposal {
  padding-inline: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-solution__block--proposal {
    padding-inline: 1.5rem;
  }
}

.p-proposal__content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-proposal__content {
    margin-top: 2.625rem;
  }
}

.p-solution__heading {
  text-align: center;
  color: var(--white);
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.1rem;
}
@media screen and (min-width: 769px) {
  .p-solution__heading {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__heading {
    font-size: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.065rem;
    line-height: 1.7;
  }
}

.p-proposal__swiper-container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-proposal__swiper-container {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    max-width: none;
  }
}

.p-proposal__swiper-container .swiper-button-prev::after,
.p-proposal__swiper-container .swiper-button-next::after {
  display: none;
}
.p-proposal__swiper-container .swiper-button-prev,
.p-proposal__swiper-container .swiper-button-next {
  position: absolute;
  top: 50%;
  margin-top: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("../images/component/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.0625rem 1.625rem;
  box-shadow: none;
  color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-proposal__swiper-container .swiper-button-prev,
  .p-proposal__swiper-container .swiper-button-next {
    width: 2rem;
    height: 2rem;
    background-size: 0.5625rem 0.9375rem;
  }
}
.p-proposal__swiper-container .swiper-button-prev.swiper-button-disabled,
.p-proposal__swiper-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.p-proposal__swiper-container .swiper-button-prev {
  left: -4.375rem;
  transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 768px) and (max-width: 499px) {
  .p-proposal__swiper-container .swiper-button-prev {
    left: 4%;
  }
}

.p-proposal__swiper-container .swiper-button-next {
  right: -4.375rem;
}
@media screen and (max-width: 768px) and (max-width: 499px) {
  .p-proposal__swiper-container .swiper-button-next {
    right: 4%;
  }
}

@media screen and (min-width: 500px) and (max-width: 999px) {
  .p-proposal__swiper-container .swiper-button-prev {
    left: 5%;
    transform: translateY(-50%) scaleX(-1);
  }
  .p-proposal__swiper-container .swiper-button-next {
    right: 5%;
  }
}
.p-proposal__card {
  background-color: var(--white);
  border-radius: 2rem;
  padding-inline: 2rem;
  padding-block: 1.875rem 2.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-proposal__card {
    padding-inline: 1.6875rem;
    padding-block: 1.6875rem 2.125rem;
    gap: 0.9375rem;
  }
}

.p-proposal__card-tag {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.4375rem 1rem;
  border-radius: 4px;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .p-proposal__card-tag {
    font-size: 0.96875rem;
    padding: 0.375rem 0.75rem;
  }
}

.p-proposal__card-title {
  font-size: 1.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-proposal__card-title {
    font-size: 1.5rem;
  }
}

.p-proposal__spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.125rem;
  border-bottom: 1px dashed #707070;
  padding-block: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-proposal__spec-item {
    gap: 0.85625rem;
    font-size: 0.96875rem;
    line-height: 1.6;
  }
}

.p-proposal__spec-term {
  width: 7.5rem;
  flex-shrink: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-proposal__spec-term {
    width: 6.3125rem;
  }
}

.p-proposal__spec-desc {
  flex: 1;
}

.p-proposal__card-text {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-proposal__card-text {
    font-size: 0.875rem;
  }
}

.p-proposal__button {
  padding: 0;
  padding-block: 0.75rem;
  padding-inline: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.0225rem;
}
@media screen and (max-width: 768px) {
  .p-proposal__button {
    padding-block: 0.64375rem;
    padding-inline: 0;
    font-size: 0.96875rem;
    letter-spacing: -0.02rem;
  }
}

.p-solution__block--simulation {
  margin-top: 11.625rem;
  padding-inline: 5.5625rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-solution__block--simulation {
    margin-top: 7.5rem;
    padding-inline: 1.5rem;
  }
}

.p-simulation__content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__content {
    margin-top: 2.625rem;
  }
}

.p-simulation__columns {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  margin-inline: auto;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 50%, #f4f9d5 50%, #f4f9d5 100%);
  box-shadow: 0 454px 127px 0 rgba(0, 0, 0, 0), 0 291px 116px 0 rgba(0, 0, 0, 0.01), 0 164px 98px 0 rgba(0, 0, 0, 0.05), 0 73px 73px 0 rgba(0, 0, 0, 0.09), 0 18px 40px 0 rgba(0, 0, 0, 0.1);
}
.p-simulation__columns::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-color: var(--color-main);
  background-image: url("../images/component/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9375rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__columns::after {
    width: 2.875rem;
    height: 2.875rem;
    background-size: 0.625rem 0.9375rem;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .p-simulation__columns {
    grid-template-columns: 1fr;
    gap: 3.875rem;
    max-width: none;
    padding: 1.6875rem 1.6875rem 2.5rem 1.6875rem;
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, #f4f9d5 50%, #f4f9d5 100%);
  }
}

.p-simulation__input,
.p-simulation__result {
  position: relative;
  z-index: 2;
}

.p-simulation__input {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding-block: 3.5625rem;
  padding-inline: 3.375rem 5.875rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__input {
    padding-inline: 0;
    padding-block: 0 1.875rem;
    align-items: center;
    gap: 1rem;
  }
}

.p-simulation__field {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-simulation__field {
    flex-direction: column;
    gap: 0.375rem;
  }
}

.p-simulation__label {
  color: var(--color-text);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  width: 12.9375rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__label {
    font-size: 1.225rem;
  }
}

.p-simulation__control {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__control {
    width: 18.25rem;
    margin-inline: auto;
  }
}

.p-simulation__loan-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.p-simulation__note {
  margin: 0;
  width: 100%;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-simulation__note {
    font-size: 0.65625rem;
    text-align: left;
    max-width: none;
  }
}

.p-simulation__input-amount {
  flex: 1;
  min-width: 0;
  width: 15.625rem;
  padding: 0.5rem 1rem;
  border: 2.5px solid #b9b9b9;
  border-radius: 0.375rem;
  background: var(--white);
  color: var(--color-main);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-simulation__input-amount {
    padding: 0.1875rem 0.5rem 0.1875rem 0;
    font-size: 1.375rem;
  }
}

.p-simulation__select {
  width: 15.625rem;
  padding: 0.125rem 2.5rem 0.5rem 1rem;
  border: 2.5px solid #bfbfbf;
  border-radius: 0.375rem;
  background-color: var(--white);
  background-image: url("../images/component/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.25rem 0.875rem;
  color: #b9b9b9;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .p-simulation__select {
    padding: 0.25rem 2.25rem 0.25rem 0.875rem;
    font-size: 1.375rem;
    width: 100%;
    background-size: 1rem 0.625rem;
  }
}

.p-simulation__unit {
  flex-shrink: 0;
  font-size: 1.6875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-simulation__unit {
    font-size: 1.1875rem;
  }
}

.p-simulation__input .p-simulation__unit {
  color: var(--color-text);
}

.p-simulation__result .p-simulation__unit {
  color: var(--color-text);
}

.p-simulation__result {
  padding-block: 2.1875rem;
  padding-inline: 5.9375rem 5.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-simulation__result {
    padding-block: 0 0.9375rem;
    padding-inline: 0;
  }
}

.p-simulation__result-heading {
  margin: 0;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-simulation__result-heading {
    font-size: 1.5rem;
  }
}

.p-simulation__result .p-simulation__control {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__result .p-simulation__control {
    margin-top: 0.75rem;
  }
}

.p-simulation__result-value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.125rem 0.375rem;
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  width: 15.625rem;
  margin: 0;
  padding-block: 0.625rem;
  border: 2.5px solid #b9b9b9;
  border-radius: 0.375rem;
  background: var(--white);
  color: var(--color-text);
  line-height: 1.5;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-simulation__result-value {
    padding: 0.4375rem 0.875rem;
  }
}

.p-simulation__result-approx {
  font-size: 2.8125rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.0225rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__result-approx {
    font-size: 2.0625rem;
  }
}

.p-simulation__result-num {
  font-family: Poppins;
  font-size: 3.8125rem;
  font-weight: 600;
  color: var(--color-main);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__result-num {
    font-size: 2.8125rem;
  }
}

.p-simulation__result-currency {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025rem;
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-simulation__result-currency {
    font-size: 1.5rem;
  }
}

.p-simulation__note--result {
  margin-top: 1.25rem;
  max-width: none;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-simulation__note--result {
    margin-top: 1.3125rem;
    font-size: 0.625rem;
  }
}

.p-simulation__note--result a {
  text-decoration: underline;
}

.p-solution__text {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.05625rem;
  text-align: center;
  margin-top: 5.8125rem;
}
@media screen and (max-width: 768px) {
  .p-solution__text {
    font-size: 1.25rem;
    margin-top: 6.625rem;
  }
}

.p-solution__cta-wrap {
  margin-top: 2.625rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-solution__cta-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-solution__cta-btn {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.03rem;
  width: 25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-solution__cta-btn {
    font-size: 1.5rem;
    padding: 0;
    padding-block: 0.75rem;
    width: 100%;
  }
}

.p-use-case {
  padding-top: 4.625rem;
  padding-bottom: 8.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-use-case {
    padding-top: 6.875rem;
    padding-bottom: 6.625rem;
  }
}

.p-use-case__inner {
  padding-left: 16.5rem;
  padding-right: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-use-case__inner {
    padding-inline: 1.5rem;
  }
}

.p-use-case__title {
  top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-use-case__title {
    top: 6.875rem;
  }
}

.p-use-case-card {
  padding: 2rem 1.75rem;
  background: #f1f1f1;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card {
    padding: 1.4375rem;
    border-radius: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-use-case__heading {
    text-align: center;
    margin-bottom: 2.625rem;
  }
}

.p-use-case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-use-case__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
    margin-top: 0;
  }
}

.p-use-case-card__heading {
  display: flex;
  flex-direction: row;
  gap: 1.875rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__heading {
    gap: 1.125rem;
  }
}

.p-use-case-card__heading-img {
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__heading-img {
    width: 5.625rem;
    height: 5.625rem;
  }
}

.p-use-case-card__heading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__heading-img img {
    border-radius: 0.75rem;
    border: 1.5px solid #bfbfbf;
  }
}

.p-use-case-card__heading-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__heading-title {
    font-size: 1.3125rem;
  }
}

.p-use-case-card__text {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.0225rem;
  border-bottom: 1px dashed #707070;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__text {
    font-size: 0.875rem;
    letter-spacing: 0.0175rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.p-use-case-card__body {
  display: flex;
  gap: 0.625rem;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__body {
    padding-top: 0.75rem;
  }
}

.p-use-case-card__body-icon {
  flex-shrink: 0;
  width: 7.5rem;
  height: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__body-icon {
    width: 5.625rem;
    height: 5.625rem;
  }
}

.p-use-case-card__body-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #bfbfbf;
}

.p-use-case-card__body-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__body-text {
    gap: 0.46875rem;
  }
}

.p-use-case-card__body-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.0225rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__body-name {
    font-size: 0.84375rem;
    letter-spacing: 0.016875rem;
  }
}

.p-use-case-card__body-comment {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.0225rem;
}
@media screen and (max-width: 768px) {
  .p-use-case-card__body-comment {
    font-size: 0.875rem;
    letter-spacing: -0.053125rem;
  }
}

.p-use-case__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4.125rem;
  margin-inline: auto;
  width: 21rem;
  min-height: 3.3125rem;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-use-case__button {
    font-size: 1.2rem;
    width: 17.25rem;
    min-height: 3.125rem;
    margin-top: 3.125rem;
  }
}

.p-faq {
  padding-bottom: 8.3125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding-bottom: 6.625rem;
  }
}

.p-faq__title {
  top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    top: 0;
  }
}

.p-faq__inner {
  padding-left: 16.5rem;
  padding-right: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    padding-inline: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-faq__heading {
    text-align: center;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    gap: 1.3125rem;
    margin-top: 2.5rem;
  }
}

.p-faq__item {
  border-radius: 2rem;
  background: #f3f3f3;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__item {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

.p-faq__item-heading {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-faq__item-heading {
    font-size: 1.25rem;
  }
}

.p-faq__item-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-faq__item-text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-faq__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4.125rem;
  margin-inline: auto;
  width: 21rem;
  min-height: 3.3125rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.0225rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-faq__button {
    width: 17.25rem;
    min-height: 3.125rem;
    margin-top: 3rem;
    font-size: 1.2rem;
    letter-spacing: -0.02375rem;
  }
}

.p-plan {
  padding-top: 8.125rem;
  padding-bottom: 7.5rem;
  position: relative;
  background-color: var(--color-main);
  background-image: linear-gradient(rgba(13, 140, 13, 0.9), rgba(13, 140, 13, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-plan {
    padding-top: 7.5rem;
    padding-bottom: 7.75rem;
  }
}
.p-plan::after {
  content: "";
  display: block;
  width: 40.3125rem;
  height: 24.4375rem;
  background-color: var(--color-sub);
  background-image: linear-gradient(rgba(69, 192, 69, 0.9), rgba(69, 192, 69, 0.9)), url(../images/top/noise.webp);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 6.25rem;
  border-radius: 25rem 0 0 25rem;
  position: absolute;
  bottom: -3.625rem;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-plan::after {
    width: 13.1875rem;
    height: 14.125rem;
    bottom: -3.75rem;
  }
}

.p-plan__inner {
  padding-inline: 5.8125rem 4.8125rem;
}
@media screen and (max-width: 768px) {
  .p-plan__inner {
    padding-inline: 1.5rem;
  }
}

.p-plan__title {
  color: var(--white);
  top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-plan__title {
    top: 4.3125rem;
  }
}

.p-plan__heading {
  text-align: center;
  color: var(--white);
}

.p-plan__content {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-plan__columns-scroll-outer {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__columns-wrapper-scroll {
    padding-left: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-plan__columns-wrapper-scroll::-webkit-scrollbar {
    display: none;
  }
}

.p-plan__columns-comment-sp {
  display: none;
}
@media screen and (max-width: 766px) {
  .p-plan__columns-comment-sp {
    display: flex;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 1;
    color: var(--white);
    font-family: var(--ff-en);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    align-items: center;
    gap: 0.375rem;
  }
  .p-plan__columns-comment-sp svg {
    width: 3.5rem;
  }
}

.p-plan__columns-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2.375rem;
  margin-top: 5.4375rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-wrapper {
    margin-top: 3rem;
    gap: 1.5rem;
    width: 59.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-plan__columns-wrapper {
    width: 100%;
    gap: clamp(2.375rem, 2.64vw, 3.5rem);
  }
}

.p-plan__columns-label-items {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-label-items {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.p-plan__columns-label-items li {
  padding-block: 0.875rem;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-label-items li {
    padding-block: 0.625rem;
  }
}

.p-plan__columns-target {
  border-radius: 1.5rem;
  background: #005c00;
  padding: 0.5rem;
  color: var(--white);
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.055rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-target {
    padding: 0.375rem;
    font-size: 1.03125rem;
    letter-spacing: 0.045rem;
  }
}

.p-plan__columns-table-wrapper {
  background-color: var(--white);
  padding: 1.5rem 1.5rem 2.8125rem 1.5rem;
  border-radius: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-table-wrapper {
    padding: 1.125rem 1.125rem 3.1875rem 1.125rem;
    border-radius: 1.125rem;
  }
}

.p-plan__columns-title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  padding-block: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-title {
    font-size: 0.9375rem;
    padding-block: 0.28125rem;
  }
}

.p-plan__columns-description {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-description {
    font-size: 0.75rem;
  }
}

.p-plan__columns-multiple-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-plan__columns-multiple {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 26.5rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-multiple {
    width: 19.875rem;
    gap: 2.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-plan__columns-multiple {
    width: 100%;
    max-width: 100%;
    gap: clamp(3rem, 3.33vw, 4rem);
  }
}
@media screen and (min-width: 1836px) {
  .p-plan__columns-multiple {
    gap: 3rem;
  }
}

.p-plan__columns--label {
  text-align: center;
  margin-top: 13.5625rem;
}
@media screen and (max-width: 768px) {
  .p-plan__columns--label {
    margin-top: 10.3125rem;
    width: 4.6875rem;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  .p-plan__columns--label {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1836px) {
  .p-plan__columns--label {
    margin-top: 11.875rem;
  }
}

.p-plan__columns-value {
  padding-block: 0.78125rem;
  border-bottom: 1px dashed #707070;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-plan__columns-value {
    font-size: 0.84375rem;
    padding-block: 0.5rem;
  }
}

.p-plan__column--target-a {
  width: 13.25rem;
}
@media screen and (max-width: 768px) {
  .p-plan__column--target-a {
    width: 9.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-plan__column--target-a {
    flex: 1 1 0;
    min-width: 13.25rem;
    width: auto;
  }
}

@media screen and (min-width: 1440px) {
  .p-plan__column--target-b,
  .p-plan__column--target-c {
    flex: 2 1 0;
    min-width: 0;
  }
}

.p-plan__text {
  color: var(--white);
  text-align: right;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-plan__text {
    font-size: 0.75rem;
    text-align: left;
    margin-top: 1.3125rem;
  }
}

.p-flow {
  padding-top: 6.8125rem;
  padding-bottom: 5.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__title-pc {
    display: none;
  }
}

.p-flow__title-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-flow__title-sp {
    display: block;
    top: 8.25rem;
  }
}

.p-flow__inner {
  padding-inline: 6.0625rem 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-flow__inner {
    padding-inline: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__heading {
    font-size: 1.625rem;
    text-align: center;
  }
}

.p-flow__text {
  margin-top: 0.875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-flow__text {
    font-size: 0.9375rem;
    text-align: center;
    margin-top: 3.75rem;
  }
}

.p-flow__list {
  display: flex;
  flex-direction: row;
  gap: 5.5rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    flex-direction: column;
    margin-top: 3.4375rem;
    gap: 5rem;
  }
}

.p-flow__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    gap: 1rem;
  }
}
.p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  pointer-events: none;
  background-color: var(--color-main);
  background-image: url("../images/component/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 1.125rem;
  top: 50%;
  right: -2.75rem;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-flow__item:not(:last-child)::after {
    transform: translate(-50%, 50%) rotate(90deg);
    top: auto;
    bottom: -2.5rem;
    left: 50%;
    right: auto;
    width: 2rem;
    height: 2rem;
    background-size: 0.5625rem 0.875rem;
  }
}

.p-flow__item-heading {
  font-size: 1.75rem;
  padding-block: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-flow__item-heading {
    font-size: 1.25rem;
    padding-block: 0.375rem;
  }
}

.p-flow__item-text {
  font-size: 1.125rem;
  line-height: 1.6;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-flow__item-text {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__item-img {
    width: 100%;
    height: 8.75rem;
  }
}

.p-flow__item-img img {
  border-radius: 1rem;
  object-fit: cover;
}

.p-flow__desc {
  display: block;
  margin-top: 2.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-flow__desc {
    display: none;
  }
}

.p-loan {
  padding-top: 5.4375rem;
  padding-bottom: 12.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-loan {
    padding-top: 0;
    padding-bottom: 6.5625rem;
  }
}

.p-loan__title {
  top: 6.8125rem;
}
@media screen and (max-width: 768px) {
  .p-loan__title {
    top: 0.5rem;
  }
}

.p-loan__inner {
  padding-left: 16.5rem;
  padding-right: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-loan__inner {
    padding-inline: 1.5rem;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .p-loan__heading {
    text-align: center;
  }
}

.p-loan__table-wrapper {
  margin-top: 2.75rem;
}
@media screen and (max-width: 768px) {
  .p-loan__table-wrapper {
    margin-top: 3.5rem;
  }
}

.p-loan__table-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2.5rem 5rem;
  background-color: #f3f3f3;
  border-radius: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .p-loan__table-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.5rem 2.125rem 1.5rem;
    border-radius: 1.5rem;
  }
}

.p-loan__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.6;
}

.p-loan__table th,
.p-loan__table td {
  padding-bottom: 0.9375rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px dashed #c6c6c6;
}
@media screen and (max-width: 768px) {
  .p-loan__table th,
  .p-loan__table td {
    padding-bottom: 1rem;
  }
}

.p-loan__table tbody tr:not(:first-child) th,
.p-loan__table tbody tr:not(:first-child) td {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-loan__table tbody tr:not(:first-child) th,
  .p-loan__table tbody tr:not(:first-child) td {
    padding-top: 0.9375rem;
  }
}

.p-loan__table th {
  width: 11.0625rem;
  padding-right: 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-loan__table th {
    width: 6.875rem;
    padding-right: 1rem;
  }
}

.p-loan__table td {
  font-size: 0.9375rem;
}

.p-topics {
  padding-block: 11.875rem 7.25rem;
}
@media screen and (max-width: 768px) {
  .p-topics {
    padding-block: 6.5rem 3.25rem;
  }
}

.p-topics__inner {
  padding-inline: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-topics__inner {
    padding-inline: 1.5rem;
  }
}

.p-topics__content {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-topics__content {
    flex-direction: column;
    gap: 3.75rem;
    align-items: flex-start;
  }
}

.p-topics__block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-topics__block {
    width: 100%;
    gap: 1.0625rem;
  }
}

.p-topics__heading-en {
  font-size: 1.9375rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-topics__heading-en {
    font-size: 1.5rem;
  }
}

.p-topics__heading-ja {
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1025rem;
}
@media screen and (max-width: 768px) {
  .p-topics__heading-ja {
    font-size: 1.875rem;
  }
}

.p-company-page-body__card {
  position: relative;
  background-color: #fbfbfb;
  border-radius: 2rem;
  width: 65.25rem;
  max-width: calc(100% - 3rem);
  min-height: 27.8125rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.p-company-page-body__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/top/noise.webp);
  background-repeat: repeat;
  background-size: 32rem;
  opacity: 0.05;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-company-page-body__card {
    width: 100%;
    max-width: 100%;
    min-height: 35.4375rem;
    border-radius: 2rem 2rem 2rem 0;
    box-shadow: 0 0.25rem 2.5rem 0 rgba(0, 0, 0, 0.1);
  }
}

.p-company-page-body__logo-mark {
  position: absolute;
  left: 4rem;
  top: 2.3125rem;
  width: 27.625rem;
  height: 30.75rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-company-page-body__logo-mark {
    left: -2.125rem;
    right: -3.625rem;
    top: 3.4375rem;
    width: 128%;
    height: auto;
    display: block;
  }
}

.p-company-page-body__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-company-page-body__info {
  position: relative;
  width: 38.125rem;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-company-page-body__info {
    width: 100%;
    margin-left: 0;
    padding: 4.375rem 1.6875rem;
    gap: 1.25rem;
  }
}

.p-company-page-body__info-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #51514d;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-company-page-body__info-row {
    gap: 0;
    font-size: 1rem;
  }
}

.p-company-page-body__info-row dt {
  width: 10rem;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-company-page-body__info-row dt {
    width: 7.5rem;
  }
}

.p-company-page-body__info-row dd {
  flex: 1;
  line-height: 1.6;
}

.p-company-page-body__separator {
  width: 31.75rem;
  height: 0.125rem;
  flex-shrink: 0;
  background: linear-gradient(to right, var(--color-main) 10rem, #e7e7e6 10rem);
}
@media screen and (max-width: 768px) {
  .p-company-page-body__separator {
    width: 17.9375rem;
    background: linear-gradient(to right, var(--color-main) 7.5rem, #e7e7e6 7.5rem);
  }
}

.p-contact-page-body__form-card {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 2rem;
  width: 65.25rem;
  max-width: calc(100% - 3rem);
  overflow: hidden;
  padding: 5rem;
}
.p-contact-page-body__form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/top/noise.webp);
  background-repeat: repeat;
  background-size: 32rem;
  opacity: 0.05;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-contact-page-body__form-card {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem 1.875rem;
  }
}

.p-contact-page-body__formrun {
  position: relative;
  width: 100%;
}

.p-privacy-page .c-page-hero__photo > img {
  height: 140%;
  top: -20%;
}
@media screen and (max-width: 768px) {
  .p-privacy-page .c-page-hero__photo > img {
    height: 140%;
    top: -20%;
  }
}

.p-privacy-page-body__card {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 2rem;
  width: 65.25rem;
  max-width: calc(100% - 3rem);
  min-height: 25rem;
  overflow: hidden;
  padding: 5rem;
}
.p-privacy-page-body__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/top/noise.webp);
  background-repeat: repeat;
  background-size: 32rem;
  opacity: 0.05;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-privacy-page-body__card {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem 1.875rem;
    min-height: auto;
  }
}
