@charset "UTF-8";
/* ==========================================================================
// ベースのスタイルを定義
// ========================================================================*/
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 30px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

ul {
  list-style: none;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}

/* ==========================================================================
// レイアウトの定義
// ========================================================================*/
.l-inner {
  width: calc(100% - 40px);
  max-width: 980px;
  margin-inline: 20px;
}
@media screen and (min-width: 1024px) {
  .l-inner {
    width: clamp(950px, 70vw, 1280px);
    max-width: 95vw;
    margin-inline: auto;
  }
}

.l-spacing-y {
  padding-block: 60px;
}
@media screen and (min-width: 1024px) {
  .l-spacing-y {
    padding-block: 140px 120px;
  }
}

@media screen and (min-width: 1024px) {
  .l-2cols {
    display: flex;
  }
}

.l-mb-sm {
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .l-mb-sm {
    margin-bottom: 15px;
  }
}

.l-mb-md {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .l-mb-md {
    margin-bottom: 60px;
  }
}

/* ==========================================================================
// Component - Header
// ========================================================================*/
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  padding-inline: 20px;
  background-color: #FFFFFF;
  z-index: 10000;
}
@media screen and (min-width: 1024px) {
  .c-header {
    height: 6.2vw;
    padding: 0 3.1vw;
  }
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.c-header__logo {
  max-width: 350px;
  width: 69.9vw;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .c-header__logo {
    max-width: none;
    width: 16vw;
    height: auto;
  }
}
.c-header__content {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-header__content {
    display: flex;
    align-items: center;
  }
}
.c-header__content.is-active {
  display: block;
  width: 100vw;
  height: calc(100svh - 70px);
  background-color: #E4EEEA;
  z-index: 100;
  position: fixed;
  top: 70px;
  left: 0;
  padding-inline: 20px;
}
.c-header__content .c-cta__buttons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100vw - 40px);
}
@media screen and (min-width: 1024px) {
  .c-header__content .c-cta__buttons {
    display: none;
  }
}
.c-header_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 40px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  .c-header_nav {
    flex-direction: row;
    align-items: center;
    gap: 1.5vw;
    margin: 0 20px 0 0;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.5;
    font-size: clamp(13px, 0.9vw, 16px);
  }
}
.c-header_nav__item {
  position: relative;
  transition: color 0.3s ease;
}
.c-header_nav__item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #00633A;
  position: absolute;
  bottom: -10px;
  left: 0;
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.3s ease;
}
.c-header_nav__item span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-top: 7px solid #00633A;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  translate: 0 -2px;
}
@media screen and (min-width: 1024px) {
  .c-header_nav__item span::after {
    border-top: 5px solid #00633A;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    translate: 0 -3px;
  }
}
.c-header_nav__item:hover {
  color: #00633A;
}
.c-header_nav__item:hover::after {
  scale: 1 1;
}
.c-header__subnav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  display: none;
}
.c-header__contact {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-header__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1em 1.5vw;
    border-radius: 100px;
    color: #FFFFFF;
    font-size: clamp(11px, 1vw, 18px);
    font-weight: 700;
    white-space: nowrap;
    transition: box-shadow 0.3s ease;
  }
  .c-header__contact:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}
.c-header__contact--contact {
  margin-right: 10px;
  background-color: #00BFB3;
}
.c-header__contact--contact img {
  width: 22px;
  height: auto;
}
.c-header__contact--download {
  background-color: #FF8200;
}
.c-header__contact--download img {
  width: 17px;
  height: auto;
}
.c-header_button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 18px;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .c-header_button {
    display: none;
  }
}
.c-header_button.is-active .c-header_button__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-header_button.is-active .c-header_button__line:nth-child(2) {
  opacity: 0;
}
.c-header_button.is-active .c-header_button__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.c-header_button__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00633A;
  transition: all 0.3s ease;
}

/* ==========================================================================
// Component - SP Nav
// ========================================================================*/
.c-sp_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .c-sp_nav {
    display: none !important;
  }
}
.c-sp_nav.is-active {
  visibility: visible;
  opacity: 1;
}
.c-sp_nav__list {
  display: flex;
}
.c-sp_nav__item {
  flex: 1;
}
.c-sp_nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: box-shadow 0.3s ease;
}
.c-sp_nav__item--consult {
  background-color: #00BFB3;
}
.c-sp_nav__item--consult img {
  width: 22px;
  height: auto;
}
.c-sp_nav__item--download {
  background-color: #FF8200;
}
.c-sp_nav__item--download img {
  width: 17px;
  height: auto;
}

/* ==========================================================================
// Component - Footer
// ========================================================================*/
.l-footer__bg {
  background: #ECECEA;
  padding-top: 60px;
  padding-bottom: 54px;
}

.l-inner.-sp-size-s {
  width: calc(100% - 30px);
}

.l-inner.-size-m {
  max-width: 1200px;
}

.l-inner.-footer {
  width: calc(100% - 40px);
  max-width: 1158px;
}
@media screen and (min-width: 1024px) {
  .l-inner.-footer {
    width: 100%;
  }
}

.l-footer__catch {
  padding-top: 30px;
  padding-bottom: 25px;
  background: #97999B;
}

.l-footer__catch-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-footer__catch-link {
  transition: opacity ease 300ms;
}

.l-footer__catch-text {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.l-footer__sitemap {
  display: flex;
  margin-top: 20px;
  gap: 33px 20px;
  align-items: center;
  justify-content: space-between;
}

.l-footer__sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.l-footer__sitemap-item {
  font-size: 12px;
  color: #53565A;
  line-height: 1.45;
}

.l-footer__sitemap-item:not(:last-child)::after {
  margin-left: 10px;
  content: "|";
}

.l-footer__sitemap-link {
  color: #53565A;
  transition: opacity ease 300ms;
}

.l-footer__sitemap .logo__list {
  display: flex;
  gap: 20px;
  align-items: start;
}

.l-footer__sitemap .logo__item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}

.l-footer__sitemap .logo__item img {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .l-footer__sitemap .logo__item img {
    width: 230px;
  }
}

.l-footer__sitemap .logo__link {
  transition: opacity ease 300ms;
  width: 60px;
  height: 60px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-footer__sitemap .logo__link {
    width: 75px;
    height: 75px;
  }
}

.l-footer__copyright {
  color: #53565A;
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: 64px;
  padding-bottom: 44px;
}

.l-footer.-en .l-footer__sitemap-link {
  color: #000;
  text-decoration: underline;
  font-size: 12px;
}

.l-footer.-en .l-footer__copyright {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 32px;
  color: #97999B;
}

.pagetop {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #006510;
  background-color: #006510;
  position: fixed;
  z-index: 99;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  visibility: hidden;
  transition: background-color 300ms ease, opacity 300ms ease;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}

.pagetop .c-icon.-arrow {
  width: 13px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-cta {
  background: #006510;
  transition: background 300ms ease;
}

.p-cta__list {
  display: grid;
  grid-template-columns: 40% 30% 30%;
}

.p-cta__item:nth-child(1) {
  border-right: 1px solid #fff;
}

.p-cta__item:nth-child(1) .p-cta__icon {
  width: 58px;
  height: 46px;
}

.p-cta__item:nth-child(2) {
  border-right: 1px solid #fff;
}

.p-cta__item:nth-child(2) .p-cta__icon {
  width: 60px;
  height: 69px;
}

.p-cta__item:nth-child(3) .p-cta__icon {
  width: 66px;
  height: 69px;
}

.p-cta__link {
  background: #006510;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  height: 100%;
  padding: 60px 10px 40px;
  transition: color 300ms ease, background 300ms ease;
}

.p-cta__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.p-cta__icon-area {
  display: block;
  height: 106px;
  aspect-ratio: 142/106;
  position: relative;
  width: 142px;
  margin-top: 23px;
}

.p-cta__icon {
  stroke: #fff;
  transition: stroke ease 300ms;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 0;
}

.p-cta__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 35px;
  text-align: center;
}

.p-cta__tel {
  border-top: 1px solid #fff;
  text-align: center;
  color: #fff;
  padding: 40px 0px 30px;
}

.p-cta__tel .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.p-cta__tel .title .telLink {
  color: #fff;
}

.p-cta__tel .text {
  font-size: 14px;
}

.p-cta.-en .p-cta__list {
  grid-template-columns: repeat(2, 1fr);
}

.p-cta.-en .p-cta__list .p-cta__item {
  grid-area: auto;
}

.p-cta.-en .p-cta__list .p-cta__item:nth-child(2) {
  border: none;
}

.p-cta.-en .c-btn {
  background-color: #fff;
  color: #006510;
}

.p-cta.-en .c-btn svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.p-cta.-en .c-btn::before {
  background-color: #006510;
}

.p-cta.-en .c-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: solid 1px #fff;
  border-radius: 200px;
}

.p-cta.-en .p-cta__link {
  padding: 30px 10px 60px;
}

.p-cta.-en .p-cta__icon-area {
  margin-top: 0;
}

.p-cta.-en .p-cta__text {
  margin-top: 20px;
}

.p-cta.-en .c-btn {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .p-cta__tel .title .telLink {
    pointer-events: none;
  }
}
@media screen and (max-width: 999px) {
  .l-footer__bg {
    padding-top: 40px;
  }
  .l-footer__banner-list {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .l-footer__banner-item {
    width: 240px;
  }
  .l-footer__facebook-area {
    margin-left: 0;
    margin-top: 14px;
    width: 40px;
    height: 40px;
  }
  .l-footer__menu-list {
    row-gap: 40px;
  }
  .l-footer__menu-item {
    grid-template-columns: auto;
  }
  .l-footer__menu-item:nth-child(1) .item__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
  .l-footer__menu-item:nth-child(1) .item__item {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #D9D9D6;
  }
  .l-footer__menu-item:nth-child(1) .item__link {
    min-height: 46px;
    display: flex;
    align-items: center;
  }
  .l-footer__menu-item:nth-child(1) .item__btn {
    margin-top: 25px;
  }
  .l-footer__menu-item:not(:nth-child(1)) .item__btn {
    margin-top: 16px;
  }
  .l-footer__menu-item .item__title {
    font-size: 14px;
  }
  .l-footer__menu-item .item__wrapper:has(> .item__label) {
    grid-template-columns: auto;
    row-gap: 0;
  }
  .l-footer__menu-item .item__wrapper:has(> .item__label) .item__list {
    margin-left: -12px;
    row-gap: 8px;
    margin-bottom: 18px;
  }
  .l-footer__menu-item .item__wrapper {
    margin-top: 19px;
    padding-left: 0;
    border-left: none;
  }
  .l-footer__menu-item .item__label {
    padding-left: 0;
    padding-top: 17px;
    margin-bottom: 8px;
    border-top: 1px solid #D9D9D6;
  }
  .l-footer__menu-item .item__btn {
    width: 100%;
    margin-left: 0;
  }
  .l-footer__catch {
    padding: 27px 0 24px;
  }
  .l-footer__catch-link {
    width: 108px;
  }
  .l-footer__catch-text {
    width: 136px;
  }
  .l-footer__sitemap {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer__sitemap-list {
    row-gap: 19px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .l-footer__sitemap-item:not(:last-child)::after {
    content: none;
  }
  .l-footer__copyright {
    font-size: 10px;
    margin-top: 54px;
    margin-bottom: 24px;
  }
  .l-footer.-en .l-footer__sitemap {
    margin-top: 0;
    padding-top: 40px;
    gap: 20px;
  }
  .l-footer.-en .l-footer__copyright {
    margin-top: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .pagetop .c-icon.-arrow {
    width: 10px;
    height: 5px;
  }
  .p-cta__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .p-cta__item:nth-child(1) {
    grid-area: 1/1/2/3;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .p-cta__item:nth-child(1) .p-cta__link {
    padding-top: 40px;
  }
  .p-cta__item:nth-child(1) .p-cta__icon {
    width: 30px;
    height: 23px;
  }
  .p-cta__item:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .p-cta__item:nth-child(2) .p-cta__icon {
    width: 31px;
    height: 35px;
  }
  .p-cta__item:nth-child(2) .p-cta__text {
    text-align: left;
  }
  .p-cta__item:nth-child(3) {
    grid-area: 2/2/3/3;
  }
  .p-cta__item:nth-child(3) .p-cta__icon {
    width: 34px;
    height: 35px;
  }
  .p-cta__item:nth-child(3) .p-cta__text {
    text-align: left;
  }
  .p-cta__link {
    height: auto;
    grid-template-rows: auto;
    padding: 20px 20px 28px;
  }
  .p-cta__title {
    font-size: 16px;
    line-height: 1.5;
  }
  .p-cta__icon-area {
    margin-top: 10px;
    aspect-ratio: 73/54;
    height: 54px;
    width: 73px;
  }
  .p-cta__text {
    font-size: 11px;
    line-height: 1.8;
    margin-top: 10px;
  }
  .p-cta__tel {
    padding-top: 30px;
  }
  .p-cta__tel .title {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .p-cta__tel .text {
    font-size: 11px;
  }
  .p-cta.-en .p-cta__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-cta.-en .p-cta__list .p-cta__item:nth-child(1) {
    border: solid 1px #fff;
  }
  .p-cta.-en .p-cta__link {
    padding: 14px 20px 30px;
  }
  .p-cta.-en .c-btn svg {
    display: none;
  }
  .p-cta.-en .c-btn {
    justify-content: center;
  }
  .p-cta.-en .p-cta__title {
    font-size: 13px;
  }
  .p-cta.-en .p-cta__text {
    margin-top: 10px;
    text-align: left;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__banner:hover {
    opacity: 0.6;
  }
  .l-footer__facebook:hover {
    opacity: 0.6;
  }
  .l-footer__menu-item .item__link:hover {
    opacity: 0.6;
  }
  .l-footer__menu-item .item__btn:hover {
    opacity: 0.6;
  }
  .l-footer__catch-link:hover {
    opacity: 0.6;
  }
  .l-footer__sitemap-link:hover {
    opacity: 0.6;
  }
  .l-footer__sitemap .logo__link:hover {
    opacity: 0.6;
  }
  .pagetop:hover {
    background-color: #fff;
  }
  .pagetop:hover .c-icon.-arrow {
    fill: #006510;
    stroke: #006510;
  }
  .p-cta__link:is(a):hover {
    background: #66A26F;
  }
  .p-cta.-en .c-btn:hover {
    color: #fff;
  }
  .p-cta.-en .c-btn:hover svg {
    stroke: none;
  }
}
/* ==========================================================================
// CTA
// ========================================================================*/
.c-cta {
  position: relative;
  padding-bottom: 40px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .c-cta {
    padding-bottom: 80px;
  }
}
.c-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: calc(100% - 20px);
  z-index: -1;
  background-color: rgba(0, 99, 58, 0.1);
}
@media screen and (min-width: 1024px) {
  .c-cta::before {
    height: calc(100% - 50px);
  }
}
.c-cta__image {
  position: absolute;
  top: 10vw;
  width: 29vw;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}
@media screen and (max-width: 390px) {
  .c-cta__image {
    top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .c-cta__image {
    top: auto;
    bottom: 0;
    width: auto;
    height: 322px;
    max-height: none;
    object-fit: cover;
  }
}
.c-cta__image--left {
  left: 0;
}
.c-cta__image--right {
  right: -10vw;
  width: 58vw;
}
@media screen and (min-width: 1024px) {
  .c-cta__image--right {
    width: auto;
    right: 0;
  }
}
.c-cta__announcement {
  max-width: 500px;
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-bottom: 21px;
  padding-block: 15px 22px;
  border-radius: 10px;
  background-color: #00633A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-cta__announcement {
    max-width: 100%;
    width: max-content;
    margin-bottom: 53px;
    padding: 15px 40px;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 35px;
  }
}
.c-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media screen and (min-width: 1024px) {
  .c-cta__buttons {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
.c-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  height: 72px;
  margin-inline: auto;
  padding: 10px 20px;
  border: 4px solid transparent;
  border-radius: 100px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s ease, border 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .c-cta__button {
    max-width: 100%;
    width: clamp(450px, 35vw, 620px);
    height: clamp(85px, 7vw, 132px);
  }
}
.c-cta__button:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.c-cta__button:hover .c-cta__button__balloon {
  top: -15px;
}
.c-cta__button:hover.c-cta__button--consult::after {
  background-color: #00BFB3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  translate: 5px 0;
}
.c-cta__button:hover.c-cta__button--download::after {
  background-color: #FFB81C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  translate: 5px 0;
}
.c-cta__button__balloon {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 3px 10px;
  border-radius: 100px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .c-cta__button__balloon {
    top: -20px;
    padding: clamp(5px, 0.6vw, 10px) 20px;
    font-size: 16px;
    line-height: 24px;
    transition: top 0.3s ease;
  }
}
.c-cta__button__balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-top: 7px solid #FFFFFF;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-cta__button__balloon::before {
    border-top: 16px solid #FFFFFF;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
  }
}
.c-cta__button__text {
  font-size: clamp(13px, 4.4vw, 16px);
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  .c-cta__button__text {
    font-size: clamp(18px, 1.8vw, 30px);
    line-height: 44px;
  }
}
.c-cta__button__icon {
  width: 20px;
  height: 20px;
}
.c-cta__button--consult {
  background-color: #FFFFFF;
  color: #000000;
}
.c-cta__button--consult:hover {
  border: 4px solid #00BFB3;
}
.c-cta__button--consult .c-cta__button__balloon {
  background-color: #00BFB3;
}
.c-cta__button--consult .c-cta__button__balloon::before {
  border-top: 7px solid #00BFB3;
}
.c-cta__button--consult::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(30px, 8vw);
  width: 22px;
  height: 22px;
  background: url(../images/cta_button01_icon.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-cta__button--consult::after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    transition: width 0.3s ease, height 0.3s ease, translate 0.3s ease;
  }
}
.c-cta__button--download {
  background-color: #FF8200;
  color: #FFFFFF;
}
.c-cta__button--download:hover {
  border: 4px solid #FFB81C;
}
.c-cta__button--download .c-cta__button__balloon {
  background-color: #FFB81C;
}
.c-cta__button--download .c-cta__button__balloon::before {
  border-top: 7px solid #FFB81C;
}
@media screen and (min-width: 1024px) {
  .c-cta__button--download .c-cta__button__balloon::before {
    border-top: 16px solid #FFB81C;
  }
}
.c-cta__button--download::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(74px, 20vw);
  height: 72px;
  background: url(../images/cta_button02_image.webp) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .c-cta__button--download::before {
    width: clamp(85px, 7vw, 132px);
    height: 100%;
    translate: -7px 1px;
  }
}
.c-cta__button--download::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 22px;
  height: 22px;
  background: url(../images/cta_button02_icon.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-cta__button--download::after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    transition: width 0.3s ease, height 0.3s ease, translate 0.3s ease;
  }
}

/* ==========================================================================
// Page - LP TOPページ
// ========================================================================*/
/* ------------------------
// 共通のパーツ
// ----------------------*/
.c-section_title {
  position: relative;
  margin-bottom: 40px;
  padding-top: 38px;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-section_title {
    margin-bottom: 60px;
    padding-top: 0;
    font-size: clamp(36px, 3.1vw, 44px);
    line-height: 64px;
  }
}
.c-section_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73px;
  background: url(../images/about_title.svg) no-repeat center top/contain;
}
@media screen and (min-width: 1024px) {
  .c-section_title::before {
    top: auto;
    bottom: 0;
    height: 120px;
  }
}
.c-section_title__sub {
  display: block;
  color: #00633A;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .c-section_title__sub {
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .c-section_title:has(.c-section_title__sub) {
    flex-direction: column;
    align-items: center;
  }
}

.c-section_subtitle {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: #00633A;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-section_subtitle {
    margin-bottom: 40px;
    padding-bottom: 22px;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 46px;
  }
}
.c-section_subtitle::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 4px;
  background-color: #00633A;
}

.c-check_list li {
  padding-left: 34px;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  text-indent: -34px;
}
.c-check_list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(../images/icon_check_orange.svg) no-repeat center center/contain;
  translate: 0 5px;
}
@media screen and (min-width: 1024px) {
  .c-check_list li::before {
    width: 24px;
    height: 24px;
    translate: 0 6px;
  }
}

/* ------------------------
// Firstview
// ----------------------*/
.p-firstview {
  position: relative;
  width: 100vw;
  padding: 100px 20px 40px;
  background-color: #00633A;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-firstview {
    height: 50vw;
    margin-top: 6.2vw;
    padding: 3.4vw 0 0;
    background: url(../images/firstview_bg.svg) no-repeat center center/cover;
  }
}
.p-firstview__heading {
  display: block;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 7px 10px;
  background-color: #03450E;
  color: #FFFFFF;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-firstview__heading {
    margin-bottom: 1.04vw;
    padding: 0.5vw 40px;
    font-size: clamp(18px, 1.7vw, 26px);
    line-height: 37px;
  }
}
.p-firstview__title {
  display: block;
  margin-bottom: 23px;
  color: #FFFFFF;
  font-size: clamp(26px, 8vw, 34px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-firstview__title {
    margin-bottom: 0.89vw;
    font-size: clamp(35px, 3vw, 50px);
    line-height: 1.4;
  }
}
.p-firstview__title .u-small {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .p-firstview__title .u-small {
    display: inline;
    margin-bottom: 0;
    font-size: 1em;
  }
}
.p-firstview__title .pc_only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-firstview__title .pc_only {
    display: inline;
  }
}
.p-firstview__text {
  display: block;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .p-firstview__text {
    margin-bottom: 1.6vw;
    font-size: clamp(18px, 1.7vw, 26px);
    line-height: 37px;
  }
}
.p-firstview__points {
  display: block;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-firstview__points {
    max-width: none;
    width: 28vw;
    height: auto;
  }
}
.p-firstview__person {
  display: block;
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .p-firstview__person {
    width: auto;
    max-width: none;
    height: auto;
  }
}
.p-firstview__person--left {
  position: relative;
  max-width: 650px;
  width: calc(100% + 20px);
  margin-left: -20px;
}
@media screen and (min-width: 1024px) {
  .p-firstview__person--left {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: none;
    width: 45vw;
    margin-left: 0;
  }
}
.p-firstview__person--left img {
  display: block;
  margin-top: 13px;
}
@media screen and (min-width: 1024px) {
  .p-firstview__person--left img {
    margin-top: 0;
  }
}
.p-firstview__person--right {
  position: absolute;
  right: 0;
  top: 230px;
  max-width: 640px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .p-firstview__person--right {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    max-width: none;
    width: 43vw;
  }
}
.p-firstview__problem, .p-firstview__solution {
  position: absolute;
  padding: 20px 30px;
  width: max-content;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .p-firstview__problem, .p-firstview__solution {
    padding: clamp(18px, 1.5vw, 30px) min(50px, 2.6vw);
    border-radius: 30px;
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.5;
  }
}
.p-firstview__problem span, .p-firstview__solution span {
  position: absolute;
  top: -10px;
  left: -10px;
  display: block;
  padding: 6cm 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .p-firstview__problem span, .p-firstview__solution span {
    border-radius: 100px;
    padding: clamp(3px, 0.35vw, 7px) 15px;
    font-size: 15px;
    line-height: 21px;
  }
}
.p-firstview__problem {
  background-color: #03450E;
  color: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .p-firstview__problem {
    left: 21vw;
  }
}
.p-firstview__problem span {
  background-color: #FFFFFF;
  color: #00633A;
}
.p-firstview__solution {
  background-color: #FFFFFF;
  color: #000000;
}
@media screen and (min-width: 1024px) {
  .p-firstview__solution {
    right: 17vw;
    translate: 0 -50px;
  }
}
.p-firstview__solution span {
  background-color: #FF8200;
  color: #FFFFFF;
}
.p-firstview .c-cta__buttons {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-firstview .c-cta__buttons {
    position: absolute;
    left: 50%;
    bottom: 40px;
    bottom: 2vw;
    translate: -50% 0;
  }
}

/* ------------------------
// About
// ----------------------*/
.p-about {
  padding-top: 55px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-about {
    padding-top: 157px;
  }
}
.p-about .l-2cols {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .p-about .l-2cols {
    flex-direction: row;
    gap: 60px;
  }
}
.p-about__image {
  display: block;
  max-width: 500px;
  margin-inline: auto;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .p-about__image {
    max-width: 517px;
    width: 25.5vw;
    height: auto;
  }
}
.p-about__heading {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about__heading {
    margin-bottom: 40px;
    padding-bottom: 34px;
    font-size: clamp(22px, 1.6vw, 28px);
    line-height: 1.7;
    text-align: left;
  }
}
.p-about__heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 25px;
  height: 3px;
  background-color: #00633A;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-about__heading:after {
    left: 0;
    width: 35px;
    transform: translateX(0);
  }
}
.p-about .u-underline {
  text-decoration: underline;
  text-decoration-color: #FFB81C;
  text-decoration-thickness: 6px;
  text-underline-offset: -4px;
  text-decoration-skip-ink: none;
}
@media screen and (min-width: 1024px) {
  .p-about .u-underline {
    text-decoration-thickness: 10px;
  }
}
.p-about .c-section_subtitle {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about .c-section_subtitle {
    margin-top: 100px;
  }
}
.p-about .p-result {
  position: relative;
  background-color: rgba(0, 99, 58, 0.1);
  width: 100vw;
  margin-inline: -20px;
  margin-top: 70px;
  padding: 55px 20px 40px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result {
    width: 100%;
    margin-inline: 0;
    margin-top: 93px;
    padding: 94px 40px 40px;
    border-radius: 10px;
  }
}
.p-about .p-result img {
  position: absolute;
  left: 50%;
  top: -40px;
  display: block;
  max-width: 380px;
  width: calc(100vw - 40px);
  margin-inline: auto;
  height: auto;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-about .p-result img {
    top: -64px;
    max-width: none;
    width: 538px;
  }
}
.p-about .p-result__table {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result__table {
    max-width: none;
  }
}
.p-about .p-result__table tr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 5px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result__table tr {
    grid-template-columns: auto repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-about .p-result__table th {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 5px;
  height: 34px;
  background-color: #00633A;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result__table th {
    grid-column: 1/2;
    grid-row: 1/-1;
    margin-top: 0;
    margin-right: 19px;
    width: 42px;
    height: auto;
    padding-inline: 15px 10px;
    font-size: clamp(15px, 1vw, 18px);
  }
  .p-about .p-result__table th::after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    display: block;
    width: 0;
    height: 0;
    border-top: 67px solid transparent;
    border-bottom: 67px solid transparent;
    border-left: 9px solid #00633A;
  }
}
.p-about .p-result__table td {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  background-color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result__table td {
    width: 100%;
    height: 62px;
    font-size: clamp(12px, 0.9vw, 15px);
    line-height: 21px;
  }
}
.p-about .p-result__table:nth-child(3) {
  margin-block: 15px 20px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result__table:nth-child(3) {
    margin-block: 20px 30px;
  }
}
.p-about .p-result__table:nth-child(3) td {
  background-color: rgba(0, 99, 58, 0.1);
}
.p-about .p-result .u-note {
  max-width: 680px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-about .p-result .u-note {
    max-width: none;
    margin-inline: 0;
  }
}
.p-about .p-process {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process {
    margin-top: 110px;
    padding-bottom: 244px;
  }
}
.p-about .p-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #F7F7F7;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process::before {
    width: 130vw;
    left: 50%;
    translate: -50% 0;
  }
}
.p-about .p-process__balloon {
  position: relative;
  display: block;
  width: max-content;
  margin-inline: auto;
  padding: 10px 20px;
  color: #FFFFFF;
  background-color: #00633A;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__balloon {
    padding: 10px 40px;
    font-size: clamp(20px, 1.6vw, 26px);
    translate: 0 calc(-100% - 12px);
  }
  .p-about .p-process__balloon::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-top: 12px solid #00633A;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
}
.p-about .p-process__image {
  width: calc(100% + 20px);
  margin-block: 30px;
  overflow-x: scroll;
}
.p-about .p-process__image::-webkit-scrollbar {
  height: 8px;
}
.p-about .p-process__image::-webkit-scrollbar-thumb {
  width: 50%;
  background: #DDDDDD;
  border-radius: 100px;
}
.p-about .p-process__image::-webkit-scrollbar-track {
  margin-right: 20px;
  background: #F7F7F7;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__image::-webkit-scrollbar-track {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__image {
    width: 100%;
    margin-block: 0;
  }
}
.p-about .p-process__image img {
  display: block;
  width: 563px;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 560px) {
  .p-about .p-process__image img {
    width: 560px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__image img {
    margin-bottom: 78px;
    max-width: 980px;
    width: 55vw;
    height: auto;
  }
}
.p-about .p-process__boxes {
  padding-bottom: 168px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__boxes {
    padding-bottom: 0;
    display: flex;
    align-items: stretch;
    gap: 20px;
  }
}
.p-about .p-process__box {
  margin-inline: 20px;
  padding: 0 20px 30px;
  border-radius: 10px;
  translate: 0 18px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__box {
    height: 100%;
    margin-inline: 0;
    padding: 0 30px 43px;
    border-radius: 20px;
    translate: 0 0;
  }
}
.p-about .p-process__box img {
  display: block;
  width: 104px;
  height: auto;
  margin-inline: auto;
  translate: 0 -18px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__box img {
    width: 104px;
    height: auto;
  }
}
.p-about .p-process__title {
  margin-block: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__title {
    margin-block: 15px 25px;
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__text {
    min-height: 150px;
  }
}
.p-about .p-process .c-check_list {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process .c-check_list {
    margin-top: 20px;
  }
}
.p-about .p-process__link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 30px);
  height: 68px;
  margin-top: 40px;
  margin-left: 20px;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__link {
    width: 100%;
    height: 78px;
    margin-top: 20px;
    margin-left: 0;
    padding-inline: 30px;
    border: 3px solid transparent;
    font-size: clamp(12px, 0.95vw, 16px);
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }
  .p-about .p-process__link:hover {
    border: 3px solid #00633A;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
}
.p-about .p-process__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_plus.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
.p-about .p-process .swiper {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process .swiper {
    max-width: none;
    overflow: visible;
  }
}
.p-about .p-process .swiper-slide {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process .swiper-slide {
    flex: 1;
    height: auto;
  }
}
.p-about .p-process .swiper-slide:first-child .p-process__box {
  background-color: rgba(198, 234, 214, 0.45);
}
.p-about .p-process .swiper-slide:nth-child(2) .p-process__box {
  background-color: rgba(167, 219, 221, 0.4);
}
.p-about .p-process .swiper-slide:nth-child(3) .p-process__box {
  background-color: rgba(123, 201, 204, 0.5);
}
.p-about .p-process .swiper-slide:nth-child(4) .p-process__box {
  background-color: rgba(198, 234, 214, 0.45);
}
.p-about .p-process .swiper-button-next,
.p-about .p-process .swiper-button-prev {
  top: 55%;
  left: 0;
}
.p-about .p-process .swiper-button-next::after,
.p-about .p-process .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../images/icon_slide_arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process .swiper-button-next,
  .p-about .p-process .swiper-button-prev {
    display: none;
  }
}
.p-about .p-process .swiper-button-next {
  left: auto;
  right: 0;
}
.p-about .p-process .swiper-button-next::after {
  rotate: 180deg;
}
.p-about .p-process .swiper-pagination-bullets {
  bottom: 40px;
}
.p-about .p-process .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-inline: 10px;
  background-color: #E6E6E6;
  opacity: 1;
}
.p-about .p-process .swiper-pagination-bullet-active {
  background-color: #00633A;
}
.p-about .p-process__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 90%;
  max-width: 700px;
  height: 50%;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .p-about .p-process__popup {
    max-width: none;
    width: 70%;
    height: 70%;
  }
}
.p-about .p-process__popup.is-active {
  opacity: 1;
  visibility: visible;
}
.p-about .p-process__popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.p-about .p-process__popup img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-about .p-process__popup img.is-active {
  display: block;
}

/* ------------------------
// Case
// ----------------------*/
.p-case .c-section_title:before {
  background-image: url(../images/case_title.svg);
}
.p-case__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 3px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case__buttons {
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-end;
    margin: 55px 40px 0;
  }
}
.p-case__button {
  flex: 1 1 calc(50% - 1.5px);
}
@media screen and (min-width: 1024px) {
  .p-case__button {
    flex: 1;
  }
}
.p-case__button a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #00633A;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 4vw, 16px);
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-case__button a {
    padding: 10px 13px;
    border-radius: 10px 10px 0 0;
    font-size: clamp(14px, 1vw, 20px);
    line-height: 1.45rem;
    transition: all 0.3s ease;
  }
}
.p-case__button a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px 10px 0 0;
  z-index: 1;
}
.p-case__button a img {
  display: block;
  width: 82px;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .p-case__button a img {
    margin-bottom: clamp(5px, 0.5vw, 10px);
  }
}
@media screen and (min-width: 1024px) {
  .p-case__button.is-active a, .p-case__button:hover a {
    padding-block: 15px;
  }
}
.p-case__button.is-active a::after, .p-case__button:hover a::after {
  display: none;
}
.p-case_box {
  display: none;
  padding: 30px 20px 20px;
  background-color: #F1F1F1;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case_box {
    gap: 20px;
    padding: 20px;
  }
  .p-case_box > * {
    flex: 1;
  }
}
.p-case_box.is-active {
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-case_box.is-active {
    display: flex;
  }
}
.p-case_box__tag {
  display: block;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 10px;
  padding: 5px 15px;
  background-color: #000000;
  border-radius: 100px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__tag {
    margin-block: 10px;
    padding: 6px 14px;
    font-size: 15px;
    line-height: 21px;
  }
}
.p-case_box__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-case_box__title {
    margin-bottom: clamp(15px, 1vw, 20px);
    font-size: clamp(18px, 1.4vw, 26px);
    line-height: 1.6em;
  }
}
.p-case_box__balloon {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 68px;
  padding: 20px 20px 142px;
  background-color: #FFFFFF;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-case_box__balloon {
    align-self: flex-end;
    justify-self: flex-end;
    width: 68%;
    margin-bottom: 0;
    padding: 20px;
  }
}
.p-case_box__balloon::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: -12px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__balloon::after {
    bottom: 109px;
    left: -12px;
    border-bottom: 24px solid #FFFFFF;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    rotate: 45deg;
  }
}
.p-case_box__problem {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-case_box__problem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 28px;
  height: 37px;
  background: url(../images/point_arrow.svg) no-repeat center center/contain;
  translate: -50% 140%;
  rotate: 90deg;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    rotate: none;
    translate: 120% -50%;
  }
}
.p-case_box__problem .p-case_box__image {
  display: block;
  max-width: 450px;
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-block: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem .p-case_box__image {
    max-width: none;
    width: auto;
    height: 150px;
    margin-block: clamp(15px, 1.2vw, 30px) 20px;
  }
}
.p-case_box__problem .p-case_box__person {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: auto;
  height: 126px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem .p-case_box__person {
    left: 70px;
    width: 40%;
    height: auto;
    translate: 0 20px;
  }
}
.p-case_box__problem .c-check_list {
  text-align: left;
}
.p-case_box__problem .c-check_list li::before {
  background: url(../images/icon_check_green.svg) no-repeat center center/contain;
}
.p-case_box__solution {
  position: relative;
  padding: 20px 20px 146px;
  background-color: #FFFFFF;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution {
    padding: 20px 0 50px;
  }
}
.p-case_box__solution .p-case_box__tag {
  margin-top: 0;
  background-color: #FF8200;
}
.p-case_box__solution .p-case_box__image {
  display: block;
  margin-block: 22px 20px;
  max-width: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution .p-case_box__image {
    max-width: none;
    width: 55%;
    height: auto;
    margin-block: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution .c-check_list {
    width: 60%;
    margin-left: 60px;
  }
}
.p-case_box__solution .p-case_box__person {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: 126px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution .p-case_box__person {
    bottom: 0;
    right: 70px;
    left: auto;
    width: 40%;
    height: auto;
    translate: 100% 20px;
  }
}
.p-case__sp_buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case__sp_buttons {
    display: none;
  }
}
.p-case__sp_buttons .p-case__button {
  position: relative;
  flex: 0 0 17vw;
  max-width: 120px;
}
.p-case__sp_buttons .p-case__button a {
  display: block;
  padding: 0;
  background: none;
}
.p-case__sp_buttons .p-case__button a::after {
  display: none;
}
.p-case__sp_buttons .p-case__button img {
  width: 100%;
  margin-bottom: 0;
}
.p-case__sp_buttons .p-case__button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  z-index: 1;
}
.p-case__sp_buttons .p-case__button.is-active::after {
  display: none;
}
.p-case .p-output {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output {
    margin-top: 123px;
  }
}
.p-case .p-output .swiper {
  overflow-x: scroll;
  padding-inline: 20px;
}
.p-case .p-output .swiper::-webkit-scrollbar {
  height: 8px;
}
.p-case .p-output .swiper::-webkit-scrollbar-thumb {
  width: 50%;
  background: #DDDDDD;
  border-radius: 100px;
}
.p-case .p-output .swiper::-webkit-scrollbar-track {
  margin-right: 20px;
  background: #F7F7F7;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .swiper::-webkit-scrollbar-track {
    display: none;
  }
}
.p-case .p-output .swiper::-webkit-scrollbar-track {
  display: block;
  margin-left: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .swiper {
    overflow: hidden;
    padding-inline: 0;
  }
}
.p-case .p-output .swiper-horizontal {
  touch-action: auto;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .swiper-horizontal {
    touch-action: none;
  }
}
.p-case .p-output .swiper-wrapper {
  transition-timing-function: linear;
}
.p-case .p-output .swiper-slide {
  width: 300px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .swiper-slide {
    width: 355px;
    margin-bottom: 0;
  }
}
.p-case .p-output .swiper-slide p {
  background-color: #00633A;
  color: #FFFFFF;
  padding-block: 4px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .swiper-slide p {
    margin-bottom: 10px;
    padding-block: 5px;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 26px;
  }
}
.p-case .p-output .u-note {
  margin-top: 20px;
  margin-inline: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case .p-output .u-note {
    margin-top: 40px;
    margin-inline: 0;
    text-align: center;
  }
}

/* ------------------------
// Point
// ----------------------*/
@media screen and (min-width: 1024px) {
  .p-point {
    padding-top: 200px;
  }
}
.p-point .c-section_title::before {
  background-image: url(../images/point_title.svg);
}
@media screen and (min-width: 1024px) {
  .p-point .c-section_title::before {
    translate: 0 -50%;
  }
}
.p-point__image {
  display: block;
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-point__image {
    max-width: none;
    width: 538px;
    height: 100%;
    margin-bottom: 30px;
  }
}
.p-point__image + .u-note {
  text-align: center;
}
.p-point__boxes {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-point__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 73px 40px;
    max-width: none;
    margin-block: 83px 80px;
  }
}
.p-point .p-box {
  position: relative;
  background-color: #F7F7F7;
  padding: 70px 20px 30px;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box {
    padding: 78px 50px 60px;
  }
}
.p-point .p-box__number {
  position: absolute;
  top: -18px;
  left: 50%;
  display: block;
  width: 64px;
  height: 73px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-point .p-box__number {
    top: -43px;
    width: 86px;
    height: 98px;
  }
}
.p-point .p-box__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box__title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 35px;
  }
}
.p-point .p-box picture img {
  display: block;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box picture img {
    height: 210px;
    margin-bottom: 40px;
    object-fit: contain;
  }
}
.p-point .p-box__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box__text {
    font-size: 16px;
    line-height: 30px;
  }
}
.p-point .p-box__list {
  margin-top: 20px;
  font-weight: 500;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box__list {
    margin-top: 15px;
  }
}
.p-point .p-box__list li::before {
  content: "・";
  display: inline-block;
  color: #00633A;
  text-indent: -1rem;
}
.p-point .p-box__list li:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box__list li:not(:first-child) {
    margin-top: 10px;
  }
}
.p-point__strong {
  margin-bottom: 33px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-point__strong {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 29px;
  }
}
.p-point__table {
  width: max-content;
  margin-bottom: 30px;
  border-collapse: collapse;
}
@media screen and (min-width: 1024px) {
  .p-point__table {
    width: 100%;
    margin-bottom: 0;
  }
}
.p-point__table__wrapper {
  width: calc(100% + 20px);
  margin-bottom: 23px;
  overflow-x: scroll;
}
.p-point__table__wrapper::-webkit-scrollbar {
  height: 8px;
}
.p-point__table__wrapper::-webkit-scrollbar-thumb {
  width: 50%;
  background: #DDDDDD;
  border-radius: 100px;
}
.p-point__table__wrapper::-webkit-scrollbar-track {
  margin-right: 20px;
  background: #F7F7F7;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .p-point__table__wrapper::-webkit-scrollbar-track {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-point__table__wrapper {
    width: 100%;
  }
}
.p-point__table thead th {
  padding-block: 10px;
  background-color: #E4EEEA;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-point__table thead th {
    width: 280px;
    height: 100px;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 29px;
  }
}
.p-point__table thead th:first-child {
  background: none;
}
.p-point__table thead th:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}
.p-point__table thead th:nth-child(2) {
  background-color: #00633A;
  border-right: 3px solid #00633A;
  border-left: 3px solid #00633A;
  color: #FFFFFF;
}
.p-point__table tbody th {
  padding-inline: 10px;
  background-color: #E4EEEA;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  text-align: center;
  border-left: 1px solid #00633A;
}
@media screen and (min-width: 1024px) {
  .p-point__table tbody th {
    width: 160px;
    font-size: 16px;
    line-height: 24px;
  }
}
.p-point__table tbody td {
  padding: 10px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-point__table tbody td {
    width: 160px;
    padding: 15px 10px 16px;
    font-size: 14px;
    line-height: 23px;
  }
}
.p-point__table tbody td:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}
.p-point__table tbody td:nth-child(2) {
  border-right: 3px solid #00633A;
  border-left: 3px solid #00633A;
}
.p-point__table tbody td:last-child {
  border-right: 1px solid #00633A;
}
.p-point__table tbody tr:not(:last-child) th,
.p-point__table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #D9D9D9;
}
.p-point__table tbody tr:first-child th,
.p-point__table tbody tr:first-child td {
  border-top: 1px solid #00633A;
}
.p-point__table tbody tr:last-child th,
.p-point__table tbody tr:last-child td {
  border-bottom: 1px solid #00633A;
}
.p-point__table tbody tr:last-child td:nth-child(2) {
  border-bottom: 3px solid #00633A;
}
.p-point__table tbody .c-double {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/point_double.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .p-point__table tbody .c-double {
    width: 41px;
    height: 41px;
  }
}
.p-point__table tbody .c-circle {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/point_circle.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .p-point__table tbody .c-circle {
    width: 41px;
    height: 41px;
  }
}
.p-point__table tbody .c-triangle {
  display: inline-block;
  width: 27px;
  height: 25px;
  background: url(../images/point_triangle.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .p-point__table tbody .c-triangle {
    width: 46px;
    height: 41px;
  }
}

/* ------------------------
// Flow
// ----------------------*/
.p-flow .c-section_title::before {
  background-image: url(../images/flow_title.svg);
}
.p-flow .c-section_subtitle:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-flow .c-section_subtitle:not(:first-child) {
    margin-top: 80px;
  }
}
.p-flow__text {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-flow__text {
    margin-bottom: 60px;
    text-align: center;
  }
}
.p-flow__image {
  width: calc(100% + 20px);
  overflow-x: scroll;
}
.p-flow__image::-webkit-scrollbar {
  height: 8px;
}
.p-flow__image::-webkit-scrollbar-thumb {
  width: 50%;
  background: #DDDDDD;
  border-radius: 100px;
}
.p-flow__image::-webkit-scrollbar-track {
  margin-right: 20px;
  background: #F7F7F7;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .p-flow__image::-webkit-scrollbar-track {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__image {
    width: 100%;
  }
}
.p-flow__image img {
  display: block;
  width: 817px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .p-flow__image img {
    width: 100%;
    margin-bottom: 0;
  }
}
.p-flow__table {
  width: max-content;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (min-width: 1024px) {
  .p-flow__table {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 0;
    border-spacing: 10px;
  }
}
.p-flow__table__wrapper {
  width: calc(100% + 20px);
  overflow-x: scroll;
}
.p-flow__table__wrapper::-webkit-scrollbar {
  height: 8px;
}
.p-flow__table__wrapper::-webkit-scrollbar-thumb {
  width: 50%;
  background: #DDDDDD;
  border-radius: 100px;
}
.p-flow__table__wrapper::-webkit-scrollbar-track {
  margin-right: 20px;
  background: #F7F7F7;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .p-flow__table__wrapper::-webkit-scrollbar-track {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__table__wrapper {
    width: 100%;
  }
}
.p-flow__table th, .p-flow__table td {
  border-radius: 10px;
}
.p-flow__table thead th {
  position: relative;
  height: 43px;
  padding-block: 10px;
  background-color: #00633A;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  translate: 0 -3px;
}
@media screen and (min-width: 1024px) {
  .p-flow__table thead th {
    width: 363px;
    height: 100px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 29px;
    translate: 0 0;
  }
  .p-flow__table thead th::before {
    display: none;
  }
}
.p-flow__table thead th:first-child {
  background: none;
}
.p-flow__table thead th.u-bg-70 {
  background-color: rgba(0, 99, 58, 0.7);
}
.p-flow__table thead th.u-bg-20 {
  background-color: rgba(0, 99, 58, 0.2);
  color: #00633A;
}
.p-flow__table tbody th {
  padding-inline: 10px;
  background-color: #F7F7F7;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .p-flow__table tbody th {
    width: 160px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 26px;
  }
}
.p-flow__table tbody td {
  width: 230px;
  padding: 15px;
  border: 1px solid #E6E6E6;
  vertical-align: top;
}
@media screen and (min-width: 1024px) {
  .p-flow__table tbody td {
    width: auto;
    padding: 25px 30px;
  }
}
.p-flow__table .p-flow__list {
  padding-left: 1rem;
}
.p-flow__table .p-flow__list li::before {
  content: "・";
  display: inline-block;
  color: #00633A;
  text-indent: -1rem;
}
.p-flow__table .p-flow__list li:not(:last-child) {
  margin-bottom: 10px;
}
.p-flow__table .u-strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .p-flow__table .u-strong {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 24px;
  }
}
.p-flow__table .u-center {
  text-align: center;
}

/* ------------------------
// Q&A
// ----------------------*/
.p-faq {
  background-color: #F1F1F1;
}
.p-faq .c-section_title::before {
  background-image: url(../images/faq_title.svg);
}
.p-faq.l-spacing-y {
  padding-block: 57px 40px;
}
@media screen and (min-width: 1024px) {
  .p-faq.l-spacing-y {
    padding-block: 140px 120px;
  }
}
.p-faq__list {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
}
.p-faq__list:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-faq__list {
    transition: background-color 0.3s ease;
  }
  .p-faq__list:hover {
    background-color: #D9E3DF;
  }
  .p-faq__list:open {
    background-color: #FFFFFF;
  }
  .p-faq__list:open .p-faq__question::after {
    background-image: url(../images/faq_icon_minus.svg);
  }
}
.p-faq summary {
  list-style-type: none;
}
.p-faq summary::-webkit-details-marker, .p-faq summary::marker {
  display: none;
}
.p-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  list-style-type: none;
  user-select: none;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .p-faq__question {
    font-size: 20px;
    line-height: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq__question p {
    padding-top: 8px;
  }
}
.p-faq__question::before {
  content: "";
  flex: 0 0 34px;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/faq_icon_question.svg) no-repeat center center/contain;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .p-faq__question::before {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 23px;
  }
}
.p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/faq_icon_plus.svg) no-repeat center center/contain;
  transform: translateY(-50%);
  transition: background-image 0.3s ease;
}
.p-faq__answer {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  padding-right: 20px;
  border-top: 1px solid #E6E6E6;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .p-faq__answer {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq__answer p {
    padding-top: 8px;
  }
}
.p-faq__answer::before {
  content: "";
  flex: 0 0 34px;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/faq_icon_answer.svg) no-repeat center center/contain;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .p-faq__answer::before {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 23px;
  }
}

/* ------------------------
// Company
// ----------------------*/
.p-company .c-section_title::before {
  background-image: url(../images/company_title.svg);
}
.p-company .c-section_title {
  margin-bottom: 31px;
}
@media screen and (min-width: 1024px) {
  .p-company .c-section_title {
    margin-bottom: 60px;
  }
}
.p-company__image {
  display: block;
  max-width: 500px;
  width: calc(100vw - 120px);
  margin-inline: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-company__image {
    max-width: none;
    width: 370px;
    height: 100%;
    margin-right: 60px;
    margin-bottom: 0;
  }
}
.p-company__table {
  width: 100%;
  border-collapse: collapse;
}
.p-company__table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 1024px) {
  .p-company__table tr {
    flex-direction: row;
    gap: 30px;
  }
}
.p-company__table th {
  padding-block: 20px 10px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-company__table th {
    flex: 0 0 120px;
    width: 120px;
    padding: 20px 0 20px 20px;
    font-size: 16px;
    line-height: 30px;
  }
}
.p-company__table td {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 26px;
}
@media screen and (min-width: 1024px) {
  .p-company__table td {
    padding: 20px 20px 20px 0;
    font-size: 16px;
    line-height: 30px;
  }
}
.p-company__table td .l-2cols {
  display: flex;
  gap: 40px;
}
.p-company__table td .l-2cols > *:first-child {
  flex: 0 0 150px;
}
@media screen and (min-width: 1024px) {
  .p-company__table td .l-2cols {
    gap: 36px;
  }
  .p-company__table td .l-2cols > *:first-child {
    flex: 0 0 180px;
  }
}
@media screen and (min-width: 1024px) {
  .p-company__table tr:first-child th, .p-company__table tr:first-child td {
    padding-top: 0;
  }
}

/* ------------------------
// Information
// ----------------------*/
.p-information {
  background-color: rgba(0, 99, 58, 0.1);
}
.p-information .c-section_title::before {
  background-image: url(../images/information_title.svg);
}
@media screen and (min-width: 1024px) {
  .p-information .c-section_title::before {
    background-size: contain;
  }
}
.p-information .c-section_title {
  width: 100vw;
  margin-left: -20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .p-information .c-section_title {
    width: auto;
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.p-information__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-information__item:first-child {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #00633A;
}
@media screen and (min-width: 1024px) {
  .p-information__item:first-child {
    margin-bottom: 0;
    margin-right: 20px;
    padding-bottom: 0;
    padding-right: 20px;
    border-bottom: none;
    border-right: 1px solid #00633A;
  }
}
.p-information__item img {
  width: auto;
  height: 38vw;
}
@media screen and (min-width: 1024px) {
  .p-information__item img {
    height: 270px;
  }
}
.p-information__index {
  display: block;
  margin-bottom: 15px;
  padding: 5px 10px;
  background-color: rgba(0, 99, 58, 0.1);
  color: #00633A;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .p-information__index {
    padding: 5px 20px;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 26px;
  }
}
.p-information__title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-information__title {
    margin-bottom: 30px;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 37px;
  }
}
.p-information .c-cta__button {
  width: 100%;
}

/* ==========================================================================
// Utility
// ========================================================================*/
.u-hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.u-hover:hover {
  opacity: 0.7;
}

.u-green {
  color: #00633A;
}

.u-yellow {
  color: #FFB81C;
}

.u-note {
  display: block;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .u-note {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
}

.u-small {
  font-size: 0.78em;
}