@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --breakpoint-sp: 768px;
  --color-text: #222;
  --color-white: #fff;
  --color-blue: #292991;
  --color-green: #1b5863;
  --color-accent: #168c99;
  --color-red: #ff2f2f;
  --font-base: "Noto Sans JP", sans-serif;
}

body {
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
}

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

a,
button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

@media screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  [data-sp-only] {
    display: none !important;
  }
}

.l-container {
  max-width: 1200px;
  margin-inline: auto;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--color-white)), color-stop(88%, var(--color-white)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, var(--color-white) 0%, var(--color-white) 88%, rgba(255, 255, 255, 0) 100%);
  border-top: 5px solid var(--color-accent);
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(85%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 64px;
    min-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 64px;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding: 0 24px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 8px 20px 10px;
  }
}

.l-header__logo {
  display: block;
  width: min(15.1041666667vw, 100%);
  min-width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-header__logo {
    width: min(13.0208333333vw, 100%);
    min-width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    width: min(9.1666666667vw, 100%);
    min-width: 176px;
  }
}

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

.l-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 33px;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-list {
    gap: 18px;
  }
}

.l-header__nav-item {
  position: relative;
}

.l-header__nav-item--has-dropdown {
  padding: 32px 0;
}

.l-header__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-link {
    font-size: 13px;
  }
}

.l-header__nav-link--arrow::after {
  display: block;
  width: 9px;
  height: 15px;
  content: "";
  background: url("../img/common/chevron_green.png") center/contain no-repeat;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header__dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 10;
  width: 196px;
  padding: 32px 24px;
  margin: 0;
  list-style: none;
  background-color: var(--color-white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px rgba(41, 41, 145, 0.18), 0 6px 16px rgba(41, 41, 145, 0.18);
          box-shadow: 0 0 0 1px rgba(41, 41, 145, 0.18), 0 6px 16px rgba(41, 41, 145, 0.18);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  pointer-events: none;
}

.l-header__dropdown--case {
  width: 128px;
  white-space: nowrap;
}

.l-header__dropdown-item + .l-header__dropdown-item {
  margin-top: 20px;
}

.l-header__dropdown-link {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.l-header .c-button--header {
  margin-left: 17px;
}
@media screen and (max-width: 1024px) {
  .l-header .c-button--header {
    display: none;
  }
}

.l-header__menu-button {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__menu-button {
    position: relative;
    z-index: 110;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 42px;
    height: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin-left: auto;
    color: var(--color-green);
    background-color: var(--color-white);
    border: 0;
    cursor: pointer;
  }
}

.l-header__menu-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 11px;
}

.l-header__menu-line {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: var(--color-green);
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.l-header__menu-line:nth-child(1) {
  top: 0;
}

.l-header__menu-line:nth-child(2) {
  top: 5px;
}

.l-header__menu-line:nth-child(3) {
  top: 10px;
}

.l-header__menu-text {
  display: block;
  margin-top: 5px;
  color: var(--color-green);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.l-header__sp-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__sp-menu {
    position: fixed;
    top: 54px;
    left: 0;
    z-index: 90;
    display: block;
    width: 100%;
    height: calc(100dvh - 54px);
    padding: 27px 20px 40px;
    overflow-y: auto;
    background-color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
    background-image: url("../img/top/drawer_illust.jpg");
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

.l-header__sp-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-header__sp-item {
  margin: 0;
  -webkit-transition: margin-bottom 0.1s;
  transition: margin-bottom 0.1s;
}

.l-header__sp-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #323232;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
}

.l-header__sp-item.is-accordion-open .l-header__sp-link {
  color: var(--color-accent);
}

.l-header__sp-link--arrow::after {
  display: block;
  width: 9px;
  height: 15px;
  content: "";
  background: url("../img/common/chevron_green.png") center/contain no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header__sp-item.is-accordion-open .l-header__sp-link--arrow::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.l-header__sp-sub-list {
  position: relative;
  padding: 0 0 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.3s, opacity 0.3s;
  transition: max-height 0.3s, opacity 0.3s;
}

.l-header__sp-item.is-accordion-open .l-header__sp-sub-list {
  max-height: 227px;
  opacity: 1;
}

.l-header__sp-item.is-accordion-open {
  margin-bottom: 20px;
}

.l-header__sp-sub-list::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 187px;
  content: "";
  background-color: var(--color-accent);
}

.l-header__sp-sub-list--case::before {
  height: 47px;
}

.l-header__sp-sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 47px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-header__sp-contact.c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 154px;
  height: 44px;
  min-height: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.l-header.is-menu-open .l-header__menu-line:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.l-header.is-menu-open .l-header__menu-line:nth-child(2) {
  opacity: 0;
}

.l-header.is-menu-open .l-header__menu-line:nth-child(3) {
  top: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-header.is-menu-open .l-header__sp-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open {
  overflow: hidden;
}

@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.75;
  }
  .l-header__nav-link:hover {
    color: var(--color-accent);
  }
  .l-header__nav-link--arrow:hover::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-header__nav-item--has-dropdown:hover .l-header__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: auto;
  }
  .l-header__nav-item--has-dropdown:hover .l-header__nav-link--arrow::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-header__dropdown-link:hover {
    color: var(--color-accent);
  }
}
.l-footer {
  width: 100%;
  margin-top: 80px;
  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 40px 40px 0 0;
}
.page-subsidy .l-footer, .page-faq .l-footer, .post-type-archive .l-footer {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
  }
}

.l-footer__inner {
  padding-top: 77px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-top: 41px;
  }
}

.l-footer__contact {
  width: min(1000px, 100% - 40px);
  margin-inline: auto;
}

.l-footer__hours {
  margin: 21px 0 38px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__hours {
    margin: 16px 0 13px;
    font-size: 15px;
    line-height: 1.6;
  }
}

.l-footer__contact-list {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__contact-list {
    gap: 16px;
  }
}

.l-footer__contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  padding: 27px 20px 23px 40px;
  color: var(--color-green);
  background-color: var(--color-white);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer__contact-card {
    min-height: 0;
    display: block;
    padding: 22px 20px 19px;
  }
}

.l-footer__contact-card:nth-child(2) {
  padding-block: 14px 10px;
}
@media screen and (max-width: 768px) {
  .l-footer__contact-card:nth-child(2) {
    padding-block: 20px 24px;
  }
}

.l-footer__contact-card--short {
  min-height: 88px;
}
@media screen and (max-width: 768px) {
  .l-footer__contact-card--short {
    min-height: 116px;
  }
}

.l-footer__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 38px;
  margin: 11px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}
@media screen and (max-width: 768px) {
  .l-footer__contact-info {
    gap: 2px 16px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.4;
  }
}

.l-footer__note {
  margin: 3px 0 0;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .l-footer__note {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.3846153846;
  }
}

.l-footer__button.c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 204px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-footer__button.c-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 166.67px;
    margin-top: 16px;
    padding: 8px 40px 8px 24px;
    font-size: 14px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 166.67px;
    padding-inline: 24px 40px;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 10px;
    padding-block: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer__button .c-button__icon {
    right: 8px;
  }
}

.l-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(48px, 13.28125vw, 255px);
  width: min(1200px, 100% - 40px);
  margin: 80px auto 63px;
}
@media screen and (max-width: 1024px) {
  .l-footer__main {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__main {
    display: block;
    width: calc(100% - 40px);
    margin: 40px auto;
  }
}

.l-footer__inner:has(> .l-footer__contact[hidden]) {
  padding-top: 90px;
}

.l-footer__inner:has(> .l-footer__contact[hidden]) .l-footer__main {
  margin-top: 0;
}

.l-footer__logo {
  display: block;
  width: 320px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 251px;
  }
}

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

.l-footer__address {
  margin-top: 17px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .l-footer__address {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5384615385;
  }
}

.l-footer__nav-list {
  display: grid;
  grid-template-areas: "about case column" "subsidy search news" "contact . .";
  grid-template-columns: repeat(3, minmax(0, -webkit-max-content));
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 24px clamp(32px, 3.6458333333vw, 70px);
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    grid-template-areas: "about subsidy" "case search" "column news" ". contact";
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list {
    gap: 16px 41px;
    grid-template-columns: repeat(2, auto);
    font-size: 13px;
    line-height: 1.4615384615;
    margin-top: 28px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-footer__nav-item--about {
  grid-area: about;
}

.l-footer__nav-item--subsidy {
  grid-area: subsidy;
}

.l-footer__nav-item--contact {
  grid-area: contact;
}

.l-footer__nav-item--case {
  grid-area: case;
}

.l-footer__nav-item--search {
  grid-area: search;
}

.l-footer__nav-item--column {
  grid-area: column;
}

.l-footer__nav-item--news {
  grid-area: news;
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px calc((100% - 1200px) / 2) 82px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1280px) {
  .l-footer__bottom {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 18px;
  }
}

.l-footer__copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    margin-top: 19px;
    font-size: 12px;
    line-height: 1.4166666667;
  }
}

.l-footer__policy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .l-footer__policy-list {
    font-size: 13px;
    line-height: 1.4615384615;
  }
}

@media (any-hover: hover) {
  .l-footer a:hover {
    opacity: 0.75;
  }
}
.l-breadcrumb {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  padding: 9.5px 34px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--color-white);
  border-radius: calc(infinity * 1px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-breadcrumb {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 12px 24px;
    font-size: 12px;
    position: absolute;
    top: 237px;
    left: 20px;
  }
}

.l-breadcrumb > span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.l-breadcrumb a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-breadcrumb .breadcrumb_last {
  color: var(--color-green);
  font-weight: 700;
}

.l-breadcrumb__separator {
  display: inline-block;
  width: 7px;
  height: auto;
  margin: 0 14px;
  vertical-align: -1px;
}
@media screen and (max-width: 768px) {
  .l-breadcrumb__separator {
    margin: 0 10px;
  }
}

@media (any-hover: hover) {
  .l-breadcrumb a:hover {
    opacity: 0.65;
  }
}
.c-button {
  --button-color: var(--color-blue);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: min(204px, 100%);
  min-width: 154px;
  padding: 12px 46px 12px 20px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  background-color: var(--button-color);
  border: 1px solid var(--button-color);
  border-radius: calc(infinity * 1px);
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: min(295px, 100%);
    padding: 16px 48px 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 28px;
  }
}

.c-button--blue {
  --button-color: var(--color-blue);
}

.c-button--green {
  --button-color: var(--color-green);
}

@media screen and (max-width: 768px) {
  .c-button--sp-small {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 200px;
    min-height: 48px;
    padding: 12px 42px 12px 24px;
    border-radius: 24px;
  }
}

.c-button--header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 154px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-button--header {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 148px;
    height: 42px;
    padding-right: 42px;
    font-size: 14px;
  }
}

.c-button__text {
  display: inline-block;
}

.c-button__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--color-red);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-button__icon {
    right: 12px;
  }
}

.c-button__icon::before {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 10px;
  height: 1.5px;
  content: "";
  background-color: var(--color-white);
  border-radius: calc(infinity * 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button__icon::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .c-button:hover {
    color: var(--button-color);
    background-color: var(--color-white);
  }
}
.c-section-heading {
  margin: 0;
  color: var(--color-green);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4375;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-section-heading {
    font-size: 24px;
    line-height: 1.4583333333;
  }
}

.c-section-heading::after {
  display: block;
  width: 52px;
  height: 5px;
  margin: 16px auto 0;
  content: "";
  background: linear-gradient(to right, var(--color-blue) 0, var(--color-blue) 24px, transparent 24px, transparent 28px, var(--color-accent) 28px, var(--color-accent) 52px);
}
@media screen and (max-width: 768px) {
  .c-section-heading::after {
    display: none;
  }
}

.c-section-heading--center {
  text-align: center;
}

.c-section-heading--plain::after,
.c-section-heading--sm::after {
  display: none;
}

.c-section-heading--white {
  color: var(--color-white);
  text-align: center;
}

.c-section-heading--sm {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (max-width: 768px) {
  .c-section-heading--sm {
    font-size: 18px;
    line-height: 1.4444444444;
  }
}

/* 表示枠に収まる件数では、操作UIを自動的に隠す。 */
.splide:not(.is-overflow) .splide__arrows,
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}