@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 {
    max-width: 350px;
    width: 69.9vw;
    height: auto;
  }
  .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, 3vw, 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 0 40px;
  background-color: #BCD6C8;
  overflow: hidden;
  z-index: 1;
  background: url(../images/bg_mv_sp.svg) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) {
  .p-firstview {
    height: 50vw;
    margin-top: 6.2vw;
    padding: 3.4vw 0 0;
    background: url(../images/bg_mv_pc.svg) no-repeat center center/cover;
  }
}
.p-firstview:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-bottom: 66px solid #fff;
  border-right: 100vw solid transparent;
  bottom: 93px;

}
.p-firstview:after {
  content: '';
  display: block;
  width: 100%;
  height: 93px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.p-firstview__heading {
  display: block;
  width: fit-content;
  margin: 0 auto;
  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 {
    padding: 0.5vw 20px;
    font-size: clamp(18px, 1.3vw, 26px);
    line-height: 1.5vw;
    margin: 0 auto 0 0;
  }
}
.p-firstview__title {
  display: block;
  color: #000000;
  font-size: clamp(21px, 5vw, 34px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1.5;
  background-color: #FFB81C;
  width: fit-content;
  margin: 0 auto 23px;
  padding: 0 15px;
  margin-left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 1024px) {
  .p-firstview__title {
    font-size: clamp(35px, 3vw, 50px);
    margin: 0 auto 2.7vw 0;
    transform: none;
  }
}
.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;

  margin-bottom: 218px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 16%));
}
@media screen and (min-width: 1024px) {
  .p-firstview__points {
    display: none;
    max-width: none;
    width: 58vw;
    height: auto;
    margin-left: -45px;
  }
}
.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: 290px; */
  bottom: 40px;
  max-width: 640px;
  z-index: 1;
  width: 494px;
  filter: drop-shadow(30px 0 56px rgba(0, 0, 0, 25%));
}
@media screen and (min-width: 1024px) {
  .p-firstview__person--right {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    max-width: none;
    width: 74vw;
    width: 100vw;
    z-index: -1;
  }
}
.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;
  }
}



/* ------------------------
// Who we service
// ----------------------*/
@media screen and (min-width: 1024px) {
  .p-who {
    padding-bottom: 99px;
  }
}
.p-who .c-section_title:before {
  background-image: url(../images/text_who_we_serve_sp.svg);
}
@media screen and (min-width: 1024px) {
  .p-who .c-section_title:before {
    background-image: url(../images/text_who_we_serve_pc.svg);
    top: auto;
    bottom: 20px;
    height: 80px;
  }
}
.p-who__strong {
  margin-bottom: 33px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-who__strong {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 29px;
  }
}

.p-who__question {
  position: relative;
}
.p-who__question:before,
.p-who__question:after,
.p-who__question_box:before,
.p-who__question_box:after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #00633A;
  border-style: solid;
  border-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-who__question:before,
  .p-who__question:after,
  .p-who__question_box:before,
  .p-who__question_box:after {
    width: 40px;
    height: 40px;
  }
}
.p-who__question:before {
  border-top-width: 4px;
  border-left-width: 4px;
  top: -2px;
  left: -2px;
}
.p-who__question:after {
  border-bottom-width: 4px;
  border-right-width: 4px;
  bottom: -2px;
  right: -2px;
}
.p-who__question_box {
  background-color: #F1F1F1;
  padding: 45px 20px 40px;
}
@media screen and (min-width: 1024px) {
  .p-who__question_box {
    padding: 60px 60px 134px;
  }
}
.p-who__question_box:before {
  border-top-width: 4px;
  border-right-width: 4px;
  top: -2px;
  right: -2px;
}
.p-who__question_box:after {
  border-bottom-width: 4px;
  border-left-width: 4px;
  bottom: -2px;
  left: -2px;
}
.p-who__question_title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 152px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: 500;
  background-color: #00633A;
}
@media screen and (min-width: 1024px) {
  .p-who__question_title {
    height: auto;
    width: auto;
    line-height: 2;
    font-size: 1.5vw;
    top: -1.5vw;
    padding: 0 1.5vw;
  }
}
.p-who__question_title:after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 12px solid #00633A;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
@media screen and (min-width: 1024px) {
  .p-who__question_title:after {
    bottom: -12px;
  }
}
.p-who__question_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .p-who__question_list {
    flex-direction: row;
    gap: 40px;
  }
}
.p-who__question_item {
  padding-top: 163px;
  flex: 1;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-who__question_item {
    padding-top: 0;
  }
}
.p-who__question_item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 163px;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .p-who__question_item:before {
    top: auto;
    bottom: -234px;
    left: 0;
    width: 100%;
    height: 283px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
  }
}
.p-who__question_item p {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 20px 25px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .05em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-who__question_item p {
    border-radius: 20px;
    padding: 2.5vw 20px 5vw;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    letter-spacing: .05em;
    position: relative;
  }
}
.p-who__question_item p:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 16px;
  border-top-right-radius: 100%;
  border-right: 19px solid #fff;
  top: -15px;
  right: 32px;
}
@media screen and (min-width: 1024px) {
  .p-who__question_item p:before {
    width: 15px;
    height: 16px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 100%;
    border-right: 19px solid #fff;
    top: auto;
    bottom: -15px;
    right: 32px;
  }
}
.p-who__question_item p b {
  font-weight: 500;
  text-decoration: underline 3px #FFB81C;
}
.p-who__question_item_01:before {
  background-image: url(../images/img_who_we_serve_01.png);
}
.p-who__question_item_02:before {
  background-image: url(../images/img_who_we_serve_02.png);
}
.p-who__question_item_03:before {
  background-image: url(../images/img_who_we_serve_03.png);
}



/* ------------------------
// About service
// ----------------------*/
.p-about {
  background-color: #F1F1F1;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;

  &:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 60px;
    background-color: #fff;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-about {
    padding-top: 160px;
    padding-bottom: 120px;
    &:before {
      height: 120px;
    }
  }
}
.p-about .c-section_title:before {
  background-image: url(../images/text_about_service_sp.svg);

}
@media screen and (min-width: 1024px) {
  .p-about .c-section_title:before {
    background-image: url(../images/text_about_service_pc.svg);
    top: auto;
    bottom: 20px;
    height: 80px;
  }
}
.p-about__strong {
  margin-bottom: 33px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about__strong {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 29px;
  }
}
.p-about__strong b {
  text-decoration: underline 3px #FFB81C;
}

.p-about__pattern {
  margin-top: 65px;
}
.p-about__pattern_box {
  background-color: #fff;
  padding: 50px 20px 20px;
  position: relative;
}
.p-about__pattern_title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 270px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: 500;
  background-color: #00633A;
}
@media screen and (min-width: 1024px) {
  .p-about__pattern_title {
    height: auto;
    width: auto;
    line-height: 2;
    font-size: 1.5vw;
    top: -1.5vw;
    padding: 0 1.5vw;
  }
}
.p-about__pattern_title:after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 12px solid #00633A;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
@media screen and (min-width: 1024px) {
  .p-about__pattern_title:after {
    bottom: -12px;
  }
}
.p-about__pattern_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .p-about__pattern_list {
    flex-direction: row;
    gap: 20px;
  }
}
.p-about__pattern_item {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 20px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-about__pattern_item {
    padding: 30px 40px 40px;
  }
}
.p-about__pattern_item_01 {
}
.p-about__pattern_item_02 {
}
.p-about__pattern_tag {
  line-height: 32px;
  border: 1px solid #00633A;
  padding: 0 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 50px;
  color: #00633A;
  margin-bottom: 10px;
}
.p-about__pattern_type {
  line-height: 30px;
  padding: 0 20px;
  background-color: #FFB81C;
  color: #00633A;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.p-about__pattern_text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .05em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.p-about__pattern_img {
  width: 100%;
  height: auto;
}



.p-about__service {
  margin-top: 60px;
  background-color: #00633A;
  padding-block: 60px;
}
.p-about__service_title {
  font-size: 20px;
  letter-spacing: .05em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .p-about__service_title {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 29px;
  }
}
.p-about__service_subtitle {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  width: fit-content;
  line-height: 26px;
  color: #00633A;
  text-align: center;
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: 500;
  background-color: #fff;
  padding: 5px 15px;
  margin-bottom: 58px;
}
@media screen and (min-width: 1024px) {
  .p-about__service_subtitle {
    height: auto;
    line-height: 2;
    font-size: 1.5vw;
    padding: 0 1.5vw;
    margin-bottom: 80px;
  }
}
.p-about__service_subtitle:after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 12px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
@media screen and (min-width: 1024px) {
  .p-about__service_subtitle:after {
    bottom: -12px;
  }
}
.p-about__service_list {
  display: flex;
  flex-direction: column;
  gap: 59px;
}
.p-about__service_item {
  background-color: #D9E6E1;
  border-radius: 20px;
  padding: 43px 20px 20px;
  position: relative;
}
.p-about__service_item:before {
  content: '';
  display: block;
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 78px;
  height: 78px;
  border-radius: 39px;
  background-color: #D9E6E1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-about__service_item_01:before {
  background-image: url(../images/icon_about_service_01.svg);
}
.p-about__service_item_02:before {
  background-image: url(../images/icon_about_service_02.svg);
}
.p-about__service_item_03:before {
  background-image: url(../images/icon_about_service_03.svg);
}
.p-about__service_item_04:before {
  background-image: url(../images/icon_about_service_04.svg);
}
.p-about__service_item_title {
  font-size: 18px;
  letter-spacing: .05em;
  line-height: 26px;
  font-weight: 500;
  color: #00633A;
  text-align: center;
  margin-bottom: 22px;
}
.p-about__service_lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .p-about__service_lineup {
  }
}
.p-about__service_lineup_item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .p-about__service_lineup_item {
    width: calc((100% - 20px) / 2);

    &.p-about__service_lineup_item_wide {
      width: 100%;
    }
  }
}
.p-about__service_lineup_item_title {
  font-size: 18px;
  letter-spacing: .05em;
  line-height: 26px;
  font-weight: 500;
  color: #00633A;
  text-align: center;
  margin-bottom: 22px;
}
.p-about__service_lineup_item_text {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 26px;
  margin-bottom: 35px;
  text-align: justify;

  &+.p-about__service_lineup_item_img {
    position: relative;
    top: -25px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__service_lineup_item_text {
    text-align: center;
  }
}
.p-about__service_lineup_item_box {
  padding: 25px 20px 10px;
  border-radius: 20px;
  border: 1px solid #00633A;
  position: relative;
  max-width: 436px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-about__service_lineup_item_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-about__service_lineup_item_box_tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  line-height: 30px;
  width: auto;
  border-radius: 15px;
  background-color: #00633A;
  color: #fff;
  font-size: 14px;
  letter-spacing: .05em;
  font-weight: 500;
  padding: 0 42px;
  white-space: nowrap;
}
.p-about__service_lineup_item_box_effect {
  padding-left: 1em;
}
.p-about__service_lineup_item_box_effect li {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 26px;
  font-weight: 500;
  position: relative;
}
.p-about__service_lineup_item_box_effect li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: -1em;
}
.p-about__service_lineup_item_img {
  margin: 20px 0 0;
  width: 100%;
  height: auto;
}




/* ------------------------
// Case
// ----------------------*/
.p-case .c-section_title:before {
  background-image: url(../images/case_title.svg);
  top: auto;
  bottom: 0;
  height: 120px;
}
.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: 20px;
    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 20px;
  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;
    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;
    */

    bottom: -22px;
    left: 68%;
    border-top: 22px solid #fff;
    border-right: 22px solid transparent;
  }
}
.p-case_box__problem {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 195px;
  }
}
.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: 249px;
    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);
  height: auto;
  margin-inline: auto;
  margin-block: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem .p-case_box__image {
    max-width: none;
    width: calc(100% - 80px);
    margin-block: 32px;
  }
}
.p-case_box__problem .p-case_box__person {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 126px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-case_box__problem .p-case_box__person {
    display: block;
    width: 185px;
    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;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution {
    padding: 20px 0 195px;
  }
}
.p-case_box__solution::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__solution::after {
    top: 249px;
    bottom: auto;
    left: auto;
    right: 0;
    rotate: none;
    translate: 50% -50%;
  }
}
.p-case_box__solution .p-case_box__tag {
  margin-top: 0;
  background-color: #00633A;
}
.p-case_box__solution .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__solution .p-case_box__image {
    max-width: none;
    width: calc(100% - 80px);
    margin-block: 32px;
  }
}
.p-case_box__solution .c-check_list {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution .c-check_list {
    width: 100%;
    margin-inline: 0;
  }
}
.p-case_box__solution .p-case_box__person {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 126px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-case_box__solution .p-case_box__person {
    display: block;
    width: 185px;
    height: auto;
    translate: 0 20px;
  }
}





.p-case_box__result {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 195px;
    background-color: transparent;
  }
}
@media screen and (min-width: 1024px) {
  .p-case_box__result::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    rotate: none;
    translate: 120% -50%;
  }
}
.p-case_box__result .p-case_box__tag {
  background-color: #FF8200;
}
.p-case_box__result .p-case_box__caption {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__result .p-case_box__caption {
    font-size: 16px;
    margin-top: 0;
  }
}
.p-case_box__result .p-case_box__image {
  display: block;
  max-width: 450px;
  width: calc(100% - 100px);
  height: auto;
  margin-inline: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-case_box__result .p-case_box__image {
    max-width: none;
    width: calc(100% - 80px);
    margin-top: 10px;
    margin-bottom: 32px;
  }
}
.p-case_box__result .p-case_box__person {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 126px;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-case_box__result .p-case_box__person {
    display: block;
    width: 158px;
    height: auto;
    translate: 0 20px;
  }
}
.p-case_box__result .c-check_list {
  text-align: left;
}
.p-case_box__result .c-check_list li::before {
  background: url(../images/icon_check_green.svg) no-repeat center center/contain;
}




.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
// ----------------------*/
.p-point .c-section_title::before {
  background-image: url(../images/point_title.svg);
}
.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 40px 60px;
  }
}
.p-point .p-box img {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-point .p-box img {
    margin-bottom: 56px;
  }
}
.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 {
    height: 100px;
    font-size: clamp(13px, 1vw, 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: 140px;
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
  }
}
.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: 202px;
    padding: 15px 10px 16px;
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box;
  }
}
.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 {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .p-flow {
    padding-top: 140px;
  }
}
.p-flow .c-section_title::before {
  background-image: url(../images/text_assignment_sp.svg);
}
@media screen and (min-width: 1024px) {
  .p-flow .c-section_title::before {
    background-image: url(../images/text_assignment_pc.svg);
    top:auto;
    bottom: 80px;
    height: 80px;
  }
}
.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;
}

.p-flow__plan {
  background-color: rgba(0, 99, 58, .1);
  padding: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .p-flow__plan {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
  }
}
.p-flow__plan_text-block {
}
.p-flow__plan_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .1em;
  margin-bottom: 15px;
}
.p-flow__plan_text {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: .05em;
  margin-bottom: 15px;
}
.p-flow__plan_button-block {
}
@media screen and (min-width: 1024px) {
  .p-flow__plan_button-block {
    width: 50%;
  }
}
.p-flow__plan_button-block .c-cta__button {
}
@media screen and (max-width: 1023px) {
  .p-flow__plan_button-block .c-cta__button {
    height: 64px;
  }
}
.p-flow__plan_button-block .c-cta__button:after {
  right: 15px;
}
@media screen and (min-width: 1024px) {
  .p-flow__plan_button-block .c-cta__button:after {
    right: 30px;
  }
}


/* ------------------------
// 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: 80px 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;
}
