@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 32px;
  --content-negative-space: -32px;
  --content-width: 1200px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#fff;
  --color-grey1:#E6E6E6;
  --color-grey2:#B3B3B3;
  --color-grey3:#6B6C6F;
  --color-grey4: #4D4D4D;
  --color-light-base1:#F7F8F8;
  --color-light-base2:#D9F6F6;
  --color-light-base3:#ECFBFB;
  --color-text:#1A1A1A;
  --color-main:#00B4B7;
  --color-sub:#184416;
  --color-accent:#00999C;
  --color-dark:#033c5e;
  --color-light:#2186bf;
  --font-main:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "メイリオ", sans-serif;
  --font-sub: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 3.865vw;
    --content-negative-space: -3.865vw;
    --content-width: 100%;
    --u-content-width: 92%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-optical-sizing: auto;
  text-align: justify;
  font-style: normal;
  font-weight: 400;
  min-width: var(--content-max-width);
}

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

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

.u-bold {
  font-weight: 700 !important;
}

.u-font-roboto {
  font-family: var(--font-sub) !important;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

sup {
  line-height: 1;
  font-size: 61.12%;
}

.u-text-large {
  line-height: 1.2;
  font-size: 4.2rem;
}

.u-text-middle {
  line-height: 1.5;
  font-size: 2.6rem;
}

p:has(.u-text-middle) {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .u-text-large {
    font-size: 3.6rem;
  }
  .u-text-middle {
    font-size: 1.8rem;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
.l-header-wrap {
  height: 133px;
}
.l-header-wrap.l-header-wrap--en {
  height: 106px;
}

.l-header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 20px 20px 20px 40px;
  width: 100%;
  min-width: var(--content-max-width);
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.l-header.hide {
  position: fixed;
  transition: transform 0.3s;
}
.l-header.l-header--en {
  align-items: flex-start;
}

:where(.l-header) a {
  text-decoration: none;
}

:where(.l-header) ul {
  margin: 0;
  padding: 0;
}

:where(.l-header) li {
  padding: 0;
  list-style: none;
}

.c-sub-nav__button {
  display: inline-block;
  padding: 8px 24px;
  line-height: 1.1;
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(1.5rem, 1rem + 0.26vw, 1.8rem);
  font-weight: 700;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 30px;
  transition: 0.2s;
  transition-property: color, background-color;
}
.c-sub-nav__button:hover {
  color: var(--color-accent);
  background-color: var(--color-white);
}

.c-sub-nav__type {
  text-decoration: none;
  transition: color 0.2s;
}
.c-sub-nav__type:hover {
  color: var(--color-accent);
}
.c-sub-nav__type:hover > span {
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.c-sub-nav02 {
  grid-area: 1/2/2/3;
  display: flex;
}
.c-sub-nav02 > li {
  position: relative;
}
.c-sub-nav02 > li:not(.is-no-border):not(:last-child) {
  margin-right: 7px;
  padding-right: 7px;
}
.c-sub-nav02 > li:not(.is-no-border):not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 1px;
  height: 16px;
  background-color: var(--color-grey2);
}

.c-sub-nav02__type {
  line-height: 1.1;
  font-size: 2.4rem;
  font-weight: 500;
}
.c-sub-nav02__type:where(a) {
  text-decoration: underline;
  color: var(--color-grey3);
}
.c-sub-nav02__type:where(a):hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .l-header__head {
    max-width: 382px;
    min-width: 150px;
    width: 20.53%;
  }
  .l-header__head.l-header__head--en {
    max-width: none;
    width: auto;
  }
  .l-header__body {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px 34px;
  }
  .c-nav {
    grid-area: 2/1/3/3;
    display: flex;
    gap: 16px;
    transition: 0.3s;
  }
  .c-nav-list {
    display: flex;
    align-items: center;
    background-color: var(--color-light-base3);
    border-radius: 4px;
  }
  .c-nav-list > li {
    position: relative;
    line-height: 1.6;
    font-size: clamp(1.5rem, 1rem + 0.26vw, 1.8rem);
    font-weight: 500;
  }
  .c-nav-list > li + li::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 12px);
    width: 1px;
    height: 23px;
    background: var(--color-grey2);
  }
  .c-nav-list__link {
    display: block;
    padding: 10px 1.5em;
    text-decoration: none;
    transition: color 0.2s;
  }
  .c-nav-list__link:where(button) {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
  }
  .c-nav-list__link:hover {
    color: var(--color-accent);
  }
  .c-nav-list__link:hover > span {
    text-decoration: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .has-sub > .c-nav-list__link {
    position: relative;
    padding-left: 40px;
  }
  .has-sub > .c-nav-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: 24px;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
  }
  .c-nav-list__child {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(100% - 3px);
    background-color: var(--color-white);
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    z-index: 3;
  }
  .c-nav-list-lv2 {
    display: block;
    padding: 6px 20px;
  }
  .c-nav-list-lv2 > li {
    white-space: nowrap;
  }
  .c-nav-list-lv2 > li:not(:last-child) {
    border-bottom: 1px solid var(--color-grey2);
  }
  .c-nav-list-lv2__link {
    display: block;
    padding: 10px 0;
    line-height: 1;
    font-size: 1.6rem;
    text-decoration: none;
  }
  .c-nav-list-lv2__link:hover {
    text-decoration: underline;
  }
  .c-nav-util {
    display: flex;
    background-color: var(--color-light-base1);
    border-radius: 4px;
  }
  .c-nav-util__type {
    display: block;
    padding: 10px 24px;
    line-height: 1.6;
    font-size: clamp(1.5rem, 1rem + 0.26vw, 1.8rem);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .c-nav-util__type:hover {
    color: var(--color-grey3);
  }
  .c-nav-util__type:hover > span {
    text-decoration: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .c-sub-nav {
    grid-area: 1/1/2/2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .c-sub-nav > li {
    position: relative;
    padding-right: 20px;
    line-height: 1.4;
    font-size: clamp(1.5rem, 0.7rem + 0.6vw, 1.8rem);
  }
  .c-sub-nav > li::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 23px;
    background-color: var(--color-grey2);
    transform: translateY(-50%);
  }
  .c-sub-nav > li:where(:has(.c-sub-nav__button)), .c-sub-nav > li:where(:last-child) {
    padding-right: 0;
  }
  .c-sub-nav > li:where(:has(.c-sub-nav__button))::after, .c-sub-nav > li:where(:last-child)::after {
    display: none;
  }
}
.c-sp-other-nav,
.l-header__body__bottom {
  display: none;
}

@media screen and (max-width: 1270px) {
  .hdr-contact-area {
    min-width: 360px;
    justify-content: center;
  }
  .hdr-contact-area .c-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header-wrap {
    height: 60px;
  }
  .l-header-wrap.l-header-wrap--en {
    height: 60px;
  }
  .l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 0 0 10px;
    background-color: var(--color-white);
    z-index: 100;
    transition: 0.3s;
  }
  .l-header.l-header--en {
    align-items: center;
  }
  .l-header__head {
    max-width: 230px;
    width: 64.25%;
  }
  .l-header__head.l-header__head--en {
    max-width: 230px;
  }
  .l-header__body {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 8px var(--content-space) 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    padding-bottom: 50px;
    overflow-y: auto;
    background-color: var(--color-white);
  }
  .c-nav {
    flex-direction: column;
  }
  .c-nav-list {
    flex-direction: column;
  }
  .c-nav-list__link,
  .c-sub-nav__type,
  .c-nav-util__type {
    display: block;
    position: relative;
    padding: 14px 28px 14px 8px;
    line-height: 1.1;
    font-size: 1.6rem;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-grey2);
  }
  .c-nav-list__link::before,
  .c-sub-nav__type::before,
  .c-nav-util__type::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 9px;
    width: 15px;
    height: 13px;
    -webkit-mask-image: url("../img/common/icon-arrow01.svg");
            mask-image: url("../img/common/icon-arrow01.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: var(--color-main);
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
  }
  .c-nav-list__link:where(button) {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    color: var(--color-text);
  }
  .c-nav-list__link:where(button)::before {
    display: none;
  }
  .c-nav-list__child {
    display: block !important;
    height: auto !important;
  }
  .c-nav-list-lv2__link {
    display: block;
    padding: 12px 8px 12px 23px;
    line-height: 1.1;
    font-size: 1.5rem;
  }
  .c-nav-list-lv2__link > span {
    display: inline-block;
    position: relative;
    padding-right: 26px;
  }
  .c-nav-list-lv2__link > span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 13px;
    -webkit-mask-image: url("../img/common/icon-arrow01.svg");
            mask-image: url("../img/common/icon-arrow01.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: var(--color-main);
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
  }
  .c-sub-nav02 {
    align-items: center;
    margin-top: 32px;
    padding-right: 37px;
  }
  .c-sub-nav02 > li:not(.is-no-border):not(:last-child) {
    margin-right: 20px;
    padding-right: 20px;
  }
  .c-sub-nav02 > li.is-no-border {
    margin-right: auto;
  }
  .c-sub-nav02 > li.is-no-border::before {
    display: none;
  }
  .c-sub-nav__button {
    padding: 18px 24px;
    min-width: 188px;
    text-align: center;
    font-size: 1.8rem;
  }
  .l-header__body__bottom {
    display: block;
    margin: 38px var(--content-negative-space) 0;
    padding: 35px var(--content-space) 100px;
    color: var(--color-white);
    background-color: var(--color-main);
  }
  .c-sp-other-nav {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .c-sp-other-nav > li {
    position: relative;
    line-height: 1;
    font-size: 1.3rem;
  }
  .c-sp-other-nav > li:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-text);
  }
  .c-sp-other-nav__type {
    padding: 0 5px;
    text-decoration: none;
  }
  .c-sp-other-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .c-sp-other-button__type,
  .c-sp-other-button02__type {
    min-height: 70px;
  }
  .c-sp-other-button__type {
    --btn-color-text: var(--color-accent);
    --btn-color-background: var(--color-white);
    --btn-color-border: var(--color-grey2);
    --btn-color-icon: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 10px 60px 10px 50px;
    width: 100%;
    line-height: 1.2;
    text-decoration: none;
    font-size: clamp(1.7rem, 5.072vw, 2.1rem);
    font-weight: 700;
    color: var(--btn-color-text);
    background-color: var(--btn-color-background);
    border: 1px solid var(--btn-color-border);
    border-radius: 50px;
  }
  .c-sp-other-button__type::before, .c-sp-other-button__type::after {
    content: "";
    display: block;
  }
  .c-sp-other-button__type::before {
    position: absolute;
    top: 50%;
    right: 38px;
    width: 15px;
    height: 13px;
    -webkit-mask-image: url("../img/common/icon-arrow01.svg");
            mask-image: url("../img/common/icon-arrow01.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: var(--btn-color-background);
    transform: translateY(-50%);
    z-index: 2;
  }
  .c-sp-other-button__type::after {
    position: absolute;
    right: 30px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: var(--btn-color-icon);
    border-radius: 15px;
  }
  .c-sp-other-button02__type {
    --btn-color-text: var(--color-accent);
    --btn-color-background: var(--color-white);
    --btn-color-border: var(--color-grey2);
    --btn-color-icon: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 15px 10px 12px;
    line-height: 1;
    text-decoration: none;
    font-family: var(--font-sub);
    font-size: clamp(3rem, 9.662vw, 4rem);
    font-weight: 700;
    color: var(--btn-color-text);
    background-color: var(--btn-color-background);
    border: 1px solid var(--btn-color-border);
    border-radius: 50px;
  }
  .c-sp-other-button02__type::before {
    content: "";
    display: block;
  }
  .c-sp-other-button02__type::before {
    width: 41px;
    height: 41px;
    -webkit-mask-image: url("../img/common/icon-tel-sp.svg");
            mask-image: url("../img/common/icon-tel-sp.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: var(--btn-color-icon);
    z-index: 2;
  }
}
.l-main > .main-contents:first-child {
  padding-top: 50px;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: var(--color-dark);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 0px;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
.fix-side a img {
  margin-top: 10px;
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

:where(.u-editor) a {
  color: rgb(0, 0, 238);
  font-weight: 700;
}
:where(.u-editor) a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .l-main > .main-contents:first-child {
    padding-top: 30px;
  }
}
/* footer -------------------------------------- */
.l-footer {
  padding: 36px 0 32px;
}

.l-footer-copyright {
  display: block;
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-weight: 400;
}

.l-footer-data {
  display: flex;
  justify-content: space-between;
  width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-space);
}

.l-footer-data__head > :first-child,
.l-footer-data__body > :first-child {
  margin-top: 0 !important;
}
.l-footer-data__head > :last-child,
.l-footer-data__body > :last-child {
  margin-bottom: 0 !important;
}

.l-footer-data__body {
  display: flex;
  gap: 73px;
  padding-top: 5px;
}

.l-footer-links,
.l-footer-links-lv2 {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
}
:where(.l-footer-links,
.l-footer-links-lv2) > li {
  line-height: 1.6;
  list-style: none;
  font-size: 1.5rem;
  font-weight: 400;
}
:where(.l-footer-links > li,
.l-footer-links-lv2 > li) > a {
  text-decoration: none;
}
:where(.l-footer-links > li,
.l-footer-links-lv2 > li) > a:hover {
  text-decoration: underline;
}

.l-footer-links {
  padding: 0;
}

.l-footer-links__space {
  margin-top: 33px;
}

.l-footer-links-lv2 {
  padding: 0;
}
:where(li) > .l-footer-links-lv2 {
  margin-top: 9px;
  padding-left: 1em;
}

.l-footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}
.l-footer-address > li {
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: 400;
  list-style: none;
}

.l-footer-other {
  margin-top: 33px;
  padding: 27px var(--content-space) 0;
  border-top: 1px solid var(--color-grey2);
}
.l-footer-other > :first-child {
  margin-top: 0 !important;
}
.l-footer-other > :last-child {
  margin-bottom: 0 !important;
}

.l-footer-util-list {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  padding: 0;
}
.l-footer-util-list > li {
  position: relative;
  margin: 0;
  padding: 0 10px;
  list-style: none;
  font-size: 1.4rem;
  font-weight: 400;
}
.l-footer-util-list > li:first-child {
  padding-left: 0;
}
.l-footer-util-list > li:last-child {
  padding-right: 0;
}
.l-footer-util-list > li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: var(--color-text);
}
.l-footer-util-list > li > a {
  text-decoration: none;
}
.l-footer-util-list > li > a:hover {
  text-decoration: underline;
}

.l-footer-fix {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 114px;
  }
  .l-footer-copyright {
    text-align: justify;
  }
  .l-footer-data {
    width: 100%;
  }
  .l-footer-data__body {
    display: none;
  }
  .l-footer-address {
    gap: 12px;
  }
  .l-footer-other {
    margin-top: 41px;
    padding-top: 25px;
  }
  .l-footer-util-list {
    justify-content: flex-start;
  }
  .l-footer-fix {
    display: block;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(101%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .l-footer-fix.active {
    transform: translateY(0%);
  }
  .l-footer-fix__type {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 15px;
    min-height: 85px;
    line-height: 1.7;
    text-decoration: none;
    text-align: center;
    color: var(--color-white);
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--color-accent);
    border: none;
    border-radius: 0;
  }
  .l-footer-fix__type:where(button) {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .l-footer-fix__type + .l-footer-fix__type {
    border-left: 1px solid var(--color-white);
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  padding: 14px 40px;
  display: flex;
  flex-wrap: wrap;
}
ol.breadcrumbs li {
  list-style: none;
  font-size: 1.2rem;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 1.2rem;
  padding: 0 12px;
  color: var(--color-grey2);
}
ol.breadcrumbs li a {
  color: var(--color-main);
}
ol.breadcrumbs li a:hover {
  text-decoration: none;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: 92%;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/*ハンバーガー */
.openbtn {
  display: none;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 9000;
  top: 0;
  right: -200%;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
}

.mm-menu.active {
  top: 0;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  .openbtn {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 5px 5px 12px;
    width: 61px;
    height: 60px;
    color: #4F4946;
    text-transform: uppercase;
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--color-light-base3);
    border: none;
  }
  .openbtn > .menu {
    line-height: 1;
  }
  .openbtn > span:not(.menu) {
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    width: 20px;
    height: 1px;
    background-color: var(--color-main);
    transition: 0.2s;
    transition-property: transform, opacity;
  }
  .openbtn > span:not(.menu):nth-child(1) {
    top: 14px;
  }
  .openbtn > span:not(.menu):nth-child(2) {
    top: 21px;
  }
  .openbtn > span:not(.menu):nth-child(3) {
    top: 28px;
  }
  .openbtn.active > span:not(.menu):nth-child(1), .openbtn.active > span:not(.menu):nth-child(3) {
    top: 21px;
  }
  .openbtn.active > span:not(.menu):nth-child(2) {
    opacity: 0;
  }
  .openbtn.active > span:not(.menu):nth-child(1) {
    transform: rotate(45deg);
  }
  .openbtn.active > span:not(.menu):nth-child(3) {
    transform: rotate(-45deg);
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9000;
    right: -200%;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 90px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  justify-content: center;
  min-width: 1200px;
  overflow: auto;
  color: var(--color-text);
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 380px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sp-menu-link .inner .sp-menu-data .outlink {
  margin-top: 50px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank {
  margin-top: 25px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a {
  text-decoration: none;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sp-menu-link .inner .sidemenu-link {
  width: 660px;
}
.sp-menu-link .inner .sidemenu-link nav {
  display: flex;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  width: 50%;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  margin-bottom: 20px;
  margin-left: 0;
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr {
  margin-top: 75px;
}
.sp-menu-link .inner .sidemenu-link .bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  border-radius: 50px;
  background-color: #aaa;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sp-menu-link .inner .sidemenu-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 90%;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: #d3cbc6;
    line-height: 1.3;
    margin-right: 5px;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.p-cta {
  position: relative;
  margin-top: 148px;
  padding: 64px 0 60px;
  height: auto;
  width: 100%;
  background: var(--color-main) url("../img/common/bg-cta01.webp") no-repeat left 40px center/337px auto;
}

.p-cta__inner {
  margin: 0 auto;
  width: calc(1000px + var(--content-space) * 2);
}
.p-cta__inner > :first-child {
  margin-top: 0 !important;
}
.p-cta__inner > :last-child {
  margin-bottom: 0 !important;
}

.p-cta__heading {
  text-align: center;
  color: var(--color-white);
  margin: 65px 0;
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: 700;
}

.p-cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.p-cta-cards.p-cta-cards--content {
  margin-top: 40px;
}

.c-cta-card {
  padding: 28px 24px 20px;
  background-color: var(--color-white);
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-cta-card > :first-child {
  margin-top: 0 !important;
}
.c-cta-card > :last-child {
  margin-bottom: 0 !important;
}
.c-cta-card.c-cta-card--content {
  border: 4px solid var(--color-main);
  box-shadow: none;
}

.c-cta-card__title {
  text-align: center;
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.c-cta-card__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-cta-card__label {
  display: inline-block;
  padding: 7px 6px;
  line-height: 1;
  font-size: 2rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
}

.c-cta-card__time {
  margin: 0;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: 700;
}

.c-cta-card__time02 {
  margin: 0;
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
}

.c-cta-card__buttons,
.c-cta-card__buttons02 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-cta-card__buttons {
  margin-top: 28px;
}

.c-cta-card__buttons02 {
  margin-top: 35px;
}

.c-cta-button__type,
.c-cta-button02__type {
  min-height: 62px;
  font-weight: 700;
}
.c-cta-button__type:where(button),
.c-cta-button02__type:where(button) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.c-cta-button__type {
  --btn-color-text: var(--color-white);
  --btn-color-background: var(--color-accent);
  --btn-color-border: var(--color-grey2);
  --btn-color-icon: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 16px 70px 16px 30px;
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--btn-color-text);
  background-color: var(--btn-color-background);
  border: 1px solid var(--btn-color-border);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.c-cta-button__type::before, .c-cta-button__type::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-cta-button__type::before {
  right: 38px;
  width: 15px;
  height: 13px;
  -webkit-mask-image: url("../img/common/icon-arrow01.svg");
          mask-image: url("../img/common/icon-arrow01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color-background);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-cta-button__type::after {
  right: 30px;
  width: 30px;
  height: 30px;
  background-color: var(--btn-color-icon);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.c-cta-button__type:hover {
  --btn-color-text: var(--color-accent);
  --btn-color-background: var(--color-white);
  --btn-color-border: var(--color-accent);
  --btn-color-icon: var(--color-accent);
}

.c-cta-button02__type {
  --btn-color-text: var(--color-accent);
  --btn-color-background: var(--color-white);
  --btn-color-border: var(--color-accent);
  --btn-color-icon: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 16px 20px;
  line-height: 1;
  text-decoration: none;
  font-family: var(--font-sub);
  font-size: 2.6rem;
  color: var(--btn-color-text);
  background-color: var(--btn-color-background);
  border: 1px solid var(--btn-color-border);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.c-cta-button02__type::before {
  content: "";
  display: block;
}
.c-cta-button02__type::before {
  width: 25px;
  height: 26px;
  -webkit-mask-image: url("../img/common/icon-tel.svg");
          mask-image: url("../img/common/icon-tel.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color-icon);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-cta-button02__type:hover {
  --btn-color-text: var(--color-white);
  --btn-color-background: var(--color-accent);
  --btn-color-icon: var(--color-white);
}

@media screen and (min-width: 768px) {
  .c-cta-button02__type {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-cards {
    gap: 20px;
  }
  .p-cta {
    margin-top: 0;
    padding: 40px 0 33px;
  }
  .p-cta__inner {
    padding: 0 var(--content-space);
    width: 100%;
  }
  .p-cta__heading {
    margin: 40px 0;
    font-size: 2rem;
  }
  .c-cta-card-wrap {
    grid-template-columns: 1fr;
  }
  .c-cta-card {
    padding: 18px 16px 20px;
  }
  .c-cta-card.c-cta-card--content {
    padding: 18px 10px 20px;
  }
  .c-cta-card__type {
    padding: 15px 10px;
    min-height: 100px;
    color: var(--color-text);
  }
  .c-cta-card__title {
    margin-bottom: 9px;
    line-height: 1.3;
    font-size: 2.4rem;
  }
  .c-cta-card__heading__icon {
    width: 30px;
  }
  .c-cta-card__heading__title {
    font-size: 2.4rem;
  }
  .c-cta-card__heading__title--tel {
    font-size: 3rem;
  }
  .c-cta-card__text {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  .c-cta-card__lead {
    font-size: 1.6rem;
  }
  .c-cta-card__label {
    padding: 6px;
    font-size: 1.6rem;
  }
  .c-cta-card__time {
    font-size: 2.2rem;
  }
  .c-cta-card__time02 {
    line-height: 1.5;
    font-size: 2.5rem;
  }
  .c-cta-card__buttons,
  .c-cta-card__buttons02 {
    flex-direction: column;
  }
  .c-cta-card__buttons {
    gap: 13px;
    margin-top: 24px;
  }
  .c-cta-card__buttons02 {
    margin-top: 17px;
  }
  .c-cta-button__type,
  .c-cta-button02__type {
    justify-content: center;
    min-height: 70px;
  }
  .c-cta-button__type {
    gap: 4px;
    padding: 10px 50px 10px 30px;
    width: 100%;
    font-size: clamp(1.4rem, 4.348vw, 1.8rem);
  }
  .c-cta-button__type::before {
    right: 27px;
  }
  .c-cta-button__type::after {
    right: 20px;
  }
  .c-cta-button__type > span {
    width: 100%;
    text-align: center;
  }
  .c-cta-button02__type {
    --btn-color-text: var(--color-white);
    --btn-color-background: var(--color-accent);
    --btn-color-border: var(--color-grey2);
    --btn-color-icon: var(--color-white);
    padding: 10px 20px;
    font-size: clamp(2rem, 8.937vw, 3.7rem);
  }
  .c-cta-button02__type::before {
    width: 37px;
    height: 37px;
    -webkit-mask-image: url("../img/common/icon-tel-sp.svg");
            mask-image: url("../img/common/icon-tel-sp.svg");
  }
}
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-uniq-parts)) + *,
:where(.u-editor) h3:where(:not(.is-uniq-parts)) + *,
:where(.u-editor) h4:where(:not(.is-uniq-parts)) + *,
:where(.u-editor) h5:where(:not(.is-uniq-parts)) + *,
:where(.u-editor) h6:where(:not(.is-uniq-parts)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-uniq-parts)) {
  margin: 96px 0 30px;
  position: relative;
  line-height: 1.5;
  padding: 0 0 9px;
  font-size: 2.8rem;
}
.c-heading-lv2::before, .c-heading-lv2::after,
:where(.u-editor) h2:where(:not(.is-uniq-parts))::before,
:where(.u-editor) h2:where(:not(.is-uniq-parts))::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
}
.c-heading-lv2::before,
:where(.u-editor) h2:where(:not(.is-uniq-parts))::before {
  width: 100%;
  background-color: var(--color-grey3);
}
.c-heading-lv2::after,
:where(.u-editor) h2:where(:not(.is-uniq-parts))::after {
  width: 120px;
  background-color: var(--color-main);
  z-index: 2;
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-uniq-parts)) {
  margin: 72px 0 16px;
  padding-left: 20px;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 700;
  border-left: 4px solid var(--color-main);
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-uniq-parts)) {
  margin: 64px 0 16px;
  position: relative;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 28px;
}
.c-heading-lv4::before,
:where(.u-editor) h4:where(:not(.is-uniq-parts))::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 20px;
  height: 3px;
  background-color: var(--color-accent);
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-uniq-parts)) {
  margin: 40px 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-uniq-parts)) {
    margin: 60px 0 16px;
    font-size: 1.9rem;
  }
  .c-heading-lv2::after,
  :where(.u-editor) h2:where(:not(.is-uniq-parts))::after {
    width: 60px;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-uniq-parts)) {
    margin: 52px 0 16px;
    font-size: 1.8rem;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-uniq-parts)) {
    margin: 40px 0 16px;
    font-size: 1.7rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-uniq-parts)) {
    margin: 32px 0 16px;
    font-size: 1.6rem;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 1.6rem;
}

.c-note-text {
  margin-top: 40px;
  line-height: 2;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .c-note-text {
    margin-top: 20px;
  }
}
.c-unordered-list,
:where(.u-editor) ul:not([class]) {
  margin-top: 40px;
  padding: 0;
}
.c-unordered-list li,
:where(.u-editor) ul:not([class]) li {
  position: relative;
  padding-left: 20px;
  list-style-type: none;
}
.c-unordered-list li > span,
:where(.u-editor) ul:not([class]) li > span {
  flex-grow: 1;
}
.c-unordered-list li:before,
:where(.u-editor) ul:not([class]) li:before {
  flex-shrink: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--color-main);
  border-radius: 3px;
}

.c-order-list,
:where(.u-editor) ol:not([class]) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:not([class]) li {
  display: flex;
  gap: 5px;
}
.c-order-list li > span,
.c-order-list li > a,
:where(.u-editor) ol:not([class]) li > span,
:where(.u-editor) ol:not([class]) li > a {
  flex-grow: 1;
}
.c-order-list li a,
:where(.u-editor) ol:not([class]) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:not([class]) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:not([class]) li:before {
  flex-shrink: 0;
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-main);
  font-weight: bold;
}

dt,
dd {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px 0 0;
  padding: 0;
}
.c-voice-list > li {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  padding-bottom: 6px;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 400;
  list-style: none;
  border-left: 2px solid var(--color-main);
}

.c-voice-list__prop {
  margin-left: auto;
  line-height: 1.6;
  color: var(--color-grey3);
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:not([class]) {
    margin-top: 40px;
  }
  .c-order-list,
  :where(.u-editor) ol:not([class]) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .c-order-list li a,
  :where(.u-editor) ol:not([class]) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:not([class]) li a:hover {
    color: var(--color-main);
  }
  .c-order-list li:before,
  :where(.u-editor) ol:not([class]) li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
  .c-voice-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-voice-list > li {
    padding-left: 10px;
    padding-bottom: 0;
    line-height: 1.4;
    font-size: 1.5rem;
  }
}
.c-button {
  margin-top: 40px;
}

.c-button02 {
  margin-top: 40px;
}

.c-com-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.c-com-button > a,
.c-button__type,
.c-button02__type {
  --btn-color-text: var(--color-text);
  --btn-color-background: var(--color-white);
  --btn-color-border: var(--color-grey2);
  --btn-color-icon: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 10px 40px 10px 50px;
  min-width: 280px;
  line-height: 1.2;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--btn-color-text);
  background-color: var(--btn-color-background);
  border: 1px solid var(--btn-color-border);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.c-com-button > a::before, .c-com-button > a::after,
.c-button__type::before,
.c-button__type::after,
.c-button02__type::before,
.c-button02__type::after {
  content: "";
  display: block;
}
.c-com-button > a::before,
.c-button__type::before,
.c-button02__type::before {
  position: absolute;
  top: 50%;
  right: 48px;
  width: 15px;
  height: 13px;
  -webkit-mask-image: url("../img/common/icon-arrow01.svg");
          mask-image: url("../img/common/icon-arrow01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color-background);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-com-button > a::after,
.c-button__type::after,
.c-button02__type::after {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: var(--btn-color-icon);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.c-com-button > a:hover,
.c-button__type:hover,
.c-button02__type:hover {
  --btn-color-text: var(--color-white);
  --btn-color-background: var(--color-main);
  --btn-color-icon: var(--color-white);
}

.c-com-button > a,
.c-button__type {
  font-size: 1.8rem;
  min-height: 56px;
}
.c-com-button > a > span,
.c-button__type > span {
  width: 100%;
  text-align: center;
}
.c-com-button > a.is-back,
.c-button__type.is-back {
  flex-direction: row-reverse;
  padding: 10px 50px 10px 40px;
  min-width: 210px;
}
.c-com-button > a.is-back::before,
.c-button__type.is-back::before {
  top: calc(50% - 6px);
  right: auto;
  left: 48px;
  transform: rotate(180deg);
}

.c-button__type__note {
  display: block;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 500;
}

.c-button02__type {
  --btn-color-text: var(--color-white);
  --btn-color-background: var(--color-accent);
  --btn-color-border: var(--color-grey2);
  --btn-color-icon: var(--color-white);
  padding: 10px 40px;
}
.c-button02__type:hover {
  --btn-color-text: var(--color-accent);
  --btn-color-background: var(--color-white);
  --btn-color-border: var(--color-accent);
  --btn-color-icon: var(--color-accent);
}

.c-button03 {
  margin: 30px 0 0;
}

.c-button03__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 16px 36px 16px 12px;
  text-align: center;
  min-width: 180px;
  height: 100%;
  min-height: 75px;
  line-height: 1.2;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-accent);
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.c-button03__type::before, .c-button03__type::after {
  content: "";
  display: block;
}
.c-button03__type:not([target=_blank])::before {
  position: absolute;
  top: 50%;
  right: 48px;
  width: 15px;
  height: 13px;
  -webkit-mask-image: url("../img/common/icon-arrow01.svg");
          mask-image: url("../img/common/icon-arrow01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-main);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-button03__type:not([target=_blank])::after {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: var(--color-white);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.c-button03__type[target=_blank]::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/common/icon-blank01.svg");
          mask-image: url("../img/common/icon-blank01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4B4B4B;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-button03__type:hover {
  color: var(--color-white);
  background-color: var(--color-accent);
}
.c-button03__type:hover:not([target=_blank])::before {
  background-color: var(--color-white);
}
.c-button03__type:hover:not([target=_blank])::after {
  background-color: var(--color-accent);
}
.c-button03__type:hover[target=_blank]::after {
  background-color: var(--color-white);
}

.c-button03__type__note {
  display: block;
  font-size: 1.6rem;
}

.c-text-link {
  display: flex;
  justify-content: flex-end;
}

.c-text-link__type {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey2);
  transition: 0.3s ease;
  transition-property: background-color, font-weight;
}
.c-text-link__type::before, .c-text-link__type::after {
  content: "";
  display: block;
}
.c-text-link__type:not([href*=".pdf"])::before {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 15px;
  height: 13px;
  -webkit-mask-image: url("../img/common/icon-arrow01.svg");
          mask-image: url("../img/common/icon-arrow01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.c-text-link__type:not([href*=".pdf"])::after {
  width: 30px;
  height: 30px;
  background-color: var(--color-main);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.c-text-link__type[href*=".pdf"]::after {
  width: 22px;
  height: 22px;
  background: url("../img/common/icon-pdf.svg") no-repeat center/contain;
}
.c-text-link__type:hover {
  font-weight: 700;
  background-color: var(--color-light-base3);
}

@media screen and (max-width: 767px) {
  .c-button,
  .c-button02 {
    width: 100%;
  }
  .c-com-button > a,
  .c-button__type,
  .c-button02__type {
    padding: 13px 24px;
    font-size: 1.7rem;
  }
  .c-com-button > a::before,
  .c-button__type::before,
  .c-button02__type::before {
    right: 31px;
  }
  .c-text-link__type {
    padding: 10px 24px;
  }
  .c-text-link__type:not([href*=".pdf"])::before {
    right: 32px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote {
  margin-top: 40px;
  padding: 40px 64px 80px;
  width: 100%;
  background: var(--color-light-base3) no-repeat;
  background-image: url(/assets/img/common/icon-blockquote-start.svg), url(/assets/img/common/icon-blockquote-end.svg);
  background-position: 16px 24px, right 24px bottom 24px;
  position: relative;
}
.c-blockquote cite,
:where(.u-editor) blockquote cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.c-blockquote::before,
:where(.u-editor) blockquote::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: -10px;
  left: -10px;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote {
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 48px var(--content-space);
    background-position: 12px 12px, right 12px bottom 12px;
    background-size: 32px, 32px;
    position: relative;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-blockquote::before,
  :where(.u-editor) blockquote::before {
    content: url(../img/page/icon-blockquote.svg);
    position: absolute;
    top: -10px;
    left: -10px;
  }
}
.c-image {
  display: flex;
  flex-direction: column;
  margin: 88px 0 0;
}
.c-image img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption {
  margin-top: 16px;
  line-height: 1.4;
  font-size: 1.4rem;
}

:where(.u-editor) .asset-image {
  margin-top: 40px;
}
:where(.u-editor) .asset-image figcaption {
  margin-top: 16px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.c-img-title {
  margin-top: 50px;
}
.c-img-title + p .asset-image {
  margin-top: 0;
}

.mt-figure figcaption {
  margin-top: 12px;
  line-height: 1.4;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-image {
    margin-top: 64px;
  }
  .c-image img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 16px;
  }
  :where(.u-editor) p:has(.asset-image:only-child) {
    display: flex;
    justify-content: center;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

th > :first-child, td > :first-child {
  margin-top: 0 !important;
}
th > :last-child, td > :last-child {
  margin-bottom: 0 !important;
}

:where(.u-editor table tr) th p,
:where(.u-editor table tr) td p {
  line-height: 1.3;
}

.u-editor {
  --table-border-color: var(--color-grey2);
  --table-bg-color: var(--color-light-base3);
}
.u-editor table {
  margin-top: 40px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--table-border-color);
}
.u-editor table tr {
  border-bottom: 1px solid var(--table-border-color);
}
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.3;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: justify;
  border-color: var(--table-border-color);
}
.u-editor table thead th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor table tbody th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor table tbody td {
  border-right: 1px solid var(--table-border-color);
}
.u-editor table .u-th-text-large {
  font-size: 1.9rem;
}

@media screen and (max-width: 767px) {
  .c-table-wrap--sp-scroll {
    margin-right: var(--content-negative-space);
    padding-right: var(--content-space);
    padding-bottom: 15px;
    overflow: auto;
  }
  .c-table-wrap--sp-scroll table {
    min-width: 960px;
  }
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  .u-editor table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.3;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: justify;
    border-color: var(--table-border-color);
  }
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.c-media,
.c-media.mt-be-columns {
  gap: 4%;
  margin: 80px 0 0;
}
.c-media > .c-media__img,
.c-media.mt-be-columns > .c-media__img {
  max-width: 480px;
  flex-shrink: 0;
}
.c-media > .c-media__detail,
.c-media.mt-be-columns > .c-media__detail {
  flex-grow: 1;
}

.c-media__img > :first-child,
.c-media__img > p:first-child > :first-child,
.c-media__img > .mt-figure:first-child > :first-child,
.c-media__detail > :first-child {
  margin-top: 0 !important;
}
.c-media__img > :last-child,
.c-media__img > p:first-child > :last-child,
.c-media__img > .mt-figure:first-child > :last-child,
.c-media__detail > :last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .c-media,
  .c-media.mt-be-columns {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 0;
  }
  .c-media > .c-media__img,
  .c-media.mt-be-columns > .c-media__img {
    max-width: none;
  }
  .c-media > .c-media__detail,
  .c-media.mt-be-columns > .c-media__detail {
    width: 100%;
  }
}
:where(.mt-be-columns) {
  display: flex;
  gap: 4%;
  margin: 40px 0 0;
}
:where(.mt-be-columns):has(> :nth-child(3)) {
  gap: 2.8%;
}
:where(.mt-be-columns):has(> :nth-child(4)) {
  gap: 2.4%;
}

:where(.mt-be-columns):has(.c-case-card) {
  margin-top: 64px;
}

.mt-be-column:not(.c-media__detail):not(.c-media__img) {
  flex: 1 1;
}
.mt-be-column:not(.c-media__detail):not(.c-media__img) > :first-child,
.mt-be-column:not(.c-media__detail):not(.c-media__img) > p:first-child > img:first-child {
  margin-top: 0 !important;
}
.mt-be-column:not(.c-media__detail):not(.c-media__img) > :last-child {
  margin-bottom: 0 !important;
}

.mt-be-column:empty {
  display: none;
}

.c-flow-column {
  gap: 75px;
}
.c-flow-column .c-flow-column__item:not(:first-child) {
  position: relative;
}
.c-flow-column .c-flow-column__item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 160px;
  left: -65px;
  width: 55px;
  height: 42px;
  background: url(../img/page/icon-flow01.svg) no-repeat 0 0/contain;
}

.c-flow-column__item {
  flex: 1 1;
}
.c-flow-column__item > :first-child,
.c-flow-column__item > p:has(.asset-image):first-child > :first-child {
  margin-top: 0 !important;
}
.c-flow-column__item > :last-child {
  margin-bottom: 0 !important;
}
.c-flow-column__item > p:not(.c-img-title) {
  line-height: 1.8;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  :where(.mt-be-columns) {
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 0;
  }
  :where(.mt-be-columns):has(.c-case-card) {
    margin-top: 30px;
  }
  :where(.mt-be-columns):has(> :nth-child(3)), :where(.mt-be-columns):has(> :nth-child(4)) {
    gap: 30px;
  }
  .c-flow-column .c-flow-column__item:not(:first-child)::before {
    top: -65px;
    left: calc(50% - 28px);
    transform: rotate(90deg);
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 18px 20px;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
  min-width: 49px;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main);
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    padding: 10px 7px;
    min-width: 46px;
  }
  .wp-pagenavi .pages {
    width: 100%;
  }
  .next-prev {
    flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: 1s;
  transition-property: transform, opacity;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey1);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 153px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  /* Safari用のハードウェアアクセラレーション */
  transform: translateZ(0);
  will-change: opacity;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}
.c-slider02__thumbnail .splide__slide.is-active {
  opacity: 1;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card-wrap.c-card-wrap--columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__type.c-card__type--horizon {
  flex-direction: row;
  gap: 24px;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  transition: 0.2s opacity;
}
:where(.c-card__type--horizon) > .c-card__img {
  width: 317px;
}
.c-card__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-card__prop {
  display: flex;
  align-items: center;
  gap: 12px;
}
:where(.c-card__type--horizon > .c-card__detail) > .c-card__prop {
  flex-direction: column;
  align-items: flex-start;
}

.c-card__date {
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.c-card__category-wrap > li {
  list-style: none;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-grey1);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-main);
}

.c-card__title {
  line-height: 1.5;
  font-size: 1.6rem;
}

.c-card__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-card__tag-wrap > li {
  list-style: none;
}

.c-card__tag {
  color: var(--color-grey1);
  font-size: 1.4rem;
}

.c-simple-posts {
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  gap: 24px 0;
  margin: 30px 0 0;
  padding: 0;
}

.c-simple-posts__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
  align-items: flex-start;
  padding-bottom: 24px;
  list-style: none;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
}

.c-simple-posts__item-link {
  display: contents;
  text-decoration: none;
  color: var(--color-text);
}

.c-simple-posts__prop {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.c-simple-posts__date {
  flex-shrink: 0;
  margin-right: 10px;
  padding: 4px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-grey3);
}

.c-simple-posts__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-simple-posts__category {
  display: inline-block;
  margin-right: 40px;
  padding: 5px 8px;
  line-height: 1;
  text-align: center;
  color: var(--color-grey4);
  font-size: 1.2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey1);
  border-radius: 5px;
}
.c-simple-posts__category.is-information {
  background-color: #E8EDF8;
}
.c-simple-posts__category.is-certified-respondent {
  background-color: #EAF6E3;
}
.c-simple-posts__category.is-maintenance {
  background-color: #FFEDE3;
}
.c-simple-posts__category.is-important {
  color: var(--color-white);
  background-color: #E20000;
  font-weight: 500;
}

.c-simple-posts__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-simple-posts__tag-wrap > li {
  list-style: none;
}

.c-simple-posts__tag {
  color: var(--color-grey1);
  font-size: 1.4rem;
}

.c-simple-posts__title {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 500;
}
.c-simple-posts__item-link:hover .c-simple-posts__title {
  text-decoration: underline;
}

.c-simple-posts02 {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.c-simple-posts02__item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-simple-posts02__item-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: var(--color-text);
}

.c-simple-posts02__date {
  flex-shrink: 0;
  padding-top: 0.6em;
  line-height: 1;
  color: var(--color-grey3);
  font-size: 1.2rem;
  font-weight: 400;
}

.c-simple-posts02__title {
  flex-grow: 1;
  line-height: 1.6;
  font-weight: 500;
  color: #E20000;
}
:where(a.c-simple-posts02__item-link):hover .c-simple-posts02__title {
  text-decoration: underline;
}

/* Component - カードボタン */
.c-card-button {
  display: block;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px 30px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.c-card-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.c-card-button__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-card-button__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.c-card-button__icon svg {
  width: 100%;
  height: 100%;
}

.c-card-button__text {
  font-size: 20px;
  font-weight: 700;
  margin-left: 20px;
}

.c-card-button__arrow {
  width: 44px;
  height: 44px;
  background-color: #00BCD4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.c-card-button__arrow::after {
  content: "→";
  color: white;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 55vw;
  }
  .c-slider--sp .splide__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
    transition: opacity 0.2s ease-in-out;
    /* Safari用のハードウェアアクセラレーション */
    transform: translateZ(0);
    will-change: opacity;
  }
  .c-card-wrap,
  .c-card-wrap.c-card-wrap--columns3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  :where(.c-card__type--horizon) > .c-card__img {
    width: 50%;
  }
  .c-card__prop {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    font-size: 1.4rem;
  }
}
.c-qa-layout {
  margin-top: 51px;
}

.c-qa-layout + .c-qa-layout {
  margin-top: 15px;
}

.c-qa-layout__head::before,
.c-qa-layout__body::before {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  width: 41px;
  min-height: 41px;
  font-family: var(--font-sub);
  font-weight: 700;
}

.c-qa-layout__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  margin: 0;
  background-color: var(--color-light-base3);
}
.c-qa-layout__head::before {
  content: "Q";
  height: 100%;
  color: var(--color-white);
  font-size: 2.6rem;
  background-color: var(--color-main);
}
.c-qa-layout__head > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__head > :last-child {
  margin-bottom: 0 !important;
}

.c-qa-layout__body {
  position: relative;
  margin-top: 10px;
  padding: 0 0 0 53px;
  background-color: var(--color-white);
}
.c-qa-layout__body::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: var(--color-main);
  background-color: var(--color-light-base3);
}
.c-qa-layout__body > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__body > :last-child {
  margin-bottom: 0 !important;
}

.c-qa-layout__title {
  flex-grow: 1;
  padding: 8px 16px 8px 0;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-qa-layout__detail {
  flex-grow: 1;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box,
.c-box02 {
  display: block;
  margin: 40px 0 0;
  padding: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 5px;
}
.c-box > :first-child,
.c-box02 > :first-child {
  margin-top: 0 !important;
}
.c-box > :last-child,
.c-box02 > :last-child {
  margin-bottom: 0 !important;
}

.c-box02 {
  border: 1px solid var(--color-grey2);
}

.c-box__title {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-box,
  .c-box02 {
    margin: 30px 0 0;
    padding: 20px;
  }
  .c-box__title {
    font-size: 1.8rem;
  }
}
.c-flow-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 50px 0 0;
}
.c-flow-list > li {
  margin: 0;
  padding: 30px 15px;
  text-indent: 0;
}

.c-flow-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background-color: var(--color-light-base);
  border: 1px solid var(--color-main);
}
.c-flow-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  margin: 0;
  width: 1rem;
  height: 1.5rem;
  font-size: inherit;
  transform: translateY(-50%);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-flow-list__item:first-child::before {
  display: none;
}

.c-flow-list__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cta-section {
  margin: 60px 0 0;
  padding: 30px;
  background-color: var(--color-grey1);
}
.c-cta-section > :first-child {
  margin-top: 0 !important;
}
.c-cta-section > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-section__title {
  margin: 30px auto 15px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.c-sns-list {
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  justify-content: center;
}

.c-sns__type {
  display: block;
}

.c-news-list {
  display: flex;
  width: 900px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.c-news-list > li {
  list-style: none;
}

.c-news-list__type {
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-grey2);
}

.c-inquiry-box-wrap {
  display: flex;
  gap: 40px;
}

.c-inquiry-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 38px;
  width: calc(50% - 20px);
  background-color: var(--color-white);
  border: 1px solid var(--color-grey2);
  border-radius: 5px;
}

.c-inquiry-box__heading {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 500;
}
.c-inquiry-box__heading.is-inquiry01::after, .c-inquiry-box__heading.is-inquiry02::after {
  content: "";
  display: inline-block;
  height: 55px;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-inquiry-box__heading.is-inquiry01::after {
  margin-left: 16px;
  width: 75px;
  background-image: url("../img/top/icon-inquiry01.svg");
}
.c-inquiry-box__heading.is-inquiry02::after {
  margin-left: 12px;
  width: 53px;
  background-image: url("../img/top/icon-inquiry02.svg");
}

.c-inquiry-box__contact {
  margin-top: 32px;
}
.c-inquiry-box__contact > .c-button {
  margin-top: 16px;
}
.c-inquiry-box__contact > .c-text-link {
  margin-top: 6px;
}
.c-inquiry-box__contact > :first-child {
  margin-top: 0 !important;
}
.c-inquiry-box__contact > :last-child {
  margin-bottom: 0 !important;
}

.c-flow-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 150px;
  background-color: var(--color-white);
}

.c-flow-section > :first-child {
  margin-top: 0 !important;
}
.c-flow-section > :last-child {
  margin-bottom: 0 !important;
}

.c-flow-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 4px 10px 4px 20px;
  background-color: var(--color-light-base3);
  border-radius: 5px;
}

.c-flow-heading__title {
  flex-grow: 1;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
}

.c-flow-heading__num {
  flex-shrink: 0;
  line-height: 1;
  color: var(--color-main);
  font-size: 3.9rem;
  font-weight: 700;
  opacity: 0.8;
}

.c-flow-heading__icon {
  flex-shrink: 0;
}

.c-flow-section__detail {
  margin-top: 12px;
}
.c-flow-section__detail > :first-child {
  margin-top: 0 !important;
}
.c-flow-section__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-flow-text {
  margin: 1.2em 0 0;
  line-height: 2;
  font-size: 1.8rem;
}

.c-flow-note {
  margin: 0.7em 0 0;
  line-height: 2;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-inline: auto;
    padding-right: 20px;
  }
  .c-flow-list > li {
    padding: 15px;
  }
  .c-flow-list__item::before {
    left: calc(100% + 12px);
    width: 10px;
    height: 15px;
  }
  .c-flow-list__item:first-child::before {
    display: block;
  }
  .c-flow-list__item:last-child::before {
    display: none;
  }
  .c-flow-list__text {
    font-size: 1.6rem;
  }
  .c-news-list {
    display: flex;
    width: 900px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .c-news-list > li {
    list-style: none;
  }
  .c-news-list__type {
    display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    border-bottom: 1px solid var(--color-grey2);
  }
  .c-inquiry-box-wrap {
    flex-direction: column;
    gap: 29px;
  }
  .c-inquiry-box {
    padding: 20px 16px;
    width: 100%;
  }
  .c-inquiry-box__heading {
    font-size: 2rem;
  }
  .c-inquiry-box__contact {
    margin-top: 12px;
    width: 100%;
  }
  .c-inquiry-box__contact > .c-button {
    margin-top: 13px;
  }
  .c-inquiry-box__contact > :first-child {
    margin-top: 0 !important;
  }
  .c-inquiry-box__contact > :last-child {
    margin-bottom: 0 !important;
  }
  .c-simple-posts {
    gap: 24px;
  }
  .c-simple-posts__item {
    display: block;
  }
  .c-simple-posts__item-link {
    display: grid;
    grid-template-columns: repeat(2, auto) 1fr;
    gap: 10px;
  }
  .c-simple-posts__prop {
    gap: 10px;
  }
  .c-simple-posts__date {
    margin-right: 0;
  }
  .c-simple-posts__category {
    margin-right: 0;
    min-width: 88px;
  }
  .c-simple-posts__title {
    grid-column: 3 span;
    font-size: 1.6rem;
  }
  .c-simple-posts02__item-link {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 0;
  }
  .c-simple-posts02__date {
    padding: 2px;
  }
  .c-simple-posts02__title {
    font-size: 1.3rem;
  }
  .c-flow-section-wrap {
    gap: 24px;
    padding: 28px 16px;
  }
  .c-flow-heading {
    position: relative;
    padding: 4px 20px;
    min-height: 55px;
    text-align: center;
  }
  .c-flow-heading__title {
    position: relative;
    font-size: 1.7rem;
    z-index: 2;
  }
  .c-flow-heading__num {
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 3rem;
  }
  .c-flow-heading__icon {
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-flow-section__detail {
    margin-top: 9px;
  }
  .c-flow-section__detail > :first-child {
    margin-top: 0 !important;
  }
  .c-flow-section__detail > :last-child {
    margin-bottom: 0 !important;
  }
  .c-flow-text {
    margin: 1.2em 0 0;
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .c-flow-note {
    margin: 0.7em 0 0;
    line-height: 1.4;
    font-size: 1.4rem;
  }
}
.c-search {
  margin: 40px 0 0;
}
.c-search.is-search .c-search__reset-button {
  display: flex;
}

.c-search__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

.c-search__body {
  border-top: 2px solid var(--color-grey1);
}
.c-search__body > :first-child {
  margin-top: 0 !important;
}
.c-search__body > :last-child {
  margin-bottom: 0 !important;
}

.c-search-option-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-search-option {
  display: flex;
  gap: 18px;
}

.c-search-option__head > :first-child,
.c-search-option__body > :first-child {
  margin-top: 0 !important;
}
.c-search-option__head > :last-child,
.c-search-option__body > :last-child {
  margin-bottom: 0 !important;
}

.c-search-option__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 182px;
}

.c-search-option__body {
  flex-grow: 1;
}

.c-search-option__label {
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 700;
}

.c-search-option__label02 {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
}

.c-search__input-field-wrap {
  display: flex;
  border: 1px solid var(--color-grey2);
  border-radius: 4px;
  overflow: hidden;
}

.c-search__input-field {
  flex-grow: 1;
  padding: 3px 10px;
  min-height: 44px;
  line-height: 1;
  font-size: 2rem;
  background-color: var(--color-white);
  border: none;
  border-radius: 0;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.c-search__button {
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  text-indent: -9999px;
  width: 40px;
  background: var(--color-main) url(../img/common/icon-search01.png) no-repeat center center/32px auto;
  border: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

.c-search__field-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  width: 100%;
}

.c-search__radio-field {
  display: block;
  padding: 8px 12px;
  line-height: 1;
  color: var(--color-grey3);
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--color-white);
  border: 1px solid var(--color-grey2);
  border-radius: 30px;
  cursor: pointer;
}
.c-search__radio-field:has(input:checked) {
  color: var(--color-white);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.c-search__radio-field input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.c-search-option-accordion__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0 62px 0 0;
  width: 100%;
  min-height: 42px;
  line-height: 1;
  text-align: justify;
  color: var(--color-text);
  font-size: 2.1rem;
  font-weight: 700;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-search-option-accordion__button::before, .c-search-option-accordion__button::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 8px;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  z-index: 2;
}
.c-search-option-accordion__button::after {
  transition: transform 0.2s;
  transform: rotate(90deg);
}
.c-search-option-accordion__button.active::after {
  transform: rotate(0deg);
}
.c-search-option-accordion__button.active .c-search-option-accordion__button__note {
  opacity: 0;
}

.c-search-option-accordion__button__title {
  margin-right: auto;
}
.c-search-option-accordion__button__title::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 21px);
  right: 0;
  width: 42px;
  height: 42px;
  background-color: var(--color-main);
}

.c-search-option-accordion__button__note {
  line-height: 1.6;
  color: var(--color-grey3);
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 1;
  transition: opacity 0.2s;
}

.c-search-option-accordion__detail {
  display: none;
  padding: 16px 0 0;
}
.c-search-option-accordion__detail > :first-child {
  margin-top: 0 !important;
}
.c-search-option-accordion__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-search__reset-button {
  display: none;
  justify-content: center;
  margin: 40px 0 0;
}

.c-search__reset-button__type {
  display: block;
  padding: 16px 30px;
  line-height: 1.2;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--color-grey3);
  border: 1px solid var(--color-grey2);
  border-radius: 50px;
  transition: 0.2s;
  transition-property: color, background-color;
}
.c-search__reset-button__type:hover {
  color: var(--color-grey3);
  background-color: var(--color-white);
}

.c-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.c-pagination__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-pagination__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 5px;
  min-width: 40px;
  min-height: 50px;
  color: var(--color-grey3);
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey3);
  border-radius: 0;
  transition: 0.2s;
  transition-property: color, font-weight, background-color;
  cursor: pointer;
}
.c-pagination__button.is-active, .c-pagination__button:not(.is-ellipsis):not([disabled]):hover {
  color: var(--color-white);
  font-weight: 700;
  background-color: var(--color-grey3);
}
.c-pagination__button.is-ellipsis {
  border: none;
  cursor: inherit;
}

.c-pagination__button--prev {
  margin-right: 14px;
}

.c-pagination__button--next {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .c-search-option {
    flex-direction: column;
    gap: 8px;
  }
  .c-search-option-accordion__button__note {
    display: none !important;
  }
  .mt-be-columns:has(.c-column-has-list) {
    gap: 0;
  }
}
/*
 * pages
 */
.p-news-section {
  margin: 40px 0 0;
}
.p-news-section > :first-child {
  margin-top: 0 !important;
}
.p-news-section > :last-child {
  margin-bottom: 0 !important;
}

.p-news-section__title {
  margin: 30px 0 0;
  padding: 0;
}

.p-news-section__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px 20px 20px;
  width: 100%;
  line-height: 1;
  text-align: justify;
  color: var(--color-text);
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--color-light-base3);
  border: 1px solid var(--color-light-base3);
  border-radius: 0;
  cursor: pointer;
}
.p-news-section__button::before, .p-news-section__button::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 25px;
  height: 2px;
  background-color: var(--color-grey3);
}
.p-news-section__button::after {
  transition: transform 0.2s;
  transform: rotate(90deg);
}
.p-news-section__title.active .p-news-section__button::after {
  transform: rotate(0deg);
}

.p-news-section__detail {
  display: none;
  padding: 40px 0;
}
.p-news-section__detail > :first-child {
  margin-top: 0 !important;
}
.p-news-section__detail > :last-child {
  margin-bottom: 0 !important;
}

.single-main {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  padding: 64px 0;
  min-height: 230px;
  background-color: var(--color-light-base1);
}
.single-main .single-main__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.single-support-main {
  display: flex;
  align-items: center;
  padding: 32px 0;
  min-height: 206px;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-grey1);
}
.single-support-main .single-support-main__heading {
  display: flex;
  gap: 24px;
}
.single-support-main .single-support-main__heading__prefix {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 8px 13px 8px 0;
  min-width: 57px;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-sub);
  font-size: 3.5rem;
  font-weight: 700;
  border-right: 1px solid var(--color-accent);
}
.single-support-main .single-support-main__heading__title {
  flex-grow: 1;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.single-support-main__inner,
.single-main__inner {
  margin: 0 auto;
  padding: 0 var(--content-space);
  width: var(--content-narrow-max-width);
}

.single-main__prop {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.single-main__date {
  line-height: 1;
  color: var(--color-grey3);
  font-size: 1.4rem;
}

.single-main__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
}
.single-main__category-wrap > li {
  list-style: none;
}

.single-main__category {
  display: inline-block;
  padding: 5px 8px;
  min-width: 88px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--color-grey4);
  font-size: 1.2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey1);
  border-radius: 5px;
}
.single-main__category.is-information {
  background-color: #E8EDF8;
}
.single-main__category.is-certified-respondent {
  background-color: #EAF6E3;
}
.single-main__category.is-maintenance {
  background-color: #FFEDE3;
}
.single-main__category.is-important {
  color: var(--color-white);
  background-color: #E20000;
  font-weight: 500;
}

.single-main__category__no-link {
  color: var(--color-white) !important;
  background-color: var(--color-main) !important;
}

.single-back {
  display: flex;
  justify-content: center;
  margin: 80px 0 0;
}
.single-back > :first-child {
  margin-top: 0 !important;
}
.single-back > :last-child {
  margin-bottom: 0 !important;
}

.c-single-nav {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin: 80px 0 0;
}

.c-single-nav__type {
  display: inline-block;
  position: relative;
  max-width: 385px;
  line-height: 2;
  color: var(--color-accent);
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 400;
}
.c-single-nav__type:hover {
  text-decoration: none;
}
.c-single-nav__type::after {
  display: block;
  position: absolute;
  top: 0;
}
.c-single-nav__type.is-prev {
  margin-right: auto;
  padding-left: 1em;
}
.c-single-nav__type.is-prev::after {
  content: "«";
  left: 0;
}
.c-single-nav__type.is-next {
  margin-left: auto;
  padding-right: 1em;
}
.c-single-nav__type.is-next::after {
  content: "»";
  right: 0;
}

.p-works__description {
  font-size: 1.8rem;
}

.p-works-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-point-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-point-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-point__image {
  position: relative;
}

.p-works-point__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 22px;
  left: 35px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 30px;
}

.p-works-point__description {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-gallery-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__before-after {
  --gap: 36px;
  --gap-half: calc(var(--gap) / 2);
  display: flex;
  gap: var(--gap);
  margin: 50px 0 0;
}

.p-works-gallery-grid__ba {
  position: relative;
}
.p-works-gallery-grid__ba > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__ba > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__ba--before {
  width: calc(30% - var(--gap-half));
}

.p-works-gallery-grid__ba--after {
  flex-shrink: 0;
  margin-left: auto;
  width: calc(70% - var(--gap-half));
}

.p-works-gallery-grid__ba__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 0;
  left: 0;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-main);
}

.p-works-gallery-grid__ba__badge--before,
.p-works-gallery-grid__ba__badge--after {
  text-transform: uppercase;
}

.p-works-gallery__image__caption {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-about__data {
  --border-color: var(--color-dark);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.p-works-about__data__dl {
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p-works-about__data__dl__title {
  padding: 10px 15px;
  font-weight: 700;
  background-color: var(--color-grey1);
}

.p-works-about__data__dl__detail {
  border-left: 1px solid var(--border-color);
  padding: 10px 15px;
}

.p-vice-mv {
  margin: 100px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .single-main {
    margin-bottom: 32px;
    padding: 38px 0;
    min-height: auto;
  }
  .single-main .single-main__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .single-support-main {
    padding: 38px 0;
    min-height: auto;
  }
  .single-support-main .single-support-main__heading {
    gap: 16px;
  }
  .single-support-main .single-support-main__heading__prefix {
    min-width: 37px;
    font-size: 3rem;
  }
  .single-support-main .single-support-main__heading__title {
    flex-grow: 1;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .single-main__prop {
    gap: 10px;
    margin-bottom: 12px;
  }
  .single-main__date,
  .single-main__category {
    font-size: 1.2rem;
  }
  .single-back {
    display: flex;
    justify-content: center;
    margin: 80px 0 0;
  }
  .single-back > :first-child {
    margin-top: 0 !important;
  }
  .single-back > :last-child {
    margin-bottom: 0 !important;
  }
  .c-single-nav {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 80px 0 0;
  }
  .c-single-nav__type {
    max-width: none;
  }
  .p-works-point-grid {
    grid-template-columns: 1fr;
  }
  .p-works-point__badge {
    top: 10px;
    left: 10px;
    font-size: 1.6rem;
  }
  .p-works-gallery-grid__ba__badge {
    font-size: 1.6rem;
  }
  .p-works-about__data {
    grid-template-columns: 1fr;
  }
}
.u-main {
  width: 100%;
  height: 200px;
  margin: 0 auto 80px;
  padding: 16px 0;
  background-color: var(--color-light-base3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-main__inner {
  margin: 0 auto;
  width: var(--content-narrow-max-width);
}
.u-main__inner > :first-child {
  margin-top: 0 !important;
}
.u-main__inner > :last-child {
  margin-bottom: 0 !important;
}

.u-main__title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  line-height: 1.4;
  padding: 0 0 18px;
  font-size: 3.4rem;
}
.u-main__title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-main);
  transform: translateX(-50%);
}
.u-main__title.is-about {
  margin-bottom: 80px;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

.p-contact-cta {
  margin: 50px auto 0;
  max-width: 540px;
}

.p-contact-iframe {
  margin: 40px auto 0;
  max-width: 840px;
}
.p-contact-iframe > :first-child {
  margin-top: 0 !important;
}
.p-contact-iframe > :last-child {
  margin-bottom: 0 !important;
}

.c-company-lead {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 3rem;
}

.c-anc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 23px;
  margin: 40px 0 0;
  padding: 0;
}
.c-anc-list > li {
  position: relative;
  list-style: none;
}

.c-anc-list__type {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  line-height: 1.6;
  text-decoration: none;
  color: var(--color-text);
  font-size: 2.2rem;
  font-weight: 500;
}
.c-anc-list__type::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}
.c-anc-list__type:hover {
  text-decoration: underline;
}

.p-ig-box {
  margin: 40px 0 0;
  padding: 26px 12px 25px;
  background-color: var(--color-light-base1);
  border-radius: 20px;
}
.p-ig-box > :first-child {
  margin-top: 0 !important;
}
.p-ig-box > :last-child {
  margin-bottom: 0 !important;
}

.p-ig-media {
  display: flex;
  gap: 38px;
  margin: 40px 0 0;
}

.p-ig-media__detail > :first-child,
.p-ig-media__img > :first-child {
  margin-top: 0 !important;
}
.p-ig-media__detail > :last-child,
.p-ig-media__img > :last-child {
  margin-bottom: 0 !important;
}

.p-ig-media__detail {
  display: flex;
  align-items: center;
}

.c-case-card > :first-child,
.c-case-card > p:first-child > .asset-image {
  margin-top: 0 !important;
}
.c-case-card > :last-child {
  margin-bottom: 0 !important;
}

.c-case-card__title {
  margin: 30px 0 8px;
  line-height: 1.5;
  font-size: 2.1rem;
  font-weight: 700;
}
.c-case-card__title + * {
  margin-top: 0 !important;
}

.c-case-card__img {
  margin-top: 16px;
}
.c-case-card__img img {
  margin-top: 0;
}

.c-case-card__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 16px 0 0;
  padding: 0;
}
.c-case-card__tag > li {
  list-style: none;
  padding: 4px 5px;
  min-width: 74px;
  line-height: 1.2;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey2);
  border-radius: 20px;
}

a[data-modaal-scope]:has(.asset-image) {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
a[data-modaal-scope]:has(.asset-image)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon-popup01.svg) no-repeat 0 0/contain;
  z-index: 2;
}

.p-support-qa {
  margin: 40px 0 0;
  padding: 16px;
  background-color: var(--color-light-base3);
  border-radius: 5px;
}
.p-support-qa > :first-child {
  margin-top: 0 !important;
}
.p-support-qa > :last-child {
  margin-bottom: 0 !important;
}

.p-support-qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}
.p-support-qa-list:empty {
  display: none;
}
.p-support-qa-list > li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 1.6rem;
}

.p-support-qa-list__type {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}
.p-support-qa-list__type:hover .p-support-qa-list__text {
  text-decoration: underline;
}

.p-support-qa-list__prefix {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 9px 13px;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 700;
  border-right: 1px solid var(--color-accent);
}

.p-support-qa-list__text {
  flex-grow: 1;
  padding: 4px 0;
}

.p-support-manual-section-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 16px;
  margin-top: 50px;
}

.p-support-manual-section {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}

.p-support-manual-section__head > :first-child,
.p-support-manual-section__body > :first-child {
  margin-top: 0 !important;
}
.p-support-manual-section__head > :last-child,
.p-support-manual-section__body > :last-child {
  margin-bottom: 0 !important;
}

.p-support-manual-section__head {
  flex-shrink: 0;
}

.p-support-heading {
  display: flex;
  align-items: center;
  gap: 23px;
  padding-right: 15px;
}

.p-support-heading__icon {
  display: flex;
  justify-content: center;
  width: 62px;
}

.p-support-heading__title {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
}

.p-support-manual-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0 0;
}
.p-support-manual-buttons > .c-button03 {
  margin-top: 0;
}

.p-bg-box-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 64px;
}

.p-bg-box {
  display: flex;
  gap: 40px;
  width: 100%;
}

.p-bg-box__head > :first-child,
.p-bg-box__head > p:first-child > .asset-image,
.p-bg-box__body > :first-child,
.p-bg-box__body > p:first-child > .asset-image {
  margin-top: 0 !important;
}
.p-bg-box__head > :last-child,
.p-bg-box__body > :last-child {
  margin-bottom: 0 !important;
}

.p-bg-box__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 220px;
  background-color: var(--color-light-base3);
}

.p-bg-box__body {
  flex-grow: 1;
}

.p-bg-box__title,
.p-bg-box__title-v2 {
  line-height: 2;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.p-bg-flow {
  display: flex;
  gap: 30px;
  margin: 30px 0 0;
  padding: 0;
  width: 100%;
}
.p-bg-flow > li {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin: 0;
  padding: 10px 16px;
  list-style: none;
  background-color: var(--color-light-base3);
  border-radius: 5px;
}
.p-bg-flow > li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 14px);
  left: -22px;
  width: 16px;
  height: 27px;
  background: url(../img/page/bg-icon-arrow01.png) no-repeat center center/contain;
}

.p-bg-flow__title {
  margin-left: -5px;
  margin-right: -5px;
  line-height: 1;
  color: var(--color-accent);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.p-bg-flow__num {
  margin-right: 2px;
  font-family: var(--font-sub);
  font-size: 2rem;
}

.p-bg-flow__text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (min-width: 768px), print {
  .p-ig-list {
    display: flex;
    gap: 10px;
    margin: 47px 0 0;
    padding: 0;
  }
  .p-ig-list > li {
    list-style: none;
  }
  .p-ig-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    aspect-ratio: 1/1;
    padding: 41px 10px 20px;
    width: 180px;
    line-height: 1.4;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #fff;
    border-radius: 180px;
  }
  .p-ig-list__item::before {
    content: "";
    display: block;
    margin-bottom: 7px;
    width: 25px;
    height: 25px;
    background: url("../img/common/icon-check01.svg") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 767px) {
  .u-main {
    margin-bottom: 54px;
    width: 100%;
    min-height: 153px;
  }
  .u-main__title {
    padding-bottom: 16px;
    line-height: 1.5;
    font-size: 2.5rem;
  }
  .not-found-wrap p.not-found {
    text-align: justify;
    margin-top: 0;
  }
  .c-company-lead {
    font-size: 2rem;
  }
  .c-anc-list {
    gap: 16px;
    justify-content: flex-start;
  }
  .c-anc-list__type {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    line-height: 1.6;
    text-decoration: none;
    font-size: 1.8rem;
  }
  .c-anc-list__type::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
  }
  .p-ig-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 25px 0 0;
    padding: 19px 8px 19px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
  }
  .p-ig-list > li {
    list-style: none;
  }
  .p-ig-list__item {
    position: relative;
    padding: 1px 0 1px 28px;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .p-ig-list__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: url("../img/common/icon-check01.svg") no-repeat 0 0/contain;
  }
  .p-ig-media {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .c-case-card__tag {
    margin-top: 8px;
  }
  .c-case-card__title {
    font-size: 1.8rem;
  }
  .p-bg-box__head {
    width: 100%;
  }
  .p-bg-box {
    flex-direction: column;
    gap: 16px;
  }
  .p-bg-flow {
    flex-direction: column;
  }
  .p-bg-flow > li {
    flex: initial;
    gap: 5px;
    padding: 8px;
    width: 100%;
  }
  .p-bg-flow > li:not(:first-child)::before {
    top: -29px;
    left: calc(50% - 8px);
    transform: rotate(90deg);
  }
  .p-support-manual-section-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px 16px;
    margin-top: 40px;
  }
  .p-support-manual-section {
    gap: 15px;
  }
  .p-support-heading {
    padding-right: 0;
  }
  .p-support-manual-buttons {
    grid-template-columns: 1fr;
  }
  a[data-modaal-scope]:has(.asset-image) {
    pointer-events: none;
    width: 100%;
  }
  a[data-modaal-scope]:has(.asset-image)::after {
    display: none;
  }
  .p-bg-box__title-v2 {
    font-size: 1.6rem;
  }
}
.p-top-section {
  margin-top: 100px;
}

.p-top-section--important-news {
  --content-max-width: calc(1196px + (var(--content-space) * 2));
  margin-top: 0;
  background-color: var(--color-light-base1);
}

.p-top-section--news {
  --content-max-width: calc(900px + (var(--content-space) * 2));
  margin-top: 108px;
}

.p-top-section--about {
  --content-max-width: calc(1200px + (var(--content-space) * 2));
  margin-top: 120px;
  padding: 120px 0 120px;
  background-color: var(--color-light-base3);
}

.p-top-section--inquiry {
  --content-max-width: calc(1080px + (var(--content-space) * 2));
  margin-top: 113px;
}

.p-top-section--support01 {
  --content-max-width: calc(1130px + (var(--content-space) * 2));
  margin-top: 120px;
}

.p-top-section--support02 {
  --content-max-width: calc(1130px + (var(--content-space) * 2));
  margin-top: 120px;
}

.p-top-section--service {
  --content-max-width: calc(1200px + (var(--content-space) * 2));
  margin-top: 128px;
}

.p-top-sub-section > :first-child {
  margin-top: 0 !important;
}
.p-top-sub-section > :last-child {
  margin-bottom: 0 !important;
}

.p-top-sub-section--flow {
  margin-top: 68px;
}

.p-top-sub-section--voice {
  margin-top: 80px;
}

.p-top-section__inner {
  margin: 0 auto;
  padding: 0 var(--content-space);
  width: var(--content-max-width);
}
.p-top-section__inner > :first-child {
  margin-top: 0 !important;
}
.p-top-section__inner > :last-child {
  margin-bottom: 0 !important;
}

.p-top-heading-lv2 + *,
.p-top-heading-lv3 + * {
  margin-top: 0 !important;
}

.p-top-heading-lv2 {
  margin: 108px 0 48px;
  text-align: center;
  position: relative;
  line-height: 1.4;
  padding: 0 0 18px;
  font-size: 3.4rem;
}
.p-top-heading-lv2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-main);
  transform: translateX(-50%);
}
.p-top-heading-lv2.is-about {
  margin-bottom: 80px;
}

.p-top-heading-lv2__sub {
  display: block;
}

.p-top-heading-lv3 {
  margin: 67px 0 24px;
  text-align: center;
  line-height: 1.4;
  font-size: 3rem;
}

.p-top-circle-list {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.p-top-circle-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 176px;
  text-align: center;
  font-weight: 700;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey1);
  border-radius: 176px;
}

.p-top-circle-list__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  color: var(--color-accent);
  font-size: 2rem;
}

.p-top-circle-list__num {
  font-family: var(--font-sub);
  font-size: 5.4rem;
  letter-spacing: -0.10125rem;
}

.p-top-circle-list__sub {
  line-height: 1.2;
  font-size: 1.8rem;
}

.p-top-circle-list__unit {
  margin-bottom: 4px;
}

.p-top-mv {
  display: flex;
  justify-content: flex-end;
  gap: 2.7%;
  margin: 0 auto;
  padding: 1.56% 0 0 0;
  max-width: 1920px;
}

.p-top-mv__main {
  position: relative;
  width: 69.79%;
}

.p-top-mv__sub {
  margin-right: 2.08%;
  padding-top: 2.5%;
  width: 19.16%;
}

.p-top-mv-circle-list {
  display: flex;
  gap: 0.895%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
.p-top-mv-circle-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 16.417%;
  text-align: center;
  font-weight: 700;
  background-color: #ECFBFB;
  border: 2px solid var(--color-grey1);
  border-radius: 176px;
}

.p-top-mv-circle-list__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  color: var(--color-accent);
  font-size: clamp(1.8rem, 1.341vw, 2.6rem);
}

.p-top-mv-circle-list__num {
  font-family: var(--font-sub);
  font-size: clamp(4rem, 3.507vw, 6.8rem);
  letter-spacing: -0.03em;
}

.p-top-mv-circle-list__sub {
  line-height: 1.2;
  font-size: clamp(1.4rem, 1.135vw, 2.2rem);
}

.p-top-mv-circle-list__unit {
  width: 100%;
  margin-bottom: 4px;
}

.p-top-news-more {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top-news-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
.p-top-news-more > :first-child {
  margin-top: 0 !important;
}
.p-top-news-more > :last-child {
  margin-bottom: 0 !important;
}

.p-top-voice-box {
  padding: 64px 80px;
  background-color: var(--color-white);
  border-radius: 5px;
}
.p-top-voice-box > :first-child {
  margin-top: 0 !important;
}
.p-top-voice-box > :last-child {
  margin-bottom: 0 !important;
}

.p-top-about-heading {
  display: flex;
  align-items: center;
  gap: 144px;
  margin: 100px 0 65px;
  padding: 10px 100px 10px 144px;
  height: 125px;
  background: linear-gradient(90deg, #00B4B7 67.31%, rgba(0, 180, 183, 0) 100%);
  border-radius: 5px;
}
.p-top-about-heading + * {
  margin-top: 0 !important;
}

.p-top-about-heading__title {
  margin: 0;
  color: var(--color-white);
  font-size: 2.8rem;
  font-weight: 500;
}

.p-top-about-media {
  display: flex;
  gap: 70px;
}

.p-top-about-media__detail {
  flex-grow: 1;
}

.p-top-about-media__img {
  flex-shrink: 0;
}

.p-top-about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 23px 0 0;
}

.p-top-about-images__item > :first-child {
  margin-top: 0 !important;
}
.p-top-about-images__item > :last-child {
  margin-bottom: 0 !important;
}

.p-top-about-image-title {
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 700;
}

.p-top-about-image {
  display: block;
  position: relative;
  aspect-ratio: 381/235;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey1);
  overflow: hidden;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.p-top-about-image::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon-popup01.svg) no-repeat 0 0/contain;
  z-index: 2;
}
.p-top-about-image > :first-child {
  margin-top: 0 !important;
}
.p-top-about-image > :last-child {
  margin-bottom: 0 !important;
}

.p-top-about-text {
  line-height: 2;
  font-size: 1.8rem;
}

.p-top-about-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 64px;
}
.p-top-about-more > :first-child {
  margin-top: 0 !important;
}
.p-top-about-more > :last-child {
  margin-bottom: 0 !important;
}

.p-top-support-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 50px 0 0;
  padding: 0;
}
.p-top-support-cards > li {
  list-style: none;
}

.p-top-support-card {
  position: relative;
  width: 350px;
}
.p-top-support-card::before, .p-top-support-card::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 5px;
  opacity: 0;
  z-index: 2;
  transition: 0.2s;
  transition-property: opacity, border-width;
}
.p-top-support-card::before {
  border: 2px solid var(--color-light-base3);
}
.p-top-support-card::after {
  border: 2px solid var(--color-accent);
}
.p-top-support-card:hover::before, .p-top-support-card:hover::after {
  opacity: 1;
}
.p-top-support-card:hover::before {
  border-width: 10px;
}

.p-top-support-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  aspect-ratio: 350/167;
  padding: 31px 50px 10px;
  width: 100%;
  text-decoration: none;
  text-align: center;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-grey2);
  border-radius: 5px;
}
.p-top-support-card-link::before, .p-top-support-card-link::after {
  content: "";
  display: block;
  position: absolute;
}
.p-top-support-card-link::before {
  right: 20px;
  bottom: 14px;
  width: 15px;
  height: 13px;
  -webkit-mask-image: url("../img/common/icon-arrow01.svg");
          mask-image: url("../img/common/icon-arrow01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.p-top-support-card-link::after {
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  background-color: var(--color-main);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.p-top-support-card__img {
  margin-bottom: 8px;
  text-align: center;
}

.p-top-support-card__text {
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 500;
}

.p-top-support-card__note {
  display: block;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
}

.p-top-service-box {
  padding: 71px 48px 58px 100px;
  background: url("../img/top/bg-service01.webp") no-repeat right top/cover;
  border-radius: 20px;
}
.p-top-service-box > :first-child {
  margin-top: 0 !important;
}
.p-top-service-box > :last-child {
  margin-bottom: 0 !important;
}

.p-top-service-box__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.p-top-service-box__more > :first-child {
  margin-top: 0 !important;
}
.p-top-service-box__more > :last-child {
  margin-bottom: 0 !important;
}

.p-top-service-heading {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  margin: 50px 0 0;
  font-size: 5.4rem;
  font-weight: 700;
}

.p-top-service-heading__sub {
  line-height: 1.5;
  font-family: var(--font-main);
  font-size: 2.4rem;
}

.p-top-service-text {
  margin: 32px 0 0;
  line-height: 2;
  font-size: 1.8rem;
}

.p-top-service-media {
  display: flex;
  align-items: flex-end;
  gap: 72px;
  margin: 40px 0 0;
}

.p-top-service-media__detail > :first-child,
.p-top-service-media__img > :first-child {
  margin-top: 0 !important;
}
.p-top-service-media__detail > :last-child,
.p-top-service-media__img > :last-child {
  margin-bottom: 0 !important;
}

.p-top-service-media__detail {
  flex-grow: 1;
}

.p-top-service-media__img {
  flex-shrink: 0;
  padding-bottom: 17px;
  max-width: 480px;
}

.p-en-top-anc {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  padding: 10px;
  width: 100%;
  background-color: var(--color-light-base3);
  border-radius: 4px;
}
.p-en-top-anc > :first-child {
  margin-top: 0 !important;
}
.p-en-top-anc > :last-child {
  margin-bottom: 0 !important;
}

.p-top-about-title {
  margin: 0 0 32px;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 0 0 6px;
  border-bottom: 4px solid #A5E6E7;
}

@media screen and (min-width: 768px), print {
  .p-top-service-list {
    display: flex;
    gap: 10px;
    margin: 47px 0 0;
    padding: 0;
  }
  .p-top-service-list > li {
    list-style: none;
  }
  .p-top-service-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    aspect-ratio: 1/1;
    padding: 31px 10px 20px;
    width: 160px;
    line-height: 1.4;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #fff;
    border-radius: 80px;
  }
  .p-top-service-list__item::before {
    content: "";
    display: block;
    margin-bottom: 7px;
    width: 25px;
    height: 25px;
    background: url("../img/common/icon-check01.svg") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 767px) {
  .p-top-section {
    --content-max-width: 100%;
  }
  .p-top-section--news {
    margin-top: 64px;
  }
  .p-top-section--about {
    margin-top: 72px;
    padding: 56px 0;
  }
  .p-top-section--inquiry {
    margin-top: 60px;
  }
  .p-top-section--support01 {
    margin-top: 64px;
  }
  .p-top-section--support02 {
    margin-top: 72px;
  }
  .p-top-section--service {
    margin-top: 64px;
  }
  .p-top-sub-section--flow {
    margin-top: 62px;
  }
  .p-top-sub-section--voice {
    margin-top: 61px;
  }
  .p-top-heading-lv2 {
    margin: 64px 0 31px;
    padding-bottom: 13px;
    font-size: 2.5rem;
  }
  .p-top-heading-lv2.is-about {
    margin-bottom: 40px;
  }
  .p-top-heading-lv3 {
    margin: 60px 0 20px;
    font-size: 2rem;
  }
  .p-top-circle-list {
    gap: 6px;
    width: 100%;
  }
  .p-top-circle-list > li {
    width: 100%;
  }
  .p-top-circle-list__main {
    font-size: 3.623vw;
  }
  .p-top-circle-list__num {
    font-size: 8.696vw;
  }
  .p-top-circle-list__sub {
    line-height: 1.2;
    font-size: 2.899vw;
  }
  .p-top-mv {
    flex-direction: column;
    gap: 14px;
    padding: 10px var(--content-space) 0;
  }
  .p-top-mv__main,
  .p-top-mv__sub {
    width: 100%;
  }
  .p-top-mv__main {
    position: relative;
    aspect-ratio: 764/1007;
  }
  .p-top-mv__sub {
    margin-right: 0;
    padding-top: 0;
  }
  .p-top-mv-circle-list {
    justify-content: center;
    gap: 1.57%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .p-top-mv-circle-list > li {
    width: 30.1%;
  }
  .p-top-mv-circle-list__main {
    font-size: 3.623vw;
  }
  .p-top-mv-circle-list__num {
    font-size: 8.696vw;
  }
  .p-top-mv-circle-list__sub {
    line-height: 1.2;
    font-size: 2.899vw;
  }
  .p-top-news-more {
    margin-top: 32px;
  }
  .p-top-voice-box {
    padding: 28px 16px;
  }
  .p-top-about-heading {
    flex-direction: column;
    gap: 7px;
    position: relative;
    margin-bottom: 32px;
    padding: 10px 13px 0;
    height: auto;
    background: none;
    z-index: 2;
  }
  .p-top-about-heading::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 764/209;
    width: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #00B4B7 67.31%, rgba(0, 180, 183, 0) 100%);
    border-radius: 5px;
  }
  .p-top-about-heading__title {
    font-size: 1.9rem;
    font-weight: 500;
  }
  .p-top-about-media {
    flex-direction: column;
    gap: 20px;
  }
  .p-top-about-images {
    grid-template-columns: 1fr;
  }
  .p-top-about-image {
    aspect-ratio: auto;
    overflow: visible;
    pointer-events: none;
  }
  .p-top-about-image::after {
    display: none !important;
  }
  .p-top-about-image img {
    width: 100%;
  }
  .p-top-about-text {
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .p-top-about-more {
    margin-top: 39px;
  }
  .p-top-support-cards {
    gap: 12px;
    margin: 50px 0 0;
  }
  .p-top-support-card {
    width: 100%;
  }
  .p-top-support-card-link {
    flex-direction: row;
    position: relative;
    aspect-ratio: initial;
    padding: 11px 24px;
  }
  .p-top-support-card-link::before, .p-top-support-card-link::after {
    content: "";
    display: block;
    position: absolute;
  }
  .p-top-support-card-link::before {
    right: 29px;
    bottom: 50%;
    transform: translateY(50%);
  }
  .p-top-support-card-link::after {
    right: 22px;
    bottom: 50%;
    transform: translateY(50%);
  }
  .p-top-support-card__img {
    margin: 0 12px 0 0;
    width: 71px;
  }
  .p-top-support-card__img img {
    margin: 0 auto;
  }
  .p-top-support-card__text {
    text-align: justify;
    font-size: 2rem;
  }
  .p-top-service-box {
    margin-inline: var(--content-negative-space);
    padding: 56px var(--content-space);
    background-color: var(--color-light-base1);
    background-image: none;
    border-radius: 0;
  }
  .p-top-service-box__more {
    margin-top: 0;
  }
  .p-top-service-heading {
    align-items: center;
    line-height: 1.4;
    font-size: 3.7rem;
  }
  .p-top-service-heading__sub {
    margin-bottom: 2px;
    font-size: 2rem;
  }
  .p-top-service-text {
    margin: 32px 0 0;
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .p-top-service-media {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 40px 0 0;
  }
  .p-top-service-media__detail {
    flex-grow: 1;
  }
  .p-top-service-media__img {
    margin: -10px var(--content-negative-space) 0;
    flex-shrink: 0;
    padding-bottom: 17px;
    max-width: 480px;
  }
  .p-top-service-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 25px 0 0;
    padding: 19px 21px 19px;
    background-color: #fff;
    border-radius: 10px;
  }
  .p-top-service-list > li {
    list-style: none;
  }
  .p-top-service-list__item {
    position: relative;
    padding: 1px 0 1px 28px;
    line-height: 1;
    font-size: 1.9rem;
    font-weight: 700;
  }
  .p-top-service-list__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: url("../img/common/icon-check01.svg") no-repeat 0 0/contain;
  }
  .p-en-top-anc {
    margin-bottom: 50px;
  }
}
.u-contents {
  width: var(--u-content-width);
  margin: 0 auto;
}
.u-contents > :first-child {
  margin-top: 0 !important;
}
.u-contents > :last-child {
  margin-bottom: 0 !important;
}

.l-wrapper {
  overflow: clip;
  min-width: var(--u-content-width);
}

.l-main > :first-child {
  margin-top: 0 !important;
}
.l-main > :last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    padding: 0 0 80px;
  }
}