@charset "UTF-8";
/* =================================
  Inc
================================= */
:root {
  --content-width: 1240px;
  --content-width-contact: 940px;
  --padding-sp: calc(16 / 390 * 100%);
  --padding-pc: 3.33333333%;
}

:root {
  --color-black: #070707;
  --color-white: #fff;
  --color-gray600: #555555;
  --color-gray500: #696969;
  --color-gray400: #7d7d7d;
  --color-gray300: #909090;
  --color-gray200: #a4a4a4;
  --color-gray100: #b8b8b8;
  --color-gray50: #d5d5d5;
  --color-gray10: #f2f2f2;
  --color-blue1: #0b3173;
  --color-blue2: #00325f;
  --color-blue3: #072266;
  --color-blue4: #0d80eb;
  --color-pale-blue: #eef1f6;
  --color-yellow: #ffda1b;
  --color-orange: #ee7100;
  --color-green: #06c755;
  --color-red: #ea5959;
  --gradation-blue: linear-gradient(173deg, #0c82be 0%, #204ea4 51.09%, #0f224d 103.21%);
  --gradation-navy: linear-gradient(135deg, #00328a 0%, #000c27 100%);
  --gradation-orange: linear-gradient(121deg, #da2f00 0%, #ee7100 60%, #ffda1b 100%);
  --gradation-yellow: linear-gradient(273deg, #ffb200 0%, #fe0 100%);
}

:root {
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

:root {
  --transition: all 0.3s ease-out;
}

/* =================================
  Foundation
================================= */
/*
  Reset
  リセットCSS、プロジェクトの基本スタイルを定義
---------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* =================================
  Inc
================================= */
/*
  Base
---------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-padding-top: 6.25rem;
}
@media (max-width: 1024px) {
  html {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: revert;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 5rem;
  }
}

body {
  font-family: var(--font-noto-sans);
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  line-height: 1.7;
  text-align: left;
  color: var(--color-black);
  overflow-x: clip;
}

body .highlighter {
  background: linear-gradient(transparent 40%, #f4f7a9 50%);
}

.small {
  font-size: 1em;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}
.mincho.-adj {
  letter-spacing: -1.19px;
}

/*画像の下余白対策*/
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*ポジション上下左右中央*/
.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/*コンテンツ中央配置*/
.content-center {
  display: flex;
  justify-content: center;
}

/*リンク*/
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

@media (any-hover: hover) {
  a[href*="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

/* =================================
  Layout
================================= */
/* =================================
  Inc
================================= */
.l-inner {
  max-width: calc(var(--content-width) + var(--padding-pc) * 2);
  margin: 0 auto;
  padding-inline: var(--padding-pc);
  width: 100%;
}
@media (max-width: 767px) {
  .l-inner {
    max-width: 100%;
    padding-inline: var(--padding-sp);
  }
}

.l-inner._content {
  max-width: calc(var(--content-width) + var(--padding-sp) * 2);
}
@media (max-width: 767px) {
  .l-inner._content {
    padding-inline: 0;
  }
}

.l-inner._middle {
  max-width: calc(var(--content-width) + var(--padding-sp) * 2);
}

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

.l-main {
  margin-top: 2.5rem;
}

.home .l-main {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .home .l-main {
    margin-top: 4rem;
  }
}

.l-main__inner {
  display: grid;
  grid-template-columns: min(18.0555555556vw, 1fr) 1fr;
  gap: min(2.7777777778vw, 2.5rem);
  align-items: start;
  grid-template-areas: "sidebar content";
}
@media (max-width: 767px) {
  .l-main__inner {
    grid-template-columns: 100%;
    grid-template-areas: "content";
  }
}

.home .l-main__inner {
  margin-top: 2.5rem;
}

.l-main__content {
  grid-area: content;
}

.l-main__sidebar {
  grid-area: sidebar;
}
@media (max-width: 767px) {
  .l-main__sidebar {
    display: none;
  }
}

.l-main._contact .l-main__inner {
  grid-template-columns: 100%;
  grid-template-areas: "content";
  max-width: calc(var(--content-width-contact) + var(--padding-pc) * 2);
}

.l-top-service {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-top-service {
    margin-top: 2.5rem;
  }
}

.l-top-flow {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-top-flow {
    margin-top: 2.5rem;
  }
}

.l-top-step {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-top-step {
    margin-top: 2.5rem;
  }
}

.l-top-about {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-top-about {
    margin-top: 2.5rem;
  }
}

.l-bottom-cta {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-bottom-cta {
    margin-top: 2.5rem;
  }
}

.l-content {
  margin-top: 3.125rem;
}

.footer {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .footer {
    margin-top: 0;
  }
}

.l-page-heading {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .l-page-heading {
    margin-top: 4rem;
  }
}

.l-breadcrumb {
  margin-block: 0.875rem 1rem;
}

.l-pagination {
  margin-top: 2.5rem;
}

/*! flex v2.0.0| MIT License | https://github.com/hilosiva/flexcss */
/* ============================================
  flex - Flexible CSS Grid System
============================================ */
/*
 Settings
--------------------------------- */
/*
  Base
--------------------------------- */
/*
  <div class="flex">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item">C</div>
  </div>
*/
.flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.flex__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/*
  Direction
--------------------------------- */
/*
  <div class="flex" data-dir="reverse">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item">C</div>
  </div>
*/
.flex[data-dir=normal] {
  flex-direction: row;
}
.flex[data-dir=reverse] {
  flex-direction: row-reverse;
}

/*
  Alignment
--------------------------------- */
/*
  <div class="flex" data-align="center">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item" data-align="end middle">C</div>
  </div>
*/
.flex[data-align~=start] {
  justify-content: flex-start;
}
.flex[data-align~=center] {
  justify-content: center;
}
.flex[data-align~=end] {
  justify-content: flex-end;
}
.flex[data-align~=justify] {
  justify-content: space-between;
}
.flex[data-align~=top] {
  align-items: flex-start;
}
.flex[data-align~=middle] {
  align-items: center;
}
.flex[data-align~=bottom] {
  align-items: flex-end;
}
.flex__item[data-align~=start] {
  align-items: flex-start;
}
.flex__item[data-align~=center] {
  align-items: center;
}
.flex__item[data-align~=end] {
  align-items: flex-end;
}
.flex__item[data-align~=top] {
  justify-content: flex-start;
  align-self: stretch;
}
.flex__item[data-align~=middle] {
  justify-content: center;
  align-self: stretch;
}
.flex__item[data-align~=bottom] {
  justify-content: flex-end;
  align-self: stretch;
}

/*
  Grid
--------------------------------- */
/*
  <div class="flex" data-gutter="normal">
    <div class="flex__item" data-grid="sp12 tab4 lap6">A</div>
    <div class="flex__item" data-grid="sp6 tab4 lap3">B</div>
    <div class="flex__item" data-grid="sp6 tab4 lap3">C</div>
  </div>
*/
.flex[data-gutter] {
  width: auto;
}
.flex[data-gutter] > .flex__item {
  border: solid transparent;
  background-clip: padding-box;
}
.flex[data-gutter=small] {
  margin: -15px;
}
.flex[data-gutter=small] > .flex__item {
  border-width: 15px;
}
.flex[data-gutter=normal] {
  margin: -2.5vw;
}
.flex[data-gutter=normal] > .flex__item {
  border-width: 2.5vw;
}
.flex[data-gutter=large] {
  margin: -3.75vw;
}
.flex[data-gutter=large] > .flex__item {
  border-width: 3.75vw;
}
.flex__item[data-grid~=sp1] {
  width: 8.3333333333%;
}
.flex__item[data-grid~=sp2] {
  width: 16.6666666667%;
}
.flex__item[data-grid~=sp3] {
  width: 25%;
}
.flex__item[data-grid~=sp4] {
  width: 33.3333333333%;
}
.flex__item[data-grid~=sp5] {
  width: 41.6666666667%;
}
.flex__item[data-grid~=sp6] {
  width: 50%;
}
.flex__item[data-grid~=sp7] {
  width: 58.3333333333%;
}
.flex__item[data-grid~=sp8] {
  width: 66.6666666667%;
}
.flex__item[data-grid~=sp9] {
  width: 75%;
}
.flex__item[data-grid~=sp10] {
  width: 83.3333333333%;
}
.flex__item[data-grid~=sp11] {
  width: 91.6666666667%;
}
.flex__item[data-grid~=sp12] {
  width: 100%;
}
.flex__item[data-grid~=spFive] {
  width: 20%;
}

@media screen and (min-width: 768px) {
  .flex[data-gutter=small] {
    margin: -6px;
  }
  .flex[data-gutter=small] > .flex__item {
    border-width: 6px;
  }
  .flex[data-gutter=normal] {
    margin: -1vw;
  }
  .flex[data-gutter=normal] > .flex__item {
    border-width: 1vw;
  }
  .flex[data-gutter=large] {
    margin: -1.5vw;
  }
  .flex[data-gutter=large] > .flex__item {
    border-width: 1.5vw;
  }
  .flex__item[data-grid~=tab1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=tab2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=tab3] {
    width: 25%;
  }
  .flex__item[data-grid~=tab4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=tab5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=tab6] {
    width: 50%;
  }
  .flex__item[data-grid~=tab7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=tab8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=tab9] {
    width: 75%;
  }
  .flex__item[data-grid~=tab10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=tab11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=tab12] {
    width: 100%;
  }
  .flex__item[data-grid~=tabFive] {
    width: 20%;
  }
  .flex__item[data-grid~=tabAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .flex__item[data-grid~=lap1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=lap2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=lap3] {
    width: 25%;
  }
  .flex__item[data-grid~=lap4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=lap5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=lap6] {
    width: 50%;
  }
  .flex__item[data-grid~=lap7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=lap8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=lap9] {
    width: 75%;
  }
  .flex__item[data-grid~=lap10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=lap11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=lap12] {
    width: 100%;
  }
  .flex__item[data-grid~=lapFive] {
    width: 20%;
  }
  .flex__item[data-grid~=lapAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .flex__item[data-grid~=desk1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=desk2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=desk3] {
    width: 25%;
  }
  .flex__item[data-grid~=desk4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=desk5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=desk6] {
    width: 50%;
  }
  .flex__item[data-grid~=desk7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=desk8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=desk9] {
    width: 75%;
  }
  .flex__item[data-grid~=desk10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=desk11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=desk12] {
    width: 100%;
  }
  .flex__item[data-grid~=deskFive] {
    width: 20%;
  }
  .flex__item[data-grid~=deskAuto] {
    width: auto;
  }
}
/* =================================
  Object
================================= */
/* =================================
  Inc
================================= */
.c-button {
  background: var(--gradation-yellow);
  border-radius: 100vmax;
  color: var(--color-blue1);
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 1.8125rem 4.1875rem 2rem 3.75rem;
  transition: all 0.3s ease-out;
  display: grid;
  position: relative;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.55);
}
@media (max-width: 767px) {
  .c-button {
    padding: 1.375rem 2.6875rem 1.4375rem 1.75rem;
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    z-index: 0;
    opacity: 1;
  }
}

.c-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: linear-gradient(93deg, #ffb200 0%, #fe0 100%);
  border-radius: 100vmax;
  transition: all 0.3s ease-out;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

@media (any-hover: hover) {
  .c-button:hover::before {
    opacity: 1;
  }
}

.c-button svg {
  position: absolute;
  width: 1.625rem;
  height: 1.625rem;
  top: 50%;
  right: 1.75rem;
  translate: 0 -50%;
  transition: all 0.3s ease-out;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-button svg {
    width: 1.125rem;
    height: 1.125rem;
    right: 1rem;
  }
}

.c-button__circle {
  fill: white;
  transition: all 0.3s ease-out;
}

.c-button__arrow {
  fill: var(--color-blue1);
  transition: all 0.3s ease-out;
}

@media (any-hover: hover) {
  .c-button:hover .c-button__circle {
    fill: var(--color-blue1);
  }
}

@media (any-hover: hover) {
  .c-button:hover .c-button__arrow {
    fill: white;
  }
}

.c-button__text {
  position: relative;
  z-index: 1;
}

.c-button._blue {
  color: white;
  background: var(--gradation-navy);
  box-shadow: none;
  border: 0.0625rem solid var(--color-blue1);
}

@media (any-hover: hover) {
  .c-button._blue:hover {
    color: var(--color-blue1);
    opacity: 1;
  }
}

.c-button._blue::before {
  background: var(--gradation-navy);
}

@media (any-hover: hover) {
  .c-button._blue:hover::before {
    background: white;
    color: var(--color-blue1);
  }
}

.c-button._green {
  color: var(--color-green);
  background: white;
  box-shadow: none;
  border: 0.0625rem solid transparent;
}

@media (any-hover: hover) {
  .c-button._green:hover {
    color: white;
    opacity: 1;
  }
}

.c-button._green::before {
  background: var(--color-green);
  border: 0.0625rem solid white;
}

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

.c-button._green .c-button__arrow {
  fill: white;
}

@media (any-hover: hover) {
  .c-button._green:hover .c-button__circle {
    fill: white;
  }
}

@media (any-hover: hover) {
  .c-button._green:hover .c-button__arrow {
    fill: var(--color-green);
  }
}

.c-button._white {
  color: var(--color-black);
  background: white;
  box-shadow: none;
  border-radius: 0.5rem;
  padding: 1.125rem 2.25rem 1.3125rem 0.625rem;
}

@media (any-hover: hover) {
  .c-button._white:hover {
    color: var(--color-black);
    opacity: 1;
  }
}

.c-button._white::before {
  background: white;
  border-radius: 0.5rem;
}

@media (any-hover: hover) {
  .c-button._white:hover::before {
    background: white;
  }
}

.c-button._white .c-button__text {
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: left;
}

.c-button._white svg {
  width: 1.125rem;
  height: 1.125rem;
  right: 0.625rem;
}

@media (any-hover: hover) {
  .c-button._white:hover .c-button__circle {
    fill: white;
  }
}

@media (any-hover: hover) {
  .c-button._white:hover .c-button__arrow {
    fill: white;
  }
}

.c-button._small {
  padding: 0.8125rem 3.75rem 0.875rem 3.1875rem;
  height: 3.125rem;
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}

.c-button._small .c-button__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.c-button._small svg {
  width: 1.125rem;
  height: 1.125rem;
  right: 1rem;
}

.c-button._xsmall {
  padding: 0.5625rem 2.25rem 0.6875rem 1.375rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .c-button._xsmall {
    padding: 0.375rem 1.375rem 0.5rem 1rem;
  }
}

.c-button._xsmall svg {
  width: 1rem;
  height: 1rem;
  right: 0.5rem;
}
@media (max-width: 767px) {
  .c-button._xsmall svg {
    width: 0.875rem;
    height: 0.875rem;
    right: 0.375rem;
  }
}

.c-button._xsmall .c-button__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-button._xsmall .c-button__text {
    font-size: 0.75rem;
  }
}

/* c-heading
------------------------------------*/
.c-heading,
.is-style-c-heading {
  text-align: center;
  background: linear-gradient(135deg, #00328a 0%, #000c27 100%);
  padding: 1rem;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .c-heading,
  .is-style-c-heading {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    padding: 0.5rem;
  }
}

.c-heading._radius-top,
.is-style-c-heading {
  border-radius: 0.5rem 0.5rem 0 0;
}

.is-style-c-heading {
  box-sizing: border-box;
}

.is-style-c-heading:has(+ .wp-block-acf-faq-block) {
  margin-bottom: 0;
}

/* c-heading2
------------------------------------*/
.c-heading2,
.is-style-c-heading-underline1,
.is-style-c-heading-underline2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.25rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .c-heading2,
  .is-style-c-heading-underline1,
  .is-style-c-heading-underline2 {
    font-size: 1.25rem;
  }
}

.wp-block.is-style-c-heading-underline1 {
  max-width: 54.375rem;
}

.p-content .is-style-c-heading-underline1 {
  max-width: 100%;
}

.c-heading2::before,
.is-style-c-heading-underline1::before,
.is-style-c-heading-underline2::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 3.125rem, var(--color-black) 3.125rem, var(--color-black) 100%);
  position: absolute;
  inset: auto auto 0 0;
}
@media (max-width: 767px) {
  .c-heading2::before,
  .is-style-c-heading-underline1::before,
  .is-style-c-heading-underline2::before {
    height: 0.125rem;
    background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 3.125rem, var(--color-black) 3.125rem, var(--color-black) 100%);
  }
}

.c-heading2._orange::before {
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 3.125rem, var(--color-black) 3.125rem, var(--color-black) 100%);
}
@media (max-width: 767px) {
  .c-heading2._orange::before {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 1.25rem, var(--color-black) 1.25rem, var(--color-black) 100%);
  }
}

.is-style-c-heading-underline2::before {
  background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 2.5rem, var(--color-black) 2.5rem, var(--color-black) 100%);
}
@media (max-width: 767px) {
  .is-style-c-heading-underline2::before {
    background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 1.25rem, var(--color-black) 1.25rem, var(--color-black) 100%);
  }
}

/* c-accordion
------------------------------------*/
.c-accordion summary::-webkit-details-marker {
  display: none;
}

.c-accordion__title {
  padding: 1.25rem 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  background-color: white;
}

.c-accordion__icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.3s ease-in;
}

.c-accordion__icon svg {
  width: 1.125rem;
  height: 0.9375rem;
}

.c-accordion.is-open .c-accordion__icon {
  transform: rotate(180deg);
}

.c-accordion__content {
  background: var(--color-pale-blue);
  text-decoration: none;
  overflow: hidden;
}

.c-accordion__content-inner {
  padding: 2.5rem 2.8125rem;
}

.c-accordion__lists {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2rem 1rem;
}

.c-accordion__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.c-accordion__link::before {
  content: "▶";
  color: var(--Theme-Color-Blue-1, #0b3173);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.js-drawer-accordion-list {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.c-accordion__more {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  background-color: #fff;
  border: 0.0625rem solid var(--color-gray200);
  color: var(--color-blue1);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .c-accordion__more {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
}

.c-accordion__more:hover {
  background-color: var(--color-blue1);
  color: white;
}

.c-accordion__more:focus {
  outline: 0.0625rem solid var(--color-blue1);
  outline-offset: -0.125rem;
}

/* c-table
------------------------------------*/
.c-table__hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.625rem;
  background: rgba(var(--color-blue1), 0.8);
  color: white;
  font-weight: bold;
  animation: scroll-hint-animation 1s infinite ease;
  display: block;
}

.table-container {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
}

.table-container .c-table--scroll {
  white-space: nowrap;
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-45%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
/* c-page-heading
------------------------------------*/
.c-page-heading {
  position: relative;
  min-height: 10rem;
  display: grid;
  place-items: center;
  padding-block: 1.25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-page-heading {
    min-height: 9.375rem;
  }
}

.c-page-heading__title {
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-page-heading__title {
    font-size: 1.625rem;
    line-height: 1.1538461538;
  }
}

.c-page-heading__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  inset: 0;
  margin: auto;
  z-index: -1;
}

.c-page-heading__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* c-pagination
------------------------------------*/
.c-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .c-pagination ul.page-numbers {
    gap: 0.5rem;
  }
}

.c-pagination a.page-numbers,
.c-pagination span.page-numbers {
  display: grid;
  place-items: center;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.25rem;
  background: white;
  color: var(--black-white-black, #070707);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-inline: 0.25rem;
  transition: all 0.3s ease-out;
  border: 0.0625rem solid var(--color-black);
}
@media (max-width: 767px) {
  .c-pagination a.page-numbers,
  .c-pagination span.page-numbers {
    font-size: 0.75rem;
    height: 1.875rem;
    min-width: 1.875rem;
  }
}

.c-pagination .page-numbers.current,
.c-pagination .page-numbers.next,
.c-pagination a.page-numbers:hover {
  background: var(--color-blue1);
  opacity: 1;
  color: white;
}

.c-pagination .page-numbers.next,
.c-pagination .page-numbers.prev {
  padding-inline: 0.625rem;
}

/* c-category
------------------------------------*/
.c-category {
  display: inline-block;
  border: 2px solid var(--color-blue1);
  background: white;
  color: var(--color-blue1);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0.5625rem 0.75rem;
  min-width: 8.75rem;
}
@media (max-width: 1200px) {
  .c-category {
    font-size: 0.875rem;
    min-width: 6.25rem;
  }
}
@media (max-width: 767px) {
  .c-category {
    font-size: 0.75rem;
  }
}

.c-category._small {
  padding: 0.375rem 2.125rem;
  border-width: 0.0625rem;
}
@media (max-width: 1200px) {
  .c-category._small {
    padding: 0.375rem 0.75rem;
  }
}
@media (max-width: 767px) {
  .c-category._small {
    padding: 0.375rem 0.625rem;
  }
}

/* =================================
  Inc
================================= */
:where(.is-root-container) {
  color: var(--color-black);
  font-family: "Noto Sans JP";
  /* HTML5 display-role reset for older browsers */
  /* Add Hibiki */
}
:where(.is-root-container) html,
:where(.is-root-container) body,
:where(.is-root-container) div,
:where(.is-root-container) span,
:where(.is-root-container) applet,
:where(.is-root-container) object,
:where(.is-root-container) iframe,
:where(.is-root-container) h1,
:where(.is-root-container) h2,
:where(.is-root-container) h3,
:where(.is-root-container) h4,
:where(.is-root-container) h5,
:where(.is-root-container) h6,
:where(.is-root-container) p,
:where(.is-root-container) blockquote,
:where(.is-root-container) pre,
:where(.is-root-container) a,
:where(.is-root-container) abbr,
:where(.is-root-container) acronym,
:where(.is-root-container) address,
:where(.is-root-container) big,
:where(.is-root-container) cite,
:where(.is-root-container) code,
:where(.is-root-container) del,
:where(.is-root-container) dfn,
:where(.is-root-container) em,
:where(.is-root-container) img,
:where(.is-root-container) ins,
:where(.is-root-container) kbd,
:where(.is-root-container) q,
:where(.is-root-container) s,
:where(.is-root-container) samp,
:where(.is-root-container) small,
:where(.is-root-container) strike,
:where(.is-root-container) strong,
:where(.is-root-container) sub,
:where(.is-root-container) sup,
:where(.is-root-container) tt,
:where(.is-root-container) var,
:where(.is-root-container) b,
:where(.is-root-container) u,
:where(.is-root-container) i,
:where(.is-root-container) center,
:where(.is-root-container) dl,
:where(.is-root-container) dt,
:where(.is-root-container) dd,
:where(.is-root-container) ol,
:where(.is-root-container) ul,
:where(.is-root-container) li,
:where(.is-root-container) fieldset,
:where(.is-root-container) form,
:where(.is-root-container) label,
:where(.is-root-container) legend,
:where(.is-root-container) table,
:where(.is-root-container) caption,
:where(.is-root-container) tbody,
:where(.is-root-container) tfoot,
:where(.is-root-container) thead,
:where(.is-root-container) tr,
:where(.is-root-container) th,
:where(.is-root-container) td,
:where(.is-root-container) article,
:where(.is-root-container) aside,
:where(.is-root-container) canvas,
:where(.is-root-container) details,
:where(.is-root-container) embed,
:where(.is-root-container) figure,
:where(.is-root-container) figcaption,
:where(.is-root-container) footer,
:where(.is-root-container) header,
:where(.is-root-container) hgroup,
:where(.is-root-container) menu,
:where(.is-root-container) nav,
:where(.is-root-container) output,
:where(.is-root-container) ruby,
:where(.is-root-container) section,
:where(.is-root-container) summary,
:where(.is-root-container) time,
:where(.is-root-container) mark,
:where(.is-root-container) audio,
:where(.is-root-container) video,
:where(.is-root-container) textarea {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
:where(.is-root-container) article,
:where(.is-root-container) aside,
:where(.is-root-container) details,
:where(.is-root-container) figcaption,
:where(.is-root-container) figure,
:where(.is-root-container) footer,
:where(.is-root-container) header,
:where(.is-root-container) hgroup,
:where(.is-root-container) menu,
:where(.is-root-container) nav,
:where(.is-root-container) section {
  display: block;
}
:where(.is-root-container) body {
  line-height: 1;
}
:where(.is-root-container) ol,
:where(.is-root-container) ul {
  list-style: none;
  list-style-type: none;
}
:where(.is-root-container) blockquote,
:where(.is-root-container) q {
  quotes: none;
}
:where(.is-root-container) blockquote:before,
:where(.is-root-container) blockquote:after,
:where(.is-root-container) q:before,
:where(.is-root-container) q:after {
  content: "";
  content: none;
}
:where(.is-root-container) table {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(.is-root-container) img {
  width: 100%;
  height: auto;
}
:where(.is-root-container) a {
  text-decoration: none;
}
@media (pointer: fine), (hover: hover) {
  :where(.is-root-container) a:where([href^="tel:"]) {
    pointer-events: none;
  }
}
:where(.is-root-container) *,
:where(.is-root-container) *::before,
:where(.is-root-container) *::after {
  box-sizing: border-box;
}

.p-content div#ez-toc-container {
  margin-top: 2.5rem;
  max-width: 100%;
  margin-inline: auto;
  border: none;
  background: transparent;
  position: relative;
  width: 100%;
  box-shadow: none;
  padding: 0;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container {
    margin-block: 1.5rem;
  }
}
.p-content div#ez-toc-container .ez-toc-title-container {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-content div#ez-toc-container .ez-toc-title {
  background: var(--color-black);
  color: white;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 0.25rem 3.375rem 0.3125rem;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container .ez-toc-title {
    font-size: 1rem;
    padding: 0.1875rem 2.5rem 0.25rem;
  }
}
.p-content div#ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.p-content div#ez-toc-container > nav {
  padding: 2.5rem;
  position: relative;
  top: -0.75rem;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container > nav {
    padding: 1.25rem 0.75rem;
  }
}
.p-content div#ez-toc-container > nav::before, .p-content div#ez-toc-container > nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 10rem, var(--color-black) 10rem, var(--color-black) 100%);
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container > nav::before, .p-content div#ez-toc-container > nav::after {
    background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 6.25rem, var(--color-black) 6.25rem, var(--color-black) 100%);
  }
}
.p-content div#ez-toc-container > nav::before {
  top: 0;
}
.p-content div#ez-toc-container > nav::after {
  bottom: 0;
}
.p-content div#ez-toc-container > nav ul li a::before {
  margin-right: 0.375rem;
  color: var(--color-blue1);
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container > nav ul li a::before {
    margin-right: 0.25rem;
  }
}
.p-content div#ez-toc-container nav > ul > li {
  margin-top: 0.5rem;
}
.p-content div#ez-toc-container nav > ul > li > a {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container nav > ul > li > a {
    font-size: 0.875rem;
  }
}
.p-content div#ez-toc-container nav > ul > li > ul > li > a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container nav > ul > li > ul > li > a {
    font-size: 0.875rem;
  }
}
.p-content div#ez-toc-container > nav ul ul {
  margin-left: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-content div#ez-toc-container > nav ul ul {
    margin-left: 0.75rem;
  }
}

:is(.is-root-container, .p-content) {
  --wp--preset--font-size--small: calc(14 / 16 * 1em);
  --wp--preset--font-size--medium: calc(16 / 16 * 1em);
  --wp--preset--font-size--large: calc(20 / 16 * 1em);
  --wp--preset--font-size--x-large: calc(24 / 16 * 1em);
}
:is(.is-root-container, .p-content) > *:first-child {
  margin-top: 0;
}
:is(.is-root-container, .p-content) > *:last-child {
  margin-bottom: 0;
}
:is(.is-root-container, .p-content) > * {
  margin-bottom: 2rem;
}
:is(.is-root-container, .p-content) > h2:not(.is-style-c-heading-underline1, .is-style-c-heading-underline2, .is-style-c-heading) {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  background: var(--gradation-navy);
  padding: 1rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > h2:not(.is-style-c-heading-underline1, .is-style-c-heading-underline2, .is-style-c-heading) {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}
:is(.is-root-container, .p-content) > h3:not(.is-style-c-heading-underline1, .is-style-c-heading-underline2, .is-style-c-heading) {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-left: 0.75rem solid var(--color-blue1);
  padding: 0.75rem;
  background: var(--color-pale-blue);
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > h3:not(.is-style-c-heading-underline1, .is-style-c-heading-underline2, .is-style-c-heading) {
    font-size: 1.25rem;
    padding: 0.5rem;
    border-width: 0.5rem;
  }
}
:is(.is-root-container, .p-content) > h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-left: 0.25rem solid var(--color-black);
  padding: 0 0.625rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > h4 {
    font-size: 1.125rem;
    padding: 0 0.5rem;
  }
}
:is(.is-root-container, .p-content) > p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > p {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) a {
  color: var(--color-blue4);
  text-decoration: underline;
  font-weight: 700;
}
:is(.is-root-container, .p-content) > ul,
:is(.is-root-container, .p-content) > ol {
  line-height: 2;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ul,
  :is(.is-root-container, .p-content) > ol {
    margin-top: 1.25rem;
  }
}
:is(.is-root-container, .p-content) ol > li > ol,
:is(.is-root-container, .p-content) ol > li > ul,
:is(.is-root-container, .p-content) ul > li > ol,
:is(.is-root-container, .p-content) ul > li > ul {
  margin-left: 1.25rem;
  margin-top: 0.5rem;
}
:is(.is-root-container, .p-content) > ul li,
:is(.is-root-container, .p-content) > ol > li > ul li,
:is(.is-root-container, .p-content) > ul > li > ul li {
  padding-left: 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ul li,
  :is(.is-root-container, .p-content) > ol > li > ul li,
  :is(.is-root-container, .p-content) > ul > li > ul li {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) > ul li:not(:first-child),
:is(.is-root-container, .p-content) > ol > li > ul li:not(:first-child),
:is(.is-root-container, .p-content) > ul > li > ul li:not(:first-child) {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ul li:not(:first-child),
  :is(.is-root-container, .p-content) > ol > li > ul li:not(:first-child),
  :is(.is-root-container, .p-content) > ul > li > ul li:not(:first-child) {
    margin-top: 0.25rem;
  }
}
:is(.is-root-container, .p-content) > ul li::before,
:is(.is-root-container, .p-content) > ol > li > ul li::before,
:is(.is-root-container, .p-content) > ul > li > ul li::before {
  position: absolute;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: var(--color-black);
  left: 0.1875rem;
  top: 0.875rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ul li::before,
  :is(.is-root-container, .p-content) > ol > li > ul li::before,
  :is(.is-root-container, .p-content) > ul > li > ul li::before {
    width: 0.25rem;
    height: 0.25rem;
    left: 0.125rem;
    top: 0.75rem;
  }
}
:is(.is-root-container, .p-content) > ol {
  counter-reset: list-counter;
}
:is(.is-root-container, .p-content) > ol > li {
  counter-increment: list-counter;
  position: relative;
  align-items: baseline;
  gap: 0.375rem;
  padding-left: 1.25rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ol > li {
    gap: 0.25rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) > ol > li:not(:first-child) {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) > ol > li:not(:first-child) {
    margin-top: 0.375rem;
  }
}
:is(.is-root-container, .p-content) > ol > li::before {
  left: 0;
  content: counter(list-counter) ".";
  position: absolute;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0;
}
:is(.is-root-container, .p-content) .wp-block-group {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-group {
    display: grid;
    gap: 1.25rem;
  }
  :is(.is-root-container, .p-content) .wp-block-group img {
    width: 100%;
  }
}
:is(.is-root-container, .p-content) strong {
  font-weight: 700;
}
:is(.is-root-container, .p-content) em {
  font-style: italic;
}
:is(.is-root-container, .p-content) blockquote {
  position: relative;
  border-radius: 0.25rem;
  background: var(--color-blue4);
  padding: 2.25rem 3.125rem 3.25rem 4.125rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) blockquote {
    padding: 1.5rem 1.875rem 2rem 2.5rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) blockquote > *:first-child {
  margin-top: 0;
}
:is(.is-root-container, .p-content) blockquote::before,
:is(.is-root-container, .p-content) blockquote::after {
  position: absolute;
  color: var(--color-gray200);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) blockquote::before,
  :is(.is-root-container, .p-content) blockquote::after {
    font-size: 2rem;
  }
}
:is(.is-root-container, .p-content) blockquote::before {
  content: "“";
  top: 1.5rem;
  left: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) blockquote::before {
    top: 0.5rem;
    left: 0.5rem;
  }
}
:is(.is-root-container, .p-content) blockquote::after {
  content: "”";
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) blockquote::after {
    bottom: 0.5rem;
    right: 0.75rem;
  }
}
:is(.is-root-container, .p-content) blockquote cite {
  font-size: 0.625rem;
  font-weight: 400;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) blockquote cite {
    margin-top: 0.5rem;
  }
}
:is(.is-root-container, .p-content) .is-layout-flex .wp-block-image {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .is-layout-flex .wp-block-image img {
    width: 100% !important;
  }
}
:is(.is-root-container, .p-content) img {
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) figure.wp-block-gallery.has-nested-images {
    gap: 1.25rem;
  }
}
:is(.is-root-container, .p-content) .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-media-text {
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-media-text__media img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-media-text__content {
    padding: 0;
  }
}
:is(.is-root-container, .p-content) .wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__content,
:is(.is-root-container, .p-content) .wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__media,
:is(.is-root-container, .p-content) .wp-block-media-text > .wp-block-media-text__content,
:is(.is-root-container, .p-content) .wp-block-media-text > .wp-block-media-text__media {
  align-self: start;
}
:is(.is-root-container, .p-content) .wp-block-flexible-table-block-table > table tr th {
  border-bottom: 1px solid var(--color-gray300);
  background: var(--color-blue1);
  color: white;
}
:is(.is-root-container, .p-content) .wp-block-flexible-table-block-table > table tr th:not(:first-child) {
  border-inline: 1px solid white;
}
:is(.is-root-container, .p-content) .wp-block-flexible-table-block-table > table tr td {
  border: 1px solid var(--color-gray300);
}
:is(.is-root-container, .p-content) .wp-block-flexible-table-block-table > table tr:not(:first-child):nth-child(even) {
  background-color: var(--color-gray10);
}
:is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link {
  min-width: 22rem !important;
  border-radius: 0.3125rem;
  background: var(--color-blue1);
  color: white;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0.6875rem 1.9375rem 0.6875rem 1.0625rem;
  width: 100%;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
  text-decoration: none;
  border: 1px solid var(--color-blue1);
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link {
    font-size: 0.75rem;
    padding: 0.6875rem 1.5rem 0.6875rem 0.75rem;
  }
}
@media (any-hover: hover) {
  :is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link:hover {
    background-color: white;
    color: var(--color-blue1);
  }
}
:is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 100vmax;
  top: 50%;
  right: 1.125rem;
  translate: 0 -50%;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link::before {
    width: 1rem;
    height: 1rem;
  }
}
@media (any-hover: hover) {
  :is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link:hover::before {
    background-color: var(--color-blue1);
  }
}
:is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  clip-path: polygon(100% 51%, 0 0, 0 100%);
  background-color: var(--color-blue1);
  width: 0.3125rem;
  height: 0.4375rem;
  top: 50%;
  right: 1.5rem;
  translate: 0 -50%;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  :is(.is-root-container, .p-content) .wp-block-button .wp-block-button__link:hover::after {
    background-color: white;
  }
}
:is(.is-root-container, .p-content) pre.wp-block-verse {
  background-color: var(--color-blue4);
  padding: 1.25rem 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) pre.wp-block-verse {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) .sigijh_animateMe {
  font-weight: 700;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-content) p.has-background {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-content) .has-main-color-color {
  color: var(--color-blue1);
}
:is(.is-root-container, .p-content) .has-main-color-background-color {
  background-color: var(--color-blue1);
}
:is(.is-root-container, .p-content) .has-white-color {
  color: white;
}
:is(.is-root-container, .p-content) .has-white-background-color {
  background-color: white;
}
:is(.is-root-container, .p-content) .has-black-color {
  color: var(--color-black);
}
:is(.is-root-container, .p-content) .has-black-background-color {
  background-color: var(--color-black);
}
:is(.is-root-container, .p-content) .has-gray-color {
  color: var(--color-gray100);
}
:is(.is-root-container, .p-content) .has-gray-background-color {
  background-color: var(--color-gray100);
}
:is(.is-root-container, .p-content) .has-red-color {
  color: var(--color-red);
}
:is(.is-root-container, .p-content) .has-red-background-color {
  background-color: var(--color-red);
}
:is(.is-root-container, .p-content) .has-blue-color {
  color: var(--color-blue4);
}
:is(.is-root-container, .p-content) .has-blue-background-color {
  background-color: var(--color-blue4);
}
:is(.is-root-container, .p-content) .has-green-color {
  color: var(--color-green);
}
:is(.is-root-container, .p-content) .has-green-background-color {
  background-color: var(--color-green);
}
:is(.is-root-container, .p-content) .has-purple-color {
  color: var(--purple-color);
}
:is(.is-root-container, .p-content) .has-purple-background-color {
  background-color: var(--purple-color);
}
:is(.is-root-container, .p-content) .has-orange-color {
  color: var(--color-orange);
}
:is(.is-root-container, .p-content) .has-orange-background-color {
  background-color: var(--color-orange);
}
:is(.is-root-container, .p-content) .has-pale-blue-color {
  color: var(--color-pale-blue);
}
:is(.is-root-container, .p-content) .has-pale-blue-background-color {
  background-color: var(--color-pale-blue);
}
:is(.is-root-container, .p-content) .has-yellow-color {
  color: var(--color-yellow);
}
:is(.is-root-container, .p-content) .has-yellow-background-color {
  background-color: var(--color-yellow);
}

/* =================================
  Inc
================================= */
/*
  header
————————————————————————————————————————— */
.p-header {
  height: 5rem;
  box-shadow: 0 0.375rem 0.625rem 0 rgba(7, 7, 7, 0.2);
  transition: all 0.3s;
  background: white;
}
@media (max-width: 767px) {
  .p-header {
    height: 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
  }
}

.p-header:has(.p-header__sub-list-wrapper:hover) {
  box-shadow: none;
}

.p-header__inner {
  max-width: 96.875rem;
  height: inherit;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 767px) {
  .p-header__inner {
    padding: 0 0 0 1rem;
    grid-template-columns: auto 1fr auto;
    height: 4rem;
  }
}

.p-header__logo-icon img {
  height: 3rem;
  width: auto;
}
@media (max-width: 1280px) {
  .p-header__logo-icon img {
    height: 2.25rem;
  }
}
@media (max-width: 767px) {
  .p-header__logo-icon img {
    height: 2.125rem;
  }
}

.p-header__logo-text {
  display: none;
}
@media (max-width: 767px) {
  .p-header__logo-text {
    display: block;
    font-size: 0.375rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 0.125rem;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: inherit;
}
@media (max-width: 767px) {
  .p-header__nav {
    gap: 0.0625rem;
    margin-left: auto;
  }
}

.p-header__lists {
  display: flex;
  gap: 1.75rem;
  height: inherit;
}
@media (max-width: 1024px) {
  .p-header__lists {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .p-header__lists {
    display: none;
  }
}

.p-header__list {
  height: inherit;
}

.p-header__link {
  font-size: 1.125rem;
  color: var(--color-black);
  padding-block: 0.625rem;
  position: relative;
  height: 100%;
  display: block;
  place-content: center;
}
@media (max-width: 1280px) {
  .p-header__link {
    font-size: 1rem;
  }
}

.p-header__link::after {
  position: absolute;
  inset: calc(50% + 1em) 0 0 0;
  translate: 0 -50%;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--color-blue1);
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

@media (any-hover: hover) {
  .p-header__link:hover {
    opacity: unset;
  }
}

@media (any-hover: hover) {
  .p-header__link:hover::after {
    transform: scale(1, 1);
  }
}

.p-header__link:has(+ .p-header__sub-list-wrapper) {
  position: relative;
}

.p-header__link:has(+ .p-header__sub-list-wrapper)::before {
  content: "";
  position: absolute;
  inset: auto auto 0.0625rem 50%;
  translate: -50% 100%;
  width: 7.5rem;
  height: 1.5rem;
  background: white;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 0.375rem 0.625rem 0 rgba(7, 7, 7, 0.2);
}

.p-header__link:has(+ .p-header__sub-list-wrapper):hover::before,
.p-header__link:has(+ .p-header__sub-list-wrapper:hover)::before {
  opacity: 1;
  visibility: visible;
}

.p-header__sub-list-wrapper {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100vw;
  background: var(--color-pale-blue);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding-block: 3.375rem;
  padding-inline: var(--padding-pc);
  z-index: 1;
}

.p-header__link:hover + .p-header__sub-list-wrapper,
.p-header__lists .p-header__sub-list-wrapper:hover {
  opacity: 1;
  visibility: visible;
}

.p-header__sub-list {
  max-width: 55.8125rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.p-header__sub-link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 0.25rem;
}

.p-header__sub-link::before {
  content: "▶";
  color: var(--color-blue1);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-header__tel {
  display: grid;
  grid-template-areas: "icon number number" "blank time holiday";
  grid-template-columns: auto auto auto;
  align-items: center;
}
@media (max-width: 1280px) {
  .p-header__tel {
    grid-template-areas: "icon number number" "time time holiday";
  }
}
@media (max-width: 767px) {
  .p-header__tel {
    display: none;
  }
}

.p-header__tel-icon {
  grid-area: icon;
  margin-right: 0.375rem;
  display: block;
  width: 3rem;
}
@media (max-width: 1280px) {
  .p-header__tel-icon {
    margin-right: 0.3125rem;
  }
}

.p-header__tel-number {
  grid-area: number;
  color: var(--color-blue1);
  font-family: var(--font-roboto);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}
@media (max-width: 1280px) {
  .p-header__tel-number {
    font-size: 1.5625rem;
  }
}

.p-header__tel-time {
  grid-area: time;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: right;
  font-family: var(--font-noto-sans);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .p-header__tel-time {
    font-size: 0.75rem;
  }
}

.p-header__tel-time-large {
  margin-left: 0.1875rem;
}

.p-header__tel-holiday {
  grid-area: holiday;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: var(--color-orange);
  padding: 0.25rem 0.5rem;
  border-radius: 62.4375rem;
  margin-left: 0.25rem;
}
@media (max-width: 1280px) {
  .p-header__tel-holiday {
    font-size: 0.75rem;
  }
}

.p-header__sp-lists {
  display: none;
}
@media (max-width: 767px) {
  .p-header__sp-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.0625rem;
    margin-left: auto;
    justify-content: end;
    margin-right: 0.0625rem;
  }
}

.p-header__sp-link {
  background: var(--gradation-navy);
  height: 4rem;
  width: 3.5rem;
  display: block;
  position: relative;
  padding-top: 0.25rem;
}

.p-header__sp-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  margin-inline: auto;
}

.p-header__sp-text {
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  inset: auto auto 0.3125rem 50%;
  translate: -50% 0;
  width: 100%;
}

/* =================================
  Inc
================================= */
.is-style-c-heading:has(+ .p-faq) {
  margin-bottom: 0;
}

.p-faq {
  background-color: var(--color-pale-blue);
  padding: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-faq {
    padding: 1.25rem;
  }
}

.p-faq:has(+ .p-faq) {
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .p-faq:has(+ .p-faq) {
    padding-bottom: 0.625rem;
  }
}

.p-faq + .p-faq {
  padding: 0 2.5rem 1.25rem;
}
@media (max-width: 767px) {
  .p-faq + .p-faq {
    padding: 0 1.25rem 0.625rem;
  }
}

.p-faq:has(+ .is-style-c-heading) {
  padding: 0 2.5rem 2.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-faq:has(+ .is-style-c-heading) {
    padding: 0 1.25rem 1.25rem;
  }
}

.is-style-c-heading + .p-faq:has(+ .is-style-c-heading) {
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .is-style-c-heading + .p-faq:has(+ .is-style-c-heading) {
    padding-top: 1.25rem;
  }
}

.p-faq:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
}

.p-faq__list {
  background-color: white;
  padding: 2.5rem 3.125rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p-faq__list {
    padding: 1.25rem;
  }
}

.p-faq__question {
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed var(--color-gray200);
  padding-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-faq__question {
    font-size: 1rem;
    padding-left: 1.5rem;
    gap: 0.5rem;
  }
}

.p-faq__question::before {
  content: "Q";
  color: var(--color-blue-1);
  font-family: var(--font-roboto);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  inset: -0.25rem auto auto 0;
  position: absolute;
}
@media (max-width: 767px) {
  .p-faq__question::before {
    font-size: 1.5rem;
    inset: -0.0625rem auto auto 0;
  }
}

.p-faq__answer {
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-faq__answer {
    font-size: 1rem;
    padding-left: 1.5rem;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
}

.p-faq__answer::before {
  content: "A";
  color: var(--color-orange);
  font-family: var(--font-roboto);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  inset: 0 auto auto 0;
}
@media (max-width: 767px) {
  .p-faq__answer::before {
    font-size: 1.5rem;
    inset: 0.3125rem auto auto 0;
  }
}

.p-faq__answer a:not([tel]) {
  color: var(--color-blue4);
  text-decoration: underline;
}

.wp-block:has(.p-faq) {
  margin-block: 0;
}
.wp-block .p-faq__list {
  margin-block: 0;
}
.wp-block .p-faq {
  padding-block: 1.25rem;
  border-radius: 0;
}
.wp-block .p-faq__answer {
  margin: 0;
  margin-top: 1.25rem;
}

/* =================================
  Inc
================================= */
.footer {
  background-color: var(--color-blue2);
  padding-block: 4rem 2rem;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 1rem 7.5rem;
  }
}

.p-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: space-between;
  max-width: 88.125rem;
}
@media (max-width: 767px) {
  .p-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-footer__left {
    text-align: center;
  }
}

.p-footer__logo {
  display: block;
  width: 8.1875rem;
}
@media (max-width: 767px) {
  .p-footer__logo {
    margin-inline: auto;
  }
}

.p-footer__copyright {
  color: white;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
  margin-top: 0.4375rem;
}

.p-footer__title {
  font-weight: bold;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-footer__content {
  max-width: 54.375rem;
  width: -moz-max-content;
  width: max-content;
}

.p-footer__info {
  justify-self: start;
}
@media (max-width: 767px) {
  .p-footer__info {
    display: none;
  }
}

.p-footer__info-lists {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  margin-top: 0.625rem;
  margin-left: -0.6875rem;
  max-width: 38.125rem;
}

.p-footer__info-list {
  position: relative;
}

.p-footer__info-list::after {
  position: absolute;
  inset: auto 0.75rem -0.125rem 0.75rem;
  margin: auto;
  content: "";
  width: calc(100% - 1.5rem);
  height: 0.0625rem;
  background: white;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

@media (any-hover: hover) {
  .p-footer__info-list:hover::after {
    transform: scale(1, 1);
  }
}

.p-footer__info-list:not(:last-child)::before {
  content: "";
  height: 0.875rem;
  width: 1px;
  background: white;
  display: block;
  position: absolute;
  top: 52%;
  right: 0;
  translate: 0 -50%;
}

.p-footer__info-link {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-inline: 0.625rem;
}

@media (any-hover: hover) {
  .p-footer__info-link:hover {
    opacity: unset;
  }
}

/* =================================
  Inc
================================= */
/* p-form
------------------------------------*/
.p-form {
  background: var(--color-pale-blue);
  padding-bottom: 3.75rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-form {
    padding-bottom: 2.5rem;
  }
}

.p-form__wrapper {
  max-width: calc(30rem + var(--padding-pc) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-pc);
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-form__wrapper {
    margin-top: 2.5rem;
    padding-inline: var(--padding-sp);
  }
}

.p-form__wrapper._wide {
  max-width: calc(42.5rem + var(--padding-pc) * 2);
  padding-inline: var(--padding-pc);
  margin: 4rem auto;
}
@media (max-width: 767px) {
  .p-form__wrapper._wide {
    margin: 2.5rem auto;
    padding-inline: var(--padding-sp);
  }
}

.p-form__wrapper._wide .p-form__label {
  justify-content: center;
}

.p-form__group {
  display: grid;
}

.p-form__group + .p-form__group {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-form__group + .p-form__group {
    margin-top: 1rem;
  }
}

.p-form__label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-form__label {
    font-size: 1.25rem;
    line-height: 1.2;
    gap: 0.5rem;
  }
}

.p-form__require {
  color: white;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5625rem 0.375rem 0.625rem;
  background: var(--gradation-blue);
  border-radius: 100vmax;
}
@media (max-width: 767px) {
  .p-form__require {
    font-size: 0.75rem;
    padding-top: 0.125rem;
    padding-bottom: 0.25rem;
    margin-top: 0.125rem;
  }
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  margin-top: 0.5rem;
  border: 0.0625rem solid var(--color-black);
  background: white;
  color: var(--color-black);
  border-radius: 0.5rem;
  padding: 0.6875rem;
  font-size: 1rem;
  width: 100%;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.5rem;
  }
}

.p-form__textarea {
  height: 22.5rem;
  field-sizing: content;
}
@media (max-width: 767px) {
  .p-form__textarea {
    height: 12.5rem;
  }
}

.p-form__input::-moz-placeholder, .p-form__select::-moz-placeholder {
  color: var(--color-gray100);
}

.p-form__input::placeholder,
.p-form__select::placeholder {
  color: var(--color-gray100);
}

.p-form__select {
  width: auto;
}

.p-form__accordion {
  margin-top: 2.5rem;
  max-width: calc(42.5rem + var(--padding-pc) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-pc);
}
@media (max-width: 767px) {
  .p-form__accordion {
    padding-inline: var(--padding-sp);
  }
}

.p-form__accordion + .p-form__accordion {
  margin-top: 1.5rem;
}

.p-form__accordion .c-accordion__title {
  color: white;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  padding-block: 0.625rem;
  background: var(--color-blue1);
}

.p-form__accordion .c-accordion__icon {
  position: absolute;
}

.p-form__accordion .c-accordion__icon::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-right: 0.1875rem solid white;
  border-bottom: 0.1875rem solid white;
  display: inline-block;
  transform: rotate(45deg);
  top: 50%;
  right: 0.625rem;
  translate: 0 -50%;
}

.p-form__accordion .c-accordion__content-inner {
  max-width: 30rem;
  margin-inline: auto;
  padding: 1.875rem 0;
}

.p-form__radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.625rem;
  margin-right: -2.5rem;
}
@media (max-width: 767px) {
  .p-form__radios {
    grid-template-columns: repeat(2, 1fr);
    margin-right: 0;
    font-size: 1rem;
  }
}

.p-form__radios label {
  padding-left: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-form__radios label {
    padding-left: 1.25rem;
  }
}

.p-form__radios label:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid var(--color-black);
  background: white;
  border-radius: 0.125rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-form__radios label:before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media (max-width: 767px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}

.p-form__radios label:after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.625rem;
  rotate: 45deg;
  border-bottom: 0.125rem solid var(--color-blue1);
  border-right: 0.125rem solid var(--color-blue1);
  position: absolute;
  left: 0.4375rem;
  top: 0.3125rem;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .p-form__radios label:after {
    width: 0.25rem;
    height: 0.5rem;
    left: 0.4375rem;
    top: 0.375rem;
  }
}

.p-form__radios label:has(.p-form__radio:checked)::before {
  border-color: var(--color-blue1);
}

.p-form__radios label:has(.p-form__radio:checked)::after {
  opacity: 1;
  visibility: visible;
}

.p-form__radio {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.p-form__checkbox {
  inline-size: 1.5rem;
  block-size: 1.5rem;
}

.p-form__label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

.p-form__actions {
  display: flex;
  justify-content: center;
}

.p-form__submit {
  color: var(--black-white-white, #fff);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: url(../img/form/submit@2x.webp) no-repeat center center;
  background-size: cover;
  border-radius: 100vmax;
  inline-size: 17.5rem;
  block-size: 5.5rem;
  transition: opacity 0.3s;
  padding: 0;
}
@media (max-width: 767px) {
  .p-form__submit {
    font-size: 1rem;
    padding: 0.9375rem 3.125rem;
    inline-size: 15.625rem;
    block-size: 3.75rem;
  }
}

@media (any-hover: hover) {
  .p-form__submit:hover {
    opacity: 0.7;
  }
}

.p-form__actions .c-button {
  max-width: 18.75rem;
  padding: 1.0625rem 4.6875rem;
  height: 3.75rem;
}

/* =================================
  Inc
================================= */
.p-line__section {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-line__section {
    margin-top: 2.5rem;
  }
}

.p-line__section-content {
  margin-top: 2.5rem;
}

.p-line__section-content._gray {
  background-color: var(--color-pale-blue);
  padding: 2.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: 0;
}

.p-line__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .p-line__text {
    text-align: left;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-line__text + .p-line__text {
  margin-top: 0.3125rem;
}

.p-line__screen {
  max-width: 30rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  display: block;
}

.p-line__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-line__steps {
    grid-template-columns: 1fr;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.p-line__step-image {
  position: relative;
  display: block;
}

.p-line__step-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-line__step-text {
    margin-top: 0.625rem;
  }
}

.p-line__qr {
  margin-top: 4rem;
  border-radius: 0.5rem;
  background: white;
  padding: 2.5rem;
}

.p-line__qr-heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.p-line__qr-heading::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/line/icon_qr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-line__qr .p-line__text {
  margin-top: 1.5rem;
}

.p-line__qr-body {
  margin-top: 1.875rem;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 10.625rem;
  gap: 3.3125rem;
  max-width: 840px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-line__qr-body {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "list";
    gap: 1.875rem;
  }
}

.p-line__qr-lists {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-line__qr-lists {
    grid-area: list;
  }
}

.p-line__qr-list {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-blue1);
  position: relative;
  display: grid;
  place-items: center;
  padding-block: 0.75rem;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .p-line__qr-list {
    font-size: 1rem;
    line-height: 1.25;
    padding-block: 0.9375rem;
  }
}

.p-line__qr-list:not(:last-child):before {
  content: "";
  position: absolute;
  bottom: -2.125rem;
  left: 50%;
  translate: -50% 0;
  width: 2.5rem;
  height: 1.25rem;
  background: var(--color-blue1);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .p-line__qr-list:not(:last-child):before {
    bottom: -1.875rem;
    width: 1.5625rem;
    height: 1.25rem;
  }
}

.p-line__qr-image {
  margin-top: -0.3125rem;
}
@media (max-width: 767px) {
  .p-line__qr-image {
    grid-area: image;
    margin-top: 0;
    max-width: 13.4375rem;
    display: block;
    margin-inline: auto;
  }
}

.p-line__id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .p-line__id {
    font-size: 1rem;
    line-height: 1.25;
    display: grid;
    gap: 1.25rem;
  }
}

.p-line__heading05 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-line__heading05 {
    font-size: 0.875rem;
    line-height: 1.25;
  }
}

.p-line__box {
  margin-top: 1.875rem;
}

.p-line__heading05 + .p-line__text {
  margin-top: 1.5rem;
}

/* =================================
  Inc
================================= */
.p-taxonomy__heading-text {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-taxonomy__heading-text {
    margin-top: 1.5rem;
  }
}
.p-taxonomy__heading-text h1,
.p-taxonomy__heading-text h2,
.p-taxonomy__heading-text h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-taxonomy__heading-text h1,
  .p-taxonomy__heading-text h2,
  .p-taxonomy__heading-text h3 {
    font-size: 1.25rem;
  }
}
.p-taxonomy__heading-text p {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-taxonomy__heading-text p {
    font-size: 0.875rem;
  }
}

.p-taxonomy__list {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-taxonomy__list {
    margin-top: 2.5rem;
  }
}

.p-taxonomy__table {
  margin-top: 2.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .p-taxonomy__table {
    margin-top: 1.5rem;
  }
}

.p-taxonomy__table-header {
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 0.5625rem 0.625rem;
  border: 1px solid white;
  background: var(--color-blue1);
}
@media (max-width: 767px) {
  .p-taxonomy__table-header {
    font-size: 0.875rem;
    padding: 0.375rem;
  }
}

.p-taxonomy__table-header:first-child {
  width: 19.1489361702%;
}
@media (max-width: 767px) {
  .p-taxonomy__table-header:first-child {
    width: 20.5128205128%;
  }
}

.p-taxonomy__table-header:nth-child(2) {
  width: 62.8723404255%;
}
@media (max-width: 767px) {
  .p-taxonomy__table-header:nth-child(2) {
    width: 51.2820512821%;
  }
}

.p-taxonomy__table-header:nth-child(3) {
  width: 17.9787234043%;
}
@media (max-width: 767px) {
  .p-taxonomy__table-header:nth-child(3) {
    width: 25.641025641%;
  }
}

.p-taxonomy__table-data {
  padding: 0.375rem 1rem;
  border: 1px solid var(--color-gray600);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-taxonomy__table-data {
    font-size: 0.875rem;
    padding: 0.375rem;
  }
}
.p-taxonomy__table-data.price-cell {
  white-space: nowrap;
  text-align: right;
}

.p-taxonomy__table-thumbnail {
  max-width: 9.25rem;
}
@media (max-width: 767px) {
  .p-taxonomy__table-thumbnail {
    max-width: 6.25rem;
    margin-inline: auto;
  }
}

.p-taxonomy__feature {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-taxonomy__feature {
    margin-top: 2.5rem;
  }
}

/* =================================
  Inc
================================= */
.p-cta {
  position: relative;
  padding-block: 3.3125rem 3.375rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-cta {
    padding-block: 2.5rem;
    border-radius: 0;
    margin-inline: calc(50% - 50vw);
  }
}

.p-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

.p-cta__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
  height: 100%;
}

.p-cta__inner {
  display: grid;
  place-items: center;
}

.p-cta__text {
  color: white;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-cta__text {
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-cta__button {
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .p-cta__button {
    margin-top: 0.375rem;
  }
}

/* p-drawer
------------------------------------*/
.p-drawer {
  display: none;
}
@media (max-width: 767px) {
  .p-drawer {
    display: grid;
  }
}

.p-drawer__button {
  height: 4rem;
  width: 3.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 2rem transparent;
  position: relative;
  background: var(--gradation-navy);
  z-index: 200;
  cursor: pointer;
}

.p-drawer__button::before {
  content: "menu";
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  inset: auto auto 0.3125rem 50%;
  translate: -50% 0;
}

.p-drawer__line {
  font-size: 0;
  left: 50%;
  translate: -50% 0;
  top: 1.375rem;
}

.p-drawer__line,
.p-drawer__line::before,
.p-drawer__line::after {
  content: "";
  display: block;
  height: 0.125rem;
  width: 1.75rem;
  background-color: white;
  position: absolute;
  transition: all 0.3s ease-out;
}

.p-drawer__line::before {
  bottom: 0.5rem;
}

.p-drawer__line::after {
  top: 0.5rem;
}

.p-drawer__button[aria-expanded=true] .p-drawer__line {
  background-color: transparent;
}

.p-drawer__button[aria-expanded=true] .p-drawer__line::before {
  bottom: 0;
  transform: rotate(45deg);
}

.p-drawer__button[aria-expanded=true] .p-drawer__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.p-drawer__modal {
  margin-top: 4rem;
  padding-bottom: 5.625rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  background: var(--gradation-navy);
}

.p-drawer__modal.is-open {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

.p-drawer__dialog {
  background: var(--gradation-navy);
}

.p-drawer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem var(--padding-sp);
  background-image: url(../img/common/drawer_bg@2x.webp);
  background-size: cover;
}

.p-drawer__link {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
}

.p-drawer__link-button.c-button {
  width: 100%;
}

.p-drawer__lists {
  display: grid;
  text-align: center;
  gap: 1.125rem;
  padding-block: 1.875rem;
}

.p-drawer__list-link {
  color: white;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.p-drawer__copyright {
  background: var(--Theme-Color-Blue-2, #00325f);
  color: white;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
  padding-block: 0.75rem;
}

/* p-breadcrumb
------------------------------------*/
.p-breadcrumb {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-breadcrumb a {
  color: var(--color-blue4);
  text-decoration: underline;
}

.p-breadcrumb .l-inner > span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}

/* p-sidebar
------------------------------------*/
.p-sidebar__section:not(:first-child) {
  margin-top: 3.125rem;
}
@media (max-width: 767px) {
  .p-sidebar__section:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-sidebar__title {
  color: var(--color-blue1);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1rem;
  border-left: 0.75rem solid var(--color-blue1);
}
@media (max-width: 767px) {
  .p-sidebar__title {
    font-size: 1rem;
  }
}

.p-sidebar__list {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-sidebar__list {
    margin-top: 0.75rem;
  }
}

.p-sidebar__item {
  border-top: 0.0625rem solid var(--color-gray200);
}

.p-sidebar__item:last-child {
  border-bottom: 0.0625rem solid var(--color-gray200);
}

.p-sidebar__link {
  padding: 1.125rem 0.75rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-sidebar__link {
    font-size: 0.875rem;
    padding: 0.875rem 0.5rem;
  }
}

.p-sidebar__link::before {
  content: "▶";
  color: var(--color-blue1);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-sidebar__link::before {
    font-size: 0.75rem;
  }
}

.js-accordion-list {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.p-sidebar__more {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.0625rem;
  background-color: #fff;
  border: 0.0625rem solid var(--color-gray200);
  color: var(--color-blue1);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .p-sidebar__more {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
}

.p-sidebar__more:hover {
  background-color: var(--color-blue1);
  color: white;
}

.p-sidebar__more:focus {
  outline: 0.0625rem solid var(--color-blue1);
  outline-offset: -0.125rem;
}

/* p-banner
------------------------------------*/
.p-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--color-green);
  border-radius: 1rem 0 0 0;
  padding: 0.5625rem 0.875rem 1.4375rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-banner {
    width: 100%;
    left: 0;
    padding: 0.8125rem 1.25rem 0.25rem;
    border-radius: 0;
  }
}

.p-banner.is-close {
  display: none;
}

.p-banner__inner {
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .p-banner__inner {
    grid-template-areas: "title title" "icon button";
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-inline: auto;
  }
}

.p-banner__icon {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 767px) {
  .p-banner__icon {
    grid-area: icon;
    width: 4.5rem;
    height: 4.5rem;
    margin-top: -0.25rem;
  }
}

.p-banner__title {
  color: white;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.2523809524;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 767px) {
  .p-banner__title {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    grid-area: title;
  }
}

.p-banner__title::before,
.p-banner__title::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.875rem;
  background: white;
  position: absolute;
  bottom: 0.125rem;
}
@media (max-width: 767px) {
  .p-banner__title::before,
  .p-banner__title::after {
    bottom: 0.25rem;
    height: 1.25rem;
  }
}

.p-banner__title::before {
  left: -0.5rem;
  rotate: -20deg;
}

.p-banner__title::after {
  right: -0.5rem;
  rotate: 20deg;
}

.p-banner__button {
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .p-banner__button {
    grid-area: button;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .p-banner__button .c-button._small {
    height: 2.625rem;
    padding-top: 0.5rem;
    padding-inline: 2.1875rem 3.125rem;
  }
}

.p-banner__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5625rem;
  height: 1.5625rem;
  background: none;
  border: none;
  cursor: pointer;
}

.p-banner__close::before,
.p-banner__close::after {
  content: "";
  display: block;
  width: 1.5625rem;
  height: 0.125rem;
  background: white;
  position: absolute;
  inset: 0.5rem 0.5rem 0 0;
}

.p-banner__close::before {
  rotate: 45deg;
}

.p-banner__close::after {
  rotate: -45deg;
}

/* p-box
------------------------------------*/
.p-box__body {
  padding: 2.5rem;
  background: var(--color-pale-blue);
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-box__body {
    padding: 1.25rem;
  }
}

.p-box__content {
  background: white;
  padding: 2.5rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p-box__content {
    padding: 1.25rem;
  }
}

/* p-profile
------------------------------------*/
.p-profile table {
  border-collapse: collapse;
  position: relative;
}
.p-profile table::before {
  content: "";
  position: absolute;
  inset: -0.125rem auto auto 0;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 7.5rem, var(--color-black) 7.5rem, var(--color-black) 100%);
  width: 100%;
  height: 0.25rem;
}
@media (max-width: 767px) {
  .p-profile table::before {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 6.25rem, var(--color-black) 6.25rem, var(--color-black) 100%);
    height: 0.1875rem;
  }
}
.p-profile th,
.p-profile td {
  border-inline: none;
  border-block: 0.0625rem solid var(--color-black);
}
.p-profile th,
.p-profile td:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 1rem 1.125rem;
}
@media (max-width: 767px) {
  .p-profile th,
  .p-profile td:first-child {
    font-size: 1.125rem;
    padding: 0.625rem 0.875rem;
  }
}
.p-profile td {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 1.0625rem 1.5rem;
}
@media (max-width: 767px) {
  .p-profile td {
    font-size: 0.875rem;
    padding: 1.25rem 1rem;
  }
}

/* p-column
------------------------------------*/
.p-column__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-column__meta {
    gap: 0.5rem;
  }
}

.p-column__meta-date {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-column__meta-date {
    font-size: 0.75rem;
  }
}

.p-column__heading {
  margin-top: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-column__heading {
    font-size: 1.5rem;
    margin-top: 12;
  }
}

.p-column__thumbnail {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-column__thumbnail {
    margin-top: 0.75rem;
  }
}

.p-column__thumbnail img {
  width: 100%;
  height: auto;
}

/* p-column-archive
------------------------------------*/
.p-column-archive__section + .p-column-archive__section {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-column-archive__section + .p-column-archive__section {
    margin-top: 2.5rem;
  }
}

.p-column-archive__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-column-archive__list {
    margin-top: 1.5rem;
  }
}

.p-column-archive__item {
  display: grid;
  grid-template-columns: min(12.9166666667vw, 11.625rem) 1fr;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .p-column-archive__item {
    gap: 0.75rem;
    grid-template-columns: 7.5rem 1fr;
  }
}

.p-column-archive__item-thumbnail {
  aspect-ratio: 1;
}

.p-column-archive__item-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-column-archive__item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-column-archive__item-meta {
    gap: 0.5rem;
  }
}

.p-column-archive__item-date {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-column-archive__item-date {
    font-size: 0.75rem;
  }
}

.p-column-archive__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .p-column-archive__item-title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.p-column-archive__item-excerpt {
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .p-column-archive__item-excerpt {
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
}

.p-column-archive__item-button {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-column-archive__item-button {
    margin-top: 0.5rem;
    justify-self: end;
  }
}

/* p-column-archive__list._col2
------------------------------------*/
.p-column-archive__list._col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-column-archive__list._col2 {
    grid-template-columns: 100%;
  }
}

.p-column-archive__list._col2 .p-column-archive__item-title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 1200px) {
  .p-column-archive__list._col2 .p-column-archive__item-title {
    -webkit-line-clamp: 2;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-column-archive__list._col2 .p-column-archive__item-title {
    font-size: 1rem;
  }
}

/* p-contact
------------------------------------*/
.p-contact__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-contact__text {
    text-align: left;
  }
}

.p-contact__heading {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-contact__heading {
    margin-top: 2.5rem;
  }
}

.p-contact__body {
  padding: 2.5rem 2.8125rem;
  background: var(--color-pale-blue);
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-contact__body {
    padding: 1.25rem;
  }
}

.p-contact__list {
  counter-reset: list-counter;
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .p-contact__list {
    gap: 1rem;
  }
}

.p-contact__list li {
  counter-increment: list-counter;
  position: relative;
  display: grid;
  align-items: baseline;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-contact__list li {
    font-size: 1rem;
  }
}
.p-contact__list li::before {
  content: counter(list-counter);
  font-weight: 700;
  background-color: var(--color-gray400);
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-roboto);
}
@media (max-width: 767px) {
  .p-contact__list li::before {
    font-size: 1.125rem;
    width: 1.5625rem;
    height: 1.5625rem;
    gap: 0.5rem;
  }
}

.p-contact__content {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-contact__content {
    margin-top: 2.5rem;
  }
}

/* =================================
  Inc
================================= */
.p-single__thumbnail {
  margin-top: 2.1875rem;
}
@media (max-width: 767px) {
  .p-single__thumbnail {
    margin-top: 1.875rem;
  }
}

.p-single__content {
  margin-top: 1.875rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-single__content {
    width: 100%;
    margin-inline: 0;
  }
}

.p-single__price {
  margin-top: 2.5rem;
}

.p-single__table {
  margin-top: 1.5rem;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 600;
  border-bottom: 0.125rem solid var(--color-gray500);
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .p-single__table {
    font-size: 0.9375rem;
  }
}

.p-single__table-row-head {
  border-bottom: 2px solid var(--color-gray500);
}

.p-single__table-head {
  padding: 0.625rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-single__table-head:not(:first-child) {
  text-align: center;
}

.p-single__table-row:nth-child(odd) {
  background-color: var(--color-gray10);
}

.p-single__table-data {
  padding: 0.6875rem 1.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-single__table-data._red {
  color: var(--color-orange);
  text-align: center;
  border-left: 0.125rem solid white;
}

.p-single__button {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-single__button {
    margin-top: 2.5rem;
  }
}

.p-single__button .c-button {
  max-width: 15.75rem;
  width: 100%;
  margin-inline: auto;
}

/* =================================
  Inc
================================= */
.p-sitemap {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-sitemap {
    margin-top: 2.5rem;
  }
}

.p-sitemap__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  list-style: none !important;
}
@media (max-width: 767px) {
  .p-sitemap__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .p-sitemap__lists {
    grid-template-columns: 1fr;
  }
}

.p-sitemap__list {
  margin-left: 0 !important;
}

.p-sitemap__link {
  display: flex;
  align-items: start;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  color: var(--color-black) !important;
}

.p-sitemap__link svg {
  flex-shrink: 0;
  margin-top: 0.0625rem;
  width: 1.25rem;
  height: 1.25rem;
}

/* =================================
  Inc
================================= */
.d-block_480 {
  display: none !important;
}

.d-block_767 {
  display: none !important;
}

.d-block_1024 {
  display: none !important;
}

.d-block_850 {
  display: none !important;
}

/*
  アニメーション設定
================= */
.js-fade-in,
.js-fade-up,
.js-fade-in-left,
.js-fade-in-right {
  opacity: 0;
}

.anime__triger {
  opacity: 0;
  transform: translateY(10%);
}

.anime__triger2 {
  opacity: 0;
  transform: translateY(3%);
}

.SiteWrapper .is-active__top {
  transition: all 0.3s linear 0s;
  opacity: 1;
  transform: translateY(0);
}

.SiteWrapper .p-hero__box.anime__triger {
  transform: translateY(-40%);
}

.SiteWrapper .p-hero__box.is-active__top {
  transform: translateY(-50%);
  transition-delay: 0.3s;
}

.SiteWrapper .p-hero__mark.is-active__top {
  transition-delay: 0.3s;
}

.SiteWrapper .p-medical__message-content:nth-child(3n+1) {
  transition-delay: 0s;
}

.SiteWrapper .p-medical__message-content:nth-child(3n+2) {
  transition-delay: 0.1s;
}

.SiteWrapper .p-medical__message-content:nth-child(3n+3) {
  transition-delay: 0.2s;
}

@media (max-width: 1280px) {
  .d-none_1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .d-block_1024 {
    display: block !important;
  }
}
@media (max-width: 850px) {
  .d-block_850 {
    display: block !important;
  }
  .d-none_850 {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .d-block_768 {
    display: block !important;
  }
  .d-none_768 {
    display: none !important;
  }
  .SiteWrapper .p-medical__message-content:nth-child(3n+1) {
    transition-delay: unset;
  }
  .SiteWrapper .p-medical__message-content:nth-child(3n+2) {
    transition-delay: unset;
  }
  .SiteWrapper .p-medical__message-content:nth-child(3n+3) {
    transition-delay: unset;
  }
}
@media (max-width: 480px) {
  .d-block_480 {
    display: block !important;
  }
  .d-none_480 {
    display: none !important;
  }
}
/* =================================
  Inc
================================= */
.p-mv {
  position: relative;
  padding-block: 10.9375rem 11.125rem;
}
@media (max-width: 767px) {
  .p-mv {
    padding-block: 2.5rem 3.125rem;
    aspect-ratio: 390/476;
  }
}

.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

.p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__catch {
  color: white;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 0.9111111111;
  letter-spacing: -0.03em;
  background: var(--gradation-blue);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5625rem 0.75rem 0.5625rem 0.5625rem;
}
@media (max-width: 767px) {
  .p-mv__catch {
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-inline: auto;
    padding: 0.25rem 0;
    color: var(--color-yellow);
    clip-path: polygon(87% 0, 87% 17%, 96% 17%, 96% 50%, 100% 50%, 100% 100%, 0 100%, 0 50%, 4% 50%, 4% 0%);
  }
}

.p-mv__catch-small {
  font-size: 4.125rem;
  font-weight: 700;
  line-height: 0.7272727273;
}
@media (max-width: 767px) {
  .p-mv__catch-small {
    color: white;
    font-size: 2rem;
    line-height: 1;
    position: relative;
    top: 0.125rem;
  }
}

.p-mv__catch-accent {
  color: var(--color-yellow);
  line-height: 1.0333333333;
  padding-top: 0.875rem;
  display: block;
  padding-left: 3.375rem;
}
@media (max-width: 767px) {
  .p-mv__catch-accent {
    color: white;
    padding-inline: 0.625rem;
    padding-top: 0.375rem;
  }
}

/* p-top-introduction
------------------------------------*/
.p-top-introduction__content {
  background: var(--color-pale-blue);
  padding: 2.5rem 2.1875rem;
  display: grid;
  grid-template-columns: min(20.8333333333vw, 18.75rem) 1fr;
  gap: 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-top-introduction__content {
    padding: 1.25rem 1rem;
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    gap: 1.125rem;
  }
}

@media (max-width: 767px) {
  .p-top-introduction__image {
    grid-area: image;
  }
}

@media (max-width: 767px) {
  .p-top-introduction__text-wrapper {
    grid-area: text;
  }
}

.p-top-introduction__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-introduction__text {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-introduction__list {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .p-top-introduction__list {
    margin-top: 1.125rem;
  }
}

.p-top-introduction__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-top-introduction__item::before {
  content: "";
  background-image: url(../img/top/icon_question.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* p-top-service
------------------------------------*/
.p-top-service__medias {
  margin-top: 2.5rem;
  counter-reset: number 0;
  display: grid;
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-top-service__medias {
    margin-top: 1.25rem;
  }
}

.p-top-service__media {
  display: grid;
  grid-template-columns: min(20.8333333333vw, 18.75rem) 1fr;
  gap: 1.5rem;
  border-bottom: 0.0625rem dashed var(--color-gray200);
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-top-service__media {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
    gap: 1rem;
  }
}

.p-top-service__media:last-child {
  border-bottom: none;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-top-service__media:last-child {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-service__media-image {
    grid-area: image;
  }
}

.p-top-service__media-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-service__media-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-service__media-title {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    padding-bottom: 0.625rem;
  }
}

.p-top-service__media-title::before {
  content: "0" counter(number);
  counter-increment: number;
  font-size: 5rem;
  font-family: var(--font-roboto);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--gradation-orange);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-top-service__media-title::before {
    font-size: 2.875rem;
    line-height: 1;
    letter-spacing: -0.05em;
  }
}

.p-top-service__media-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 5.3125rem, var(--color-black) 5.3125rem, var(--color-black) 100%);
  position: absolute;
  inset: auto auto 0 0;
}
@media (max-width: 767px) {
  .p-top-service__media-title::after {
    height: 0.125rem;
    background: linear-gradient(90deg, var(--color-gray200) 0%, var(--color-gray200) 3.125rem, var(--color-black) 3.125rem, var(--color-black) 100%);
  }
}

@media (max-width: 767px) {
  .p-top-service__media-content {
    grid-area: content;
  }
}

.p-top-service__media-texts {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
}

.p-top-service__media-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-service__media-text {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

/* p-top-flow
------------------------------------*/
.p-top-flow__content {
  padding: 2.5rem;
  background: var(--color-pale-blue);
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-top-flow__content {
    padding: 1.25rem;
  }
}

.p-top-flow__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-flow__text {
    font-size: 1.125rem;
  }
}

.p-top-flow__text em {
  font-weight: 700;
  color: var(--color-blue1);
}

.p-top-flow__lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 767px) {
  .p-top-flow__lists {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-top-flow__list-image {
  display: block;
  padding: 1.25rem;
  background-color: white;
  border: 0.125rem solid var(--color-blue1);
}
@media (max-width: 767px) {
  .p-top-flow__list-image {
    max-width: 28.125rem;
    margin-inline: auto;
    padding: 1.625rem;
  }
}

.p-top-flow__list-title {
  color: var(--Theme-Color-Blue-1, #0b3173);
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-top-flow__list-title {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-flow__list-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-top-flow__list-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
  }
}

.p-top-flow__about {
  margin-top: 1.5rem;
  max-width: 43.75rem;
  margin-inline: auto;
  border-radius: 0.5rem;
  background: white;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .p-top-flow__about {
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
  }
}

.p-top-flow__about-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 0 0.25rem 0.25rem;
  border-bottom: 0.125rem solid var(--color-black);
}
@media (max-width: 767px) {
  .p-top-flow__about-title {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    padding: 0 0 0.25rem;
  }
}

.p-top-flow__about-text {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* p-top-step
------------------------------------*/
.p-top-step__lists {
  display: grid;
  margin-left: 3.125rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-top-step__lists {
    margin-left: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-top-step__list {
  position: relative;
}

.p-top-step__list:not(:last-of-type) {
  padding-bottom: 2.5rem;
}

.p-top-step__list:not(:last-of-type)::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 100%;
  background: var(--color-blue1);
  top: 1.25rem;
  left: -2.53125rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p-top-step__list:not(:last-of-type)::before {
    left: -0.9375rem;
  }
}

.p-top-step__list::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--color-blue1);
  border-radius: 62.4375rem;
  top: 1.25rem;
  left: -2.5rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .p-top-step__list::after {
    left: -0.9375rem;
  }
}

.p-top-step__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-top-step__title {
    gap: 0.5rem;
  }
}

.p-top-step__title-step {
  background: var(--gradation-orange);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.25rem 2.0625rem 0.375rem;
  text-transform: uppercase;
  border-radius: 100vmax;
}
@media (max-width: 767px) {
  .p-top-step__title-step {
    padding: 0.1875rem 1.4375rem 0.25rem;
    color: var(--black-white-white, #fff);
    font-size: 0.7rem;
    line-height: 1.25;
  }
}

.p-top-step__title-step span {
  font-size: 1.6875rem;
  line-height: 1.2222222222;
}
@media (max-width: 767px) {
  .p-top-step__title-step span {
    color: var(--black-white-white, #fff);
    font-size: 1.05rem;
    line-height: 1.25;
  }
}

.p-top-step__title-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-step__title-text {
    font-size: 1.05rem;
    line-height: 1.25;
  }
}

.p-top-step__media {
  display: grid;
  grid-template-columns: min(27.8260869565vw, 20rem) 1fr;
  gap: 2.75rem;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-top-step__media {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-top-step__media-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.p-top-step__media-text._blue {
  color: var(--color-blue1);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-top-step__media-text._center {
  text-align: center;
}

.p-top-step__media-button {
  margin-top: 1.6875rem;
}
@media (max-width: 767px) {
  .p-top-step__media-button {
    margin-top: 1.25rem;
  }
}

.p-top-step__images {
  background-color: var(--color-gray10);
  margin-top: 2rem;
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .p-top-step__images {
    margin-top: 2.5rem;
    padding: 0.625rem;
  }
}

.p-top-step__images-content {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  background-color: white;
  padding: 1.75rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p-top-step__images-content {
    padding: 2.375rem 1.5rem;
  }
}

.p-top-step__images-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 600;
  border-bottom: 0.125rem solid var(--color-black);
  padding-bottom: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-step__images-title {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-step__images-lists {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (max-width: 767px) {
  .p-top-step__images-lists {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 767px) {
  .p-top-step__images-thumb {
    max-width: 11.25rem;
    margin-inline: auto;
  }
}

.p-top-step__images-text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.p-top-step__images-remarks {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-top-step__images-remarks {
    text-align: left;
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-top-step__need {
  margin-top: 1.5rem;
  background-color: var(--color-gray10);
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .p-top-step__need {
    padding: 0.625rem;
  }
}

.p-top-step__need-content {
  background-color: white;
  padding: 1.75rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p-top-step__need-content {
    padding: 2.375rem 1.5rem;
  }
}

.p-top-step__need-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  font-weight: 600;
  border-bottom: 0.125rem solid var(--color-black);
  padding-bottom: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-step__need-title {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-step__need-title-sub {
  margin-top: 1.25rem;
  color: var(--color-blue1);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-step__need-title-sub {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-step__need .p-top-step__media-text {
  margin-top: 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-step__need .p-top-step__media-text {
    text-align: left;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

/* p-top-about
------------------------------------*/
.p-top-about__content {
  background: var(--color-pale-blue);
  padding: 2.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .p-top-about__content {
    padding: 1.25rem;
  }
}

.p-top-about__list {
  display: grid;
  gap: 1.5rem;
}

.p-top-about__item {
  display: grid;
  grid-template-columns: min(20.8333333333vw, 18.75rem) 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-top-about__item {
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-template-areas: "content" "image";
  }
}

.p-top-about__item:first-child {
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem dashed var(--color-gray200);
}

@media (max-width: 767px) {
  .p-top-about__item-image {
    grid-area: image;
  }
}

@media (max-width: 767px) {
  .p-top-about__item-content {
    grid-area: content;
  }
}

.p-top-about__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-about__item-title {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.p-top-about__item-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-top-about__item-caution-title {
  margin-top: 1.25rem;
  color: var(--black-white-black, #070707);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-about__item-caution-title {
    margin-top: 1rem;
  }
}

.p-top-about__item-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.p-top-about__item-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-white-black, #070707);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-top-about__item-item::before {
  content: "";
  background-image: url(../img/top/icon_exclamation.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* =================================
  Inc
================================= */
.u-hidden-sp {
  display: inline-block !important;
}
@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-hidden-pc {
  display: none !important;
}
@media (max-width: 767px) {
  .u-hidden-pc {
    display: inline-block !important;
  }
}

.u-visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/* =================================
  Inc
================================= */
.u-text-accent {
  color: var(--color-yellow) !important;
}

.u-text-marker {
  background: rgba(255, 218, 27, 0.5);
  font-weight: bold;
}

.u-text-left {
  text-align: left !important;
}/*# sourceMappingURL=style.css.map */