@charset "UTF-8";
/**
 * メディアクエリを呼び出すmixin
 * ブレークポイント定義（$breakpoints マップ）は _variables.scss 側にある。
 * @param {String} $breakpoint - $breakpointsマップのキー
 */
/**
 * transitionプロパティのmixin
 * @param {String} $val... - transitionの値。引数がなければデフォルト値が入る
 */
/**
 * アスペクト比を保持するmixin（旧ブラウザ対応が必要な場合のみ使用）
 *
 * 通常はCSSの`aspect-ratio`プロパティを直接使用してください。
 * このmixinは、iOS 14やIEなど、`aspect-ratio`未対応ブラウザのサポートが
 * 必須のプロジェクトでのみ使用します
 *
 * @param {Number} $width - 横幅の比率
 * @param {Number} $height - 高さの比率
 */
/**
 * remとpxのフォールバック付きでフォントサイズを指定するmixin
 * Note: html { font-size: 62.5%; } の設定が前提 (1rem = 10px)
 * @param {Number} $size - px単位のフォントサイズ
 */
/**
 * 2色のグラデーションを生成するmixin
 * @param {Color} $start-color - 開始色
 * @param {Color} $end-color - 終了色
 * @param {String} $orientation - vertical | horizontal | radial
 */
:root {
  --white: #fff;
  --black: #292929;
  --gray: #ebebeb;
  --lightgray: #F0F0F0;
  --navyblue: #003c65;
  --lightcream: #f7f5ed;
  --pearl: #d9d6cb;
  --seablue: #05558b;
  --oceanblue: #0169b2;
  --rosered: #e04e61;
  --teal: #00b0b8;
  --golden: #f5b700;
  --iceblue: #d3eff7;
  --skyblue: #a8d9e6;
  --letter-spacing: 0.04em;
  --color-primary: var(--navyblue);
  --color-primary-dark: var(--seablue);
  --color-bg: var(--white);
  --color-text: var(--black);
  --color-muted: #6b7280;
  --max-width: 1120px;
  --color-surface: var(--white);
  --color-border: var(--gray);
  --radius: 12px;
  --color-focus: var(--navyblue);
  --color-focus-inset: var(--white);
  --header-height-sp: 57px;
  --header-height-pc: 133px;
}

body,
h1, h2, h3, h4, h5, h6,
p, ol, ul, dl, dt, dd, form,
figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

strong {
  font-weight: normal;
}

table, td, th, tr, thead, tbody {
  border: none;
}

table th {
  text-align: left;
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

textarea {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-shadow: none;
}

select {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-shadow: none;
}
select::-ms-expand {
  display: none;
}

header, footer, section, nav, main,
figure, figcaption, time, small {
  display: block;
}

input[type=submit], input[type=image] {
  border: none;
  padding: 0;
}
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password] {
  outline: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
}
input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

button {
  border: none;
  margin: 0;
  cursor: pointer;
}

input[type=submit], input[type=image], input[type=reset] {
  cursor: pointer;
}

address {
  font-style: normal;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted);
}

* {
  box-sizing: border-box;
  letter-spacing: var(--letter-spacing);
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html[lang=en] body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

body {
  font-family: var(--font-jp, sans-serif);
  line-height: 1.8;
  color: var(--black);
  word-break: break-all;
  font-size: 16px;
  font-size: 1.6rem;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body.is-lock {
  overflow: hidden;
}

a {
  color: var(--navyblue);
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  a {
    transition: all 0.3s ease-out;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-focus-inset), 0 0 0 4px var(--color-focus);
}

.pageWrapper {
  position: relative;
  overflow: clip;
}
@media screen and (min-width: 769px) {
  .pageWrapper {
    padding-top: var(--header-height-pc);
  }
}
@media screen and (max-width: 768px) {
  .pageWrapper {
    overflow-y: visible;
    padding-top: var(--header-height-sp);
  }
}

.wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 769px) {
  .modBpPc {
    display: inherit;
  }
}
@media screen and (max-width: 768px) {
  .modBpPc {
    display: none;
  }
}
@media screen and (min-width: 820px) {
  .modBpPcTablet {
    display: inherit;
  }
}
@media screen and (max-width: 820px) {
  .modBpPcTablet {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .modBpSp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .modBpSp {
    display: inherit;
  }
}
@media screen and (max-width: 768px) {
  .modSection {
    padding: 0 16px;
  }
}
@media screen and (min-width: 769px) {
  .modSection__inner {
    max-width: 1120px;
    width: 90%;
    margin: auto;
  }
}
.modText {
  font-size: 16px;
  font-size: 1.6rem;
}
.modText strong {
  font-weight: 700;
}
.modText__link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .modText__link:hover {
    text-decoration: none;
  }
}
.modTextLead {
  font-size: 22px;
  font-size: 2.2rem;
  font-size: clamp(2rem, 1.7vw, 2.2rem);
  font-weight: 700;
  line-height: 1.36;
}
.modTable01 table {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .modTable01 table {
    border-radius: 32px;
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table {
    border-radius: 24px;
  }
}
@media screen and (min-width: 769px) {
  .modTable01 table tr:first-child th {
    border-top-left-radius: 32px;
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table tr:first-child th {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .modTable01 table tr:first-child td {
    border-top-right-radius: 32px;
  }
}
.modTable01 table tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .modTable01 table tr:last-child th {
    border-bottom-left-radius: 32px;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .modTable01 table tr:last-child td {
    border-bottom-right-radius: 32px;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table tr:last-child td {
    border-radius: 0 0 24px 24px;
  }
}
.modTable01 table tr th, .modTable01 table tr td {
  font-weight: 400;
  vertical-align: top;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen and (min-width: 769px) {
  .modTable01 table tr th, .modTable01 table tr td {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 21px 40px;
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table tr th, .modTable01 table tr td {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 16px;
  }
}
.modTable01 table tr th {
  background: var(--iceblue);
}
@media screen and (min-width: 769px) {
  .modTable01 table tr th {
    width: 200px;
    min-width: 160px;
    text-align: center;
    border-bottom: 1px solid var(--skyblue);
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table tr th {
    text-align: left;
  }
}
.modTable01 table tr td {
  background: var(--lightcream);
}
@media screen and (min-width: 769px) {
  .modTable01 table tr td {
    border-bottom: 1px solid var(--pearl);
  }
}
.modTable01 table tr td a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .modTable01 table tr td a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 769px) {
  .modTable01 table tr td dl {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.modTable01 table tr td dl dt {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .modTable01 table tr td dl dt {
    width: 210px;
  }
}
.modTable01 table tr td iframe {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) {
  .modTable01 table tr td iframe {
    height: 457px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .modTable01 table tr td iframe {
    height: 400px;
    margin-top: 10px;
  }
}
.modTable01 table tr td strong {
  font-weight: 700;
}
.modImage {
  display: block;
}
.modImage img {
  width: 100%;
  height: auto;
}
.modImageCenter {
  text-align: center;
}

.jsFloatImage {
  position: absolute;
  z-index: 2;
}
.jsFloatImage img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .jsFloatImage img {
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .jsFloatImage img {
    padding: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--01 {
    bottom: -28%;
    left: -9rem;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--01 {
    bottom: -7%;
    left: -13%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--02 {
    bottom: -58%;
    right: 14%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--02 {
    bottom: -15.5%;
    right: 32%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--03 {
    top: -13%;
    right: 20%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--03 {
    top: -12%;
    right: -8rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--04 {
    bottom: -12%;
    left: 28%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--04 {
    bottom: -5em;
    right: 0.5em;
  }
  .jsFloatImage--04 img {
    padding: 0.7em;
  }
}
@media screen and (max-width: 768px) and (width <= 460px) {
  .jsFloatImage--04 img {
    padding: 2.2em;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--05 {
    bottom: 23.2%;
    right: -5.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  .jsFloatImage--05 {
    bottom: 100vh;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--06 {
    bottom: 3.7%;
    left: -6.2rem;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--06 {
    bottom: 4rem;
    left: -8.5rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--07 {
    bottom: -24.2rem;
    right: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--07 {
    bottom: -23.7rem;
    right: 2rem;
  }
  .jsFloatImage--07 img {
    padding: 0.5em;
  }
}
@media screen and (max-width: 768px) and (width <= 460px) {
  .jsFloatImage--07 img {
    padding: 2em;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--08 {
    top: -26px;
    left: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--08 {
    width: 27%;
    top: -0.2%;
    left: -4%;
  }
  .jsFloatImage--08 img {
    transform: rotate(7deg);
  }
}
@media screen and (width <= 460px) {
  .jsFloatImage--08 {
    width: 35%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--09 {
    top: 37.2vw;
    right: 2.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .jsFloatImage--09 {
    top: 10.2%;
  }
  .jsFloatImage--09 img {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--09 {
    width: 28%;
    top: -0.6%;
    right: 0;
  }
  .jsFloatImage--09 img {
    transform: rotate(8deg);
  }
}
@media screen and (width <= 460px) {
  .jsFloatImage--09 {
    width: 43%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--10 {
    bottom: -80px;
    right: 25vw;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--10 {
    width: 20%;
    bottom: -0.2%;
    right: -1.7rem;
  }
}
@media screen and (width <= 460px) {
  .jsFloatImage--10 {
    width: 27%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--10 img {
    transform: rotate(-10deg);
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--10 img {
    transform: rotate(50deg);
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--11 {
    top: 3em;
    right: 4.5%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--11 {
    top: 3.7rem;
    right: 4rem;
  }
}
.jsFloatImage--11 img {
  transform: rotate(-10deg);
}
@media screen and (min-width: 769px) {
  .jsFloatImage--12 {
    top: 12.6em;
    left: 9.2%;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--12 {
    top: 16.5rem;
    left: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--13 {
    top: 10.92%;
    left: -5rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--14 {
    top: 13.47%;
    right: 3.7%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--15 {
    top: 20.45%;
    right: -6.6rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--16 {
    top: 26.52%;
    left: -1px;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--17 {
    top: 32.3%;
    right: 18%;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--18 {
    top: 40.39%;
    left: -8rem;
  }
  .jsFloatImage--18 img {
    transform: scaleX(-1) rotate(-13deg);
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--19 {
    top: 43.47%;
    right: -4rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--20 {
    top: 52.14%;
    left: -6.4rem;
  }
  .jsFloatImage--20 img {
    transform: rotate(-7deg);
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--21 {
    top: 61.67%;
    right: -10rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--22 {
    bottom: 31.49%;
    left: -5rem;
  }
  .jsFloatImage--22 img {
    transform: rotate(83deg);
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--23 {
    bottom: 28.12%;
    right: 19rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--24 {
    bottom: 16.37%;
    left: -7rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--25 {
    bottom: 10.88%;
    right: 17.3rem;
  }
}
@media screen and (min-width: 769px) {
  .jsFloatImage--26 {
    bottom: 0.29%;
    left: -4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .jsFloatImage--26 {
    bottom: 0;
    left: -2rem;
  }
}
.jsFloatImage.jsFloatRotate.is-moving {
  animation: floatRotate 1.4s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.jsFloatImage.jsFloatScale.is-moving {
  animation: floatScale 1.4s cubic-bezier(0.22, 0.8, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .jsFloatImage.jsFloatRotate.is-moving, .jsFloatImage.jsFloatScale.is-moving {
    animation: none;
  }
}
html.js-motion-paused .jsFloatImage.jsFloatRotate.is-moving, html.js-motion-paused .jsFloatImage.jsFloatScale.is-moving {
  animation: none;
}

@keyframes floatRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(12deg) scale(1.04);
  }
  55% {
    transform: rotate(-8deg) scale(0.98);
  }
  80% {
    transform: rotate(4deg) scale(1.01);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes floatScale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.08);
  }
  55% {
    transform: scale(0.94);
  }
  80% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}.u-skipLink.astro-ju4pidww {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
}

.u-skipLink.astro-ju4pidww:focus-visible {
  top: 0;
}

.header.astro-ju4pidww {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header.astro-ju4pidww:before {
  content: "";
  height: 7px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url("/assets/img/common/topbar.webp") center / 100% no-repeat;
}

@media screen and (width >= 769px) {
  .header.astro-ju4pidww:before {
    width: calc(100% - 190px);
  }
}

@media screen and (width <= 768px) {
  .header.astro-ju4pidww:before {
    width: calc(100% - 70px);
  }
}

.header__inner.astro-ju4pidww {
  display: flex;
  align-items: center;
  background: var(--white);
}

@media screen and (width >= 769px) {
  .header__inner.astro-ju4pidww {
    filter: drop-shadow(0 20px 15px #08122c1a);
    padding: 12px 16px 13px;
    justify-content: space-between;
  }
}

@media screen and (width <= 768px) {
  .header__inner.astro-ju4pidww {
    padding: 16px 16px 10px;
    gap: 10px;
  }
}

.header__mainLogo.astro-ju4pidww, .header__siteLogo.astro-ju4pidww {
  transition: all .3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .header__mainLogo.astro-ju4pidww:hover, .header__siteLogo.astro-ju4pidww:hover {
    opacity: .6;
  }
}

.header__mainLogo.astro-ju4pidww img.astro-ju4pidww, .header__siteLogo.astro-ju4pidww img.astro-ju4pidww {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

.header__nav.astro-ju4pidww {
  background: var(--white);
}

@media screen and (width >= 769px) {
  .header__nav.astro-ju4pidww {
    padding: 15px 60px;
    filter: drop-shadow(0 20px 10px #08122c12);
    max-width: max-content;
    margin: auto;
    border-radius: 0 0 32px 32px;
  }
}

@media screen and (width >= 769px) and (width <= 1120px) {
  .header__nav.astro-ju4pidww {
    padding: 15px 5%;
  }
}

@media screen and (width <= 768px) {
  .header__nav.astro-ju4pidww {
    background: var(--white);
    display: none;
    width: 100%;
    position: fixed;
    top: 55px;
    left: 0;
    height: calc(100dvh - 55px);
    border-top: 1px solid var(--lightgray);
  }
}

.header__nav__menu.astro-ju4pidww {
  display: flex;
  align-items: center;
}

@media screen and (width >= 769px) {
  .header__nav__menu.astro-ju4pidww {
    justify-content: space-between;
    gap: 0 2.1em;
  }
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww {
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 16px 50px;
    height: 100%;
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--lightgray);
  }

  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww:last-child {
    border-bottom: none;
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww {
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww:hover {
    opacity: .6;
  }
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww {
    width: 100%;
    padding: 24px 40px 24px 0;
    position: relative;
  }

  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww:after {
    content: "";
    width: 18px;
    height: 10px;
    mask: url("/assets/img/common/icon/icon_arrow01.svg") center no-repeat;
    mask-size: 100%;
    background: var(--black);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

@media screen and (width >= 769px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww.pagelink {
    position: relative;
    padding-right: 20px;
    display: inline-block;
  }

  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww.pagelink:after {
    content: "";
    width: 13px;
    height: 8px;
    position: absolute;
    mask: url("/assets/img/common/icon/icon_navi.svg") center no-repeat;
    mask-size: 100%;
    background: var(--black);
    transform: translateY(-50%);
    top: 55%;
    right: 0;
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--black);
  border-radius: 50px;
}

@media screen and (width >= 769px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language {
    padding: 2px 4px;
  }
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language {
    width: auto;
    justify-content: center;
    margin: 24px 0;
    padding: 5px 8px;
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__indicator.astro-ju4pidww {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  transition: transform .3s;
  z-index: 1;
}

@media screen and (width >= 769px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__indicator.astro-ju4pidww {
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
  }
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__indicator.astro-ju4pidww {
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__btn.astro-ju4pidww {
  position: relative;
  z-index: 2;
  border: none;
  background: none;
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

@media screen and (width >= 769px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__btn.astro-ju4pidww {
    padding: 1px 12px;
  }
}

@media screen and (width <= 768px) {
  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__btn.astro-ju4pidww {
    width: auto;
    padding: 1px 17px;
  }

  .header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__btn.astro-ju4pidww:after {
    display: none;
  }
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language .language__btn.astro-ju4pidww.is-active {
  color: var(--black);
}

.header__nav__menu.astro-ju4pidww li.astro-ju4pidww.language.is-en .language__indicator.astro-ju4pidww {
  transform: translateX(100%);
}

@media screen and (width <= 768px) {
  .header__button.astro-ju4pidww {
    width: 27px;
    height: 16px;
    position: relative;
    margin-left: auto;
    padding: 0;
  }

  .header__button.astro-ju4pidww:before, .header__button.astro-ju4pidww:after {
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: var(--black);
    position: absolute;
    left: 0;
    transition: all .3s ease-out;
  }

  .header__button.astro-ju4pidww:before {
    top: 0;
  }

  .header__button.astro-ju4pidww:after {
    bottom: 0;
  }

  .header__button__line.astro-ju4pidww {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: var(--black);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__button.astro-ju4pidww.is-open:before {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .header__button.astro-ju4pidww.is-open:after {
    transform: rotate(-45deg) translate(3px, -4px);
  }

  .header__button.astro-ju4pidww.is-open .header__button__line.astro-ju4pidww {
    opacity: 0;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  html[lang="en"] .header__nav.astro-ju4pidww {
    padding: 15px 1.5vw;
  }

  html[lang="en"] .header__nav__menu.astro-ju4pidww {
    gap: 0 1.7vw;
  }
}

@media screen and (width >= 769px) {
  .jsMenuScroll.astro-ju4pidww {
    transition: all .3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
  }

  .jsMenuScroll.astro-ju4pidww.is-scroll {
    opacity: 0;
    transform: translateY(-50%);
  }
}

.footer.astro-ju4pidww {
  position: relative;
}

@media screen and (width >= 769px) {
  .footer.astro-ju4pidww {
    border-top: 1px solid var(--lightgray);
  }
}

@media screen and (width <= 768px) {
  .footer.astro-ju4pidww {
    display: grid;
    padding-top: 32px;
  }
}

.footer__inner.astro-ju4pidww {
  display: flex;
}

@media screen and (width >= 769px) {
  .footer__inner.astro-ju4pidww {
    padding: 20px 0;
    justify-content: space-between;
    max-width: 890px;
    width: 97%;
    margin: auto;
  }
}

@media screen and (width <= 768px) {
  .footer__inner.astro-ju4pidww {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    margin-top: 32px;
    border-top: 1px solid var(--lightgray);
  }
}

@media screen and (width <= 768px) {
  .footer__inner.astro-ju4pidww.modBpPc {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .footer__inner.astro-ju4pidww.modBpSp {
    display: none;
  }
}

.footer__logo.astro-ju4pidww {
  display: flex;
  align-items: center;
}

@media screen and (width >= 769px) {
  .footer__logo.astro-ju4pidww {
    gap: 8px;
  }
}

@media screen and (width <= 768px) {
  .footer__logo.astro-ju4pidww {
    gap: 10px;
  }
}

.footer__logo.astro-ju4pidww img.astro-ju4pidww {
  max-width: 100%;
  height: auto;
}

.footer__menu.astro-ju4pidww {
  display: flex;
  align-items: center;
}

@media screen and (width <= 768px) {
  .footer__menu.astro-ju4pidww {
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
  }
}

.footer__menu.astro-ju4pidww li.astro-ju4pidww {
  line-height: 1.5;
  position: relative;
}

@media screen and (width >= 769px) {
  .footer__menu.astro-ju4pidww li.astro-ju4pidww {
    padding: 0 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }

  .footer__menu.astro-ju4pidww li.astro-ju4pidww:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--black);
  }

  .footer__menu.astro-ju4pidww li.astro-ju4pidww:last-child {
    padding-right: 0;
  }

  .footer__menu.astro-ju4pidww li.astro-ju4pidww:last-child:after {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .footer__menu.astro-ju4pidww li.astro-ju4pidww {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (width < 350px) {
  .footer__menu.astro-ju4pidww li.astro-ju4pidww {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww, .footer__menu.astro-ju4pidww li.astro-ju4pidww > button.astro-ju4pidww {
  color: var(--black);
  text-decoration: none;
  transition: all .3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .footer__menu.astro-ju4pidww li.astro-ju4pidww > a.astro-ju4pidww:hover, .footer__menu.astro-ju4pidww li.astro-ju4pidww > button.astro-ju4pidww:hover {
    opacity: .6;
  }
}

.footer__motionToggle.astro-ju4pidww {
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.footer__motionToggle.astro-ju4pidww:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.footer__motionToggle.astro-ju4pidww[aria-pressed="false"]:before {
  width: 9px;
  height: 12px;
  background: linear-gradient(currentColor, currentColor) 0 0 / 3px 12px no-repeat, linear-gradient(currentColor, currentColor) 6px 0 / 3px 12px no-repeat;
}

.footer__motionToggle.astro-ju4pidww[aria-pressed="true"]:before {
  width: 0;
  height: 0;
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-left: 10px solid;
}

.footer__topBack.astro-ju4pidww {
  border-radius: 50%;
  z-index: 99;
  padding: 0;
  transition: none;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  background: var(--white);
  filter: drop-shadow(0 20px 15px #08122c1a);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-out, visibility .3s ease-out;
}

@media screen and (width >= 769px) {
  .footer__topBack.astro-ju4pidww {
    width: 65px;
    position: absolute;
    right: 7%;
    bottom: 78%;
  }
}

@media screen and (width >= 769px) and (width <= 1120px) {
  .footer__topBack.astro-ju4pidww {
    right: 2%;
    bottom: 80%;
  }
}

@media screen and (width <= 768px) {
  .footer__topBack.astro-ju4pidww {
    width: 70px;
    margin: auto;
    position: unset;
    left: 50%;
    bottom: 80%;
  }
}

.footer__topBack.astro-ju4pidww img.astro-ju4pidww {
  max-width: 100%;
  height: auto;
}

.footer__topBack.astro-ju4pidww.is-active {
  opacity: 1;
  visibility: visible;
  position: fixed;
  bottom: 3%;
}

@media screen and (width <= 768px) {
  .footer__topBack.astro-ju4pidww.is-active {
    transform: translateX(-50%);
  }
}

.footer__topBack.astro-ju4pidww.is-footer {
  opacity: 1;
  visibility: visible;
  transition: none;
}

@media screen and (width <= 768px) {
  .footer__topBack.astro-ju4pidww.modBpPc {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .footer__topBack.astro-ju4pidww.modBpSp {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer__topBack.astro-ju4pidww:hover {
    opacity: .6;
  }
}

.footer__copy.astro-ju4pidww {
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 10px;
}

@media screen and (width >= 769px) {
  .footer__copy.astro-ju4pidww {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (width <= 768px) {
  .footer__copy.astro-ju4pidww {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (width < 350px) {
  .footer__copy.astro-ju4pidww {
    font-size: 10px;
    font-size: 1rem;
  }
}
.modDocPage.astro-ecugnumn {
  padding: 120px 0;
  margin-top: -50px;
  border-radius: 60px;
  background: var(--white);
}

@media screen and (width <= 930px) {
  .modDocPage.astro-ecugnumn {
    padding: 80px 15px 65px;
  }
}
.modDocSection.astro-b75tp7fi {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
  z-index: 3;
  outline: none;
}

@media screen and (width >= 769px) {
  .modDocSection.astro-b75tp7fi {
    scroll-margin-top: var(--header-height-pc);
  }
}

@media screen and (width <= 768px) {
  .modDocSection.astro-b75tp7fi {
    scroll-margin-top: var(--header-height-sp);
  }
}

.modDocSection--noTop.astro-b75tp7fi {
  margin-top: 0;
}
.modDocSection__title.astro-ddfcczwn {
  margin: 0 0 24px;
}

.modDocSection__title.astro-ddfcczwn h2.astro-ddfcczwn {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (width >= 769px) {
  .modDocSection__title.astro-ddfcczwn h2.astro-ddfcczwn {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.modDocSection__title__num.astro-ddfcczwn, .modDocSection__title__text.astro-ddfcczwn {
  font-weight: 700;
}

.modDocSection__title__num.astro-ddfcczwn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 48px;
  height: 54px;
  background: url("/assets/img/common/rounded_hexagon_black.webp") center no-repeat;
  background-size: cover;
}

@media screen and (width <= 768px) {
  .modDocSection__title__text.astro-ddfcczwn {
    width: calc(100% - 70px);
  }
}
.modText.astro-7lw4miux {
  margin: 0;
  line-height: 2;
}

@media screen and (width >= 769px) {
  .modText.astro-7lw4miux {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (width <= 768px) {
  .modText.astro-7lw4miux {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.modText.astro-7lw4miux strong {
  font-weight: 700;
}

.modTextCenter.astro-7lw4miux {
  text-align: center;
}

.modTextRight.astro-7lw4miux {
  text-align: right;
}
.modList.astro-3fadgqib {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modList.astro-3fadgqib li {
  margin: 0 0 8px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}

@media screen and (width >= 769px) {
  .modList.astro-3fadgqib li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (width <= 768px) {
  .modList.astro-3fadgqib li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.modKv.astro-fmlsd3lu {
  background: url("/assets/img/common/bg_kv01.webp") top no-repeat;
  background-size: cover;
  padding: 47px 20px 90px;
}

@media screen and (width <= 768px) {
  .modKv.astro-fmlsd3lu {
    background: url("/assets/img/common/sp/bg_kv01.webp") top no-repeat;
    background-size: cover;
    padding: 50px 16px 105px;
  }
}

.modKv__inner.astro-fmlsd3lu {
  max-width: 1120px;
  margin: 0 auto;
}

.modKv__title.astro-fmlsd3lu {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (width >= 769px) {
  .modKv__title.astro-fmlsd3lu {
    font-size: 48px;
    font-size: 4.8rem;
    font-size: clamp(32px, 3.7vw, 48px);
  }
}

@media screen and (width <= 768px) {
  .modKv__title.astro-fmlsd3lu {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.jsFloatImage.astro-fmlsd3lu {
  z-index: 3;
}

@media screen and (width <= 768px) {
  .jsFloatImage.astro-fmlsd3lu {
    width: 18%;
  }
}

@media screen and (width <= 460px) {
  .jsFloatImage.astro-fmlsd3lu {
    width: 24%;
  }
}
.modTable__scroll.astro-dwseohi2 {
  overflow-x: auto;
  margin: 0 0 24px;
}

.modTable.astro-dwseohi2 {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.modTable.astro-dwseohi2 th, .modTable.astro-dwseohi2 td {
  border: 1px solid #d0cdc0;
  padding: 22px 16px;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.modTable.astro-dwseohi2 th {
  background: var(--lightcream);
  font-weight: 700;
  text-align: center;
}

.modTable.astro-dwseohi2 td a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

@media (hover: hover) and (pointer: fine) {
  .modTable.astro-dwseohi2 td a:hover {
    text-decoration: none;
  }
}

.modTable.astro-dwseohi2 .modTable__catCell {
  border-bottom-style: dashed;
}

.modTable.astro-dwseohi2 .modTable__catCellDetail {
  border-top: none;
}

@media screen and (width >= 769px) {
  .modTable.astro-dwseohi2 .spTitle {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .modTable.astro-dwseohi2 .pcTitle {
    display: none;
  }
}
.modLeadBlock.astro-rjrwieqp {
  max-width: 900px;
  margin: 0 auto;
}

.modTable {
  margin-top: 40px;
}

.modTable td:nth-child(3), .modTable td:nth-child(4), .modTable td:nth-child(5) {
  text-align: center;
}

.modTable--checklist {
  table-layout: fixed;
}

.modTable--checklist th:first-child, .modTable--checklist td:first-child {
  width: 6%;
}

.modTable--checklist th:nth-child(2), .modTable--checklist td:nth-child(2) {
  width: 32%;
}

.modTable--checklist th:nth-child(3), .modTable--checklist td:nth-child(3) {
  width: 8%;
}

.modTable--checklist th:nth-child(4), .modTable--checklist td:nth-child(4) {
  width: 8%;
}

.modTable--checklist th:nth-child(5), .modTable--checklist td:nth-child(5) {
  width: 8%;
}

.modTable--checklist th:nth-child(6), .modTable--checklist td:nth-child(6) {
  width: 38%;
}
.modDocSection__sub.astro-lp2bxdig {
  margin: 0 0 32px;
  outline: none;
}

@media screen and (width >= 769px) {
  .modDocSection__sub.astro-lp2bxdig {
    scroll-margin-top: var(--header-height-pc);
  }
}

@media screen and (width <= 768px) {
  .modDocSection__sub.astro-lp2bxdig {
    scroll-margin-top: var(--header-height-sp);
  }
}

.modDocSection__subTitle.astro-lp2bxdig {
  font-weight: 700;
  margin: 40px 0 16px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (width >= 769px) {
  .modDocSection__subTitle.astro-lp2bxdig {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.pageWrapper.astro-lafocqpb {
  position: relative;
}

@media screen and (width <= 768px) {
  .pageWrapper.astro-lafocqpb {
    padding-top: 57px;
  }
}

.modLeadBlock.astro-lafocqpb {
  max-width: 900px;
  margin: 0 auto;
}
.pageWrapper--finance.astro-aus246kq .modTable {
  min-width: initial;
}

.pageWrapper--finance.astro-aus246kq .modDocSection {
  margin-top: 0;
}
.modHeading02.astro-ypavld2q {
  position: relative;
}

.modHeading02__small.astro-ypavld2q span.astro-ypavld2q {
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  line-height: 1.3;
  display: inline-block;
}

@media screen and (width >= 769px) {
  .modHeading02__small.astro-ypavld2q span.astro-ypavld2q {
    font-size: 20px;
    font-size: 2rem;
    padding: 5px 15px;
  }
}

@media screen and (width <= 768px) {
  .modHeading02__small.astro-ypavld2q span.astro-ypavld2q {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 11px;
  }
}

.modHeading02__large.astro-ypavld2q {
  font-size: 44px;
  font-size: 4.4rem;
  font-size: clamp(3.2rem, 3.4vw, 4.4rem);
  font-weight: 700;
  font-family: var(--font-en, sans-serif);
  line-height: 1.5;
  text-transform: uppercase;
}

@media screen and (width < 350px) {
  .modHeading02__large.astro-ypavld2q {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.modHeading02__large.astro-ypavld2q span.astro-ypavld2q {
  display: inline-block;
  padding-bottom: 22px;
  position: relative;
}

.modHeading02__large.astro-ypavld2q span.astro-ypavld2q:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 2px;
  height: 22px;
  border-left: 2px solid var(--black);
  transform: rotate(45deg);
}

.modHeading02__large.astro-ypavld2q span.astro-ypavld2q:after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 22px;
  width: 100%;
  height: 2px;
  background: var(--black);
}
.modCard01__item.astro-xal5bfgz > a.astro-xal5bfgz {
  color: var(--black);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .modCard01__item.astro-xal5bfgz > a.astro-xal5bfgz:hover .item__image.astro-xal5bfgz img.astro-xal5bfgz {
    transform: scale(1.1);
  }

  .modCard01__item.astro-xal5bfgz > a.astro-xal5bfgz:hover .item__content__title.astro-xal5bfgz .text.astro-xal5bfgz:after {
    right: -10px;
  }
}

.item.astro-xal5bfgz {
  display: grid;
}

@media screen and (width >= 769px) {
  .item.astro-xal5bfgz {
    gap: 15px;
  }
}

@media screen and (width <= 768px) {
  .item.astro-xal5bfgz {
    gap: 10px;
  }
}

.item__image.astro-xal5bfgz {
  overflow: hidden;
  position: relative;
  filter: drop-shadow(0 16px #ebebeb);
  border-radius: 32px;
}

@media screen and (width >= 769px) {
  .item__image.astro-xal5bfgz {
    aspect-ratio: 1;
    margin-bottom: 16px;
  }
}

@media screen and (width <= 768px) {
  .item__image.astro-xal5bfgz {
    margin-bottom: 14px;
  }
}

.item__image.astro-xal5bfgz img.astro-xal5bfgz {
  transition: all .3s ease-out;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

@media screen and (width >= 769px) {
  .item__image.astro-xal5bfgz img.astro-xal5bfgz {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (width <= 768px) {
  .item__image.astro-xal5bfgz img.astro-xal5bfgz {
    height: auto;
  }
}

.item__content__title.astro-xal5bfgz {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.item__content__title.astro-xal5bfgz .icon.astro-xal5bfgz {
  width: 40px;
  height: 45px;
  display: grid;
  place-content: center;
  mask: url("/assets/img/common/rounded_hexagon.webp") center no-repeat;
  mask-size: 100%;
}

.item__content__title.astro-xal5bfgz .icon.astro-xal5bfgz img.astro-xal5bfgz {
  max-width: 100%;
  height: auto;
  max-height: 44px;
  transform: scale(.55);
}

.item__content__title.astro-xal5bfgz .icon--oceanblue.astro-xal5bfgz {
  background: var(--oceanblue);
}

.item__content__title.astro-xal5bfgz .icon--rosered.astro-xal5bfgz {
  background: var(--rosered);
}

.item__content__title.astro-xal5bfgz .icon--teal.astro-xal5bfgz {
  background: var(--teal);
}

.item__content__title.astro-xal5bfgz .icon--golden.astro-xal5bfgz {
  background: var(--golden);
}

.item__content__title.astro-xal5bfgz .text.astro-xal5bfgz {
  display: inline-block;
  position: relative;
  padding-right: 40px;
}

.item__content__title.astro-xal5bfgz .text.astro-xal5bfgz:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  transition: all .3s;
  width: 22px;
  height: 12px;
  mask: url("/assets/img/common/icon/icon_arrow01.svg") center no-repeat;
  mask-size: 100%;
  background: var(--black);
}
.modBtn.astro-ekguhzzh {
  max-width: 350px;
  display: block;
  width: 100%;
  border-radius: 30px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  transition: all .3s;
  margin: auto;
  position: relative;
  font-family: inherit;
  border: none;
  cursor: pointer;
  border: 1px solid #0000;
  filter: drop-shadow(0 15px 15px #29292933);
}

@media (hover: hover) and (pointer: fine) {
  .modBtn.astro-ekguhzzh:hover {
    border-color: var(--black);
    color: var(--black);
    background: var(--white);
  }

  .modBtn.astro-ekguhzzh:hover:after {
    background: var(--black);
  }
}

@media screen and (width >= 769px) {
  .modBtn.astro-ekguhzzh {
    font-size: 20px;
    font-size: 2rem;
    padding: 12px 20px;
  }
}

@media screen and (width <= 768px) {
  .modBtn.astro-ekguhzzh {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 20px;
  }
}

.modBtn.astro-ekguhzzh:after {
  content: "";
  width: 22px;
  height: 15px;
  mask: url("/assets/img/common/icon/icon_arrow01.svg") center no-repeat;
  mask-size: 100%;
  background: var(--white);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: all .3s;
  transform: translateY(-50%);
}

.modBtn.astro-ekguhzzh.secondary {
  background: none;
  color: var(--navyblue);
  border: 1px solid var(--navyblue);
  filter: none;
}

.modBtn.astro-ekguhzzh.secondary:after {
  background: var(--navyblue);
}

@media (hover: hover) and (pointer: fine) {
  .modBtn.astro-ekguhzzh.secondary:hover {
    background: var(--gray);
  }
}
.modSection--topBg01.astro-a4izdrzp {
  position: relative;
  background-repeat: repeat;
  background-color: var(--white);
  background-size: contain;
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-a4izdrzp {
    background-image: url("/assets/img/common/img_bg01.webp");
    background-position: 0 -28.5em;
    padding: 160px 0;
    border-radius: 0 0 60px 60px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--topBg01.astro-a4izdrzp {
    border-radius: 0 0 30px 30px;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-a4izdrzp {
    background-image: url("/assets/img/common/sp/img_bg01.webp");
    background-position: 0 -7.5em;
    border-radius: 0 0 24px 24px;
    padding: 120px 16px 155px;
  }
}

.modSection--topBg01.astro-a4izdrzp .modSection__inner.astro-a4izdrzp {
  display: grid;
  position: relative;
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-a4izdrzp .modSection__inner.astro-a4izdrzp {
    gap: 160px;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-a4izdrzp .modSection__inner.astro-a4izdrzp {
    gap: 120px;
  }
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-a4izdrzp .modCard01.astro-a4izdrzp {
    margin: 80px 0;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-a4izdrzp .modCard01.astro-a4izdrzp {
    margin: 64px 0;
  }
}

.modSection--about.astro-a4izdrzp {
  position: relative;
}

@media screen and (width >= 769px) {
  .modSection--about.astro-a4izdrzp {
    margin-top: -46px;
    padding: 210px 0;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--about.astro-a4izdrzp {
    padding: 16% 0;
  }
}

@media screen and (width <= 768px) {
  .modSection--about.astro-a4izdrzp {
    margin-top: -36px;
    padding: 86px 16px;
  }
}

.modSection--radiusBgImage.astro-a4izdrzp {
  background-repeat: repeat-x;
  background-color: var(--white);
  background-image: url("/assets/img/common/img_bg02.webp");
}

@media screen and (width >= 769px) {
  .modSection--radiusBgImage.astro-a4izdrzp {
    background-size: contain;
    background-position: 0 25em;
    padding: 120px 0;
    margin-top: -60px;
    border-radius: 60px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--radiusBgImage.astro-a4izdrzp {
    border-radius: 30px;
  }
}

@media screen and (width <= 768px) {
  .modSection--radiusBgImage.astro-a4izdrzp {
    position: relative;
    background-size: 200%;
    background-position: -10em 115em;
    padding: 100px 16px 120px;
    margin-top: -40px;
    border-radius: 24px;
  }
}

.modHeading02 + .modText.astro-a4izdrzp {
  margin-top: 40px;
}

.modCard01.astro-a4izdrzp {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (width >= 769px) {
  .modCard01.astro-a4izdrzp {
    gap: 40px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modCard01.astro-a4izdrzp {
    gap: 20px;
  }
}

@media screen and (width <= 768px) {
  .modCard01.astro-a4izdrzp {
    gap: 32px;
  }
}

@media screen and (width >= 769px) {
  .modCard01__item {
    width: calc(33.3333% - 26.6667px);
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modCard01__item {
    width: calc(33.3333% - 13.3333px);
  }
}

@media screen and (width <= 768px) {
  .modCard01__item {
    width: 100%;
  }
}

.top {
  overflow: clip;
}

.topVision.astro-a4izdrzp, .topAim.astro-a4izdrzp, .modSection--about.astro-a4izdrzp {
  outline: none;
}

@media screen and (width >= 769px) {
  .topVision.astro-a4izdrzp, .topAim.astro-a4izdrzp, .modSection--about.astro-a4izdrzp {
    scroll-margin-top: var(--header-height-pc);
  }
}

@media screen and (width <= 768px) {
  .topVision.astro-a4izdrzp, .topAim.astro-a4izdrzp, .modSection--about.astro-a4izdrzp {
    scroll-margin-top: var(--header-height-sp);
  }
}

.topVision.astro-a4izdrzp {
  position: relative;
}

.topKv.astro-a4izdrzp {
  position: relative;
}

.topKv.astro-a4izdrzp:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (width >= 769px) {
  .topKv.astro-a4izdrzp:after {
    top: 0;
    background-image: url("/assets/img/top/img_kvBg.webp");
    background-position: center;
    height: 100%;
  }
}

@media screen and (width <= 768px) {
  .topKv.astro-a4izdrzp:after {
    background-image: url("/assets/img/top/sp/img_kvBg.webp");
    background-position: 0 0;
    height: 84.5%;
    top: 57px;
  }
}

.topKv__inner.astro-a4izdrzp {
  position: relative;
}

@media screen and (width >= 769px) {
  .topKv__inner.astro-a4izdrzp {
    max-width: 1300px;
    width: 100%;
    margin: auto;
  }
}

.topKv__image.astro-a4izdrzp {
  display: block;
}

@media screen and (width >= 769px) {
  .topKv__image.astro-a4izdrzp {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -4%;
    width: 63%;
    max-width: 758px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .topKv__image.astro-a4izdrzp {
    max-width: 550px;
    top: 21%;
  }
}

@media screen and (width <= 768px) {
  .topKv__image.astro-a4izdrzp {
    width: 100%;
    margin: 0 -5px 0 auto;
  }
}

.topKv__image.astro-a4izdrzp img.astro-a4izdrzp {
  width: 100%;
  height: auto;
}

@media screen and (width >= 769px) {
  .topKv__content.astro-a4izdrzp {
    max-width: 1120px;
    width: 90%;
    margin: auto;
  }
}

@media screen and (width <= 768px) {
  .topKv__content.astro-a4izdrzp {
    padding: 0 16px;
  }
}

.topKv__content__text.astro-a4izdrzp {
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.45;
  font-size: 48px;
  font-size: 4.8rem;
  font-size: clamp(3.4rem, 3.7vw, 4.8rem);
}

@media screen and (width >= 769px) {
  .topKv__content__text.astro-a4izdrzp {
    padding: 145px 0 60px;
  }
}

@media screen and (width <= 768px) {
  .topKv__content__text.astro-a4izdrzp {
    padding: 110px 0 40px;
    letter-spacing: 0;
  }
}

@media screen and (width < 350px) {
  .topKv__content__text.astro-a4izdrzp {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.topVision__flex.astro-a4izdrzp {
  display: flex;
}

@media screen and (width >= 769px) {
  .topVision__flex.astro-a4izdrzp {
    margin-top: 40px;
    align-items: flex-start;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex.astro-a4izdrzp {
    flex-direction: column;
    margin-top: 64px;
    background: url("/assets/img/top/sp/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex.astro-a4izdrzp.modBpPc {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .topVision__flex.astro-a4izdrzp.modBpSp {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .topVision__flex__content.astro-a4izdrzp {
    width: 51.4%;
    margin: 7% -5% 0 0;
    padding: 5.5% 12% 7% 7%;
    min-height: 430px;
    background: url("/assets/img/top/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex__content.astro-a4izdrzp {
    padding: 24px 24px 77px;
    min-height: 250px;
  }
}

.topVision__flex__content.astro-a4izdrzp .modTextLead.astro-a4izdrzp {
  margin-bottom: 16px;
}

@media screen and (width >= 769px) {
  .topVision__flex__image.astro-a4izdrzp {
    width: 53.6%;
  }
}

.topVision__flex__image.astro-a4izdrzp img.astro-a4izdrzp {
  width: 100%;
  height: auto;
}

@media screen and (width >= 769px) {
  .topVision__flex__image.astro-a4izdrzp img.astro-a4izdrzp {
    border-radius: 32px;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex__image.astro-a4izdrzp img.astro-a4izdrzp {
    border-radius: 24px;
  }
}

.topAim__flex.astro-a4izdrzp {
  display: flex;
  gap: 24px;
}

@media screen and (width >= 769px) {
  .topAim__flex.astro-a4izdrzp {
    padding: 40px 64px 60px 40px;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
    background: url("/assets/img/top/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex.astro-a4izdrzp {
    margin-top: 64px;
    padding: 24px 24px 77px;
    flex-direction: column;
    background: url("/assets/img/top/sp/img_bg02.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-a4izdrzp {
    width: 52.5%;
    padding: 15px 0 0;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex__content.astro-a4izdrzp {
    min-height: 380px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-a4izdrzp .modText.astro-a4izdrzp + .modText.astro-a4izdrzp {
    margin-top: 35px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-a4izdrzp .modTextLead.astro-a4izdrzp {
    margin-top: 35px;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex__content.astro-a4izdrzp .modTextLead.astro-a4izdrzp {
    margin-top: 20px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__image.astro-a4izdrzp {
    width: 41.4%;
  }
}

.topAim__flex__image.astro-a4izdrzp img.astro-a4izdrzp {
  width: 100%;
  height: auto;
}

.topAbout.astro-a4izdrzp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.topAbout.astro-a4izdrzp img.astro-a4izdrzp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (width >= 1600px) {
  .topAbout.astro-a4izdrzp img.astro-a4izdrzp {
    object-position: center;
  }
}

@media screen and (width <= 768px) {
  .topAbout.astro-a4izdrzp img.astro-a4izdrzp {
    object-position: center;
  }
}

@media screen and (width <= 768px) {
  .jsFloatImage.astro-a4izdrzp {
    width: 21%;
  }
}

@media screen and (width <= 460px) {
  .jsFloatImage.astro-a4izdrzp {
    width: 24%;
  }
}
.modOrderedList.astro-o5gjm2xy {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.modOrderedList.astro-o5gjm2xy li {
  margin: 0 0 12px;
}

@media screen and (width >= 769px) {
  .modOrderedList.astro-o5gjm2xy li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (width <= 768px) {
  .modOrderedList.astro-o5gjm2xy li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.modOrderedList.astro-o5gjm2xy.blockList li {
  margin-top: 20px;
}
.modToc.astro-zt2lvzjr {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--lightcream);
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
}

@media screen and (width <= 768px) {
  .modToc.astro-zt2lvzjr {
    padding: 20px;
  }
}

.modToc__list.astro-zt2lvzjr {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modToc.astro-zt2lvzjr .modToc__list li {
  padding-bottom: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.modToc.astro-zt2lvzjr .modToc__list a {
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (hover: hover) and (pointer: fine) {
  .modToc.astro-zt2lvzjr .modToc__list a:hover {
    text-decoration: none;
  }
}

.modToc.astro-zt2lvzjr .modToc__list a {
  flex: 1;
  min-width: 0;
}

.modToc.astro-zt2lvzjr .modToc__num {
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  font-size: 1.6rem;
  flex: 0 0 2em;
  text-align: right;
}

.modToc.astro-zt2lvzjr .modToc__sublist {
  flex: 1 0 100%;
  list-style: none;
  margin: 6px 0 10px;
  padding-left: 2.6em;
}

.modToc.astro-zt2lvzjr .modToc__sublist li {
  padding-bottom: 2px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px;
}

.modToc.astro-zt2lvzjr .modToc__sublist a {
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .modToc.astro-zt2lvzjr .modToc__sublist a:hover {
    text-decoration: none;
  }
}

.modToc.astro-zt2lvzjr .modToc__sublist .modToc__num {
  font-size: 14px;
  font-size: 1.4rem;
  flex: 0 0 3.4em;
}
.modAddress.astro-lsj7tn3p {
  border-radius: 16px;
  border: 1px solid var(--lightcream);
  padding: 40px;
  margin: 40px 0;
}

@media screen and (width <= 768px) {
  .modAddress.astro-lsj7tn3p {
    padding: 20px;
  }
}
.modLeadBlock {
  max-width: 900px;
  margin: 0 auto;
}

.modText + .modOrderedList.astro-4yzr2gc6 {
  margin-top: 20px;
}

.modTable {
  margin-top: 40px;
}

.modTable th:first-child, .modTable td:first-child {
  width: 27.78%;
}

.modTable th:nth-child(2), .modTable td:nth-child(2) {
  width: 27.78%;
}

.modTable th:nth-child(3), .modTable td:nth-child(3) {
  width: 22.22%;
}

.modTable th:nth-child(4), .modTable td:nth-child(4) {
  width: 22.22%;
}

.jsFloatImage {
  z-index: 3;
}

@media screen and (width <= 768px) {
  .jsFloatImage {
    width: 18%;
  }
}

@media screen and (width <= 460px) {
  .jsFloatImage {
    width: 24%;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--13 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--14 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--15 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--16 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--17 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--18 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--19 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--20 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--21 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--22 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--23 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--24 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--25 {
    display: none;
  }
}
.modLeadBlock {
  max-width: 900px;
  margin: 0 auto;
}

.modText + .modOrderedList.astro-bovam6j2 {
  margin-top: 20px;
}

.modTable {
  margin-top: 40px;
}

.modTable th:first-child, .modTable td:first-child {
  width: 27.78%;
}

.modTable th:nth-child(2), .modTable td:nth-child(2) {
  width: 27.78%;
}

.modTable th:nth-child(3), .modTable td:nth-child(3) {
  width: 22.22%;
}

.modTable th:nth-child(4), .modTable td:nth-child(4) {
  width: 22.22%;
}

.jsFloatImage {
  z-index: 3;
}

@media screen and (width <= 768px) {
  .jsFloatImage {
    width: 18%;
  }
}

@media screen and (width <= 460px) {
  .jsFloatImage {
    width: 24%;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--13 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--14 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--15 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--16 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--17 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--18 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--19 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--20 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--21 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--22 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--23 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--24 {
    display: none;
  }
}

@media screen and (width < 1120px) {
  .jsFloatImage--25 {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--13.astro-bovam6j2 {
    top: 10.93%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--14.astro-bovam6j2 {
    top: 13.53%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--15.astro-bovam6j2 {
    top: 20.47%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--16.astro-bovam6j2 {
    top: 26.53%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--17.astro-bovam6j2 {
    top: 32.6%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--18.astro-bovam6j2 {
    top: 40.4%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--19.astro-bovam6j2 {
    top: 43.48%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--20.astro-bovam6j2 {
    top: 52.15%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--21.astro-bovam6j2 {
    top: 61.68%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--22.astro-bovam6j2 {
    bottom: 31.49%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--23.astro-bovam6j2 {
    bottom: 27.73%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--24.astro-bovam6j2 {
    bottom: 16.37%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--25.astro-bovam6j2 {
    bottom: 11.55%;
  }
}

@media screen and (width >= 769px) {
  .jsFloatImage--26.astro-bovam6j2 {
    bottom: .29%;
  }
}
.modService.astro-b6zddqmb {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (width >= 769px) {
  .modService.astro-b6zddqmb {
    gap: 40px;
  }
}

@media screen and (width <= 768px) {
  .modService.astro-b6zddqmb {
    flex-direction: column;
    align-items: flex-start;
  }

  .modService.astro-b6zddqmb .modService__content__head.astro-b6zddqmb {
    gap: 0 20px;
    order: -1;
    padding-left: 5px;
    margin-bottom: 0;
    line-height: 1.55;
  }
}

@media screen and (width >= 769px) {
  .modService.astro-b6zddqmb + .modService.astro-b6zddqmb {
    margin-top: 120px;
  }
}

@media screen and (width <= 768px) {
  .modService.astro-b6zddqmb + .modService.astro-b6zddqmb {
    margin-top: 60px;
  }
}

@media screen and (width >= 769px) {
  .modService--right.astro-b6zddqmb {
    flex-direction: row-reverse;
  }
}

@media screen and (width >= 769px) {
  .modService__picture.astro-b6zddqmb {
    width: 43%;
  }
}

@media screen and (width <= 768px) {
  .modService__picture.astro-b6zddqmb {
    width: 100%;
    margin-top: 22px;
  }
}

.modService__picture.astro-b6zddqmb picture.astro-b6zddqmb {
  display: block;
}

.modService__picture.astro-b6zddqmb img.astro-b6zddqmb {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

@media screen and (width <= 768px) {
  .modService__picture.astro-b6zddqmb img.astro-b6zddqmb {
    border-radius: 24px;
  }
}

@media screen and (width >= 769px) {
  .modService__content.astro-b6zddqmb {
    width: calc(57% - 40px);
  }
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb {
    display: contents;
  }
}

.modService__content__head.astro-b6zddqmb {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.modService__content__head__icon.astro-b6zddqmb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 92px;
  display: grid;
  place-content: center;
  mask: url("/assets/img/common/rounded_hexagon.webp") center no-repeat;
  mask-size: 100%;
  background: var(--service-color);
}

@media screen and (width <= 768px) {
  .modService__content__head__icon.astro-b6zddqmb {
    width: 62px;
    height: 74px;
  }
}

.modService__content__head__icon.astro-b6zddqmb img.astro-b6zddqmb {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.modService__content__head.astro-b6zddqmb .title.astro-b6zddqmb {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .08em;
}

@media screen and (width <= 768px) {
  .modService__content__head.astro-b6zddqmb .title.astro-b6zddqmb {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.modService__content.astro-b6zddqmb .serviceList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 12px;
  padding: 0;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .serviceList {
    gap: 12px;
    margin: 30px 0 0;
  }
}

.modService__content.astro-b6zddqmb .serviceList__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.6;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

.modService__content.astro-b6zddqmb .serviceList__item:before {
  content: "";
  position: relative;
  display: inline-block;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  background: var(--service-color);
  margin-right: 10px;
}

.modService__content.astro-b6zddqmb .description {
  margin: 0 0 20px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .description {
    margin: 15px 0 0;
    line-height: 2;
    letter-spacing: .01em;
  }
}

.modService__content.astro-b6zddqmb .strengths {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths {
    margin: 25px 0 0;
    gap: 10px 0;
  }
}

.modService__content.astro-b6zddqmb .strengths__item {
  position: relative;
  background: var(--service-color);
  border-radius: 15px;
  padding: 2px 2px 2px 80px;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths__item {
    padding: 2px 2px 2px 55px;
  }
}

.modService__content.astro-b6zddqmb .strengths__item:before {
  content: "";
  position: absolute;
  display: block;
  left: 27px;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  background: url("/assets/img/service/icon_check.svg") center no-repeat;
  background-size: contain;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths__item:before {
    width: 25px;
    height: 25px;
    top: calc(50% - 12.5px);
    left: 16px;
  }
}

.modService__content.astro-b6zddqmb .strengths__item__inner {
  display: flex;
  align-items: center;
  padding: 2px 0;
  border-radius: 13px;
  background: var(--white);
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths__item__inner {
    padding: 16px 0;
  }
}

.modService__content.astro-b6zddqmb .strengths__item__title {
  flex: none;
  width: 70px;
  height: 70px;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths__item__title {
    width: 54px;
    margin-left: 10px;
  }
}

.modService__content.astro-b6zddqmb .strengths__item__detail {
  margin: 0;
  line-height: 2;
  font-size: 14px;
  font-size: 1.4rem;
  padding-right: 10px;
}

@media screen and (width <= 768px) {
  .modService__content.astro-b6zddqmb .strengths__item__detail {
    padding-right: 15px;
    letter-spacing: .01em;
  }
}

.modService__content.astro-b6zddqmb .num {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.service.astro-okd4azjq {
  position: relative;
  background-position: 50% -36em;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/img/common/img_bg01.webp");
  background-color: var(--white);
  padding: 80px 16px 160px;
  margin-top: -50px;
  border-radius: 60px;
}

@media screen and (width <= 930px) {
  .service.astro-okd4azjq {
    padding: 120px 16px 100px;
  }
}

@media screen and (width <= 768px) {
  .service.astro-okd4azjq {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/assets/img/common/sp/img_bg01.webp");
    background-color: var(--white);
    border-radius: 24px;
  }
}

@media screen and (width >= 769px) {
  .service.astro-okd4azjq .modImage.astro-okd4azjq {
    width: 67.5%;
    margin: -10px auto 47px;
    min-width: 720px;
  }
}

@media screen and (width <= 768px) {
  .service.astro-okd4azjq .modImage.astro-okd4azjq {
    width: 116%;
    margin: -27px auto 30px -8%;
  }
}

.modLeadText.astro-okd4azjq {
  max-width: 1120px;
  margin: 0 auto 30px;
  font-weight: 400;
  text-align: center;
}

@media screen and (width <= 768px) {
  .modLeadText.astro-okd4azjq {
    text-align: left;
    line-height: 2;
    margin: 0 auto 60px;
  }
}
.service.astro-pz7ncu2q {
  position: relative;
  background-position: 50% -36em;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/img/common/img_bg01.webp");
  background-color: var(--white);
  padding: 80px 16px 160px;
  margin-top: -50px;
  border-radius: 60px;
}

@media screen and (width <= 930px) {
  .service.astro-pz7ncu2q {
    padding: 120px 16px 100px;
  }
}

@media screen and (width <= 768px) {
  .service.astro-pz7ncu2q {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/assets/img/common/sp/img_bg01.webp");
    background-color: var(--white);
    border-radius: 24px;
  }
}

@media screen and (width >= 769px) {
  .service.astro-pz7ncu2q .modImage.astro-pz7ncu2q {
    width: 67.5%;
    margin: -10px auto 47px;
    min-width: 720px;
  }
}

@media screen and (width <= 768px) {
  .service.astro-pz7ncu2q .modImage.astro-pz7ncu2q {
    width: 116%;
    margin: -27px auto 30px -8%;
  }
}

.modLeadText.astro-pz7ncu2q {
  max-width: 1120px;
  margin: 0 auto 30px;
  font-weight: 400;
  text-align: center;
}

@media screen and (width <= 768px) {
  .modLeadText.astro-pz7ncu2q {
    text-align: left;
    line-height: 2;
    margin: 0 auto 60px;
  }
}
.modSection--topBg01.astro-lcdefpme {
  position: relative;
  background-repeat: repeat;
  background-color: var(--white);
  background-size: contain;
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-lcdefpme {
    background-image: url("/assets/img/common/img_bg01.webp");
    background-position: 0 -28.5em;
    padding: 160px 0;
    border-radius: 0 0 60px 60px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--topBg01.astro-lcdefpme {
    border-radius: 0 0 30px 30px;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-lcdefpme {
    background-image: url("/assets/img/common/sp/img_bg01.webp");
    background-position: 0 -7.5em;
    border-radius: 0 0 24px 24px;
    padding: 120px 16px 155px;
  }
}

.modSection--topBg01.astro-lcdefpme .modSection__inner.astro-lcdefpme {
  display: grid;
  position: relative;
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-lcdefpme .modSection__inner.astro-lcdefpme {
    gap: 160px;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-lcdefpme .modSection__inner.astro-lcdefpme {
    gap: 120px;
  }
}

@media screen and (width >= 769px) {
  .modSection--topBg01.astro-lcdefpme .modCard01.astro-lcdefpme {
    margin: 80px 0;
  }
}

@media screen and (width <= 768px) {
  .modSection--topBg01.astro-lcdefpme .modCard01.astro-lcdefpme {
    margin: 64px 0;
  }
}

.modSection--about.astro-lcdefpme {
  position: relative;
}

@media screen and (width >= 769px) {
  .modSection--about.astro-lcdefpme {
    margin-top: -46px;
    padding: 210px 0;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--about.astro-lcdefpme {
    padding: 16% 0;
  }
}

@media screen and (width <= 768px) {
  .modSection--about.astro-lcdefpme {
    margin-top: -36px;
    padding: 86px 16px;
  }
}

.modSection--radiusBgImage.astro-lcdefpme {
  background-repeat: repeat-x;
  background-color: var(--white);
  background-image: url("/assets/img/common/img_bg02.webp");
}

@media screen and (width >= 769px) {
  .modSection--radiusBgImage.astro-lcdefpme {
    background-size: contain;
    background-position: 0 25em;
    padding: 120px 0;
    margin-top: -60px;
    border-radius: 60px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modSection--radiusBgImage.astro-lcdefpme {
    border-radius: 30px;
  }
}

@media screen and (width <= 768px) {
  .modSection--radiusBgImage.astro-lcdefpme {
    position: relative;
    background-size: 200%;
    background-position: -10em 115em;
    padding: 100px 16px 120px;
    margin-top: -40px;
    border-radius: 24px;
  }
}

.modHeading02 + .modText.astro-lcdefpme {
  margin-top: 40px;
}

.modCard01.astro-lcdefpme {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (width >= 769px) {
  .modCard01.astro-lcdefpme {
    gap: 40px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modCard01.astro-lcdefpme {
    gap: 20px;
  }
}

@media screen and (width <= 768px) {
  .modCard01.astro-lcdefpme {
    gap: 32px;
  }
}

@media screen and (width >= 769px) {
  .modCard01__item {
    width: calc(33.3333% - 26.6667px);
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .modCard01__item {
    width: calc(33.3333% - 13.3333px);
  }
}

@media screen and (width <= 768px) {
  .modCard01__item {
    width: 100%;
  }
}

.top {
  overflow: clip;
}

.topVision.astro-lcdefpme, .topAim.astro-lcdefpme, .modSection--about.astro-lcdefpme {
  outline: none;
}

@media screen and (width >= 769px) {
  .topVision.astro-lcdefpme, .topAim.astro-lcdefpme, .modSection--about.astro-lcdefpme {
    scroll-margin-top: var(--header-height-pc);
  }
}

@media screen and (width <= 768px) {
  .topVision.astro-lcdefpme, .topAim.astro-lcdefpme, .modSection--about.astro-lcdefpme {
    scroll-margin-top: var(--header-height-sp);
  }
}

.topVision.astro-lcdefpme {
  position: relative;
}

.topKv.astro-lcdefpme {
  position: relative;
}

.topKv.astro-lcdefpme:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (width >= 769px) {
  .topKv.astro-lcdefpme:after {
    top: 0;
    background-image: url("/assets/img/top/img_kvBg.webp");
    background-position: center;
    height: 100%;
  }
}

@media screen and (width <= 768px) {
  .topKv.astro-lcdefpme:after {
    background-image: url("/assets/img/top/sp/img_kvBg.webp");
    background-position: 0 0;
    height: 84.5%;
    top: 57px;
  }
}

.topKv__inner.astro-lcdefpme {
  position: relative;
}

@media screen and (width >= 769px) {
  .topKv__inner.astro-lcdefpme {
    max-width: 1300px;
    width: 100%;
    margin: auto;
  }
}

.topKv__image.astro-lcdefpme {
  display: block;
}

@media screen and (width >= 769px) {
  .topKv__image.astro-lcdefpme {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -4%;
    width: 63%;
    max-width: 758px;
  }
}

@media screen and (width >= 769px) and (width <= 1000px) {
  .topKv__image.astro-lcdefpme {
    max-width: 550px;
    top: 21%;
  }
}

@media screen and (width <= 768px) {
  .topKv__image.astro-lcdefpme {
    width: 100%;
    margin: 0 -5px 0 auto;
  }
}

.topKv__image.astro-lcdefpme img.astro-lcdefpme {
  width: 100%;
  height: auto;
}

@media screen and (width >= 769px) {
  .topKv__content.astro-lcdefpme {
    max-width: 1120px;
    width: 90%;
    margin: auto;
  }
}

@media screen and (width <= 768px) {
  .topKv__content.astro-lcdefpme {
    padding: 0 16px;
  }
}

.topKv__content__text.astro-lcdefpme {
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.45;
  font-size: 42px;
  font-size: 4.2rem;
  font-size: clamp(22px, 3.23vw, 42px);
}

@media screen and (width >= 769px) {
  .topKv__content__text.astro-lcdefpme {
    padding: 145px 0 60px;
  }
}

@media screen and (width <= 768px) {
  .topKv__content__text.astro-lcdefpme {
    font-size: 34px;
    font-size: 3.4rem;
    padding: 110px 0 40px;
    letter-spacing: 0;
  }
}

@media screen and (width < 350px) {
  .topKv__content__text.astro-lcdefpme {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.topVision__flex.astro-lcdefpme {
  display: flex;
}

@media screen and (width >= 769px) {
  .topVision__flex.astro-lcdefpme {
    margin-top: 40px;
    align-items: flex-start;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex.astro-lcdefpme {
    flex-direction: column;
    margin-top: 64px;
    background: url("/assets/img/top/sp/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex.astro-lcdefpme.modBpPc {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .topVision__flex.astro-lcdefpme.modBpSp {
    display: none;
  }
}

@media screen and (width >= 769px) {
  .topVision__flex__content.astro-lcdefpme {
    width: 51.4%;
    margin: 7% -5% 0 0;
    padding: 5.5% 12% 7% 7%;
    min-height: 430px;
    background: url("/assets/img/top/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex__content.astro-lcdefpme {
    padding: 24px 24px 77px;
    min-height: 250px;
  }
}

.topVision__flex__content.astro-lcdefpme .modTextLead.astro-lcdefpme {
  margin-bottom: 16px;
}

@media screen and (width >= 769px) {
  .topVision__flex__image.astro-lcdefpme {
    width: 53.6%;
  }
}

.topVision__flex__image.astro-lcdefpme img.astro-lcdefpme {
  width: 100%;
  height: auto;
}

@media screen and (width >= 769px) {
  .topVision__flex__image.astro-lcdefpme img.astro-lcdefpme {
    border-radius: 32px;
  }
}

@media screen and (width <= 768px) {
  .topVision__flex__image.astro-lcdefpme img.astro-lcdefpme {
    border-radius: 24px;
  }
}

.topAim__flex.astro-lcdefpme {
  display: flex;
  gap: 24px;
}

@media screen and (width >= 769px) {
  .topAim__flex.astro-lcdefpme {
    padding: 40px 64px 60px 40px;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
    background: url("/assets/img/top/img_bg01.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex.astro-lcdefpme {
    margin-top: 64px;
    padding: 24px 24px 77px;
    flex-direction: column;
    background: url("/assets/img/top/sp/img_bg02.webp") 0 100% / 100% 100% no-repeat;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-lcdefpme {
    width: 52.5%;
    padding: 15px 0 0;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex__content.astro-lcdefpme {
    min-height: 380px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-lcdefpme .modText.astro-lcdefpme + .modText.astro-lcdefpme {
    margin-top: 35px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__content.astro-lcdefpme .modTextLead.astro-lcdefpme {
    margin-top: 35px;
  }
}

@media screen and (width <= 768px) {
  .topAim__flex__content.astro-lcdefpme .modTextLead.astro-lcdefpme {
    margin-top: 20px;
  }
}

@media screen and (width >= 769px) {
  .topAim__flex__image.astro-lcdefpme {
    width: 41.4%;
  }
}

.topAim__flex__image.astro-lcdefpme img.astro-lcdefpme {
  width: 100%;
  height: auto;
}

.topAbout.astro-lcdefpme {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.topAbout.astro-lcdefpme img.astro-lcdefpme {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (width >= 1600px) {
  .topAbout.astro-lcdefpme img.astro-lcdefpme {
    object-position: center;
  }
}

@media screen and (width <= 768px) {
  .topAbout.astro-lcdefpme img.astro-lcdefpme {
    object-position: center;
  }
}

@media screen and (width <= 768px) {
  .jsFloatImage.astro-lcdefpme {
    width: 21%;
  }
}

@media screen and (width <= 460px) {
  .jsFloatImage.astro-lcdefpme {
    width: 24%;
  }
}
/*$vite$:1*/