@charset "UTF-8";
/* ==================================================
[Style]
	serviceメインのテーマファイル
	1. foundation
	2. Layout
	3. object

================================================== */
/* --------------------------------------------------
	1. foundation
-------------------------------------------------- */
/* root */
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Inter:opsz,wght@14..32,900&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,700;1,400;1,700&display=swap';
:root {
  --spacing-xlg: 1.5rem;
  --spacing-lg: 1.25rem;
  --spacing-md: 1rem;
  --spacing-sm: 0.75rem;
  --spacing-xsm: 0.5rem;
  --content-width-narrow: 62.5rem;
  --content-width: 92.5rem;
  --content-width-wide: 112.5rem;
}

/* base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  word-break: normal;
  word-wrap: normal;
  overflow-wrap: normal;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media only screen and (max-width: 1280px) {
  body {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.125rem;
    line-height: 1.56;
  }
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  font-style: italic;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--color-text-main);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* font */
/* animation */
/* --------------------------------------------------
	2. Layout
-------------------------------------------------- */
/* header */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background-color: var(--color-bg-white);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  max-width: calc(110rem + 2 * var(--spacing-lg));
  padding: 1.5625rem var(--spacing-lg) 1.5rem;
  margin: 0 auto;
}
.l-header__logo {
  align-self: center;
  margin-left: 1.25rem;
}
.l-header__nav-sub {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}
.l-header__nav-sub-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.l-header__nav-sub-item {
  font-size: 0;
}
.l-header__nav-sub-link {
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .l-header__nav-sub-link {
    transition: 0.3s opacity;
  }
  .l-header__nav-sub-link:hover {
    opacity: 0.7;
  }
}
.l-header__nav-sub-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.l-header .c-search {
  position: relative;
}
.l-header .c-search:hover .c-search__layout-textbox {
  min-width: 27.75rem;
  opacity: 1;
}
@media only screen and (max-width: 1600px) {
  .l-header .c-search:hover .c-search__layout-textbox {
    min-width: 18.375rem;
  }
}
.l-header .c-search:hover .c-search__button {
  background-color: var(--color-bg-brand-blue);
  border-color: var(--color-border-brand-blue);
}
.l-header .c-search:hover .com-icon::after {
  --icon-color: var(--color-bg-white);
}
.l-header .c-search__layout-button {
  padding-left: 0.5rem;
}
.l-header .c-search__layout-textbox {
  position: absolute;
  top: 50%;
  right: 3.625rem;
  width: 0;
  opacity: 0;
  transition: 0.3s ease-in-out all;
  transform: translateY(-50%);
}
.l-header .c-search__input {
  min-height: 3.125rem;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}
.l-header .c-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  background-color: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
}
.l-header .c-search__button .com-icon.--search {
  --icon-circle-size: 1.625rem;
}
.l-header__button-01 {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 19.375rem;
  max-width: 100%;
  min-height: 3.125rem;
  padding: 0.25rem 1rem;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  font-weight: bold;
  line-height: 1.58%;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
}
.l-header__button-01 .c-icon-docs,
.l-header__button-01 .c-icon-mail {
  margin: 0 0.1875rem;
}
.l-header__button-01.--orange {
  background-color: var(--color-bg-brand-orenge);
  border: 0.125rem solid var(--color-border-brand-orenge);
}
@media (hover: hover) {
  .l-header__button-01.--orange {
    transition: var(--animation-normal);
  }
  .l-header__button-01.--orange:hover {
    color: var(--color-text-brand-orenge);
    background-color: var(--color-bg-white);
  }
  .l-header__button-01.--orange:hover .c-icon-docs,
  .l-header__button-01.--orange:hover .c-icon-mail {
    background-color: var(--color-bg-brand-orenge);
  }
}
.l-header__button-01.--blue {
  background-color: var(--color-bg-brand-blue);
  border: 0.125rem solid var(--color-border-brand-blue);
}
@media (hover: hover) {
  .l-header__button-01.--blue {
    transition: var(--animation-normal);
  }
  .l-header__button-01.--blue:hover {
    color: var(--color-text-brand-blue);
    background-color: var(--color-bg-white);
  }
  .l-header__button-01.--blue:hover .c-icon-docs,
  .l-header__button-01.--blue:hover .c-icon-mail {
    background-color: var(--color-bg-brand-blue);
  }
}
.l-header__button-01 .c-icon-arrow {
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  margin: auto;
}
.l-header__nav {
  margin-top: 1.5rem;
}
.l-header__nav .com-icon {
  --icon-circle-size: 1.5rem;
}
.l-header__nav .com-icon.--blank {
  --icon-circle-size: 1.375rem;
  margin-right: 0.125rem;
}
.l-header__list {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-end;
}
.l-header__item {
  font-size: 0;
}
.l-header__link {
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.54;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .l-header__link {
    transition: 0.3s opacity;
  }
  .l-header__link:hover {
    opacity: 0.7;
  }
}
.l-header__menu-button {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 3.125rem;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 2.5rem;
}
.l-header__menu-button::after {
  margin-top: 0.25rem;
  font-family: var(--font-family-main);
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: normal;
  color: var(--color-text-main);
  letter-spacing: -0.04em;
  content: "メニュー";
}
.l-header__menu-button.is-active .l-header__menu-icon-line {
  margin-top: 0;
  background: var(--color-bg-main);
}
.l-header__menu-button.is-active .l-header__menu-icon-line:nth-child(1) {
  transform: translateY(0rem) translateX(-50%) rotate(-14deg);
}
.l-header__menu-button.is-active .l-header__menu-icon-line:nth-child(2) {
  transform: translateY(0rem) translateX(-50%) rotate(14deg);
}
.l-header__menu-icon {
  position: relative;
  width: 1.875rem;
  height: 0.5rem;
}
.l-header__menu-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  margin-top: 0.125rem;
  background: var(--color-border-main);
  transition: transform 0.3s;
}
.l-header__menu-icon-line:nth-child(1) {
  transform: translateY(0.1875rem) translateX(-50%) rotate(0deg);
}
.l-header__menu-icon-line:nth-child(2) {
  transform: translateY(-0.1875rem) translateX(-50%) rotate(0deg);
}
.l-header__nav-lv1 {
  display: none;
}
.l-header__nav-lv1-item {
  border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
}
.l-header__nav-lv1-link {
  padding: 0.25rem 0;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.l-header__nav-lv2 {
  display: none;
}
.l-header_nav-lv2-link {
  padding: 0.25rem 0;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.l-header__nav-lv3 {
  display: none;
}
.l-header__nav-lv3-link {
  padding: 0.25rem 0;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media all and (min-width: 1281px), print {
  .l-header__logo {
    max-width: 26vw;
  }
  .l-header__button-01 {
    max-width: 18.5vw;
  }
  .l-header__nav-sub-buttons {
    gap: clamp(1.25rem, 1.5vw, 1.5rem);
  }
  .l-header__menu-button {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .l-header {
    padding: 0 var(--spacing-lg);
  }
  .l-header__inner {
    align-items: center;
    height: 4.625rem;
    padding: 0;
  }
  .l-header__logo {
    width: 14.9375rem;
    margin-left: 0;
  }
  .l-header__button-01 {
    position: relative;
    width: 25rem;
    height: 3.625rem;
    padding-right: 1.875rem;
    font-size: 1.25rem;
  }
  .l-header__button-01 .c-icon-arrow {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
  }
  .l-header__navs {
    position: fixed;
    top: 4.625rem;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.25rem 1.25rem 12.5rem;
    overflow-y: scroll;
    pointer-events: none;
    background-color: var(--color-bg-white);
    opacity: 0;
  }
  .l-header__navs.is-menu-opened {
    pointer-events: auto;
    opacity: 1;
  }
  .l-header__search {
    gap: 0;
    width: 100%;
    padding: 0.375rem 0.375rem 0.375rem 1.5rem;
    background-color: var(--color-bg-main-xxx-light);
    box-shadow: 0 0 0.25rem 0 rgba(51, 51, 51, 0.15);
  }
  .l-header .c-search {
    width: 100%;
    max-width: 100%;
  }
  .l-header .c-search:hover .c-search__layout-textbox {
    width: 100%;
    min-width: calc(100% - 4rem);
  }
  .l-header .c-search__input {
    display: block;
    width: calc(100% - 4rem);
    padding: 0.875rem 0rem 0.875rem 1.5rem;
  }
  .l-header .c-search__layout-textbox {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-width: calc(100% - 4rem);
    opacity: 1;
    transform: translateY(0);
  }
  .l-header .c-search__layout-button {
    padding-left: 0;
  }
  .l-header__nav-sub-list {
    display: none;
  }
  .l-header__list {
    display: none;
  }
  .l-header__nav-sub {
    justify-content: center;
  }
  .l-header__nav-sub-buttons {
    display: flex;
    flex-direction: column;
  }
  .l-header__nav {
    margin-top: 2.5rem;
  }
  .l-header__nav .com-icon.--toggle {
    --icon-circle-size: 2.25rem;
    --icon-size: 0.9375rem;
  }
  .l-header__nav-lv1 {
    display: block;
  }
  .l-header__nav-lv1:first-child {
    margin-top: 2.5rem;
  }
  .l-header__nav-lv1 + .l-header__nav-lv1 .l-header__nav-lv1-item:first-child {
    border-top: none;
  }
  .l-header__nav-lv1-item {
    padding: 1.25rem 0;
    overflow: hidden;
  }
  .l-header__nav-lv1-item:first-child {
    border-top: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-header__nav-lv1-item.--has-sub {
    position: relative;
  }
  .l-header__nav-lv1-item.--has-sub.is-open {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-header__nav-lv1-icon {
    top: 1.375rem;
    right: 0;
  }
  .l-header__nav-lv1-icon.com-icon.--toggle {
    position: absolute;
  }
  .l-header__nav-lv1-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.54;
  }
  .l-header__nav-lv1-link .c-icon-arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-bg-main);
  }
  .l-header__nav-lv1-link i {
    flex-shrink: 0;
  }
  .l-header__nav-lv2 {
    display: none;
    padding: 0;
    margin-top: 1.125rem;
    background: var(--color-border-main-xxx-light);
  }
  .l-header__nav-lv2-item {
    padding: 1.375rem 0 1.5rem;
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--color-bg-white);
  }
  .l-header__nav-lv2-item.--has-sub {
    position: relative;
  }
  .l-header__nav-lv2-item.--has-sub.is-open {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-header__nav-lv2-icon {
    top: 1.375rem;
    right: 1rem;
    z-index: 1;
  }
  .l-header__nav-lv2-icon.com-icon.--toggle {
    position: absolute;
  }
  .l-header__nav-lv2-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.56;
  }
  .l-header__nav-lv2-link .c-icon-arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-bg-main);
  }
  .l-header__nav-lv2-link i {
    flex-shrink: 0;
  }
  .l-header__nav-lv3 {
    display: none;
    margin-top: 1.25rem;
    margin-left: 1.5rem;
    background: var(--color-bg-white);
  }
  .l-header__nav-lv3-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 4.5625rem;
    border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-header__nav-lv3-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1.54;
  }
  .l-header__nav-lv3-link .c-icon-arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-bg-main);
  }
  .l-header__nav-lv3-link i {
    flex-shrink: 0;
  }
}
/* footer */
.l-footer {
  position: relative;
  padding: 3.5rem 0 0;
  margin-top: 12.5rem;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-main-xxx-light);
  border-radius: 2.5rem 2.5rem 0 0;
}
.l-footer__scrolltop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.625rem;
  height: 8.75rem;
  border: 0.125rem solid var(--color-border-main);
  border-radius: 2.8125rem;
}
.l-footer__scrolltop .com-icon {
  transform: rotate(-90deg);
}
@media (hover: hover) {
  .l-footer__scrolltop .com-icon {
    transition: var(--animation-normal);
  }
  .l-footer__scrolltop:hover .com-icon {
    transform: translateY(-0.5rem) rotate(-90deg);
  }
}
.l-footer__scrolltop-text {
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.58;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
.l-footer__nav-wrap .com-icon {
  --icon-circle-size: 1.5rem;
}
.l-footer__nav-wrap .com-icon.--blank {
  --icon-circle-size: 1.25rem;
  margin-right: 0.125rem;
}
.l-footer__nav-lv1-item {
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
}
.l-footer__nav-lv1-link {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .l-footer__nav-lv1-link {
    transition: 0.3s opacity;
  }
  .l-footer__nav-lv1-link:hover {
    opacity: 0.7;
  }
}
.l-footer__nav-lv1-link.--img {
  justify-content: center;
}
.l-footer__nav-lv2 {
  padding: 1rem 1.5rem 0;
}
.l-footer__nav-lv2-item {
  padding: 0.25rem 0;
}
.l-footer__nav-lv2-link {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.58;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .l-footer__nav-lv2-link {
    transition: 0.3s opacity;
  }
  .l-footer__nav-lv2-link:hover {
    opacity: 0.7;
  }
}
.l-footer__nav-lv3-item {
  display: flex;
}
.l-footer__nav-lv3-link {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .l-footer__nav-lv3-link {
    transition: 0.3s opacity;
  }
  .l-footer__nav-lv3-link:hover {
    opacity: 0.7;
  }
}
.l-footer__bg {
  padding: 2.25rem 0 2.5rem;
  margin-top: 4.75rem;
  background: var(--color-bg-brand-blue);
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
}
.l-footer__links a {
  position: relative;
  display: inline-flex;
  padding: 0.25rem 0;
}
@media (hover: hover) {
  .l-footer__links a {
    transition: 0.3s opacity;
  }
  .l-footer__links a:hover {
    opacity: 0.7;
  }
}
.l-footer__links li:not(:last-child) a::after {
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.0625rem;
  height: 1.25rem;
  content: "";
  background: currentcolor;
  transform: translateY(-50%);
}
.l-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  margin-top: 1.25rem;
}
.l-footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 3.125rem;
  background: var(--color-bg-white);
  border-radius: 0.375rem;
}
.l-footer__copyright {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
}
.l-footer__fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  gap: 1.0625rem;
  align-items: flex-end;
  padding-right: 0.5rem;
}
.l-footer__fixed-button {
  display: flex;
  flex-grow: 1;
  min-height: 3.75rem;
  border-radius: 0rem 0.375rem 0rem 0rem;
  box-shadow: 0rem 0rem 0.25rem 0rem rgba(255, 255, 255, 0.15);
}
.l-footer__fixed-button-item {
  position: relative;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
}
.l-footer__fixed-button-item:first-child {
  flex-shrink: 0;
  width: 48.275%;
  padding-left: 0.375rem;
  background: var(--color-bg-brand-orenge);
}
.l-footer__fixed-button-item:last-child {
  flex-grow: 1;
  background-color: var(--color-bg-brand-blue);
  border-radius: 0 0.375rem 0 0;
}
.l-footer__fixed-button-item:not(:last-child)::after {
  position: absolute;
  right: 0;
  width: 0.0625rem;
  height: 1.875rem;
  content: "";
  background: var(--color-border-white);
}
.l-footer__fixed-button-item .com-icon {
  --icon-circle-size: 1.25rem;
}

@media all and (min-width: 1281px), print {
  .l-footer__scrolltop {
    position: fixed;
    right: 3.75rem;
    bottom: 1.5rem;
    z-index: 100;
    background-color: var(--color-bg-white);
    transition: var(--animation-normal) transform;
    transform: translateY(calc(100% + 1.5rem));
  }
  .l-footer__scrolltop.is-active {
    transform: translateY(0);
  }
  .l-footer__scrolltop.is-footer {
    position: absolute;
    bottom: calc(100% + 2.5rem);
  }
  .l-footer__nav-wrap .com-icon {
    display: none;
  }
  .l-footer__nav-wrap .l-footer__nav-lv1-link.--icon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1281px) and (hover: hover), print and (hover: hover) {
  .l-footer__nav-wrap .l-footer__nav-lv1-link.--icon .com-icon {
    transition: var(--animation-normal);
  }
  .l-footer__nav-wrap .l-footer__nav-lv1-link.--icon:hover .com-icon {
    transform: translateX(0.25rem);
  }
}
@media all and (min-width: 1281px), print {
  .l-footer__nav-wrap .l-footer__nav-lv1-link.--icon .com-icon {
    display: block;
  }
  .l-footer__nav-lv1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2.875rem;
  }
  .l-footer__nav-lv1.--row {
    gap: 2.5rem;
    padding: 2.5rem 0 0;
    margin-top: 1rem;
    border-top: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv1.--row .l-footer__nav-lv1-item {
    width: auto;
    padding: 0;
    border-bottom: none;
  }
  .l-footer__nav-lv1.--row .l-footer__nav-lv1-link {
    font-size: 1.375rem;
    letter-spacing: 0.04em;
  }
  .l-footer__nav-lv1.--center {
    align-items: center;
  }
  .l-footer__nav-lv1-item {
    width: 100%;
  }
  .l-footer__nav-lv1-item.--has-sub {
    width: calc((100% - 3.75rem) / 2);
    padding: 2.25rem 1.5rem;
    border-bottom: none;
  }
  .l-footer__nav-lv1-item.--has-sub .l-footer__nav-lv1-link {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }
  .l-footer__nav-lv1-item:not(.--has-sub) + .l-footer__nav-lv1-item.--has-sub {
    position: relative;
  }
  .l-footer__nav-lv1-item:not(.--has-sub) + .l-footer__nav-lv1-item.--has-sub::after {
    position: absolute;
    top: 2.5rem;
    right: -1.875rem;
    bottom: 2.75rem;
    width: 0.0625rem;
    content: "";
    background: var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv2 {
    display: block !important;
  }
  .l-footer__nav-lv2-item.--has-sub {
    padding-bottom: 0;
  }
  .l-footer__nav-lv2-item.--has-sub:not(:has(~ .--has-sub)) {
    padding-bottom: 2.25rem;
    border-bottom: 0.125rem solid var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv2-item.--has-sub + .l-footer__nav-lv2-item {
    margin-top: 1.875rem;
  }
  .l-footer__nav-lv3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0 0 1rem;
  }
  .l-footer__fixed {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .l-footer {
    padding: 5rem 0 0;
    margin-top: 10rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .l-footer__fixed {
    transition: var(--animation-normal);
    transform: translateY(calc(100% + 2rem));
  }
  .l-footer__fixed.is-active {
    transform: translateY(0);
  }
  .l-footer__scrolltop {
    width: 3.75rem;
    height: 5rem;
    background-color: var(--color-bg-white);
    border-bottom: none;
    border-radius: 2.8125rem 2.8125rem 0 0;
    box-shadow: 0 0 0.25rem 0 rgba(255, 255, 255, 0.15);
  }
  .l-footer__scrolltop.--pc {
    display: none;
  }
  .l-footer__scrolltop-text {
    margin-top: 0.125rem;
    font-size: 0.6875rem;
    line-height: 1.54;
  }
  .l-footer__nav-wrap .com-icon.--toggle {
    --icon-circle-size: 2.25rem;
    --icon-size: 0.9375rem;
  }
  .l-footer__nav-lv1 + .l-footer__nav-lv1 .l-footer__nav-lv1-item:first-child {
    border-top: none;
  }
  .l-footer__nav-lv1-item {
    padding: 1.25rem 0;
    overflow: hidden;
  }
  .l-footer__nav-lv1-item:first-child {
    border-top: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv1-item.--has-sub {
    position: relative;
  }
  .l-footer__nav-lv1-item.--has-sub.is-open {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-footer__nav-lv1-icon {
    top: 1.375rem;
    right: 0;
  }
  .l-footer__nav-lv1-icon.com-icon.--toggle {
    position: absolute;
    z-index: 1;
  }
  .l-footer__nav-lv1-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.54;
  }
  .l-footer__nav-lv1-link i {
    flex-shrink: 0;
  }
  .l-footer__nav-lv2 {
    display: none;
    padding: 0;
    margin-top: 1.25rem;
    background: var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv2-item {
    padding: 1.25rem 0 1.375rem;
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--color-bg-white);
  }
  .l-footer__nav-lv2-item.--has-sub {
    position: relative;
  }
  .l-footer__nav-lv2-item.--has-sub.is-open {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-footer__nav-lv2-icon {
    top: 1.25rem;
    right: 1rem;
    z-index: 1;
  }
  .l-footer__nav-lv2-icon.com-icon.--toggle {
    position: absolute;
    z-index: 1;
  }
  .l-footer__nav-lv2-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.56;
  }
  .l-footer__nav-lv2-link i {
    flex-shrink: 0;
  }
  .l-footer__nav-lv3 {
    display: none;
    margin-top: 1.25rem;
    margin-left: 1.5rem;
    background: var(--color-bg-white);
  }
  .l-footer__nav-lv3-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 4.5625rem;
    border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-footer__nav-lv3-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.54;
  }
  .l-footer__nav-lv3-link i {
    flex-shrink: 0;
  }
  .l-footer__bg {
    padding-bottom: 6.25rem;
    margin-top: 4.125rem;
  }
  .l-footer__links {
    gap: 0.375rem 0;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.54;
  }
  .l-footer__links a {
    padding-right: 1rem;
    padding-left: 0;
  }
  .l-footer__links a::after {
    right: 0;
  }
  .l-footer__links li {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .l-footer__links li:last-child a {
    padding-right: 0;
  }
  .l-footer__links li:not(:last-child) a::after {
    right: 0;
    height: 1rem;
  }
  .l-footer__bottom {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
  }
  .l-footer__copyright {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.54;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__nav-lv1-icon.--top-sp {
    top: 2.375rem;
  }
}
/* main */
.l-inner {
  width: calc(var(--content-width) + var(--spacing-lg) * 2);
  max-width: 100%;
  height: inherit;
  padding: 0 var(--spacing-lg);
  margin: 0 auto;
}
.l-inner.--wide {
  width: calc(var(--content-width-wide) + var(--spacing-lg) * 2);
}
.l-inner.--narrow {
  width: calc(var(--content-width-narrow) + var(--spacing-lg) * 2);
}

/* margin */
.l-template {
  margin-top: 6.25rem;
}
.l-template.--mt-0 {
  margin-top: 0;
}
.l-template .l-template-section.--bg {
  padding: 6.25rem 0 10rem;
}
.l-template .l-template-section + .l-template-section {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .l-template {
    margin-top: 2.5rem;
  }
  .l-template .l-template-section + .l-template-section {
    margin-top: 7.5rem;
  }
}
.l-template .l-template-space-xlg {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-xlg {
    margin-top: 7.5rem;
  }
}
.l-template .l-template-space-lg {
  margin-top: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-lg {
    margin-top: 5.625rem;
  }
}
.l-template .l-template-space-md {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-md {
    margin-top: 3.75rem;
  }
}
.l-template .l-template-space-sm {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-sm {
    margin-top: 1.875rem;
  }
}
.l-template .l-template-form {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-form {
    margin-top: 7.5rem;
  }
}
.l-template .l-template-form .c-form-layout:not(:first-child) {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-form .c-form-layout:not(:first-child) {
    margin-top: 3.75rem;
  }
}

/* --------------------------------------------------
	3. object
-------------------------------------------------- */
/* component */
.c-button-01 {
  --color-text: var(--color-text-main);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main);
  --color-bg-icon: var(--color-bg-main);
  --color-text-hover: var(--color-text-brand-blue);
  --color-bg-hover: var(--color-bg-white);
  --color-border-hover: var(--color-border-brand-blue);
  --color-bg-icon-hover: var(--color-bg-brand-blue);
  --icon-pos: 1.375rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32.5rem;
  max-width: 100%;
  min-height: 5.625rem;
  padding: 0.6875rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-bg);
  border: 0.125rem solid var(--color-border);
  width: 29.375rem;
  min-height: 4.375rem;
}
.c-button-01 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-color: var(--color-bg-icon);
  position: absolute;
  right: var(--icon-pos);
  transition: var(--animation-normal) all;
}
@media (hover: hover) {
  .c-button-01 {
    transition: var(--animation-normal) all;
  }
  .c-button-01:hover, .c-button-01:focus {
    --color-text: var(--color-text-hover);
    --color-bg: var(--color-bg-hover);
    --color-border: var(--color-border-hover);
  }
  .c-button-01:hover .com-icon, .c-button-01:focus .com-icon {
    --icon-color: var(--color-bg-icon-hover);
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-button-01[disabled], .c-button-01[aria-disabled=true] {
  --color-text: var(--color-text-main-light);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main-light);
  --icon-color: var(--color-bg-main-light);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .c-button-01 {
    width: 16.25rem;
    min-height: 5.625rem;
    font-size: 1.25rem;
    --icon-pos: 1.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-button-01 {
    width: 20.9375rem;
    min-height: 3.75rem;
  }
}

.c-button-02 {
  --color-text: var(--color-text-white);
  --color-bg: var(--color-bg-brand-orenge);
  --color-border: var(--color-border-orenge);
  --color-bg-icon: var(--color-bg-white);
  --color-text-hover: var(--color-text-brand-orenge);
  --color-bg-hover: var(--color-bg-white);
  --color-border-hover: var(--color-border-brand-orenge);
  --color-bg-icon-hover: var(--color-bg-brand-orenge);
  --icon-pos: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32.5rem;
  max-width: 100%;
  min-height: 5.625rem;
  padding: 0.6875rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-bg);
  border: 0.125rem solid var(--color-border);
  font-size: 1.75rem;
}
.c-button-02 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-color: var(--color-bg-icon);
  position: absolute;
  right: var(--icon-pos);
  transition: var(--animation-normal) all;
}
@media (hover: hover) {
  .c-button-02 {
    transition: var(--animation-normal) all;
  }
  .c-button-02:hover, .c-button-02:focus {
    --color-text: var(--color-text-hover);
    --color-bg: var(--color-bg-hover);
    --color-border: var(--color-border-hover);
  }
  .c-button-02:hover .com-icon, .c-button-02:focus .com-icon {
    --icon-color: var(--color-bg-icon-hover);
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-button-02[disabled], .c-button-02[aria-disabled=true] {
  --color-text: var(--color-text-main-light);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main-light);
  --icon-color: var(--color-bg-main-light);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .c-button-02 {
    width: 16.25rem;
    min-height: 5.625rem;
    font-size: 1.25rem;
    --icon-pos: 1.375rem;
  }
}
.c-button-02.--medium {
  width: 24.375rem;
  min-height: 4.375rem;
}

@media only screen and (max-width: 767px) {
  .c-button-02 {
    --icon-pos: 0.9375rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.5rem;
  }
  .c-button-02.--medium {
    width: 20.9375rem;
    min-height: 3.75rem;
  }
}
.c-button-03 {
  --color-text: var(--color-text-white);
  --color-bg: var(--color-bg-brand-blue);
  --color-border: var(--color-border-brand-blue);
  --color-bg-icon: var(--color-bg-white);
  --color-text-hover: var(--color-text-brand-blue);
  --color-bg-hover: var(--color-bg-white);
  --color-border-hover: var(--color-border-brand-blue);
  --color-bg-icon-hover: var(--color-bg-brand-blue);
  --icon-pos: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32.5rem;
  max-width: 100%;
  min-height: 5.625rem;
  padding: 0.6875rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-bg);
  border: 0.125rem solid var(--color-border);
  font-size: 1.75rem;
}
.c-button-03 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-color: var(--color-bg-icon);
  position: absolute;
  right: var(--icon-pos);
  transition: var(--animation-normal) all;
}
@media (hover: hover) {
  .c-button-03 {
    transition: var(--animation-normal) all;
  }
  .c-button-03:hover, .c-button-03:focus {
    --color-text: var(--color-text-hover);
    --color-bg: var(--color-bg-hover);
    --color-border: var(--color-border-hover);
  }
  .c-button-03:hover .com-icon, .c-button-03:focus .com-icon {
    --icon-color: var(--color-bg-icon-hover);
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-button-03[disabled], .c-button-03[aria-disabled=true] {
  --color-text: var(--color-text-main-light);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main-light);
  --icon-color: var(--color-bg-main-light);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .c-button-03 {
    width: 16.25rem;
    min-height: 5.625rem;
    font-size: 1.25rem;
    --icon-pos: 1.375rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-button-03 {
    --icon-pos: 0.9375rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.5rem;
  }
}
.c-button-04 {
  --color-text: var(--color-text-brand-blue);
  --color-bg: var(--color-bg-brand-white);
  --color-border: var(--color-border-brand-blue);
  --color-bg-icon: var(--color-bg-brand-blue);
  --color-text-hover: var(--color-text-brand-blue);
  --color-bg-hover: var(--color-bg-white);
  --color-border-hover: var(--color-border-brand-blue);
  --color-bg-icon-hover: var(--color-bg-brand-blue);
  --icon-pos: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32.5rem;
  max-width: 100%;
  min-height: 5.625rem;
  padding: 0.6875rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-bg);
  border: 0.125rem solid var(--color-border);
  font-size: 1.75rem;
}
.c-button-04 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-color: var(--color-bg-icon);
  position: absolute;
  right: var(--icon-pos);
  transition: var(--animation-normal) all;
}
@media (hover: hover) {
  .c-button-04 {
    transition: var(--animation-normal) all;
  }
  .c-button-04:hover, .c-button-04:focus {
    --color-text: var(--color-text-hover);
    --color-bg: var(--color-bg-hover);
    --color-border: var(--color-border-hover);
  }
  .c-button-04:hover .com-icon, .c-button-04:focus .com-icon {
    --icon-color: var(--color-bg-icon-hover);
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-button-04[disabled], .c-button-04[aria-disabled=true] {
  --color-text: var(--color-text-main-light);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main-light);
  --icon-color: var(--color-bg-main-light);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .c-button-04 {
    width: 16.25rem;
    min-height: 5.625rem;
    font-size: 1.25rem;
    --icon-pos: 1.375rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-button-04 {
    --icon-pos: 0.9375rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.c-button-05 {
  --color-text: var(--color-text-main);
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding-right: 2rem;
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.04em;
}
.c-button-05 .com-icon {
  position: absolute;
  right: 0;
  transition: var(--animation-normal);
  --icon-circle-size: 1.5rem;
}
@media (hover: hover) {
  .c-button-05 {
    transition: var(--animation-normal) all;
  }
  .c-button-05:hover {
    --color-text: var(--color-text-brand-blue);
  }
  .c-button-05:hover .com-icon {
    right: -0.5rem;
  }
}
.c-button-05[disabled], .c-button-05[aria-disabled=true] {
  --color-text: var(--color-text-main-light);
  --color-bg: var(--color-bg-white);
  --color-border: var(--color-border-main-light);
  --icon-color: var(--color-bg-main-light);
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .c-button-05 {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.c-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
}
.c-buttons-wrap.--right {
  justify-content: flex-end;
}

.c-icon-text {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding-bottom: 0.125rem;
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.58;
  letter-spacing: 0.04em;
  border-bottom: 0.125rem solid var(--color-text-main);
}
.c-icon-text__icon {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .c-icon-text {
    gap: 0.375rem;
    padding-bottom: 0.25rem;
    font-size: 1rem;
    border-bottom-width: 0.0625rem;
  }
}
.c-icon-arrow {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-arrow);
          mask-image: var(--icon-arrow);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-ancor {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-down);
          mask-image: var(--icon-down);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-search {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  overflow: hidden;
  background: var(--color-bg-main);
  -webkit-mask-image: var(--icon-search);
          mask-image: var(--icon-search);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-docs {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-docs);
          mask-image: var(--icon-docs);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-mail {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-mail);
          mask-image: var(--icon-mail);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-edit {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-edit);
          mask-image: var(--icon-edit);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-plus {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background: var(--color-bg-white);
  -webkit-mask-image: var(--icon-plus);
          mask-image: var(--icon-plus);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon-help {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  overflow: hidden;
  background: var(--color-bg-main);
  -webkit-mask-image: var(--icon-help);
          mask-image: var(--icon-help);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-supplement-text {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #787878;
  letter-spacing: 0.04em;
}
.c-supplement-text.--small {
  font-size: 1rem;
}

.c-accordion-qa {
  overflow: hidden;
  font-family: var(--font-family-main);
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-accordion-qa {
    font-size: 1rem;
  }
}
.c-accordion-qa + .c-accordion-qa {
  margin-top: 2.5rem;
}
.c-accordion-qa__head {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 7.25rem;
  padding: 1.125rem 2.875rem 1.125rem 8.5rem;
  font-weight: bold;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .c-accordion-qa__head {
    font-size: 1.125rem;
  }
}
.c-accordion-qa__head::before {
  position: absolute;
  top: 50%;
  left: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.4375rem;
  margin-right: 2.5rem;
  font-family: var(--font-family-main);
  font-size: 1.375rem;
  line-height: 1.58;
  color: var(--color-text-white);
  text-align: center;
  letter-spacing: 0.04em;
  content: "Q";
  background: var(--color-bg-brand-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-accordion-qa__head-text {
  flex-grow: 1;
}
.c-accordion-qa__head-icon {
  flex-shrink: 0;
  margin-left: 2.5rem;
}
.c-accordion-qa__head-icon.com-icon {
  --icon-circle-size: 2.5rem;
  --icon-size: 62.5%;
}
.c-accordion-qa__content {
  --max-height: 0;
  max-height: var(--max-height);
  overflow: hidden;
  background: var(--color-bg-main-xxx-light);
  transition: max-height var(--animation-normal);
}
.c-accordion-qa__content-inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.875rem 2.5rem 8.5rem;
}
.c-accordion-qa__content-inner::before {
  position: absolute;
  top: 50%;
  left: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.1875rem;
  font-size: 1.375rem;
  line-height: 1.58;
  color: var(--color-text-white);
  text-align: center;
  letter-spacing: 0.04em;
  content: "A";
  background: var(--color-bg-main);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .c-accordion-qa + .c-accordion-qa {
    margin-top: 1.5rem;
  }
  .c-accordion-qa__head {
    min-height: 4.75rem;
    padding-right: 0.875rem;
    padding-left: 3.875rem;
  }
  .c-accordion-qa__head::before {
    left: 0.875rem;
    width: 2rem;
    height: 2rem;
    padding-bottom: 0.25rem;
    font-size: 1.125rem;
  }
  .c-accordion-qa__head-icon {
    margin-left: 0.625rem;
  }
  .c-accordion-qa__head-icon.com-icon {
    --icon-circle-size: 2rem;
  }
  .c-accordion-qa__content-inner {
    padding: 1.25rem 0.875rem 1.125rem 3.875rem;
  }
  .c-accordion-qa__content-inner::before {
    left: 0.875rem;
    width: 2rem;
    height: 2rem;
    padding-bottom: 0.125rem;
    font-size: 1.125rem;
  }
}
.c-accordion {
  overflow: hidden;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-accordion {
    font-size: 1rem;
  }
}
.c-accordion + .c-accordion {
  margin-top: 2.5rem;
}
.c-accordion__head {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 7.375rem;
  padding: 1.125rem 2.875rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.c-accordion__head-text {
  flex-grow: 1;
}
.c-accordion__head-icon {
  flex-shrink: 0;
  margin-left: 2.5rem;
}
.c-accordion__head-icon.com-icon {
  --icon-circle-size: 2.5rem;
  --icon-size: 62.5%;
}
.c-accordion__content {
  --max-height: 0px;
  max-height: var(--max-height);
  overflow: hidden;
  border-top: 0.0625rem solid var(--color-border-main-xxx-light);
  transition: max-height var(--animation-normal);
}
.c-accordion__content-inner {
  padding: 2.5rem 2.875rem;
}

@media only screen and (max-width: 767px) {
  .c-accordion + .c-accordion {
    margin-top: 1.5rem;
  }
  .c-accordion__head {
    min-height: 4.75rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
    font-size: 1.6875rem;
    line-height: 1.4;
  }
  .c-accordion__head-icon {
    margin-left: 0rem;
  }
  .c-accordion__head-icon.com-icon {
    --icon-circle-size: 2rem;
  }
  .c-accordion__content-inner {
    padding: 1.25rem 1.375rem 1.125rem;
  }
}
.c-box {
  padding: 4rem 5rem;
  background: var(--color-bg-white);
}
.c-box__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 1280px) {
  .c-box__title {
    font-size: 1.25rem;
  }
}
.c-box__title.--center {
  text-align: center;
}
.c-box__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-box__text {
    font-size: 1rem;
  }
}
.c-box.--bg-gray {
  background-color: var(--color-bg-main-xxx-light);
}

@media only screen and (max-width: 767px) {
  .c-box {
    padding: 2rem 1.25rem;
  }
  .c-box__title {
    margin-bottom: 1rem;
  }
  .c-box.--title-off {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
.c-card-01-wrap {
  display: grid;
}
.c-card-01-wrap.--column2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.125rem;
}
.c-card-01-wrap.--column3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem;
}
.c-card-01-wrap.--column4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}
.c-card-01-wrap.--column4 .c-card-01 {
  --clip-path-width: 2rem;
}
.c-card-01-wrap.--column4 .c-card-01__img {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-card-01-wrap.--column2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .c-card-01-wrap.--column3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .c-card-01-wrap.--column4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0.9375rem;
  }
  .c-card-01-wrap.--column4 .c-card-01 {
    --clip-path-width: 1rem;
  }
  .c-card-01-wrap.--column4 .c-card-01__img {
    margin-bottom: 0.5rem;
  }
}

.c-card-01 {
  --clip-path-width: 2.5rem;
}
.c-card-01__img {
  display: block;
  margin-bottom: 1.5rem;
  overflow: hidden;
  clip-path: polygon(var(--clip-path-width) 0, 100% 0, 100% calc(100% - var(--clip-path-width)), calc(100% - var(--clip-path-width)) 100%, 0 100%, 0 var(--clip-path-width));
}
.c-card-01__img img {
  width: 100%;
}
.c-card-01__customer {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-brand-blue);
  letter-spacing: 0.04em;
}
.c-card-01__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.04em;
}
.c-card-01__title.--center {
  text-align: center;
}
.c-card-01__text {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-01__text {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-card-01 {
    --clip-path-width: 2rem;
  }
  .c-card-01__img {
    margin-bottom: 1rem;
  }
  .c-card-01__customer {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  .c-card-01__title {
    font-size: 1.25rem;
  }
  .c-card-01__text {
    margin-top: 0.75rem;
  }
}
.c-card-02 {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
  align-items: flex-start;
}
.c-card-02__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
.c-card-02__img img {
  width: 100%;
}
.c-card-02__content {
  width: 50%;
}
.c-card-02__title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-card);
  letter-spacing: 0.04em;
}
.c-card-02__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-02__text {
    font-size: 1rem;
  }
}
.c-card-02__text + .c-card-02__text {
  margin-top: 1rem;
}
.c-card-02__box {
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  background: var(--color-bg-main-xxx-light);
}
.c-card-02__box-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media only screen and (max-width: 1280px) {
  .c-card-02__box-title {
    font-size: 1.25rem;
  }
}
.c-card-02__box-text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-02__box-text {
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-02 {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card-02 {
    flex-direction: column;
    gap: 0rem;
  }
  .c-card-02__img {
    width: 100%;
  }
  .c-card-02__content {
    width: 100%;
    padding: 1.5rem 1.25rem 0;
  }
  .c-card-02__title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .c-card-02__text + .c-card-02__text {
    margin-top: 0.75rem;
  }
  .c-card-02__box {
    padding: 2rem 1.25rem;
    margin-top: 1.5rem;
  }
  .c-card-02__box-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.c-card-03-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}

.c-card-03 {
  position: relative;
  padding: 3.875rem 2.375rem;
  border: 0.125rem solid var(--color-border-main);
}
.c-card-03__tag {
  position: absolute;
  top: 0;
  left: -0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 2rem;
  padding: 0 1.25rem 0 0.3125rem;
  clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 100%, 0 100%);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  background-color: var(--color-bg-main);
  transform: translateY(-100%);
}
.c-card-03__img {
  text-align: center;
}
.c-card-03__title {
  margin-top: 2rem;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-card-03__text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-03__text {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1280px) {
  .c-card-03-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card-03-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.375rem;
  }
  .c-card-03 {
    padding: 2.375rem 1.125rem 1.875rem;
  }
  .c-card-03__tag {
    width: 9.375rem;
    padding-left: 0.25rem;
    font-size: 1rem;
  }
  .c-card-03__title {
    margin-top: 1.5rem;
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .c-card-03__text {
    margin-top: 1rem;
  }
}
.c-card-04-wrap {
  --gap-row: 5rem;
  --gap-column: 5.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-row) var(--gap-column);
}
.c-card-04-wrap .c-card-04::before {
  position: absolute;
  top: calc(var(--gap-row) / 2 * -1);
  right: 0;
  left: 0;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-bg-main-x-light);
}
.c-card-04-wrap .c-card-04:nth-child(-n+2)::before {
  content: none;
}

.c-card-04 {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.c-card-04__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-card-04__content {
  flex-grow: 1;
}
.c-card-04__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media only screen and (max-width: 1280px) {
  .c-card-04__title {
    font-size: 1.25rem;
  }
}
.c-card-04__text {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-04__text {
    font-size: 1rem;
  }
}

@media all and (min-width: 768px), print {
  .c-card-04-wrap .c-card-04:nth-child(2n+1)::before {
    right: calc(var(--gap-column) / 2 * -1);
  }
  .c-card-04-wrap .c-card-04:nth-child(2n)::before {
    left: calc(var(--gap-column) / 2 * -1);
  }
}
@media only screen and (max-width: 767px) {
  .c-card-04-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    --gap-row: 3rem;
  }
  .c-card-04-wrap .c-card-04:not(:first-child)::before {
    content: "";
  }
  .c-card-04 {
    gap: 1rem;
  }
  .c-card-04__icon {
    width: 5.625rem;
  }
  .c-card-04__content {
    margin-top: 0.5rem;
  }
  .c-card-04__text {
    margin-top: 0.5rem;
  }
}
.c-card-button-01-wrap.--column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.75rem;
}
.c-card-button-01-wrap.--column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.125rem;
}
.c-card-button-01-wrap.--column4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.c-card-button-01 {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  background: var(--color-bg-white);
  box-shadow: 0 0 0.9375rem 0 rgba(51, 51, 51, 0.15);
}
@media (hover: hover) {
  .c-card-button-01 .c-card-button-01__img img {
    transition: var(--animation-normal);
  }
  .c-card-button-01 .com-icon {
    transition: var(--animation-normal);
  }
  .c-card-button-01:hover .c-card-button-01__img img {
    transform: scale(1.05);
  }
  .c-card-button-01:hover .com-icon {
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-card-button-01__img {
  flex: 1 0 auto;
  overflow: hidden;
}
.c-card-button-01__img img {
  width: 100%;
}
.c-card-button-01__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  padding: 1rem 3.375rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-card-button-01__button .com-icon {
  --icon-pos: 1.5rem;
  --icon-circle-size: 1.5rem;
  position: absolute;
  right: var(--icon-pos);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-01-wrap.--column3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3.125rem;
  }
  .c-card-button-01-wrap.--column4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-01-wrap.--column2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .c-card-button-01-wrap.--column3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .c-card-button-01-wrap.--column4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .c-card-button-01__button {
    min-height: 3.75rem;
    padding: 0.75rem 3.125rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .c-card-button-01__img img {
    aspect-ratio: 335/190;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-card-button-02-wrap {
  --column-gap: 3.3125rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.125rem var(--column-gap);
}
@media all and (min-width: 1281px), print {
  .c-card-button-02-wrap .c-card-button-02:not(:nth-child(4n))::after {
    position: absolute;
    top: 0;
    right: calc(-1 * var(--column-gap) / 2);
    bottom: 0;
    width: 0.125rem;
    content: "";
    background: var(--color-bg-main-xxx-light);
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-02-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .c-card-button-02-wrap .c-card-button-02:not(:nth-child(2n))::after {
    position: absolute;
    top: 0;
    right: calc(-1 * var(--column-gap) / 2);
    bottom: 0;
    width: 0.125rem;
    content: "";
    background: var(--color-bg-main-xxx-light);
    transform: translateX(50%);
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-02-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.c-card-button-02 {
  --clip-path-width: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 5.875rem;
}
.c-card-button-02__img {
  clip-path: polygon(var(--clip-path-width) 0, 100% 0, 100% calc(100% - var(--clip-path-width)), calc(100% - var(--clip-path-width)) 100%, 0 100%, 0 var(--clip-path-width));
}
.c-card-button-02__img img {
  width: 100%;
}
.c-card-button-02__title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-card-button-02__list {
  margin-top: 1rem;
}
.c-card-button-02__button {
  position: absolute;
  right: 0;
  bottom: 2rem;
}
.c-card-button-02__button.c-button-05 {
  align-self: flex-end;
  pointer-events: none;
}

@media (hover: hover) {
  .c-card-button-02:hover .c-card-button-02__button .com-icon {
    right: -0.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-02-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-02 {
    padding-bottom: 0;
  }
  .c-card-button-02__title {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
  .c-card-button-02__list {
    margin-top: 0.75rem;
  }
  .c-card-button-02__button {
    position: static;
    margin-top: 1.5rem;
  }
}
.c-card-button-03-media {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}
.c-card-button-03-media__img {
  flex-shrink: 0;
  width: 50%;
}
.c-card-button-03-media__img img {
  width: 100%;
}
.c-card-button-03-media .c-card-button-03-wrap {
  flex-grow: 1;
  width: 100%;
}

.c-card-button-03-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.5rem;
}
.c-card-button-03-wrap.--column4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.c-card-button-03 {
  --color-card: var(--color-text-main);
  --color-card-border: var(--color-border-white);
  --width-card-border: 0.1875rem;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.875rem 1rem 1.0625rem;
  background: var(--color-bg-white);
  border: var(--width-card-border) solid var(--color-card-border);
  box-shadow: 0 0 0.9375rem 0 rgba(51, 51, 51, 0.15);
}
.c-card-button-03__index {
  position: absolute;
  top: calc(-1 * var(--width-card-border));
  left: calc(-1 * var(--width-card-border));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 1.5rem;
  padding-right: 0.75rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0 100%);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-white);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-card);
}
.c-card-button-03__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-card-button-03__icon svg,
.c-card-button-03__icon path {
  fill: var(--color-card);
}
.c-card-button-03__title {
  flex-grow: 1;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-card);
}
.c-card-button-03.is-active {
  --color-card: var(--color-text-brand-blue);
  --color-card-border: var(--color-border-brand-blue);
  box-shadow: none;
}
.c-card-button-03.is-active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * var(--width-card-border));
  width: 0;
  height: 0;
  margin: auto;
  content: "";
  border-top: 0.625rem solid transparent;
  border-right: 1rem solid var(--color-card-border);
  border-bottom: 0.625rem solid transparent;
  transform: translateX(-100%);
}

@media only screen and (max-width: 1280px) {
  .c-card-button-03-media {
    flex-direction: column;
    gap: 2.5rem;
  }
  .c-card-button-03-media__img {
    width: 100%;
    max-width: 46.25rem;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-03.is-active::before {
    top: calc(-1 * var(--width-card-border));
    right: 0;
    bottom: unset;
    left: 0;
    border-right: 0.625rem solid transparent;
    border-bottom: 1rem solid var(--color-card-border);
    border-left: 0.625rem solid transparent;
    transform: translateY(-100%);
  }
  .c-card-button-03-wrap.--column4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-03-wrap {
    grid-template-columns: repeat(auto-fit, minmax(11.125rem, 1fr));
    gap: 0.5rem;
  }
  .c-card-button-03-wrap.--column4 {
    grid-template-columns: 1fr;
  }
  .c-card-button-03 {
    padding: 0.5rem 1.75rem;
  }
  .c-card-button-03.is-active::before {
    top: calc(-1 * var(--width-card-border));
    right: 0;
    bottom: unset;
    left: 0;
    border-right: 0.5rem solid transparent;
    border-bottom: 0.75rem solid var(--color-card-border);
    border-left: 0.5rem solid transparent;
    transform: translateY(-100%);
  }
  .c-card-button-03__index {
    width: 2.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
  .c-card-button-03__icon {
    width: 3rem;
  }
  .c-card-button-03__title {
    font-size: 1rem;
  }
  .c-card-button-03__text {
    font-size: 0.9375rem;
  }
}
.c-card-button-04 {
  display: flex;
  gap: 1.5rem 5rem;
  align-items: center;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
}
.c-card-button-04__img {
  --width-clip: 4.375rem;
  flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  clip-path: polygon(var(--width-clip) 0, 100% 0, 100% calc(100% - var(--width-clip)), calc(100% - var(--width-clip)) 100%, 0 100%, 0 var(--width-clip));
}
.c-card-button-04__img img {
  width: 100%;
}
.c-card-button-04__content {
  flex-grow: 1;
  margin-top: 0.5rem;
}
.c-card-button-04__title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-card-button-04__price {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: right;
}
@media only screen and (max-width: 1280px) {
  .c-card-button-04__price {
    font-size: 1rem;
  }
}
.c-card-button-04__price.--left {
  text-align: left;
}
.c-card-button-04__price-sub-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  font-weight: bold;
  color: var(--color-text-main-dark);
}
@media only screen and (max-width: 1280px) {
  .c-card-button-04__price-sub-text {
    font-size: 0.875rem;
  }
}
.c-card-button-04__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 3rem;
}
@media only screen and (max-width: 1280px) {
  .c-card-button-04__text {
    font-size: 1rem;
  }
}
.c-card-button-04__sub-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--color-text-main-dark);
}
@media only screen and (max-width: 1280px) {
  .c-card-button-04__sub-text {
    font-size: 0.875rem;
  }
}
.c-card-button-04__button {
  margin-top: 4rem;
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-04 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-04 {
    flex-direction: column;
  }
  .c-card-button-04__img {
    width: 100%;
    --width-clip: 2rem;
  }
  .c-card-button-04__content {
    width: 100%;
    margin-top: 0;
  }
  .c-card-button-04__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .c-card-button-04__price {
    margin-top: 1rem;
  }
  .c-card-button-04__text {
    margin-top: 2rem;
  }
  .c-card-button-04__sub-text {
    margin-top: 1rem;
  }
  .c-card-button-04__button {
    margin-top: 2.5rem;
  }
}
.c-checkbox-img-wrap.--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.c-checkbox-img-wrap.--flex .c-checkbox-img {
  margin: 0;
}
.c-checkbox-img-wrap.--error .c-checkbox-img__label::after {
  border: 0.125rem solid var(--color-border-error);
}

.c-checkbox-img {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 15.75rem;
  padding: 2rem 1.25rem;
}
.c-checkbox-img:has(.c-checkbox-img__input:focus) {
  outline: 0.125rem solid var(--color-border-brand-blue);
}
.c-checkbox-img + .c-checkbox-img {
  margin-top: 1.5rem;
}
.c-checkbox-img__field {
  display: inline-flex;
  margin-top: 1.125rem;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.c-checkbox-img__input[type=checkbox] {
  display: block;
}
.c-checkbox-img__input:checked ~ .c-checkbox-img__mark {
  background: var(--color-bg-main);
}
.c-checkbox-img__input:checked ~ .c-checkbox-img__mark::after {
  opacity: 1;
}
.c-checkbox-img__input:checked ~ .c-checkbox-img__label::after {
  border-radius: 0.625rem;
  box-shadow: 0rem 0rem 0.25rem 0rem rgba(51, 51, 51, 0.15);
}
.c-checkbox-img__input[disabled] {
  color: var(--color-text-main-light);
  pointer-events: none;
}
.c-checkbox-img__input[disabled] ~ .c-checkbox-img__mark {
  border-color: var(--color-border-main-light);
}
.c-checkbox-img__input[disabled] ~ .c-checkbox-img__label::after {
  background-color: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main-light);
}
.c-checkbox-img__mark {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0.625rem 0 0.4375rem;
  margin-top: 0.8em;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 0.1875rem;
  transform: translateY(-42%);
}
.c-checkbox-img__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.375rem;
  height: 0.5625rem;
  margin-top: -0.125rem;
  content: "";
  border-right: 0.125rem solid var(--color-border-white);
  border-bottom: 0.125rem solid var(--color-border-white);
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.c-checkbox-img__img {
  display: block;
  text-align: center;
}
.c-checkbox-img__label {
  display: block;
}
.c-checkbox-img__label::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: var(--color-bg-main-xxx-light);
}
.c-checkbox-img__label-sub {
  display: block;
  margin-top: 0.125rem;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-checkbox-img {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 100%;
    padding: 1rem 1.25rem;
  }
  .c-checkbox-img__img {
    flex-shrink: 0;
    max-width: 23.73%;
  }
  .c-checkbox-img__mark {
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.375rem;
    margin-left: 0.1875rem;
    transform: translateY(-50%);
  }
  .c-checkbox-img__field {
    margin-top: 0;
    font-size: 0.875rem;
  }
  .c-checkbox-img__label-sub {
    font-size: 0.875rem;
  }
}
.c-checkbox {
  display: block;
}
.c-checkbox + .c-checkbox {
  margin-top: 1rem;
}
.c-checkbox[aria-disabled=true] {
  color: var(--color-text-main-light);
  pointer-events: none;
}
.c-checkbox[aria-disabled=true] .c-checkbox__mark {
  border-color: var(--color-border-main-light);
}
.c-checkbox__field {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-checkbox__field {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.c-checkbox__field:has(.c-checkbox__input:focus) {
  outline: 0.125rem solid var(--color-border-main);
}
.c-checkbox__input[type=checkbox] {
  display: block;
}
.c-checkbox__input:checked + .c-checkbox__mark {
  background: var(--color-bg-main);
}
.c-checkbox__input:checked + .c-checkbox__mark::after {
  opacity: 1;
}
.c-checkbox__input[disabled] {
  cursor: normal;
}
.c-checkbox__input[disabled] + .c-checkbox__mark {
  background-color: var(--color-bg-main-xxxxx-light);
  border-color: var(--color-border-main-xxx-light);
}
.c-checkbox__input[disabled] ~ .c-checkbox__label {
  color: var(--color-text-main-x-light);
}
.c-checkbox__mark {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0.4375rem;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 0.25rem;
  transform: translateY(-50%);
}
.c-checkbox__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.375rem;
  height: 0.5625rem;
  margin-top: -0.0625rem;
  content: "";
  border-right: 0.125rem solid var(--color-border-white);
  border-bottom: 0.125rem solid var(--color-border-white);
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .c-checkbox__mark {
    width: 1rem;
    height: 1rem;
  }
}

.c-checkbox-wrap.--error .c-checkbox__mark {
  border-color: var(--color-border-error);
}

.c-input {
  width: 100%;
}
.c-input.--long {
  max-width: 100%;
}
.c-input.--middle {
  max-width: 32.5rem;
}
.c-input.--short {
  max-width: 16.25rem;
}
.c-input.--x-short {
  max-width: 6.25rem;
}
.c-input.--error .c-input__field {
  border: 0.125rem solid var(--color-border-error);
}
.c-input__field {
  width: 100%;
  min-height: 3.75rem;
  padding: 1rem 1.5rem;
  line-height: 1.5;
  background: var(--color-bg-main-xxx-light);
}
.c-input__field::-moz-placeholder {
  color: var(--color-text-main-light);
}
.c-input__field::placeholder {
  color: var(--color-text-main-light);
}
.c-input__field:focus {
  border-radius: 0.625rem;
  outline: 0.125rem solid var(--color-border-brand-blue);
  box-shadow: 0 0 0.25rem 0 rgba(51, 51, 51, 0.15);
}
@media only screen and (max-width: 767px) {
  .c-input__field {
    padding: 1rem 1.25rem;
    line-height: 1.4;
  }
}

.c-form-label {
  display: flex;
  align-items: flex-end;
  font-family: var(--font-family-main);
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
.c-form-label__optional {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.5rem;
  margin-bottom: 0.375rem;
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-text-white);
  vertical-align: middle;
  background-color: var(--color-bg-main-light);
  border-radius: 0.25rem;
}
.c-form-label__optional.--required {
  background-color: var(--color-text-error);
}

@media only screen and (max-width: 767px) {
  .c-form-label {
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .c-form-label__optional {
    width: 2.5rem;
    height: 1.25rem;
    font-size: 0.75rem;
  }
}
.c-form-label-sm {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-font-main);
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-form-label-sm {
    font-size: 0.875rem;
  }
}

.c-form-sub-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 0.25rem;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 1280px) {
  .c-form-sub-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-form-sub-text {
    margin-top: 0.5rem;
  }
}

.c-form-error-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 0.25rem;
  margin-top: 0.5rem;
  color: var(--color-text-error);
}
@media only screen and (max-width: 1280px) {
  .c-form-error-text {
    font-size: 0.875rem;
  }
}

.c-form-layout {
  --width-label: 22rem;
  display: flex;
  gap: 1rem 3rem;
  align-items: flex-start;
}
.c-form-layout.--vertical {
  flex-direction: column;
  gap: 1.125rem 0;
}
.c-form-layout.--vertical .c-form-layout__label {
  width: 100%;
}
.c-form-layout.--vertical .c-form-layout__field {
  width: 100%;
}
.c-form-layout__label {
  width: var(--width-label);
  max-width: 100%;
}
@media only screen and (max-width: 1280px) {
  .c-form-layout__label {
    width: 100%;
  }
}
.c-form-layout__field {
  width: calc(100% - var(--width-label) - 3rem);
}
@media only screen and (max-width: 1280px) {
  .c-form-layout__field {
    width: 100%;
  }
}
.c-form-layout__flex {
  --gap: 1rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.c-form-layout__flex.--col-gap-sm {
  --gap: 1rem 1.875rem;
}

@media only screen and (max-width: 1280px) {
  .c-form-layout {
    flex-direction: column;
  }
}
.c-radio-01-wrap.--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 3.125rem;
  align-items: flex-start;
}
.c-radio-01-wrap.--flex .c-radio-01 {
  margin-top: 0;
}
.c-radio-01-wrap.--col-gap-xmd {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.c-radio-01-wrap.--col-gap-sm {
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}
.c-radio-01-wrap.--error .c-radio-01__label::after {
  border: 0.125rem solid var(--color-border-error);
}

.c-radio-01 {
  display: block;
  width: 100%;
}
.c-radio-01.--long {
  max-width: 100%;
}
.c-radio-01.--xmiddle {
  max-width: 32.5rem;
}
.c-radio-01.--middle {
  max-width: 28.75rem;
}
.c-radio-01.--short {
  max-width: 16.25rem;
}
.c-radio-01 + .c-radio-01 {
  margin-top: 1.5rem;
}
.c-radio-01[aria-disabled=true] {
  color: var(--color-text-main-light);
  pointer-events: none;
}
.c-radio-01[aria-disabled=true] .c-radio-01__mark {
  border-color: var(--color-border-main-light);
}
.c-radio-01[aria-disabled=true] .c-radio-01__label::after {
  background-color: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main-light);
}
.c-radio-01[aria-disabled=true] .c-radio-01__icon {
  opacity: 0.53;
}
.c-radio-01__field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem 1rem 3.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
  cursor: pointer;
}
.c-radio-01__field:has(.c-radio-01__input:focus) {
  outline: 0.125rem solid var(--color-bg-brand-blue);
}
.c-radio-01__input[type=radio] {
  display: block;
}
.c-radio-01__input:checked + .c-radio-01__mark::after {
  opacity: 1;
}
.c-radio-01__input:checked ~ .c-radio-01__label::after {
  border-radius: 0.625rem;
  box-shadow: 0rem 0rem 0.25rem 0rem rgba(51, 51, 51, 0.15);
}
.c-radio-01__label {
  display: block;
  width: 100%;
}
.c-radio-01__label::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: var(--color-bg-main-xxx-light);
  transition: var(--animation-normal);
}
.c-radio-01__mark {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid var(--color-border-main);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-radio-01__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--color-bg-main);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}
.c-radio-01__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 60px;
  aspect-ratio: 1/1;
  margin-left: 0.5rem;
}

@media only screen and (max-width: 767px) {
  .c-radio-01-wrap.--flex {
    row-gap: 1rem;
  }
  .c-radio-01__field {
    min-height: 3.75rem;
    padding: 1rem 1.25rem 1rem 3.25rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .c-radio-01__mark {
    width: 1rem;
    height: 1rem;
  }
  .c-radio-01__mark::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.c-radio-02-wrap.--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.125rem;
}
.c-radio-02-wrap.--flex .c-radio-02 {
  margin-top: 0;
}
.c-radio-02-wrap.--error .c-radio-02__img {
  clip-path: polygon(0.125rem 0.125rem, calc(100% - 0.125rem) 0.125rem, calc(100% - 0.125rem) 100%, 0.125rem 100%);
}
.c-radio-02-wrap.--error .c-radio-02__label::after {
  border: 0.125rem solid var(--color-border-error);
}

.c-radio-02 {
  display: block;
  width: 100%;
}
.c-radio-02.--middle {
  max-width: 28.75rem;
}
.c-radio-02 + .c-radio-02 {
  margin-top: 1.5rem;
}
.c-radio-02[aria-disabled=true] {
  color: var(--color-text-main-light);
  pointer-events: none;
}
.c-radio-02[aria-disabled=true] .c-radio-02 {
  background-color: var(--color-bg-white);
}
.c-radio-02[aria-disabled=true] .c-radio-02__mark {
  border-color: var(--color-border-main-light);
}
.c-radio-02[aria-disabled=true] .c-radio-02__label::after {
  z-index: unset;
  background-color: transparent;
  border: 0.125rem solid var(--color-border-main-light);
}
.c-radio-02[aria-disabled=true] .c-radio-02__icon {
  opacity: 0.53;
}
.c-radio-02__field {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  cursor: pointer;
}
.c-radio-02__input:checked ~ .c-radio-02__img {
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.c-radio-02__input:checked ~ .c-radio-02__mark.--square {
  background: var(--color-bg-main);
}
.c-radio-02__input:checked ~ .c-radio-02__mark::after {
  opacity: 1;
}
.c-radio-02__input:checked ~ .c-radio-02__label::after {
  border-radius: 0.625rem;
  box-shadow: 0rem 0rem 0.25rem 0rem rgba(51, 51, 51, 0.15);
}
.c-radio-02__img {
  display: block;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.c-radio-02__img img {
  width: 100%;
}
.c-radio-02__label {
  display: block;
  width: 100%;
  padding-bottom: 0.75rem;
  padding-left: 2.25rem;
  margin-top: 1rem;
  border-bottom: 0.0625rem solid #d9d9d9;
}
.c-radio-02__label::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: var(--color-bg-main-xxx-light);
  transition: var(--animation-normal);
}
.c-radio-02__label + * {
  clear: both;
}
.c-radio-02__mark {
  position: relative;
  display: block;
  float: left;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: calc(1rem + 0.75em);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-radio-02__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--color-bg-main);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}
.c-radio-02__mark.--square {
  border-radius: 0.1875rem;
}
.c-radio-02__mark.--square::after {
  width: 0.5rem;
  height: 0.8125rem;
  margin-top: -0.125rem;
  background: transparent;
  border-right: 0.125rem solid var(--color-border-white);
  border-bottom: 0.125rem solid var(--color-border-white);
  border-radius: 0;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.c-radio-02__list-dot {
  margin-top: 0.75rem;
}
.c-radio-02__list-dot.c-list-dot {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-radio-02__list-dot.c-list-dot {
    font-size: 0.875rem;
  }
}
.c-radio-02__price {
  display: block;
  margin-top: 0.75rem;
  font-weight: bold;
  text-align: right;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-radio-02__price {
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-radio-02__field {
    padding: 0 1.25rem 1rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .c-radio-02__mark {
    width: 1rem;
    height: 1rem;
    margin-left: 0.1875rem;
  }
  .c-radio-02__mark::after {
    width: 0.5rem;
    height: 0.5rem;
  }
  .c-radio-02__mark.--square::after {
    width: 0.375rem;
    height: 0.5625rem;
    margin-top: -0.0625rem;
  }
  .c-radio-02__img {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
  .c-radio-02__label {
    padding-left: 2rem;
  }
  .c-radio-02__list-dot {
    margin-top: 0.75rem;
  }
  .c-radio-02__list-dot .c-list-dot__item::before {
    width: 0.1875rem;
    height: 0.1875rem;
  }
}
.c-search {
  max-width: 72.5rem;
  margin-right: auto;
  margin-left: auto;
}
.c-search__layout {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.c-search__layout-textbox {
  flex-grow: 1;
}
.c-search__layout-button {
  flex-shrink: 0;
}
.c-search__input {
  display: block;
  width: 100%;
  min-height: 4.375rem;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: var(--color-bg-main-xxx-light);
}
.c-search__input::-moz-placeholder {
  color: var(--color-text-main-light);
}
.c-search__input::placeholder {
  color: var(--color-text-main-light);
}
.c-search__input:focus {
  outline: 0.125rem solid var(--color-text-brand-blue-dark);
}
.c-search__button {
  display: flex;
  flex-shrink: 0;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 3.75rem;
  padding: 0.875rem 1.5rem 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: var(--color-bg-white);
  border: 0.125rem solid currentcolor;
}
.c-search__button .com-icon {
  --icon-color: currentcolor;
  --icon-circle-size: 2rem;
  --icon-size: 1.625rem;
}

@media (hover: hover) {
  .c-search__button {
    transition: var(--animation-normal);
  }
  .c-search__button:hover, .c-search__button:focus {
    color: var(--color-text-brand-blue);
  }
}
@media only screen and (max-width: 767px) {
  .c-search__layout {
    position: relative;
    gap: 0;
  }
  .c-search__input {
    min-height: 3.75rem;
    padding: 1rem 4.375rem 1rem 1.5rem;
    font-size: 1rem;
  }
  .c-search__button {
    position: absolute;
    top: 0;
    right: 0.375rem;
    bottom: 0;
    gap: 0rem;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0;
    margin: auto;
    font-size: 0;
  }
  .c-search__button .com-icon {
    --icon-circle-size: 1.625rem;
    --icon-size: 100%;
  }
}
.c-select {
  width: 100%;
}
.c-select.--long {
  max-width: 100%;
}
.c-select.--middle {
  max-width: 32.5rem;
}
.c-select.--short {
  max-width: 16.25rem;
}
@media only screen and (max-width: 767px) {
  .c-select.--long {
    max-width: 20.9375rem;
  }
  .c-select.--middle {
    max-width: 20.9375rem;
  }
  .c-select.--short {
    max-width: 17rem;
  }
}
.c-select.--error .c-select__wrap {
  border: 0.125rem solid var(--color-border-error);
}
.c-select__wrap {
  position: relative;
  width: 100%;
}
.c-select__wrap .com-icon {
  --icon-size: 1.5rem;
  --icon-circle-size: 1.5rem;
  --icon-color: var(--color-bg-main);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  pointer-events: none;
  transform: translateY(-50%);
}
.c-select__field {
  width: 100%;
  min-height: 3.75rem;
  padding: 1rem 3.75rem 1rem 1.5rem;
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-font-main);
  background: var(--color-bg-main-xxx-light);
}
.c-select__field::-moz-placeholder {
  color: var(--color-text-main-light);
}
.c-select__field::placeholder {
  color: var(--color-text-main-light);
}
.c-select__field:focus {
  border-radius: 0.625rem;
  outline: 0.125rem solid var(--color-border-brand-blue);
  box-shadow: 0 0 0.25rem 0 rgba(51, 51, 51, 0.15);
}
@media only screen and (max-width: 767px) {
  .c-select__field {
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.c-select__field.is-open + .com-icon {
  transform: translateY(-50%) rotate(-180deg);
}
.c-select__sub-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 0.25rem;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 1280px) {
  .c-select__sub-text {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-select__sub-text {
    margin-top: 0.5rem;
  }
}
.c-select__error-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 0.25rem;
  color: var(--color-text-error);
}
@media only screen and (max-width: 1280px) {
  .c-select__error-text {
    font-size: 0.875rem;
  }
}

.c-heading-lv1-01 {
  font-family: var(--font-family-main);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-heading-lv1-01.--blue {
  color: var(--color-text-brand-blue);
}
.c-heading-lv1-01.--white {
  color: var(--color-text-white);
}

@media only screen and (max-width: 767px) {
  .c-heading-lv1-01 {
    font-size: 2.25rem;
    line-height: 1.4;
  }
}
.c-heading-lv1-02 {
  font-family: var(--font-family-main);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 42px */
  letter-spacing: 1.12px;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv1-02 {
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 33.6px */
    letter-spacing: 0.96px;
  }
}
.c-heading-lv2-01 {
  font-family: var(--font-family-main);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv2-01 {
    font-size: 1.6875rem;
    line-height: 1.4;
  }
}
.c-heading-lv2-02 {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv2-02 {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.4;
  }
}
.c-heading-lv3 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-heading-lv4 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv4 {
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
.c-heading-lv5 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv5 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.c-heading-lv6 {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv6 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.c-anchor-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  align-items: flex-start;
  padding: 2rem 5rem;
  background: var(--color-bg-main-xxx-light);
  border-radius: 0.375rem;
}

.c-anchor-row {
  display: flex;
  flex-flow: column wrap;
  gap: 1.5rem 0;
}

.c-anchor {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
.c-anchor .com-icon {
  --icon-color: currentcolor;
  --icon-circle-size: 1.5rem;
  flex-shrink: 0;
  transform: rotate(90deg);
  backface-visibility: hidden;
}

@media (hover: hover) {
  .c-anchor .com-icon {
    transition: var(--animation-normal);
  }
  .c-anchor:hover .com-icon {
    transform: rotate(90deg) translateX(0.5rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-anchor-col {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .c-anchor {
    font-size: 1.25rem;
  }
}
.c-textlink {
  align-items: center;
  padding-bottom: 0.1875rem;
  line-height: 1.6;
  color: var(--color-text-link);
  letter-spacing: 0.04em;
  border-bottom: 0.0625rem solid var(--color-border-main);
}
.c-textlink .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-color: currentcolor;
  flex-shrink: 0;
  margin-left: 0.5rem;
  vertical-align: text-bottom;
}
.c-textlink .com-icon.--blank {
  --icon-size: 1.25rem;
}
@media (hover: hover) {
  .c-textlink {
    transition: var(--animation-normal);
  }
  .c-textlink:hover {
    opacity: var(--opacity-main);
  }
  .c-textlink:focus {
    outline: 0.125rem solid var(--color-text-brand-blue);
  }
}

.c-list-dot {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-list-dot {
    font-size: 1.125rem;
  }
}
.c-list-dot__item {
  position: relative;
  padding-left: 1.5rem;
}
.c-list-dot__item::before {
  position: absolute;
  top: calc(0.8em - 0.125rem);
  left: 0.5rem;
  width: 0.3125rem;
  height: 0.3125rem;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
}
.c-list-dot__item + .c-list-dot__item {
  margin-top: 0.5rem;
}
.c-list-dot__item.--text-sm {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-list-dot__item.--text-sm {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-list-dot__item + .c-list-dot__item {
    margin-top: 0.25rem;
  }
}
.c-flow__box {
  border: 2px solid #f6f6f6;
}
@media only screen and (max-width: 767px) {
  .c-flow__box {
    clip-path: polygon(0 0, calc(100% - 3.125rem) 0, 100% 3.125rem, 100% 100%, 0 100%);
  }
}
.c-flow__head {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-flow__head {
    flex-direction: column;
  }
}
.c-flow__step {
  padding: 0.0625rem 3.3125rem 0.125rem 2.3125rem;
  clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 100%, 0 100%);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  background-color: var(--color-bg-main);
}
@media only screen and (max-width: 767px) {
  .c-flow__step {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.c-flow__title {
  position: relative;
  display: flex;
  align-items: center;
  width: 23.75rem;
  padding: 1.875rem 2.5rem;
  clip-path: polygon(0 0, calc(100% - 7.5rem) 0, 100% 100%, 0 100%);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-color: var(--color-bg-main-xxx-light);
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-flow__title {
    width: 18.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-flow__title {
    width: 100%;
    padding: 0.625rem 1.25rem;
    clip-path: polygon(0 0, calc(100% - 3.125rem) 0, 100% 100%, 0 100%);
    font-size: 1.25rem;
  }
}
.c-flow__content {
  width: calc(100% - 23.75rem);
  padding: 1.875rem 4rem 1.875rem 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-flow__content {
    width: calc(100% - 18.75rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-flow__content {
    width: 100%;
    padding: 1.5rem 1.25rem;
  }
}
.c-flow__time {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-brand-blue);
  letter-spacing: 0.04em;
}
.c-flow__time .com-icon {
  width: 1rem;
  margin-right: 0.5rem;
}
.c-flow__body {
  display: flex;
}
.c-flow__lines {
  position: relative;
  width: 23.75rem;
  padding: 0 2.75rem;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-flow__lines {
    width: 18.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-flow__lines {
    width: 4.5rem;
    padding: 0 0.25rem;
  }
}
.c-flow__lines::before {
  display: block;
  width: 0.375rem;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, #d9d9d9, #333);
}
@media only screen and (max-width: 767px) {
  .c-flow__lines::before {
    width: 0.125rem;
  }
}
.c-flow__lines::after {
  position: absolute;
  top: 50%;
  left: 2.875rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: var(--color-bg-black);
  border: 2px solid var(--color-border-white);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .c-flow__lines::after {
    left: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}
.c-flow__line {
  position: absolute;
  top: 50%;
  left: 4.25rem;
  width: calc(100% - 4.25rem);
  height: 0.125rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="310" height="2" viewBox="0 0 310 2" fill="none"><path d="M310 1L-2.74181e-06 1" stroke="%23D9D9D9" stroke-width="2" stroke-dasharray="4 4"/></svg>') repeat-x center center/100% 100%;
  background-size: cover;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-flow__line {
    left: 1.25rem;
    width: calc(100% - 2rem);
  }
}
.c-flow__texts {
  width: calc(100% - 23.75rem);
  padding: 1.875rem 4rem 1.875rem 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-flow__texts {
    width: calc(100% - 18.75rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-flow__texts {
    width: 100%;
    padding: 1.5rem 1.25rem 1.5rem 0;
  }
}
.c-flow__text {
  margin-top: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .c-flow__text {
    margin-top: 0.25rem;
  }
}

.c-step-wrap {
  display: flex;
  gap: 0 2.5rem;
  justify-content: center;
}

.c-step {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.c-step:not(:last-child) {
  padding-right: 3.75rem;
}
.c-step__count {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 1.875rem;
  padding: 0 1.375rem 0 0.375rem;
  clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 100%, 0 100%);
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  background: var(--color-bg-main-light);
}
.c-step__title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--color-text-main-light);
  letter-spacing: 0.04em;
}
.c-step__divide {
  position: absolute;
  top: 0.125rem;
  right: 0;
  bottom: 0.125rem;
  width: 1.25rem;
  clip-path: polygon(calc(100% - 0.125rem) 0, 100% 0, 0.125rem 100%, 0 100%);
  background: var(--color-bg-main-light);
}
.c-step.is-active .c-step__count {
  background: var(--color-bg-brand-blue);
}
.c-step.is-active .c-step__title {
  color: var(--color-text-brand-blue);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-step {
    flex-direction: column;
  }
  .c-step__title {
    justify-self: center;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-step {
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.625rem;
  }
  .c-step-wrap {
    gap: 0.875rem;
  }
  .c-step:not(:last-child) {
    padding-right: 1.75rem;
  }
  .c-step__divide {
    top: 0;
    bottom: 0;
    width: 0.5rem;
  }
  .c-step__count {
    min-width: 5.25rem;
    min-height: 1.75rem;
    padding: 0 1.625rem 0 0.25rem;
    font-size: 0.875rem;
    word-spacing: -0.3em;
  }
  .c-step__title {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.c-text-xxsm {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-text-xxsm {
    font-size: 0.875rem;
  }
}

.c-text-sm {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-text-sm {
    font-size: 1rem;
  }
}

.c-text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-text {
    font-size: 1.125rem;
  }
}

/* project */
.p-bodycopy {
  position: relative;
  padding: 10rem 0 11.0625rem;
  margin-top: 18.75rem;
  margin-bottom: 18.75rem;
  font-family: "Noto Sans JP";
  color: var(--color-text-white);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy {
    padding: 5.625rem 0 5rem;
  }
}
.p-bodycopy::after {
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem));
  content: "";
  background: url("/business/theme/images/com-bg-service-title.jpg") no-repeat center center/cover;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy::after {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem));
  }
}
@media only screen and (max-width: 767px) {
  .p-bodycopy {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}
.p-bodycopy__1 {
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy__1 {
    font-size: 1.375rem;
  }
}
.p-bodycopy__2 {
  margin-top: 2.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy__2 {
    font-size: 2.25rem;
  }
}
.p-bodycopy__3 {
  margin-top: 1rem;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy__3 {
    font-size: 2.5rem;
  }
}
.p-bodycopy__indent {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.p-bodycopy__small {
  font-size: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .p-bodycopy__small {
    font-size: 2.25rem;
  }
}

.p-breadline {
  min-height: 2.5rem;
  padding: 0.4375rem 0;
  background: var(--color-bg-main-xxx-light);
}
.p-breadline__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-text-black);
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .p-breadline__list a {
    transition: 0.3s opacity;
  }
  .p-breadline__list a:hover {
    opacity: 0.7;
  }
}
.p-breadline__item {
  display: inline-flex;
  align-items: center;
}
.p-breadline__divider {
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  margin-left: 1.25rem;
  background-color: var(--color-bg-black);
}

@media only screen and (max-width: 767px) {
  .p-breadline {
    display: none;
  }
}
.p-cta {
  padding: 7.5rem 1.25rem 7.8125rem;
  margin-top: 10rem;
  background-color: var(--color-bg-brand-blue);
}
.p-cta__inner {
  max-width: 92.5rem;
  margin-right: auto;
  margin-left: auto;
}
.p-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}
.p-cta__col {
  padding: 4rem 2.5rem;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
}
.p-cta__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 6.25rem;
  height: 1.875rem;
  padding-right: 1rem;
  margin-top: -1.5rem;
  clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 100%, 0 100%);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-brand-blue);
  letter-spacing: 0.04em;
  background-color: var(--color-bg-brand-blue-light);
}
.p-cta__sub-title {
  margin-top: -0.4375rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-cta__tel-box {
  display: table;
  margin: 0 auto;
  margin-top: 4rem;
}
.p-cta__tel-box .p-cta__tel-link {
  margin-top: -0.5rem;
}
.p-cta__tel-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-text-brand-blue);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px), print {
  .p-cta__tel-link {
    pointer-events: none;
  }
}
.p-cta__sub-text {
  max-width: 35rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-cta__buttons {
  margin-top: 1.5rem;
}
.p-cta__buttons-01 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media only screen and (max-width: 1280px) {
  .p-cta {
    padding: 5rem 1.125rem;
  }
  .p-cta__col {
    padding: 2rem 1.25rem;
  }
  .p-cta__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .p-cta__tel-box {
    text-align: center;
  }
  .p-cta__tel-box .p-cta__tel-link {
    margin-top: 0.5rem;
  }
  .p-cta__tel-link {
    font-size: 2.125rem;
    line-height: 1;
  }
  .p-cta__sub-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
  .p-cta__buttons-01 {
    gap: 1rem;
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-cta {
    padding: 4rem 1.25rem 5rem;
    margin-top: 5rem;
  }
  .p-cta__tel-link {
    border-bottom: 0.125rem solid currentcolor;
  }
  .p-cta__grid {
    margin-top: 3rem;
  }
  .p-cta__col {
    padding: 1rem 1.25rem 1.875rem;
  }
  .p-cta__col:nth-child(2) {
    padding-right: 1.125rem;
    padding-left: 1.125rem;
  }
  .p-cta__tag {
    width: 5rem;
    margin-top: 0;
    margin-left: -0.75rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .p-cta__sub-title {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
  .p-cta__sub-text {
    margin-top: 1.25rem;
  }
  .p-cta__tel-box {
    margin-top: 1rem;
  }
}
.p-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
  margin-top: 6.875rem;
}
.p-feature__list-item {
  position: relative;
  padding: 3.875rem 2.5rem;
  border: 0.125rem solid var(--color-border-main);
}
.p-feature__list-img {
  text-align: center;
}
.p-feature__list-tag {
  position: absolute;
  top: 0;
  left: -0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 2rem;
  padding: 0 1.25rem 0 0.3125rem;
  clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 100%, 0 100%);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  background-color: var(--color-bg-main);
  transform: translateY(-100%);
}
.p-feature__list-title {
  margin-top: 1.875rem;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-feature__list-text {
  margin-top: 1.625rem;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 1280px) {
  .p-feature__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-feature__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.375rem;
    margin-top: 4.75rem;
  }
  .p-feature__list-tag {
    width: 9.375rem;
    padding-left: 0.25rem;
    font-size: 1rem;
  }
  .p-feature__list-item {
    padding: 2.375rem 1.25rem 1.875rem;
  }
  .p-feature__list-title {
    margin-top: 1.5rem;
    font-size: 1.375rem;
  }
  .p-feature__list-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}
.p-box {
  padding: 2rem 2.5rem;
  background-color: #ededed;
  border-radius: 10px;
}
.p-box.--bg-blue {
  background-color: #edf6f9;
}
.p-box__title {
  font-size: 1rem;
  font-weight: bold;
}
.p-box__text {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
.p-grid.--repeat-2 {
  grid-template-columns: repeat(2, 1fr);
}
.p-grid.--repeat-3 {
  grid-template-columns: repeat(3, 1fr);
}
.p-grid__texts {
  margin-top: 1rem;
}

.p-table__th {
  padding: 0.75rem 1rem;
  font-weight: bold;
  vertical-align: middle;
  background-color: #ededed;
  border: 0.0625rem solid #ccc;
}
.p-table__td {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #ccc;
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-table__th {
    padding: 0.5rem 0.75rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-table__td {
    padding: 0.5rem 0.75rem;
  }
}
.p-mainvisual {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.p-mainvisual .swiper-slide {
  height: calc(100vh - 7.5rem);
  overflow: hidden;
}
.p-mainvisual .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .p-mainvisual__swiper .swiper-slide {
    max-height: 37.5rem;
  }
}
.p-news__item {
  border-top: 0.0625rem solid var(--color-border-light);
}
.p-news__item:last-child {
  border-bottom: 0.0625rem solid var(--color-border-light);
}
.p-news__link {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg) 0;
}
@media (hover: hover) {
  .p-news__link {
    transition: var(--animation-normal) opacity;
  }
  .p-news__link:hover {
    opacity: var(--opacity-main);
  }
}
.p-news__link-day {
  display: inline-block;
  margin-right: var(--spacing-lg);
  font-size: var(--font-size-sm);
  white-space: nowrap;
}
.p-news__link-cat {
  display: inline-block;
  margin-right: var(--spacing-xlg);
  font-size: var(--font-size-sm);
  white-space: nowrap;
}
.p-news__link-title {
  overflow: hidden;
  font-size: var(--font-size-md);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-news__link-new {
  margin-right: var(--spacing-xsm);
  font-size: var(--font-size-xsm);
  white-space: nowrap;
}
.p-news__button {
  margin-top: 3.75rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-news__link {
    flex-wrap: wrap;
  }
  .p-news__link-day {
    margin-right: var(--spacing-sm);
  }
  .p-news__link-cat {
    margin-right: var(--spacing-sm);
  }
  .p-news__link-title {
    width: 100%;
  }
  .p-news__button {
    text-align: center;
  }
}
.p-pagetitle {
  position: relative;
  height: 18.75rem;
}
.p-pagetitle__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-main);
}
.p-pagetitle__title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  min-width: 20rem;
  padding: var(--spacing-lg) var(--spacing-xlg);
  font-size: 2.25rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
}

@media only screen and (max-width: 767px) {
  .p-pagetitle {
    height: 13.75rem;
  }
  .p-pagetitle__title {
    min-width: 18.75rem;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-xxxxlg);
  }
}
.p-pagination {
  margin-top: 2.5rem;
  text-align: center;
}
.p-pagination__list {
  display: inline-flex;
  gap: var(--spacing-sm);
}
.p-pagination__item span,
.p-pagination__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  border: 0.0625rem solid var(--color-border-light);
  border-radius: 50%;
}
@media (hover: hover) {
  .p-pagination__item a {
    transition: var(--animation-normal) all;
  }
  .p-pagination__item a:hover {
    color: var(--color-text-white);
    background-color: var(--color-bg-main);
  }
}
.p-pagination__item span {
  color: var(--color-text-white);
  background-color: var(--color-bg-main);
}

.p-prevention {
  max-width: 112.5rem;
  padding: 7.5rem 1rem;
  margin: 10rem auto 0;
  background-color: var(--color-bg-main-xxx-light);
}
.p-prevention__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-prevention__col-small {
  padding-right: 5rem;
}
.p-prevention__text {
  margin-top: 3rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.p-prevention__content-box {
  padding: 1.5rem 2.5rem;
  margin-top: 2.8125rem;
  background-color: var(--color-bg-white);
}
.p-prevention__content-box-title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-prevention__content-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.625rem;
  margin-top: 1rem;
}
.p-prevention__content-box-item {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  width: calc(50% - 0.8125rem);
}
@media only screen and (max-width: 1280px) {
  .p-prevention__content-box-item {
    font-size: 1rem;
  }
}
.p-prevention__content-box-item::before {
  content: "・";
}
.p-prevention__content-button {
  margin-top: 4rem;
}
.p-prevention__content-button .c-button-01 {
  background-color: transparent;
}

@media only screen and (max-width: 1280px) {
  .p-prevention__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
  .p-prevention__content .c-heading-lv1-01 {
    text-align: center;
  }
  .p-prevention__col-small {
    padding-right: 0;
  }
  .p-prevention__col picture img {
    width: 100%;
  }
  .p-prevention__img {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-prevention {
    padding: 5rem 0;
    margin-top: 5rem;
  }
  .p-prevention__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-prevention__col-small {
    padding-right: 0;
  }
  .p-prevention__img {
    margin-top: 3rem;
  }
  .p-prevention__content-box {
    padding: 2rem 1.25rem;
  }
  .p-prevention__content-box-title {
    font-size: 1.375rem;
  }
  .p-prevention__content-box-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .p-prevention__content-box-item {
    width: 100%;
    font-size: 1.125rem;
  }
  .p-prevention__content-button {
    margin-top: 2.5rem;
  }
  .p-prevention__text {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
.p-section-title-h1 {
  margin-bottom: 3.75rem;
  text-align: center;
}

.p-section-title-h2 {
  margin-bottom: 3.75rem;
  text-align: center;
}

.p-section-title-h3 {
  margin-bottom: 3.75rem;
  text-align: center;
}

/* pages */
/* utility */