@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&family=Noto+Serif+JP:wght@500;600&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);
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0;
  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 */
/* animation */
/* --------------------------------------------------
	2. Layout
-------------------------------------------------- */
/* header */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  padding-right: var(--spacing-lg);
  background-color: var(--color-bg-white);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--content-width-wide) + 2 * var(--spacing-lg));
  padding: 1.4375rem var(--spacing-lg) 1.5rem;
  margin: 0 auto;
}
.l-header__nav-sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.l-header__nav-sub-list {
  display: flex;
  align-items: center;
  margin-right: -1.25rem;
}
.l-header__nav-sub-item {
  position: relative;
  padding: 0 1.5rem;
  font-size: 0;
}
.l-header__nav-sub-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.125rem;
  height: 1.25rem;
  content: "";
  background: var(--color-bg-main);
  transform: translate(-50%, -50%);
}
.l-header__nav-sub-link {
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  font-weight: bold;
  color: var(--color-text-main);
}
@media (hover: hover) {
  .l-header__nav-sub-link {
    transition: 0.3s opacity;
  }
  .l-header__nav-sub-link:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .l-header__nav-sub-link .com-icon {
    transition: var(--animation-normal);
  }
  .l-header__nav-sub-link:hover .com-icon {
    transform: translateX(0.25rem);
  }
}
@media only screen and (max-width: 1600px) {
  .l-header__nav-sub-link {
    font-size: 0.875rem;
  }
}
.l-header__nav-sub-link .com-icon {
  margin-left: 0.375rem;
}
.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: 35rem;
  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);
  border-radius: 50%;
}
.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: 16.25rem;
  max-width: 100%;
  min-height: 3.125rem;
  padding: 0.25rem 1.25rem;
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  border-radius: var(--border-radius-r);
}
.l-header__button-01 .com-icon {
  margin: 0 0.1875rem;
  --icon-color: var(--color-bg-white);
  --icon-circle-size: 2rem;
}
.l-header__button-01 .com-icon.--arrow {
  --icon-circle-size: 1.25rem;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  display: none;
  margin: auto;
}
.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 .com-icon {
    --icon-color: var(--color-bg-brand-blue);
  }
}
.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__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;
}

@media all and (min-width: 1281px), print {
  .l-header__menu-button {
    display: none;
  }
  .l-header__nav {
    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 {
    margin-left: 0;
  }
  .l-header__logo img {
    width: auto;
    height: 2.5rem;
  }
  .l-header__button-01 {
    position: relative;
    width: 25rem;
    min-height: 3.75rem;
    padding: 0.25rem 1.875rem;
    margin-left: 0;
    font-size: 1.125rem;
  }
  .l-header__button-01 .com-icon {
    --icon-circle-size: 1.875rem;
  }
  .l-header__button-01 .com-icon.--arrow {
    display: inline-block;
    --icon-circle-size: 1.5rem;
  }
  .l-header__navs {
    position: fixed;
    top: 4.625rem;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.25rem 1.25rem 14.625rem;
    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 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.375rem 0.375rem 0.375rem 1.5rem;
    background-color: var(--color-bg-main-xxx-light);
    border-radius: var(--border-radius-r);
    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__nav-sub {
    justify-content: center;
  }
  .l-header__nav-sub-buttons {
    display: flex;
    flex-direction: column;
    width: 25rem;
    max-width: 100%;
  }
  .l-header__nav {
    margin-top: 1.375rem;
  }
  .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__nav .com-icon.--toggle {
    --icon-circle-size: 2.25rem;
    --icon-size: 0.9375rem;
  }
  .l-header__nav-lv1-item {
    padding: 1.25rem 0;
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .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 {
    display: block;
  }
  .l-header__nav-lv1 + .l-header__nav-lv1 .l-header__nav-lv1-item:first-child {
    border-top: none;
  }
  .l-header__nav-lv1-icon {
    top: 1.375rem;
    right: 0;
  }
  .l-header__nav-lv1-icon.com-icon.--toggle {
    position: absolute;
    right: 0.125rem;
  }
  .l-header__nav-lv1-link {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .l-header__nav-lv1-link i {
    flex-shrink: 0;
  }
  .l-header__nav-lv2 {
    display: none;
    padding: 0;
    margin-top: 1.25rem;
    background: var(--color-border-main-xxx-light);
  }
  .l-header__nav-lv2-item {
    padding: 1.375rem 0 1.0625rem;
    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: 0.25rem 0.5rem 0.25rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .l-header__nav-lv2-link i {
    flex-shrink: 0;
  }
  .l-header__button {
    margin-top: 1.5rem;
  }
}
/* footer */
.l-footer {
  position: relative;
  padding: 3.5rem 0 0;
  margin-top: 9.5rem;
  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);
  --icon-circle-size: 1.5rem;
}
@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-size: 1.25rem;
  font-weight: bold;
  line-height: 1.58;
  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;
}
.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.375rem;
  font-weight: bold;
}
@media (hover: hover) {
  .l-footer__nav-lv1-link {
    transition: 0.3s opacity;
  }
  .l-footer__nav-lv1-link:hover {
    opacity: 0.7;
  }
}
.l-footer__nav-lv2 {
  padding: 0.75rem 0 0;
}
.l-footer__nav-lv2-item {
  padding: 0.25rem 0;
}
.l-footer__nav-lv2-link {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.l-footer__nav-lv2-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.75rem;
  height: 0.125rem;
  content: "";
  background: var(--color-bg-main);
  transform: translateY(-50%);
}
@media (hover: hover) {
  .l-footer__nav-lv2-link {
    transition: 0.3s opacity;
  }
  .l-footer__nav-lv2-link:hover {
    opacity: 0.7;
  }
}
.l-footer__bg {
  padding: 2.25rem 0 2.5rem;
  margin-top: 2.125rem;
  background: var(--color-bg-main);
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  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;
  background: var(--color-bg-brand-blue);
  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;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
}
.l-footer__fixed-button-item .com-icon.--mail {
  --icon-circle-size: 1.875rem;
  margin-right: 1rem;
  margin-left: 0.25rem;
}
.l-footer__fixed-button-item .com-icon.--arrow {
  --icon-circle-size: 1.5rem;
  margin-left: 1.125rem;
}

@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-lv1-grid {
    padding-top: 2rem;
  }
  .l-footer__nav-lv1-grid.--column3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 7.5rem;
  }
  .l-footer__nav-lv1-item {
    width: 100%;
  }
  .l-footer__nav-lv1.--row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    margin-top: 4.0625rem;
  }
  .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.25rem;
  }
  .l-footer__nav-lv1.--row .l-footer__nav-lv1-link .com-icon {
    right: 0;
    display: inline-block;
    margin-left: 0.5625rem;
    transition: var(--animation-normal);
  }
}
@media (min-width: 1281px) and (hover: hover), print and (hover: hover) {
  .l-footer__nav-lv1.--row .l-footer__nav-lv1-link:hover {
    opacity: 1;
  }
  .l-footer__nav-lv1.--row .l-footer__nav-lv1-link:hover .com-icon {
    right: -0.5rem;
  }
}
@media all and (min-width: 1281px), print {
  .l-footer__nav-lv1.--grid .l-footer__nav-lv1-item {
    padding: 0.75rem 0;
    border-bottom: none;
  }
  .l-footer__nav-lv1.--grid .l-footer__nav-lv1-link {
    position: relative;
    padding-right: 2.1875rem;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    --icon-pos: 0rem;
  }
  .l-footer__nav-lv1.--grid .l-footer__nav-lv1-link .com-icon {
    position: absolute;
    top: 50%;
    right: var(--icon-pos);
    display: inline-block;
    transition: var(--animation-normal);
    transform: translateY(-50%);
  }
}
@media (min-width: 1281px) and (hover: hover), print and (hover: hover) {
  .l-footer__nav-lv1.--grid .l-footer__nav-lv1-link:hover {
    opacity: 1;
  }
  .l-footer__nav-lv1.--grid .l-footer__nav-lv1-link:hover .com-icon {
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
@media all and (min-width: 1281px), print {
  .l-footer__nav-lv2 {
    display: block !important;
  }
  .l-footer__fixed {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .l-footer {
    padding: 5rem 0 0;
    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 {
    border-top: 0.0625rem solid var(--color-border-main-xxx-light);
  }
  .l-footer__nav-wrap .com-icon.--toggle {
    --icon-circle-size: 2.25rem;
    --icon-size: 0.9375rem;
  }
  .l-footer__nav-lv1-item {
    padding: 1.25rem 0;
    overflow: hidden;
  }
  .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-item.--has-sub > .l-footer__nav-lv1-link .com-icon {
    display: none;
  }
  .l-footer__nav-lv1-icon {
    top: 1.375rem;
    right: 0;
  }
  .l-footer__nav-lv1-icon.com-icon.--toggle {
    position: absolute;
    right: 0.125rem;
    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.125rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .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;
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--color-bg-white);
  }
  .l-footer__nav-lv2-item:last-child {
    border-bottom: 0;
  }
  .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: 0.5rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .l-footer__nav-lv2-link::before {
    content: none;
  }
  .l-footer__nav-lv2-link i {
    flex-shrink: 0;
  }
  .l-footer__bg {
    padding-bottom: 6.875rem;
    margin-top: 5rem;
  }
  .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.4;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 7rem;
  }
}
/* 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 !important;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-xlg {
    margin-top: 7.5rem !important;
  }
}
.l-template .l-template-space-lg {
  margin-top: 7.5rem !important;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-lg {
    margin-top: 5.625rem !important;
  }
}
.l-template .l-template-space-md {
  margin-top: 5rem !important;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-md {
    margin-top: 3.75rem !important;
  }
}
.l-template .l-template-space-sm {
  margin-top: 2.5rem !important;
}
@media only screen and (max-width: 767px) {
  .l-template .l-template-space-sm {
    margin-top: 1.875rem !important;
  }
}
.l-template .l-template-space-xsm {
  margin-top: 1.5rem !important;
}
.l-template .l-template-space-xxsm {
  margin-top: 1rem !important;
}
.l-template .l-template-space-xxxsm {
  margin-top: 0.5rem !important;
}
.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 */
@media only screen and (max-width: 767px) {
  .c-scroll-box-sp img {
    max-width: none;
  }
}
.simplebar-horizontal {
  display: none;
}

.simplebar-content-wrapper {
  overflow: scroll !important;
}

.simplebar-track.simplebar-horizontal {
  position: relative;
  height: 1.25rem;
  margin-top: 1rem;
  background: var(--color-bg-white);
  border: 0.0625rem solid var(--color-bg-main);
  border-radius: 0.625rem;
}

.simplebar-scrollbar::before {
  inset: 0.3125rem;
  background: var(--color-bg-main);
  border-radius: 0.625rem;
  opacity: 1 !important;
}

.simplebar-scrollable-x .simplebar-horizontal {
  display: block;
}

.c-accordion-qa {
  min-height: 7.625rem;
  overflow: hidden;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 3.75rem;
}
.c-accordion-qa + .c-accordion-qa {
  margin-top: 1.5rem;
}
.c-accordion-qa__head {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 7.625rem;
  padding: 1.5rem 3.75rem;
  font-family: var(--font-family-main);
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .c-accordion-qa__head {
    font-size: 1.125rem;
  }
}
.c-accordion-qa__head .com-icon {
  --icon-circle-size: 2.5rem;
  --icon-size: 1.5625rem;
  --icon-color: var(--color-bg-main);
  flex-shrink: 0;
  margin-left: 3.75rem;
}
.c-accordion-qa__content {
  --max-height: 0;
  max-height: var(--max-height);
  overflow: hidden;
  background-color: var(--color-bg-main-xxxxx-light);
  transition: max-height var(--animation-normal);
}
.c-accordion-qa__content-inner {
  max-width: 74.375rem;
  padding: 2.5rem 3rem;
  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__content-inner {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-accordion-qa {
    font-size: 0.9375rem;
  }
  .c-accordion-qa__head {
    padding: 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }
  .c-accordion-qa__head .com-icon {
    --icon-circle-size: 1.75rem;
    --icon-size: 0.75rem;
    margin-left: 0.625rem;
  }
  .c-accordion-qa__content-inner {
    padding: 1.25rem 1rem;
  }
}
.c-accordion-qa__head {
  position: relative;
  padding-left: 8.625rem;
}
.c-accordion-qa__head::before {
  position: absolute;
  top: 50%;
  left: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.375rem;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text-white);
  content: "Q";
  background-color: var(--color-bg-brand-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-accordion-qa__content-inner {
  position: relative;
  padding-left: 8.625rem;
}
.c-accordion-qa__content-inner::before {
  position: absolute;
  top: 50%;
  left: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.375rem;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text-white);
  content: "A";
  background-color: var(--color-bg-main);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .c-accordion-qa {
    border-radius: 1.25rem;
  }
  .c-accordion-qa__head {
    padding-left: 3.375rem;
  }
  .c-accordion-qa__head::before {
    left: 1rem;
    width: 1.875rem;
    height: 1.875rem;
    padding-bottom: 0.125rem;
    font-size: 0.875rem;
  }
  .c-accordion-qa__content-inner {
    padding-left: 3.375rem;
  }
  .c-accordion-qa__content-inner::before {
    left: 1rem;
    width: 1.875rem;
    height: 1.875rem;
    padding-bottom: 0.125rem;
    font-size: 0.875rem;
  }
}

.c-accordion {
  min-height: 7.625rem;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.5;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 3.75rem;
}
.c-accordion + .c-accordion {
  margin-top: 1.5rem;
}
.c-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 7.625rem;
  padding: 1.5rem 3rem;
  font-family: var(--font-family-main);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.c-accordion__head .com-icon {
  --icon-circle-size: 2.5rem;
  --icon-size: 1.5625rem;
  --icon-color: var(--color-bg-main);
  flex-shrink: 0;
  margin-left: 3.75rem;
}
.c-accordion__content {
  --max-height: 0;
  max-height: var(--max-height);
  overflow: hidden;
  border-top: 0.0625rem solid var(--color-border-main-light);
  transition: max-height var(--animation-normal);
}
.c-accordion__content-inner {
  max-width: 74.375rem;
  padding: 2.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-accordion__content-inner {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-accordion {
    min-height: 6rem;
    border-radius: 1.25rem;
  }
  .c-accordion__head {
    min-height: 6rem;
    padding: 1.25rem 1rem;
    font-size: 1.6875rem;
  }
  .c-accordion__head .com-icon {
    --icon-circle-size: 1.75rem;
    --icon-size: 0.75rem;
    margin-left: 0.625rem;
  }
  .c-accordion__content-inner {
    padding: 1.25rem 1.5rem;
  }
}

.c-box {
  --color-box-bg: var(--color-bg-main-xxx-light);
  padding: 4rem 5rem;
  background: var(--color-box-bg);
}
.c-box__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
@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-white {
  --color-box-bg: var(--color-bg-white);
}
@media only screen and (max-width: 767px) {
  .c-box {
    padding: 2rem 1.25rem;
  }
  .c-box__title {
    margin-bottom: 1rem;
  }
}

.c-button-01 {
  --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: 24.375rem;
  max-width: 100%;
  min-height: 4.375rem;
  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);
  border-radius: var(--border-radius-r);
}
.c-button-01.--white {
  --color-text: var(--color-text-main);
  --color-bg: transparent;
  --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;
}
.c-button-01 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-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 {
    right: calc(var(--icon-pos) - 0.5rem);
    --icon-color: var(--color-bg-icon-hover);
  }
}
.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);
  pointer-events: none;
}
.c-button-01[disabled] .com-icon, .c-button-01[aria-disabled=true] .com-icon {
  --icon-color: var(--color-bg-main-light);
}
@media only screen and (max-width: 767px) {
  .c-button-01 {
    width: 20.9375rem;
    min-height: 3.75rem;
    font-size: 1.125rem;
    line-height: 1.4;
    --icon-pos: 1.375rem;
  }
}

.c-button-02 {
  position: relative;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-family-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .c-button-02 {
    transition: var(--animation-normal) all;
  }
  .c-button-02:hover {
    color: var(--color-text-brand-blue);
  }
  .c-button-02:hover .com-icon {
    --icon-color: var(--color-bg-brand-blue);
  }
}
.c-button-02[disabled], .c-button-02[aria-disabled=true] {
  color: var(--color-text-main-light);
  pointer-events: none;
}
.c-button-02[disabled] .com-icon, .c-button-02[aria-disabled=true] .com-icon {
  --icon-color: var(--color-bg-main-light);
}
@media only screen and (max-width: 767px) {
  .c-button-02 {
    font-size: 1.125rem;
  }
}

.c-button-03 {
  --color-text: var(--color-text-main);
  --color-bg: transparent;
  --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: 28.75rem;
  max-width: 100%;
  min-height: 4.375rem;
  padding: 0.625rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.375rem;
  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);
  border-radius: var(--border-radius-r);
}
.c-button-03 .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-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 {
    --color-text: var(--color-text-hover);
    --color-bg: var(--color-bg-hover);
    --color-border: var(--color-border-hover);
  }
  .c-button-03:hover .com-icon {
    right: calc(var(--icon-pos) - 0.5rem);
    --icon-color: var(--color-bg-icon-hover);
  }
}
.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);
  pointer-events: none;
}
.c-button-03[disabled] .com-icon, .c-button-03[aria-disabled=true] .com-icon {
  --icon-color: var(--color-bg-main-light);
}
@media only screen and (max-width: 767px) {
  .c-button-03 {
    width: 20.9375rem;
    min-height: 3.75rem;
    font-size: 1.125rem;
    line-height: 1.34;
    --icon-pos: 1.375rem;
  }
}

.c-card-01-wrap.--column2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
.c-card-01-wrap.--column3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.625rem 3.125rem;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-01-wrap.--column3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .c-card-01-wrap.--column2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .c-card-01-wrap.--column3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.c-card-01__img {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.375rem;
}
.c-card-01__img img {
  width: 100%;
}
.c-card-01__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  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__img {
    margin-bottom: 1rem;
  }
  .c-card-01__title {
    font-size: 1.25rem;
  }
  .c-card-01__text {
    margin-top: 0.75rem;
  }
}
.c-card-button-01-wrap .c-card-button-01:first-child {
  border-top: 0.0625rem solid var(--color-border-main-xxx-light);
}

.c-card-button-01 {
  display: block;
  padding: 2rem 5rem;
  border-bottom: 0.0625rem solid var(--color-border-main-xxx-light);
}
@media (hover: hover) {
  .c-card-button-01 {
    transition: 0.3s opacity;
  }
  .c-card-button-01:hover {
    opacity: 0.7;
  }
}
.c-card-button-01__title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-card-button-01__text {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-card-button-01__text {
    font-size: 0.875rem;
  }
}
.c-card-button-01__textlink {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-text-main-light);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
@media only screen and (max-width: 1280px) {
  .c-card-button-01__textlink {
    font-size: 1rem;
  }
}
.c-card-button-01__textlink .com-icon {
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .c-card-button-01 {
    padding: 2rem 0.5rem;
  }
  .c-card-button-01__title {
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .c-card-button-01__text {
    margin-top: 0.75rem;
  }
}
.c-card-button-wrap.--column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.125rem;
}
.c-card-button-wrap.--column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.125rem;
}

.c-card-button {
  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);
  border-radius: 0.375rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.3);
}
@media (hover: hover) {
  .c-card-button .c-card-button__img img {
    transition: var(--animation-normal);
  }
  .c-card-button:hover .c-card-button__img img {
    transform: scale(1.05);
  }
  .c-card-button:hover .com-icon {
    right: calc(var(--icon-pos) - 0.5rem);
  }
}
.c-card-button__img {
  flex: 1 0 auto;
  overflow: hidden;
}
.c-card-button__img img {
  width: 100%;
}
.c-card-button__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__button .com-icon {
  --icon-pos: 1.5rem;
  --icon-circle-size: 1.5rem;
  --icon-size: 1.5rem;
  position: absolute;
  right: var(--icon-pos);
  transition: var(--animation-normal);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-card-button-wrap.--column3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card-button-wrap.--column3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .c-card-button-wrap.--column2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .c-card-button {
    box-shadow: 0 0 0.625rem 0 rgba(51, 51, 51, 0.15);
  }
  .c-card-button__button {
    min-height: 3.75rem;
    padding: 0.75rem 3.125rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .c-card-button__button .com-icon {
    --icon-pos: 1.5rem;
  }
}
.c-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .c-card {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.c-card + .c-card {
  margin-top: 3.5rem;
}
.c-card.--reserve {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .c-card.--reserve {
    flex-direction: column-reverse;
  }
}
.c-card.--reserve .c-card__img {
  margin-right: 0;
  margin-left: calc(50% - 50vw);
  border-radius: 0 2.5rem 2.5rem 0;
}
@media only screen and (max-width: 767px) {
  .c-card.--reserve .c-card__img {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
.c-card__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media only screen and (max-width: 767px) {
  .c-card__img {
    width: calc(100vw - 1.25rem);
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
.c-card__content {
  width: calc(50% - 4.75rem);
}
@media only screen and (max-width: 767px) {
  .c-card__content {
    width: 100%;
  }
}
.c-card__title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-card__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 1280px) {
  .c-card__text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-card__text {
    margin-top: 0.5rem;
  }
}
.c-card__button {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .c-card__button {
    margin-top: 1rem;
  }
}

.c-sdgs-card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(29rem, 29rem));
  gap: 2.5rem;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-sdgs-card-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.c-sdgs-card {
  display: inline-block;
  padding: 2.5rem 2.5rem 1.5rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  .c-sdgs-card {
    padding: 0.875rem 0.9375rem 0.75rem;
  }
}
@media (hover: hover) {
  .c-sdgs-card .c-sdgs-card__img img {
    transition: var(--animation-normal);
  }
  .c-sdgs-card .c-sdgs-card__title .com-icon {
    transition: var(--animation-normal);
  }
  .c-sdgs-card:hover .c-sdgs-card__img img {
    transform: scale(1.1);
  }
  .c-sdgs-card:hover .c-sdgs-card__title .com-icon {
    transform: translateY(-50%) translateX(0.5rem);
  }
}
.c-sdgs-card__img {
  aspect-ratio: 384/216;
  overflow: hidden;
}
.c-sdgs-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-sdgs-card__title-wrap {
  min-height: 5.375rem;
  border-bottom: 0.125rem solid var(--color-border-main-xxx-light);
}
@media only screen and (max-width: 767px) {
  .c-sdgs-card__title-wrap {
    min-height: 4.125rem;
  }
}
.c-sdgs-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 3rem;
  margin-top: 0.875rem;
}
@media only screen and (max-width: 1280px) {
  .c-sdgs-card__title {
    font-size: 1.125rem;
  }
}
.c-sdgs-card__title .com-icon {
  --icon-size: 1.5rem;
  --icon-circle-size: 1.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-sdgs-card__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .c-sdgs-card__logos {
    gap: 0.375rem;
    margin-top: 1rem;
  }
  .c-sdgs-card__logos img {
    width: 2.875rem;
    height: 2.875rem;
  }
}

.c-sdgs-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-cta-01 {
  padding: 2.125rem 1.25rem 3.5rem;
  background: var(--color-bg-brand-blue);
  border-radius: 2.5rem;
}
.c-cta-01__inner {
  max-width: 82.5rem;
  margin: 0 auto;
}
.c-cta-01__head {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-text-white);
  text-align: center;
  letter-spacing: 0.04em;
}
.c-cta-01__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28.75rem, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.c-cta-01__button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1.25rem;
  line-height: 1.5;
  color: var(--color-text-brand-blue);
  background: var(--color-bg-white);
  border-radius: 0.375rem;
}
.c-cta-01__button.--tel {
  pointer-events: none;
}
.c-cta-01__button .com-icon {
  --icon-color: currentcolor;
  --icon-circle-size: 5rem;
  flex-shrink: 0;
}
.c-cta-01__button .com-icon.--mail {
  --icon-size: 80%;
}
@media (hover: hover) {
  .c-cta-01__button {
    transition: 0.3s opacity;
  }
  .c-cta-01__button:hover {
    opacity: 0.7;
  }
}
.c-cta-01__tel {
  display: block;
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.c-cta-01__sub-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  margin-top: -0.4375rem;
  font-weight: bold;
}
@media only screen and (max-width: 1280px) {
  .c-cta-01__sub-text {
    font-size: 0.875rem;
  }
}
.c-cta-01__text {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .c-cta-01 {
    border-radius: 1.25rem;
  }
  .c-cta-01__head {
    font-size: 1.5rem;
  }
  .c-cta-01__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .c-cta-01__text {
    font-size: 1.5rem;
  }
  .c-cta-01__button {
    min-height: 6.25rem;
    padding: 1rem 0.625rem;
  }
  .c-cta-01__button .com-icon {
    --icon-circle-size: 2.75rem;
  }
  .c-cta-01__button.--tel {
    pointer-events: auto;
  }
  .c-cta-01__tel {
    font-size: 1.6875rem;
  }
  .c-cta-01__sub-text {
    font-size: 0.6875rem;
  }
}
.c-checkbox-img {
  display: inline-block;
  max-width: 15.75rem;
  padding: 2rem 1.25rem;
  margin-bottom: 1.125rem;
  background-color: var(--color-bg-main-xxx-light);
}
.c-checkbox-img:not(:last-child) {
  margin-right: 1.5rem;
}
.c-checkbox-img.--error .c-checkbox__mark {
  border-color: var(--color-border-error);
}
.c-checkbox-img__field {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 2rem;
  margin-top: 1.125rem;
  font-size: 1.125rem;
  cursor: pointer;
}
.c-checkbox-img__input:checked + .c-checkbox__mark {
  background: var(--color-bg-main);
}
.c-checkbox-img__input:checked + .c-checkbox__mark::after {
  opacity: 1;
}
.c-checkbox-img__input[disabled] {
  cursor: normal;
}
.c-checkbox-img__input[disabled] + .c-checkbox__mark {
  background-color: var(--color-bg-main-xxxxx-light);
  border-color: var(--color-border-main-xxx-light);
}
.c-checkbox-img__input[disabled] ~ .c-checkbox__label {
  color: var(--color-text-main-x-light);
}
.c-checkbox-img__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.1875rem;
  transform: translateY(-50%);
}
.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.0625rem solid var(--color-border-white);
  border-bottom: 0.0625rem solid var(--color-border-white);
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.c-checkbox-img__img {
  text-align: center;
}
.c-checkbox-img__label {
  display: block;
}
.c-checkbox-img__label-sub {
  display: block;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0.04em;
}

.c-checkbox {
  display: inline-block;
  margin-bottom: 1rem;
}
.c-checkbox:not(:last-child) {
  margin-right: 3rem;
}
.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: inline-flex;
  gap: 0 0.5rem;
  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;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-text-white);
  vertical-align: middle;
  background-color: var(--color-bg-black);
  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.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-form-sub-text {
    font-size: 0.875rem;
  }
}
@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 {
  display: flex;
  gap: 1rem 5rem;
}
@media only screen and (max-width: 1280px) {
  .c-form-layout {
    flex-direction: column;
  }
}
.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: 20rem;
  max-width: 100%;
}
.c-form-layout__field {
  width: calc(100% - 25rem);
}
@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-radio {
  display: block;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background-color: var(--color-bg-main-xxx-light);
}
.c-radio.--long {
  max-width: 100%;
}
.c-radio.--middle {
  max-width: 32.5rem;
}
.c-radio.--short {
  max-width: 16.25rem;
}
.c-radio + .c-radio {
  margin-top: 1.5rem;
}
.c-radio[aria-disabled=true] {
  color: var(--color-text-main-light);
  pointer-events: none;
  background-color: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main-light);
}
.c-radio[aria-disabled=true] .c-radio__mark {
  border-color: var(--color-border-main-light);
}
.c-radio__field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 2.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-radio__field {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.c-radio__input:checked + .c-radio__mark::after {
  opacity: 1;
}
.c-radio__label {
  display: block;
  width: 100%;
}
.c-radio__mark {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--color-bg-white);
  border: 0.125rem solid var(--color-border-main);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-radio__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%);
}
@media only screen and (max-width: 767px) {
  .c-radio__mark {
    width: 1.125rem;
    height: 1.125rem;
  }
  .c-radio__mark::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.c-radio-wrap.--error .c-radio {
  border: 0.125rem solid var(--color-border-error);
}

.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);
  border-radius: 2.1875rem;
}
.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);
}
.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;
  border-radius: 1.875rem;
}
.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 {
    color: var(--color-text-brand-blue);
  }
  .c-search__button:focus {
    color: var(--color-text-brand-blue);
    outline: 0.125rem solid 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;
    border-radius: 50%;
  }
  .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;
  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 {
  position: relative;
  padding-bottom: 0.75rem;
  font-family: var(--font-family-main);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-heading-lv1-01::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4.375rem;
  height: 0.25rem;
  content: "";
  background: var(--color-bg-main-light);
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .c-heading-lv1-01 {
    padding-bottom: 1.125rem;
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .c-heading-lv1-01::after {
    width: 5rem;
  }
}
.c-heading-lv1-02 {
  position: relative;
  font-family: var(--font-family-main);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-heading-lv1-02.--small {
  font-size: 1.75rem;
}

@media only screen and (max-width: 767px) {
  .c-heading-lv1-02 {
    font-size: 1.875rem;
    line-height: 1.4;
  }
  .c-heading-lv1-02.--small {
    font-size: 1.5rem;
  }
}
.c-heading-lv2 {
  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 {
    font-size: 1.6875rem;
    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-button-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.c-anchor-button-col.--center {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-anchor-button-col {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.c-anchor-button-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 2.5rem;
}
@media only screen and (max-width: 767px) {
  .c-anchor-button-row {
    gap: 1.25rem;
  }
}

.c-anchor-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28.75rem;
  max-width: 100%;
  min-height: 4.375rem;
  padding: 0.6875rem 3.25rem;
  font-family: var(--font-family-main);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  text-align: center;
  letter-spacing: 0.04em;
  border: 0.125rem solid var(--color-border-main);
  border-radius: var(--border-radius-r);
}
.c-anchor-button .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-size: 1.5rem;
  --icon-color: var(--color-bg-main);
  position: absolute;
  right: 1.5rem;
  transition: var(--animation-normal) all;
  transform: rotate(90deg);
}
@media (hover: hover) {
  .c-anchor-button {
    transition: 0.3s opacity;
  }
  .c-anchor-button:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .c-anchor-button {
    width: 20.9375rem;
    min-height: 3.75rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .c-anchor-button .com-icon {
    right: 1.125rem;
  }
}

.c-pager {
  --color-pager: var(--color-text-brand-blue);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.c-pager__item a,
.c-pager__item span {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Noto Sans JP";
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-text-main);
  text-align: center;
  border-radius: var(--border-radius-r);
}
.c-pager__item:not(.--prev, .--next) a,
.c-pager__item:not(.--prev, .--next) span {
  width: 2.5rem;
  height: 2.5rem;
}
.c-pager__item:not(.--prev, .--next) a[disabled],
.c-pager__item:not(.--prev, .--next) span[disabled] {
  pointer-events: none;
}
.c-pager__item:not(.--prev, .--next) span {
  color: var(--color-text-white);
  background: var(--color-bg-main);
}
.c-pager__item.--prev a,
.c-pager__item.--prev span, .c-pager__item.--next a,
.c-pager__item.--next span {
  font-size: 0;
  border: 0.125rem solid var(--color-bg-main);
}
.c-pager__item.--prev .com-icon, .c-pager__item.--next .com-icon {
  --icon-size: 1.5rem;
  --icon-circle-size: 3.75rem;
  --icon-color: var(--color-bg-main);
}
.c-pager__item.--prev {
  margin-right: 1rem;
}
.c-pager__item.--prev .com-icon {
  transform: scaleX(-1);
}
.c-pager__item.--next {
  margin-left: 1rem;
}
@media (hover: hover) {
  .c-pager__item a {
    transition: var(--animation-normal);
  }
  .c-pager__item a:hover {
    opacity: var(--opacity-main);
  }
}
@media only screen and (max-width: 767px) {
  .c-pager__item a,
  .c-pager__item span {
    font-size: 1rem;
  }
  .c-pager__item:not(.--prev, .--next) a,
  .c-pager__item:not(.--prev, .--next) span {
    width: 2rem;
    height: 2rem;
  }
  .c-pager__item.--prev .com-icon, .c-pager__item.--next .com-icon {
    --icon-size: 1.5rem;
    --icon-circle-size: 3.125rem;
  }
  .c-pager__item.--prev {
    margin-right: 0.5rem;
  }
  .c-pager__item.--next {
    margin-left: 0.5rem;
  }
}

.c-textlink {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-link);
  letter-spacing: 0.04em;
  border-bottom: 0.0625rem solid var(--color-text-link);
}
.c-textlink .com-icon {
  --icon-circle-size: 1.5rem;
  --icon-size: 1.5rem;
  --icon-color: currentcolor;
  margin-left: 0.5rem;
  vertical-align: text-bottom;
}
.c-textlink.--line-off {
  border-bottom: none;
}
.c-textlink.--gap-off .com-icon {
  margin-left: 0;
}
@media all and (min-width: 1281px), print {
  .c-textlink[href^="tel:"] {
    text-decoration: none;
    pointer-events: none;
    border-bottom: none;
  }
}
@media (hover: hover) {
  .c-textlink .com-icon {
    transition: var(--animation-normal);
  }
  .c-textlink:hover .com-icon {
    transform: translateX(0.25rem);
  }
  .c-textlink:focus {
    outline: 0.125rem solid var(--color-text-brand-blue);
  }
}
@media only screen and (max-width: 767px) {
  .c-textlink {
    font-size: 1rem;
  }
}

.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.25em;
}
.c-list-dot__item.--small {
  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.--small {
    font-size: 1rem;
  }
}
.c-list-dot__item::before {
  position: absolute;
  top: 0;
  top: 0.8em;
  left: 0;
  left: 8px;
  width: 5px;
  height: 5px;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.c-list-ol {
  --color-ol-number: var(--color-text-brand-blue);
  list-style: none;
  counter-reset: item;
}
.c-list-ol__item {
  --top: 1em;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 2.625rem;
}
@media only screen and (max-width: 1280px) {
  .c-list-ol__item {
    font-size: 1.125rem;
  }
}
.c-list-ol__item.--small {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-list-ol__item.--small {
    font-size: 1rem;
  }
}
.c-list-ol__item::before {
  position: absolute;
  top: calc(var(--top) * 1.6 / 2);
  left: 0rem;
  display: block;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-ol-number);
  content: "0" counter(item) ".";
  counter-increment: item;
  transform: translateY(-50%);
}
.c-list-ol__item:not(:first-child) {
  margin-top: 0.4375rem;
}
@media only screen and (max-width: 767px) {
  .c-list-ol__item {
    padding-left: 2rem;
    font-size: 0.9375rem;
  }
}

.c-step {
  display: flex;
  gap: 6.25rem;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .c-step {
    gap: 2.1875rem;
  }
}
.c-step__item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.c-step__item.is-active .c-step__tag {
  background-color: var(--color-bg-brand-blue);
}
.c-step__item.is-active .c-step__text {
  color: var(--color-text-brand-blue);
}
@media only screen and (max-width: 1280px) {
  .c-step__item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    min-width: 5.5rem;
    padding-bottom: 0.625rem;
  }
}
.c-step__item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 3.125rem);
  display: block;
  width: 0.125rem;
  height: 100%;
  content: "";
  background-color: var(--color-bg-main-light);
  transform: translate(-50%, -50%) rotate(30deg);
}
@media only screen and (max-width: 1280px) {
  .c-step__item:not(:last-child)::after {
    left: calc(100% + 1.09375rem);
    transform: translate(-50%, -50%) rotate(4deg);
  }
}
.c-step__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  min-height: 1.875rem;
  padding: 0 2rem 0.125rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text-white);
  text-align: center;
  letter-spacing: 0.04em;
  background-color: var(--color-bg-main-light);
  border-radius: 62.4375rem;
}
@media only screen and (max-width: 767px) {
  .c-step__tag {
    min-width: 5rem;
    min-height: 1.75rem;
    padding: 0 0.5rem 0.125rem;
    font-size: 0.875rem;
  }
}
.c-step__text {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main-dark);
}
@media only screen and (max-width: 767px) {
  .c-step__text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 2em;
    font-size: 1rem;
    line-height: 1.4;
  }
}

.c-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.c-tab.--center {
  justify-content: center;
}
.c-tab__button {
  position: relative;
  display: flex;
  flex-shrink: 0;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  width: 17.5rem;
  max-width: 100%;
  min-height: 3.125rem;
  padding: 0.5rem 3rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-main);
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-bg-main-xxx-light);
  border-color: transparent;
  border-style: solid;
  border-width: 0.1875rem;
  border-radius: 0.375rem;
}
.c-tab__button .com-icon {
  --icon-color: currentcolor;
  position: absolute;
  top: 0;
  right: 1.3125rem;
  bottom: 0;
  margin: auto 0;
}
.c-tab__button.is-active {
  color: var(--color-text-brand-blue);
  background: var(--color-bg-white);
  border-color: currentcolor;
}
@media (hover: hover) {
  .c-tab__button:not(.is-active) {
    transition: 0.3s opacity;
  }
  .c-tab__button:not(.is-active):hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .c-tab {
    gap: 0.4375rem;
  }
  .c-tab.--sp-left {
    justify-content: flex-start;
  }
  .c-tab__button {
    width: 10.25rem;
    min-height: 2.5rem;
    padding: 6px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-width: 0.125rem;
  }
  .c-tab__button .com-icon {
    right: 6px;
  }
  .c-tab__button.--sp-wide {
    width: 100%;
    max-width: 20.9375rem;
  }
}
.c-table-slide {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  table-layout: fixed;
  table-layout: auto;
}
.c-table-slide__th, .c-table-slide__td {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
  font-family: var(--font-family-main);
  vertical-align: middle;
  background: var(--color-bg-white);
  border: 0.0625rem solid var(--color-border-main-xxx-light);
}
@media only screen and (max-width: 1280px) {
  .c-table-slide__th, .c-table-slide__td {
    font-size: 1rem;
  }
}
.c-table-slide__th {
  text-align: center;
  background-color: var(--color-bg-main-x-light);
  border: 0.0625rem solid var(--color-border-white);
}
.c-table-slide__th.--left {
  text-align: left;
}
.c-table-slide__td {
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .c-table-slide__th, .c-table-slide__td {
    font-size: 0.9375rem;
  }
  .c-table-slide__th {
    padding: 1rem 1.25rem;
  }
  .c-table-slide__td {
    padding: 1rem;
  }
}
.c-table-slide__th, .c-table-slide__td {
  white-space: nowrap;
}
.c-table-slide-wrap .simplebar-horizontal {
  display: none;
}
.c-table-slide-wrap .simplebar-track.simplebar-horizontal {
  position: relative;
  height: 0.5rem;
  margin-top: 2rem;
  background: var(--color-bg-main-xxxxx-light);
  border: 0.0625rem solid var(--color-bg-main-x-light);
  border-radius: 0.625rem;
}
.c-table-slide-wrap .simplebar-scrollbar::before {
  inset: 0;
  background: var(--color-bg-main-x-light);
  border-radius: 0.625rem;
  opacity: 1 !important;
}
.c-table-slide-wrap.simplebar-scrollable-x .simplebar-horizontal {
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-table-slide-wrap .simplebar-track.simplebar-horizontal {
    margin-top: 1.5rem;
  }
  .c-table-slide-wrap.simplebar-scrollable-x .simplebar-content-wrapper {
    padding-bottom: 1.875rem;
  }
}

.c-table {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
}
.c-table.--sub .c-table__th, .c-table.--sub .c-table__td {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
}
@media only screen and (max-width: 1280px) {
  .c-table.--sub .c-table__th, .c-table.--sub .c-table__td {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-table.--sub .c-table__th, .c-table.--sub .c-table__td {
    padding: 1.5rem 0.5rem;
  }
}
.c-table__th, .c-table__td {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
  font-family: var(--font-family-main);
  vertical-align: middle;
  background: var(--color-bg-white);
  border: 0.0625rem solid var(--color-border-main-xxx-light);
}
@media only screen and (max-width: 1280px) {
  .c-table__th, .c-table__td {
    font-size: 1rem;
  }
}
.c-table__th {
  text-align: center;
  background-color: var(--color-bg-main-x-light);
  border: 0.0625rem solid var(--color-border-white);
}
.c-table__th.--left {
  text-align: left;
}
.c-table__td {
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .c-table__th, .c-table__td {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

.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-xsm {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-text-xsm {
    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;
  }
}

.c-text-lg {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1280px) {
  .c-text-lg {
    font-size: 1.25rem;
  }
}

/* project */
.p-anchor-list {
  display: flex;
  gap: var(--spacing-lg);
}
.p-anchor-list__link {
  display: block;
  padding: var(--spacing-xsm) var(--spacing-md);
  color: var(--color-text-main);
  border: 0.0625rem solid var(--color-border-main);
  border-radius: var(--border-radius-r);
}
.p-anchor-list__link.is-active {
  color: var(--color-text-white);
  background-color: var(--color-bg-main);
}
@media (hover: hover) {
  .p-anchor-list__link {
    transition: var(--animation-normal) background-color;
  }
  .p-anchor-list__link:hover {
    color: var(--color-text-white);
    background-color: var(--color-bg-main);
  }
}

.p-breadline {
  padding: 0.5rem 0;
  background: var(--color-bg-brand-blue);
}
@media only screen and (max-width: 767px) {
  .p-breadline {
    display: none;
  }
}
.p-breadline__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1rem;
  color: var(--color-text-white);
  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: 1rem;
  background-color: var(--color-bg-white);
}

@media only screen and (max-width: 767px) {
  .p-breadline {
    display: none;
  }
}
.p-buttons {
  display: flex;
  flex-wrap: wrap;
}
.p-buttons.--center {
  justify-content: center;
}
.p-buttons.--gap-16-30 {
  gap: 1rem 1.875rem;
}

.p-box {
  padding: 2rem 2.5rem;
  background-color: #ededed;
  border-radius: 0.625rem;
}
.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-modal-01 {
  position: fixed;
  inset: 6.0625rem 0 0;
  z-index: 150;
}
.p-modal-01.is-active .p-modal-01__content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.p-modal-01.is-active .p-modal-01__overlay {
  opacity: 1;
}
.p-modal-01__overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
}
.p-modal-01__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2.5rem);
  max-width: 82.5rem;
  max-height: calc(100% - 2.5rem);
  padding: 5rem 7.5rem;
  background-color: var(--color-bg-white);
  border-radius: 1.25rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s all;
  transform: translate(-50%, calc(-50% + 3.125rem));
}
.p-modal-01__close-button {
  position: absolute;
  top: 2.5rem;
  right: 2.625rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-bg-white);
  border: 0.0625rem solid var(--color-border-main);
  border-radius: 50%;
}
@media (hover: hover) {
  .p-modal-01__close-button {
    transition: 0.3s opacity;
  }
  .p-modal-01__close-button:hover {
    opacity: 0.7;
  }
}
.p-modal-01__close-button::after, .p-modal-01__close-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1rem;
  height: 0.125rem;
  content: "";
  background-color: var(--color-text-main);
}
.p-modal-01__close-button::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal-01__close-button::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-modal-01__close {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2.5rem;
  overflow: hidden;
  font-family: "Noto Sans JP";
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-modal-01__close .com-icon {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .p-modal-01__close .com-icon {
    transition: 0.3s linear;
  }
  .p-modal-01__close:hover .com-icon {
    transform: translateX(-0.175rem) rotate(180deg);
  }
}

@media only screen and (max-width: 1280px) {
  .p-modal-01 {
    inset: 4.625rem 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-modal-01__content {
    padding: 2.5rem;
  }
  .p-modal-01__close-button {
    top: 1.25rem;
    right: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-modal-01__content {
    top: 50%;
    width: calc(100% - 2.5rem);
    height: calc(100% - 4rem);
    padding: 0;
    padding-bottom: 1.875rem;
    overflow-y: scroll;
    border-radius: 0.375rem;
  }
  .p-modal-01__close-button {
    display: none;
  }
  .p-modal-01__close {
    margin-inline: auto;
    margin-top: 2.5rem;
  }
}
.p-news {
  --theme-color: var(--color-bg-brand-blue);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
}
@media only screen and (max-width: 1280px) {
  .p-news {
    font-size: 1.125rem;
  }
}
.p-news__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.375rem 9.375rem 1.375rem 4.375rem;
  border-top: 0.125rem solid transparent;
  border-bottom: 0.125rem solid var(--color-border-main-xxx-light);
  --icon-pos: 7.125rem;
}
.p-news__link:first-child {
  border-top: 0.125rem solid var(--color-border-main-xxx-light);
}
.p-news__link .p-news__icon {
  --icon-circle-size: 1.5rem;
  right: var(--icon-pos);
  transition: var(--animation-normal);
}
@media (hover: hover) {
  .p-news__link:hover {
    --icon-pos: 6.625rem;
  }
}
.p-news__time {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-right: 1.25rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
  .p-news__time {
    font-size: 1rem;
  }
}
.p-news__cat {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1.5;
  color: var(--theme-color);
}
@media only screen and (max-width: 1280px) {
  .p-news__cat {
    font-size: 1rem;
  }
}
.p-news__cat-divide {
  position: relative;
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  transform: rotate(-90deg);
  --icon-size: 0.875rem;
}
.p-news__title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 1.0625rem;
}
@media only screen and (max-width: 1280px) {
  .p-news__title {
    font-size: 1rem;
  }
}
.p-news__icon {
  position: absolute;
  top: 0;
  right: 1.875rem;
  bottom: 0;
  margin: auto;
  --icon-color-bg: var(--theme-color);
}
.p-news.--blue-dark {
  --theme-color: var(--color-text-brand-blue-dark);
}

@media (hover: hover) {
  .p-news__title {
    transition: var(--animation-normal);
  }
  .p-news__link:hover .p-news__title {
    opacity: var(--opacity-main);
  }
}
@media only screen and (max-width: 767px) {
  .p-news__link {
    gap: 0;
    padding: 1.4375rem 1.875rem 1.375rem 0rem;
    border-top-width: 0.0625rem;
    border-bottom-width: 0.0625rem;
  }
  .p-news__link:first-child {
    border-top-width: 0.0625rem;
  }
  .p-news__title {
    display: -webkit-box;
    width: 100%;
    margin-top: 0.75rem;
    margin-right: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    white-space: unset;
    -webkit-box-orient: vertical;
  }
  .p-news__time {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.25rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .p-news__cat {
    font-weight: bold;
  }
  .p-news__cat-divide {
    margin: 0 0.25rem;
  }
  .p-news__icon {
    --icon-pos: -0.125rem;
  }
}
.p-news-head {
  --theme-color: var(--color-bg-brand-blue);
}
.p-news-head__time {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-right: 1.25rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
  .p-news-head__time {
    font-size: 1rem;
  }
}
.p-news-head__cat {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1.5;
  color: var(--theme-color);
}
@media only screen and (max-width: 1280px) {
  .p-news-head__cat {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-news-head__time {
    width: 100%;
    margin-bottom: 0.25rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .p-news-head__cat {
    font-weight: bold;
  }
}
.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-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;
}

.p-sitemap {
  padding-top: 2.5rem;
  border-top: 0.0625rem solid var(--color-border-main-xxx-light);
}
.p-sitemap__grid.--column3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.p-sitemap__grid.--column2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.p-sitemap__grid-item-lv3 {
  margin-bottom: 1.875rem;
}
.p-sitemap__grid-item-lv4 {
  margin-bottom: 2.25rem;
}
.p-sitemap__grid-item-sec + .p-sitemap__grid-item-sec {
  margin-top: 4rem;
}
.p-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-sitemap__list.--lv2 {
  gap: 1.5rem;
  margin-left: 1rem;
}
.p-sitemap__list.--lv2 + .p-sitemap__list.--lv2 {
  margin-top: 4rem;
}
.p-sitemap__list.--indent-off {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .p-sitemap {
    padding-top: 1.5rem;
  }
  .p-sitemap__grid.--column2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 6.25rem;
  }
  .p-sitemap__grid.--column3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }
  .p-sitemap__list {
    gap: 0.5rem;
  }
  .p-sitemap__list.--lv2 {
    gap: 0.5rem;
    margin-left: 0;
  }
  .p-sitemap__list.--lv2 + .p-sitemap__list.--lv2 {
    margin-top: 2rem;
  }
  .p-sitemap__grid-item-lv4 {
    margin-bottom: 1.5rem;
  }
  .p-sitemap__grid-item-lv3 {
    margin-bottom: 1rem;
  }
}
.p-youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.p-youtube-modal__inner {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.p-youtube-modal__content {
  position: relative;
  padding: 1rem;
  background: #fff;
}
.p-youtube-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.p-youtube-modal__close::after, .p-youtube-modal__close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 0.125rem;
  content: "";
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-youtube-modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-youtube-modal__video {
  position: relative;
  padding-top: 56.25%;
}
.p-youtube-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* pages */
/* utility */